askar-website/assets/db/dump.sql

1260 lines
6.1 MiB
MySQL
Raw Permalink Normal View History

2024-07-31 22:35:50 +02:00
/*!999999\- enable the sandbox mode */
-- MariaDB dump 10.19-11.4.2-MariaDB, for Linux (x86_64)
2024-07-17 22:49:32 +02:00
--
2024-07-31 22:35:50 +02:00
-- Host: 127.0.0.1 Database: askar
2024-07-17 22:49:32 +02:00
-- ------------------------------------------------------
2024-07-31 22:35:50 +02:00
-- Server version 8.4.1
2024-07-17 22:49:32 +02:00
2024-07-31 22:35:50 +02:00
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!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' */;
/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */;
2024-07-17 22:49:32 +02:00
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_commentmeta` (
2024-07-31 22:35:50 +02:00
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint unsigned NOT NULL DEFAULT '0',
2024-07-19 23:59:23 +02:00
`meta_key` varchar(255) DEFAULT NULL,
2024-07-31 22:35:50 +02:00
`meta_value` longtext,
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
2024-07-31 22:35:50 +02:00
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_comments` (
2024-07-31 22:35:50 +02:00
`comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
2024-07-17 22:49:32 +02:00
`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',
2024-07-31 22:35:50 +02:00
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint unsigned NOT NULL DEFAULT '0',
`user_id` bigint unsigned NOT NULL DEFAULT '0',
2024-07-17 22:49:32 +02:00
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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
2024-07-31 22:35:50 +02:00
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES
(1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-07-16 21:54:43','2024-07-16 21:54:43','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_links` (
2024-07-31 22:35:50 +02:00
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint unsigned NOT NULL DEFAULT '1',
`link_rating` int NOT NULL DEFAULT '0',
2024-07-17 22:49:32 +02:00
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2024-07-31 22:35:50 +02:00
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
2024-07-31 22:35:50 +02:00
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_options` (
2024-07-31 22:35:50 +02:00
`option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
2024-07-31 22:35:50 +02:00
) ENGINE=InnoDB AUTO_INCREMENT=417 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES
(1,'siteurl','http://localhost:8080','yes'),
(2,'home','http://localhost:8080','yes'),
(3,'blogname','Charitable Askar Association for Development and Community Development','yes'),
(4,'blogdescription','','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','unit@paranoici.org','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','','yes'),
(29,'rewrite_rules','','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:1:{i:0;s:41:\"super-block-slider/super-block-slider.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','','no'),
(40,'template','twentytwentyfour','yes'),
(41,'stylesheet','twentytwentyfour','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','57155','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:1;a: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:0:{}','no'),
(80,'timezone_string','','yes'),
(81,'page_for_posts','0','yes'),
(82,'page_on_front','8','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','1736718882','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,'wp_attachment_pages_enabled','0','yes'),
(100,'initial_db_version','57155','yes'),
(101,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{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:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{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:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{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: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;}}}','yes'),
(102,'fresh_site','0','yes'),
(103,'user_count','4','no'),
(104,'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'),
(105,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:10:\"footer-one\";a:0:{}s:10:\"footer-two\";a:0:{}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:13:\"array_version\";i:3;}','yes'),
(106,'cron','a:8:{i:1721166961;a:5:{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;}}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;}}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;}}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:1721166972;a:3:{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: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:1721166975;a:1:{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;}}}i:1721167032;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1721167796;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:1721168457;a:1:{s:24:\"astra_delete_docs_folder\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1721253361;a:1:{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:7:\"version\";i:2;}','yes'),
(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.5.5\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/edi
(122,'_transient_doing_cron','1722458113.0052049160003662109375','yes'),
(123,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.6.1.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.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.1\";s:7:\"version\";s:5:\"6.6.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.6.1.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.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.1\";s:7:\"version\";s:5:\"6.6.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1722457098;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no'),
(128,'_site_transient_timeout_browser_3803008dfd0b0638bddde49055bbe8a0','1721771774','no'),
(129,'_site_transient_browser_3803008dfd0b0638bddde49055bbe8a0','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"127.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
(132,'can_compress_scripts','0','yes'),
(145,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','no'),
(146,'recently_activated','a:0:{}','yes'),
(149,'theme_mods_twentytwentyfour','a:4:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1721167803;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\";}}}s:19:\"wp_classic_sidebars\";a:5:{s:13:\"right-sidebar\";a:11:{s:4:\"name\";s:13:\"Right Sidebar\";s:2:\"id\";s:13:\"right-sidebar\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:10:\"footer-one\";a:11:{s:4:\"name\";s:10:\"Footer One\";s:2:\"id\";s:10:\"footer-one\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:10:\"footer-two\";a:11:{s:4:\"name\";s:10:\"Footer Two\";s:2:\"id\";s:10:\"footer-two\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:12:\"footer-three\";a:11:{s:4:\"name\";s:12:\"Footer Three\";s:2:\"id\";s:12:\"footer-three\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:11:\"footer-four\";a:11:{s:4:\"name\";s:11:\"Footer Four\";s:2:\"id\";s:11:\"footer-four\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}}s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),
(150,'current_theme','Twenty Twenty-Four','yes'),
(151,'theme_mods_astra','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:7:\"primary\";i:3;s:11:\"mobile_menu\";i:4;s:14:\"secondary_menu\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:10;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1721170378;s:4:\"data\";a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}}}}','no'),
(152,'theme_switched','','yes'),
(154,'_transient_timeout_astra-theme-cron-test-ok','1721171407','no'),
(155,'_transient_astra-theme-cron-test-ok','1','no'),
(167,'nav_menu_options','a:1:{s:8:\"auto_add\";a:1:{i:0;i:5;}}','yes'),
(168,'site_logo','10','yes'),
(169,'astra-color-palettes','a:4:{s:14:\"currentPalette\";s:9:\"palette_3\";s:8:\"palettes\";a:3:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#046bd2\";i:1;s:7:\"#045cb4\";i:2;s:7:\"#1e293b\";i:3;s:7:\"#334155\";i:4;s:7:\"#F0F5FA\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1D5DB\";i:7;s:7:\"#111111\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#E7F6FF\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1DAE5\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#4a0d66\";i:1;s:7:\"#0060df\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#ededf0\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#f0f0f4\";i:7;s:7:\"#0D0614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:10:{s:8:\"preset_1\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#E7F6FF\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D1DAE5\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}s:8:\"preset_2\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#F2F0FE\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D8D8F5\";i:7;s:7:\"#0D0614\";i:8;s:7:\"#222222\";}s:8:\"preset_3\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFEDE6\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#FFD1BF\";i:7;s:7:\"#140609\";i:8;s:7:\"#222222\";}s:8:\"preset_4\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#EDFBE2\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D5EAD8\";i:7;s:7:\"#0C1406\";i:8;s:7:\"#222222\";}s:8:\"preset_5\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FAF5E5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F0E6C5\";i:7;s:7:\"#141004\";i:8;s:7:\"#222222\";}s:8:\"preset_6\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FCEEF5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#FAD8E9\";i:7;s:7:\"#140610\";i:8;s:7:\"#222222\";}s:8:\"preset_7\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#EDF6EE\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#D4F3D7\";i:7;s:7:\"#06140C\";i:8;s:7:\"#222222\";}s:8:\"preset_8\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FEF9E1\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F9F0C8\";i:7;s:7:\"#141006\";i:8;s:7:\"#222222\";}s:8:\"preset_9\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FEF1E4\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#E5D7D1\";i:7;s:7:\"#140B06\";i:8;s:7:\"#222222\";}s:9:\"preset_10\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#F6F6F6\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#F1F0F0\";i:7;s:7:\"#232529\";i:8;s:7:\"#222222\";}}s:4:\"flag\";b:0;}','yes'),
(170,'astra-typography-presets','typo-preset-04','yes'),
(172,'astra-settings','a:35:{s:50:\"ast-callback-notice-header-transparent-header-logo\";s:0:\"\";s:55:\"ast-callback-notice-header-transparent-header-logo-link\";s:0:\"\";s:22:\"ast-header-retina-logo\";s:0:\"\";s:18:\"mobile-header-logo\";s:0:\"\";s:51:\"ast-callback-notice-header-transparent-meta-enabled\";s:0:\"\";s:55:\"ast-callback-notice-header-transparent-header-meta-link\";s:0:\"\";s:23:\"transparent-header-logo\";s:0:\"\";s:30:\"transparent-header-retina-logo\";s:0:\"\";s:22:\"is_theme_queue_running\";b:0;s:18:\"theme-auto-version\";s:5:\"4.7.3\";s:32:\"ast-header-responsive-logo-width\";a:3:{s:7:\"desktop\";i:133;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"header-desktop-items\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:1:{i:0;s:4:\"logo\";}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:0:{}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:1:{i:0;s:6:\"menu-1\";}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:0:{}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:4:\"flag\";b:1;}s:19:\"header-preset-style\";s:8:\"preset_4\";s:19:\"header-mobile-items\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:2:{i:0;s:6:\"search\";i:1;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:4:\"flag\";b:0;}s:20:\"hba-header-separator\";s:1:\"0\";s:19:\"header-button1-text\";s:7:\"Sign up\";s:13:\"header-html-1\";s:22:\"<a href=\"#\">Log in</a>\";s:26:\"header-menu1-submenu-width\";s:0:\"\";s:19:\"button-preset-style\";s:9:\"button_03\";s:20:\"theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:20;s:6:\"bottom\";i:10;s:4:\"left\";i:20;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"theme-button-border-group-border-size\";a:4:{s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;}s:20:\"button-radius-fields\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:30;s:5:\"right\";i:30;s:6:\"bottom\";i:30;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"secondary-button-preset-style\";s:9:\"button_03\";s:30:\"secondary-theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:20;s:6:\"bottom\";i:10;s:4:\"left\";i:20;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:47:\"secondary-theme-button-border-group-border-size\";a:4:{s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;}s:30:\"secondary-button-radius-fields\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:30;s:5:\"right\";i:30;s:6:\"bottom\";i:30;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"
(189,'astra_partials_config_cache','a:2:{s:8:\"settings\";a:1003:{s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:1:{i:0;s:4:\"logo\";}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:0:{}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:1:{i:0;s:6:\"menu-1\";}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:0:{}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:4:\"flag\";b:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-preset-style]\";a:4:{s:7:\"default\";s:8:\"preset_4\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:5:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:2:{i:0;s:6:\"search\";i:1;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\"
(194,'theme_mods_prime-education','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:1721170627;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:10:\"footer-one\";a:0:{}s:10:\"footer-two\";a:0:{}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}}}}','no'),
(195,'widget_prime_education_social_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(196,'downloaded_font_files','a:30:{s:80:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2\";s:80:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2\";s:80:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2\";s:80:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2\";s:80:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2\";s:80:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2\";s:80:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2\";s:80:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2\";s:77:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2\";s:77:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2\";s:75:\"https://fonts.gstatic.com/s/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2\";s:75:\"/var/www/html/wp-content//fonts/montserrat/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2\";s:94:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2\";s:95:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2\";s:91:\"https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2\";s:92:\"/var/www/html/wp-content//fonts/open-sans/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2\";s:91:\"https
(201,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1722457099;s:7:\"checked\";a:3:{s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.2.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.5.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.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.8.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),
(204,'_site_transient_timeout_wp_font_collection_url_https://s.w.org/images/fonts/wp-6.5/collections/google-fonts-with-preview.json','1721257402','no');
INSERT INTO `wp_options` VALUES
(205,'_site_transient_wp_font_collection_url_https://s.w.org/images/fonts/wp-6.5/collections/google-fonts-with-preview.json','a:1:{s:13:\"font_families\";a:1595:{i:0;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:7:\"ABeeZee\";s:10:\"fontFamily\";s:19:\"ABeeZee, sans-serif\";s:4:\"slug\";s:7:\"abeezee\";s:8:\"fontFace\";a:2:{i:0;a:5:{s:3:\"src\";s:73:\"https://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6teukbcHCpE.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:7:\"ABeeZee\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/abeezee/abeezee-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:76:\"https://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCkkJUCGpG-GQ.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"italic\";s:10:\"fontFamily\";s:7:\"ABeeZee\";s:7:\"preview\";s:73:\"https://s.w.org/images/fonts/17.7/previews/abeezee/abeezee-400-italic.svg\";}}s:7:\"preview\";s:62:\"https://s.w.org/images/fonts/17.7/previews/abeezee/abeezee.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:1;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:13:\"ADLaM Display\";s:10:\"fontFamily\";s:26:\"\"ADLaM Display\", system-ui\";s:4:\"slug\";s:13:\"adlam-display\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:85:\"https://fonts.gstatic.com/s/adlamdisplay/v1/KFOhCnGXkPOLlhx6jD8_b1ZECsTYkYBPY3o.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:13:\"ADLaM Display\";s:7:\"preview\";s:85:\"https://s.w.org/images/fonts/17.7/previews/adlam-display/adlam-display-400-normal.svg\";}}s:7:\"preview\";s:74:\"https://s.w.org/images/fonts/17.7/previews/adlam-display/adlam-display.svg\";}s:10:\"categories\";a:1:{i:0;s:7:\"display\";}}i:2;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:11:\"AR One Sans\";s:10:\"fontFamily\";s:25:\"\"AR One Sans\", sans-serif\";s:4:\"slug\";s:11:\"ar-one-sans\";s:8:\"fontFace\";a:4:{i:0;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWn_9DWg3no5mBF4.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"AR One Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans-400-normal.svg\";}i:1;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWk39DWg3no5mBF4.woff2\";s:10:\"fontWeight\";s:3:\"500\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"AR One Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans-500-normal.svg\";}i:2;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWqH6DWg3no5mBF4.woff2\";s:10:\"fontWeight\";s:3:\"600\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"AR One Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans-600-normal.svg\";}i:3;a:5:{s:3:\"src\";s:114:\"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWpj6DWg3no5mBF4.woff2\";s:10:\"fontWeight\";s:3:\"700\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:11:\"AR One Sans\";s:7:\"preview\";s:81:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans-700-normal.svg\";}}s:7:\"preview\";s:70:\"https://s.w.org/images/fonts/17.7/previews/ar-one-sans/ar-one-sans.svg\";}s:10:\"categories\";a:1:{i:0;s:10:\"sans-serif\";}}i:3;a:2:{s:20:\"font_family_settings\";a:5:{s:4:\"name\";s:4:\"Abel\";s:10:\"fontFamily\";s:16:\"Abel, sans-serif\";s:4:\"slug\";s:4:\"abel\";s:8:\"fontFace\";a:1:{i:0;a:5:{s:3:\"src\";s:66:\"https://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6V1LPJp6qGI.woff2\";s:10:\"fontWeight\";s:3:\"400\";s:9:\"fontStyle\";s:6:\"normal\";s:10:\"fontFamily\";s:4:\"Abel\";s:7:\"preview\";s:67:\"https://s.w.org/images/fonts/17.7/previews/abel/abel-400-normal.svg\";}}s:7:\"preview\";s:56:\"https://s.w.org/images/fonts/17.7/previews/abel/abel.svg\";}s:10:\"c
INSERT INTO `wp_options` VALUES
(242,'_site_transient_timeout_available_translations','1721724856','no'),
(243,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.8\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.8/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.24/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-04-17 04:58:23\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.5/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.25/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-
(256,'_site_transient_timeout_browser_f1f6b29a6cc1f79a0fea05b885aa33d0','1722454998','no'),
(257,'_site_transient_browser_f1f6b29a6cc1f79a0fea05b885aa33d0','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"126.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
(276,'wp_calendar_block_has_published_posts','1','yes'),
(277,'_transient_timeout_feed_71a7765c3d553e44aaa308159b5a2ba6','1721894813','no'),
(278,'_transient_feed_71a7765c3d553e44aaa308159b5a2ba6','a:3:{s:3:\"url\";s:22:\"https://wordpress.org/\";s:8:\"feed_url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"build\";s:14:\"20211220193300\";}','no'),
(279,'_transient_timeout_feed_mod_71a7765c3d553e44aaa308159b5a2ba6','1721894813','no'),
(280,'_transient_feed_mod_71a7765c3d553e44aaa308159b5a2ba6','1721851613','no'),
(281,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1721894813','no'),
(282,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jul 2024 13:46:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.7-alpha-58804\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.6.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/07/wordpress-6-6-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Jul 2024 15:53:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17567\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:
(283,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1721894813','no'),
(284,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1721851613','no'),
(297,'_site_transient_timeout_browser_362d7fe3d8b2581bffa359f0eeda7106','1722502604','no'),
(298,'_site_transient_browser_362d7fe3d8b2581bffa359f0eeda7106','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"127.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
(351,'category_children','a:0:{}','yes'),
(362,'_site_transient_timeout_community-events-38e57b30d67a8f9a76bf3c053edb765c','1722389682','no'),
(363,'_site_transient_community-events-38e57b30d67a8f9a76bf3c053edb765c','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"192.168.122.0\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:42:\"WordPress Meetup Leipzig - #56 Performance\";s:3:\"url\";s:64:\"https://www.meetup.com/leipzig-wordpress-meetup/events/300172145\";s:6:\"meetup\";s:24:\"WordPress Meetup Leipzig\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Leipzig-WordPress-Meetup/\";s:4:\"date\";s:19:\"2024-08-06 19:00:00\";s:8:\"end_date\";s:19:\"2024-08-06 21:00:00\";s:20:\"start_unix_timestamp\";i:1722963600;s:18:\"end_unix_timestamp\";i:1722970800;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Leipzig, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:51.332104;s:9:\"longitude\";d:12.37352;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:22:\"Wir machen Sommerpause\";s:3:\"url\";s:57:\"https://www.meetup.com/wp-meetup-dresden/events/296301745\";s:6:\"meetup\";s:24:\"WordPress Meetup Dresden\";s:10:\"meetup_url\";s:41:\"https://www.meetup.com/wp-meetup-dresden/\";s:4:\"date\";s:19:\"2024-08-15 19:00:00\";s:8:\"end_date\";s:19:\"2024-08-15 22:00:00\";s:20:\"start_unix_timestamp\";i:1723741200;s:18:\"end_unix_timestamp\";i:1723752000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"DE\";s:8:\"latitude\";d:51.05;s:9:\"longitude\";d:13.74;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:36:\"WordPress Meetup Leipzig - Werkstatt\";s:3:\"url\";s:64:\"https://www.meetup.com/leipzig-wordpress-meetup/events/300172167\";s:6:\"meetup\";s:24:\"WordPress Meetup Leipzig\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Leipzig-WordPress-Meetup/\";s:4:\"date\";s:19:\"2024-09-03 19:00:00\";s:8:\"end_date\";s:19:\"2024-09-03 21:00:00\";s:20:\"start_unix_timestamp\";i:1725382800;s:18:\"end_unix_timestamp\";i:1725390000;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Leipzig, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:51.332104;s:9:\"longitude\";d:12.37352;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:18:\"Website Stammtisch\";s:3:\"url\";s:61:\"https://www.meetup.com/jena-wordpress-meetup/events/296061580\";s:6:\"meetup\";s:21:\"WordPress Meetup Jena\";s:10:\"meetup_url\";s:45:\"https://www.meetup.com/jena-wordpress-meetup/\";s:4:\"date\";s:19:\"2024-09-10 19:00:00\";s:8:\"end_date\";s:19:\"2024-09-10 21:00:00\";s:20:\"start_unix_timestamp\";i:1725987600;s:18:\"end_unix_timestamp\";i:1725994800;s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Jena, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:50.923218;s:9:\"longitude\";d:11.578077;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:63:\"#wpdrs № 68 | Gruppentreffen und „WordPress-Sprechstunde”\";s:3:\"url\";s:57:\"https://www.meetup.com/wp-meetup-dresden/events/296301753\";s:6:\"meetup\";s:24:\"WordPress Meetup Dresden\";s:10:\"meetup_url\";s:41:\"https://www.meetup.com/wp-meetup-dresden/\";s:4:\"date\";s:19:\"2024-09-19 19:00:00\";s:8:\"end_date\";s:19:\"2024-09-19 22:00:00\";s:20:\"start_unix_timestamp\";i:1726765200;s:18:\"end_unix_timestamp\";i:1726776000;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Dresden, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:51.02819;s:9:\"longitude\";d:13.736782;}}}}','no'),
(380,'_site_transient_timeout_browser_6763943b1a41a5e6ed472d74605f4a5d','1722983633','no'),
(381,'_site_transient_browser_6763943b1a41a5e6ed472d74605f4a5d','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"128.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
(386,'_site_transient_timeout_wp_remote_block_patterns_3fbfb3846dba361d8b2f89e73874ce2e','1722382650','no'),
(387,'_site_transient_wp_remote_block_patterns_3fbfb3846dba361d8b2f89e73874ce2e','a:44:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:514958;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Intro area with heading and image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1685:\"\n<div class=\"wp-block-group alignfull is-content-justification-center is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0\">\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-layout-flow wp-block-group-is-layout-flow\">\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-content-justification-left is-layout-constrained wp-container-core-column-is-layout-1 wp-block-column-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:40%\">\n<p>Exploring life&#8217;s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://pd.w.org/2023/07/44364b18862589f06.53436652.jpg\" alt=\"\" style=\"aspect-ratio:16/9;object-fit:cover\" /></figure>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:4:\"hero\";s:16:\"wpop_description\";s:93:\"Two columns of text, left with a heading and right with a paragraph, with a wide image below.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.5\";s:25:\"wpop_contains_block_types\";s:111:\"core/button,core/buttons,core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"about\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2422:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Contents\"},\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"450px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-
(388,'_site_transient_timeout_wp_remote_block_patterns_5bfa12814c45ff33ed7b4e18fe416e85','1722382651','no'),
(389,'_site_transient_wp_remote_block_patterns_5bfa12814c45ff33ed7b4e18fe416e85','a:13:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6666:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-core-social-links-is-layout-1 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185
(390,'_site_transient_timeout_wp_remote_block_patterns_bb313b9b234d55285039217a92c8dbb5','1722382651','no'),
(391,'_site_transient_wp_remote_block_patterns_bb313b9b234d55285039217a92c8dbb5','a:2:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:422286;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:15:\"Clients Section\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1124:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-3 wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group alignwide has-base-2-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"border-radius:16px;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\">\n<p class=\"has-text-align-center\">Weve worked with some of the best companies.</p>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-core-group-is-layout-1 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n\n\n\n\n\n\n\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:48:\"core/group,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:12:\"testimonials\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:3008:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|50\"}},\"border\":{\"radius\":\"16px\"}},\"backgroundColor\":\"base-2\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide has-base-2-background-color has-background\" style=\"border-radius:16px;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Weve worked with some of the best companies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\",\"padding\":{\"right\":\"0\",\"left\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:image {\"width\":\"150px\",\"aspectRatio\":\"4/3\",\"scale\":\"contain\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image is-resized\"><img alt=\"\" style=\"aspect-ratio:4/3;object-fit:contain;width:150px\" /></figure>\n<!-- /wp:image
(392,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1722457098;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{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:5:\"5.3.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.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.5.5\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{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.3.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:41:\"super-block-slider/super-block-slider.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/super-block-slider\";s:4:\"slug\";s:18:\"super-block-slider\";s:6:\"plugin\";s:41:\"super-block-slider/super-block-slider.php\";s:11:\"new_version\";s:5:\"2.7.7\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/super-block-slider/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/super-block-slider.2.7.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/super-block-slider/assets/icon.svg?rev=2915017\";s:3:\"svg\";s:63:\"https://ps.w.org/super-block-slider/assets/icon.svg?rev=2915017\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/super-block-slider/assets/banner-1544x500.png?rev=2977767\";s:2:\"1x\";s:73:\"https://ps.w.org/super-block-slider/assets/banner-772x250.png?rev=2977767\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}}}','no'),
(393,'_site_transient_timeout_g_url_details_response_019c7fa5013d0bf446ddcbaa2ce47bc8','1722382948','no'),
(394,'_site_transient_g_url_details_response_019c7fa5013d0bf446ddcbaa2ce47bc8','<!DOCTYPE html><html id=\"facebook\" class=\"_9dls __fb-light-mode\" lang=\"it\" dir=\"ltr\"><head><link data-default-icon=\"https://static.xx.fbcdn.net/rsrc.php/yT/r/aGT3gskzWBf.ico\" data-badged-icon=\"https://static.xx.fbcdn.net/rsrc.php/yD/r/UJj0tgk-RrT.ico\" rel=\"shortcut icon\" href=\"https://static.xx.fbcdn.net/rsrc.php/yT/r/aGT3gskzWBf.ico\" /><meta name=\"bingbot\" content=\"noarchive\" /><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,maximum-scale=2,shrink-to-fit=no\" /><meta property=\"al:android:app_name\" content=\"Facebook\" /><meta property=\"al:android:package\" content=\"com.facebook.katana\" /><meta property=\"al:android:url\" content=\"fb://profile/100064869960737\" /><meta property=\"al:ios:app_name\" content=\"Facebook\" /><meta property=\"al:ios:app_store_id\" content=\"284882215\" /><meta property=\"al:ios:url\" content=\"fb://profile/100064869960737\" /><meta name=\"apple-itunes-app\" content=\"app-id=284882215, app-argument=fb://profile/100064869960737\" /><link rel=\"canonical\" href=\"https://www.facebook.com/SDC.center1\" /><meta name=\"description\" content=\"&#x200e;&#x645;&#x631;&#x643;&#x632; &#x627;&#x644;&#x62a;&#x637;&#x648;&#x64a;&#x631; &#x627;&#x644;&#x645;&#x62c;&#x62a;&#x645;&#x639;&#x64a; - Social Development Center&#x200e;, Nablus. Mi piace: 5977 &#xb7; 113 persone ne parlano &#xb7; 414 persone sono state qui. Charitable Askar...\" /><link rel=\"alternate\" media=\"only screen and (max-width: 640px)\" href=\"https://m.facebook.com/SDC.center1\" /><link rel=\"alternate\" media=\"handheld\" href=\"https://m.facebook.com/SDC.center1\" /><meta property=\"og:type\" content=\"video.other\" /><meta property=\"og:title\" content=\"&#x645;&#x631;&#x643;&#x632; &#x627;&#x644;&#x62a;&#x637;&#x648;&#x64a;&#x631; &#x627;&#x644;&#x645;&#x62c;&#x62a;&#x645;&#x639;&#x64a; - Social Development Center | Nablus \" /><meta property=\"og:description\" content=\"&#x200e;&#x645;&#x631;&#x643;&#x632; &#x627;&#x644;&#x62a;&#x637;&#x648;&#x64a;&#x631; &#x627;&#x644;&#x645;&#x62c;&#x62a;&#x645;&#x639;&#x64a; - Social Development Center&#x200e;, Nablus. Mi piace: 5977 &#xb7; 113 persone ne parlano &#xb7; 414 persone sono state qui. Charitable Askar Association for Development and Community...\" /><meta property=\"og:url\" content=\"https://www.facebook.com/SDC.center1\" /><meta property=\"og:image:alt\" content=\"&#x645;&#x631;&#x643;&#x632; &#x627;&#x644;&#x62a;&#x637;&#x648;&#x64a;&#x631; &#x627;&#x644;&#x645;&#x62c;&#x62a;&#x645;&#x639;&#x64a; - Social Development Center | Nablus \" /><meta property=\"og:image\" content=\"https://scontent-fco2-1.xx.fbcdn.net/v/t39.30808-1/347789728_791661382360222_6403498540958457194_n.jpg?stp=dst-jpg_p720x720&amp;_nc_cat=109&amp;ccb=1-7&amp;_nc_sid=6de708&amp;_nc_ohc=AAYSQteIn00Q7kNvgH3zpeJ&amp;_nc_ht=scontent-fco2-1.xx&amp;oh=00_AYCq8ug8Q7z4LNJkKux1BgzDm6XE68L0TMbtkehiwQyisQ&amp;oe=66AF3DCB\" /><meta property=\"og:locale\" content=\"en_US\" /><meta name=\"referrer\" content=\"default\" id=\"meta_referrer\" /><meta name=\"robots\" content=\"noodp,noydir\" /><meta name=\"twitter:card\" content=\"summary\" /><meta name=\"twitter:title\" content=\"&#x645;&#x631;&#x643;&#x632; &#x627;&#x644;&#x62a;&#x637;&#x648;&#x64a;&#x631; &#x627;&#x644;&#x645;&#x62c;&#x62a;&#x645;&#x639;&#x64a; - Social Development Center | Nablus \" /><meta name=\"twitter:description\" content=\"&#x200e;&#x645;&#x631;&#x643;&#x632; &#x627;&#x644;&#x62a;&#x637;&#x648;&#x64a;&#x631; &#x627;&#x644;&#x645;&#x62c;&#x62a;&#x645;&#x639;&#x64a; - Social Development Center&#x200e;, Nablus. Mi piace: 5977 &#xb7; 113 persone ne parlano &#xb7; 414 persone sono state qui. Charitable Askar Association for Development and Community...\" /><meta name=\"twitter:image\" content=\"https://scontent-fco2-1.xx.fbcdn.net/v/t39.30808-1/347789728_791661382360222_6403498540958457194_n.jpg?stp=dst-jpg_p720x720&amp;_nc_cat=109&amp;ccb=1-7&amp;_nc_sid=6de708&amp;_nc_ohc=AAYSQteIn00Q7kNvgH3zpeJ&amp;_nc_ht=scontent-fco2-1.xx
(395,'_site_transient_timeout_g_url_details_response_6697ed9b238287c28fe33a278aae2586','1722382964','no'),
(396,'_site_transient_g_url_details_response_6697ed9b238287c28fe33a278aae2586','<!DOCTYPE html><html class=\"_9dls _ar44\" lang=\"en\" dir=\"ltr\"><head><link data-default-icon=\"https://static.cdninstagram.com/rsrc.php/v3/yI/r/VsNE-OHk_8a.png\" rel=\"icon\" sizes=\"192x192\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yI/r/VsNE-OHk_8a.png\" /><meta name=\"bingbot\" content=\"noarchive\" /><meta name=\"robots\" content=\"noarchive, noimageindex\" /><meta charset=\"utf-8\" /><meta name=\"apple-mobile-web-app-status-bar-style\" content=\"default\" /><meta name=\"mobile-web-app-capable\" content=\"yes\" /><meta id=\"viewport\" name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=2, viewport-fit=cover\" /><meta name=\"theme-color\" content=\"#ffffff\" /><link rel=\"apple-touch-icon\" sizes=\"76x76\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/r/lam-fZmwmvn.png\" /><link rel=\"apple-touch-icon\" sizes=\"120x120\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ys/r/aM-g435MtEX.png\" /><link rel=\"apple-touch-icon\" sizes=\"152x152\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yx/r/H1l_HHqi4p6.png\" /><link rel=\"apple-touch-icon\" sizes=\"167x167\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yB/r/-7Z_RkdLJUX.png\" /><link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yG/r/De-Dwpd5CHc.png\" /><link data-default-icon=\"https://static.cdninstagram.com/rsrc.php/y4/r/QaBlI0OZiks.ico\" rel=\"shortcut icon\" type=\"image/x-icon\" href=\"https://static.cdninstagram.com/rsrc.php/y4/r/QaBlI0OZiks.ico\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/\" hreflang=\"x-default\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=en\" hreflang=\"en\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=fr\" hreflang=\"fr\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=it\" hreflang=\"it\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=de\" hreflang=\"de\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=es\" hreflang=\"es\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=zh-cn\" hreflang=\"zh-cn\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=zh-tw\" hreflang=\"zh-tw\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=ja\" hreflang=\"ja\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=ko\" hreflang=\"ko\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=pt\" hreflang=\"pt\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=pt-br\" hreflang=\"pt-br\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=af\" hreflang=\"af\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=cs\" hreflang=\"cs\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=da\" hreflang=\"da\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=el\" hreflang=\"el\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=fi\" hreflang=\"fi\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=hr\" hreflang=\"hr\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=hu\" hreflang=\"hu\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=id\" hreflang=\"id\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charitable_askar_association/?hl=ms\" hreflang=\"ms\" /><link rel=\"alternate\" href=\"https://www.instagram.com/charit
(397,'_site_transient_timeout_g_url_details_response_00bcb3bc593541d37ef16a030807e430','1722382995','no'),
(398,'_site_transient_g_url_details_response_00bcb3bc593541d37ef16a030807e430','\n <!DOCTYPE html>\n <head>\n <title>x.com</title>\n <meta http-equiv=\"refresh\" content=\"0; url = https://twitter.com/x/migrate?tok=7b2265223a222f6d6164616e695f7461673134373032222c2274223a313732323337393339357d53660f69923f9be7607ceb29157619f7\" />\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover\">\n\n <link rel=\"preconnect\" href=\"//abs.twimg.com\">\n <link rel=\"dns-prefetch\" href=\"//abs.twimg.com\">\n <link rel=\"preconnect\" href=\"//api.twitter.com\">\n <link rel=\"dns-prefetch\" href=\"//api.twitter.com\">\n <link rel=\"preconnect\" href=\"//api.x.com\">\n <link rel=\"dns-prefetch\" href=\"//api.x.com\">\n <link rel=\"preconnect\" href=\"//pbs.twimg.com\">\n <link rel=\"dns-prefetch\" href=\"//pbs.twimg.com\">\n <link rel=\"preconnect\" href=\"//t.co\">\n <link rel=\"dns-prefetch\" href=\"//t.co\">\n <meta http-equiv=\"onion-location\" content=\"https://twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion/\" />\n <meta property=\"fb:app_id\" content=\"2231777543\" />\n <meta content=\"X (formerly Twitter)\" property=\"og:site_name\" />\n <meta name=\"google-site-verification\" content=\"600dQ0pZYsH2xOFt4hYmf5f5NpjCbWE_qk5Y04dErYM\" />\n <meta name=\"facebook-domain-verification\" content=\"x6sdcc8b5ju3bh8nbm59eswogvg6t1\" />\n <meta name=\"mobile-web-app-capable\" content=\"yes\" />\n <meta name=\"apple-mobile-web-app-title\" content=\"Twitter\" />\n <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"white\" />\n <link rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"/opensearch.xml\" title=\"Twitter\"/>\n <link rel=\"apple-touch-icon\" sizes=\"192x192\" href=\"https://abs.twimg.com/responsive-web/client-web/icon-ios.77d25eba.png\" />\n <meta name=\"twitter-site-verification\" content=\"AUVDWo1JpbjI22xjTe5JOvTAWuW9bK41CpxYxCeCjH97mEVp7rtiHcvdOaUksJrG\" />\n <link rel=\"manifest\" href=\"/manifest.json\" crossorigin=\"use-credentials\" />\n <link rel=\"mask-icon\" sizes=\"any\" href=\"https://abs.twimg.com/responsive-web/client-web/icon-svg.ea5ff4aa.svg\" color=\"#1D9BF0\" />\n <link rel=\"shortcut icon\" href=\"https://abs.twimg.com/favicons/twitter-pip.3.ico\" />\n <meta name=\"theme-color\" content=\"#000000\" />\n <script type=\"text/javascript\" charset=\"utf-8\" nonce=\"YmE0MjdlZDYtMDFkYi00Yzc2LWE0NTYtOWNmOTA3ZWNjOGRi\">document.location = \"https://twitter.com/x/migrate?tok=7b2265223a222f6d6164616e695f7461673134373032222c2274223a313732323337393339357d53660f69923f9be7607ceb29157619f7\"</script>\n </head>\n <body style=\"background: #000\">\n\n </body>\n </html>\n ','no'),
(401,'_site_transient_timeout_theme_roots','1722458899','no'),
(402,'_site_transient_theme_roots','a:3:{s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),
(403,'_site_transient_timeout_php_check_62d1f4c0457512909e21fe156d22a938','1723061900','no'),
(404,'_site_transient_php_check_62d1f4c0457512909e21fe156d22a938','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),
(405,'_site_transient_timeout_community-events-6718ef04d3f46d7f6ff6aabe77f33591','1722500301','no'),
(406,'_site_transient_community-events-6718ef04d3f46d7f6ff6aabe77f33591','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.18.0.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"Rome Core Days 2024\";s:3:\"url\";s:48:\"https://events.wordpress.org/rome/2024/coredays/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2024-11-08 00:00:00\";s:8:\"end_date\";s:19:\"2024-11-09 00:00:00\";s:20:\"start_unix_timestamp\";i:1731020400;s:18:\"end_unix_timestamp\";i:1731106800;s:8:\"location\";a:4:{s:8:\"location\";s:4:\"Rome\";s:7:\"country\";s:2:\"IT\";s:8:\"latitude\";d:41.9015232;s:9:\"longitude\";d:12.5033448;}}}}','no'),
(407,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1722500301','no');
INSERT INTO `wp_options` VALUES
(408,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jul 2024 13:46:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.7-alpha-58835\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.6.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/07/wordpress-6-6-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Jul 2024 15:53:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17567\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:
(409,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1722500301','no'),
(410,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1722457101','no'),
(411,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1722500303','no');
INSERT INTO `wp_options` VALUES
(412,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Gravatar: Better Links, Simple Messaging, Developer Tools, and More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=1976\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://blog.gravatar.com/2024/07/31/better-links-simple-messaging-developer-tools-and-more/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5967:\"<p>July&#8217;s been a whirlwind, and we&#8217;ve got some exciting updates to share. We&#8217;ve been working hard to make your profile for the web shine even brighter.</p>\n\n\n\n<p>Let&#8217;s dive in!</p>\n\n\n\n<h2 class=\"wp-block-heading\">Links That Pop</h2>\n\n\n\n<img tabindex=\"0\" width=\"2800\" height=\"1720\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/image-3.png\" alt=\"\" class=\"wp-image-1990\" />\n\n\n\n<p>Your Gravatar profile is evolving into the ultimate Link In Bio tool. Now you can add thumbnails and descriptions to your links, turning your profile into a dynamic showcase. </p>\n\n\n\n<p>Show off your latest project, highlight your blog, or feature your portfolio with style. It&#8217;s like giving your digital presence a makeover, all in one place.</p>\n\n\n\n<p>And here&#8217;s a little bonus: <a href=\"https://blog.gravatar.com/2024/06/26/link-your-gravatar-profile-with-a-free-custom-domain/\" target=\"_blank\" rel=\"noreferrer noopener\">claim your free .link domain</a>. It&#8217;s your chance to own your corner of the web. Pretty neat, right?</p>\n\n\n\n<p>Whether you&#8217;re a blogger, creator, student, or professional, your Gravatar profile is now your go-to spot for sharing everything about you.</p>\n\n\n\n<p><a href=\"https://gravatar.com/profile/links\" target=\"_blank\" rel=\"noreferrer noopener\">Add new links to your profile here.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Networking, Simplified</h2>\n\n\n\n<img tabindex=\"0\" width=\"2880\" height=\"2160\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/07/contact-sharing-nfc-1.png\" alt=\"\" class=\"wp-image-2003\" />\n\n\n\n<p>Remember the awkward dance of exchanging contact info at events or with a new acquaintance? Those days are over. </p>\n\n\n\
INSERT INTO `wp_options` VALUES
(413,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1722500303','no'),
(414,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1722457103','no'),
(415,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1722500303','no'),
(416,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/07/wordpress-6-6-1-maintenance-release/\'>WordPress 6.6.1 Maintenance Release</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/07/episode-84-a-wordpress-6-6-sneak-peek/\'>WP Briefing: Episode 84: A WordPress 6.6 Sneak Peek</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://blog.gravatar.com/2024/07/31/better-links-simple-messaging-developer-tools-and-more/\'>Gravatar: Better Links, Simple Messaging, Developer Tools, and More</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/130-elena-panciera-chiara-pennetta-on-making-the-web-for-the-deaf\'>WPTavern: #130 Elena Panciera &amp; Chiara Pennetta on Making the Web for the Deaf</a></li><li><a class=\'rsswidget\' href=\'https://akismet.com/blog/landing-page-conversion-rate/\'>Akismet: Landing Page Conversion Rates: 24 Proven Ways to Optimize Them</a></li></ul></div>','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_postmeta` (
2024-07-31 22:35:50 +02:00
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
2024-07-31 22:35:50 +02:00
) ENGINE=InnoDB AUTO_INCREMENT=411 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES
(1,2,'_wp_page_template','default'),
(2,3,'_wp_page_template','default'),
(3,5,'_edit_lock','1721167716:1'),
(9,8,'_customize_changeset_uuid','55488446-35f1-497b-8005-e04a6d2e75c1'),
(10,8,'site-content-layout','plain-container'),
(11,8,'theme-transparent-header-meta','enabled'),
(12,8,'site-sidebar-layout','no-sidebar'),
(13,8,'site-post-title','disabled'),
(14,9,'_edit_lock','1721168344:1'),
(15,10,'_wp_attached_file','2024/07/logo-1.png'),
(16,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:611;s:6:\"height\";i:611;s:4:\"file\";s:18:\"2024/07/logo-1.png\";s:8:\"filesize\";i:195936;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"logo-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72820;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo-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:25109;}s:13:\"ast-logo-size\";a:5:{s:4:\"file\";s:18:\"logo-1-133x133.png\";s:5:\"width\";i:133;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20749;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(17,10,'_wp_attachment_image_alt','logo of the charitable association'),
(18,12,'_menu_item_type','post_type'),
(19,12,'_menu_item_menu_item_parent','0'),
(20,12,'_menu_item_object_id','8'),
(21,12,'_menu_item_object','page'),
(22,12,'_menu_item_target',''),
(23,12,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(24,12,'_menu_item_xfn',''),
(25,12,'_menu_item_url',''),
(66,18,'_menu_item_type','post_type'),
(67,18,'_menu_item_menu_item_parent','0'),
(68,18,'_menu_item_object_id','8'),
(69,18,'_menu_item_object','page'),
(70,18,'_menu_item_target',''),
(71,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(72,18,'_menu_item_xfn',''),
(73,18,'_menu_item_url',''),
(74,19,'_menu_item_type','custom'),
(75,19,'_menu_item_menu_item_parent','0'),
(76,19,'_menu_item_object_id','19'),
(77,19,'_menu_item_object','custom'),
(78,19,'_menu_item_target',''),
(79,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(80,19,'_menu_item_xfn',''),
(81,19,'_menu_item_url','#services'),
(82,20,'_menu_item_type','custom'),
(83,20,'_menu_item_menu_item_parent','0'),
(84,20,'_menu_item_object_id','20'),
(85,20,'_menu_item_object','custom'),
(86,20,'_menu_item_target',''),
(87,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(88,20,'_menu_item_xfn',''),
(89,20,'_menu_item_url','#about'),
(90,21,'_menu_item_type','custom'),
(91,21,'_menu_item_menu_item_parent','0'),
(92,21,'_menu_item_object_id','21'),
(93,21,'_menu_item_object','custom'),
(94,21,'_menu_item_target',''),
(95,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(96,21,'_menu_item_xfn',''),
(97,21,'_menu_item_url','#reviews'),
(98,22,'_menu_item_type','custom'),
(99,22,'_menu_item_menu_item_parent','0'),
(100,22,'_menu_item_object_id','22'),
(101,22,'_menu_item_object','custom'),
(102,22,'_menu_item_target',''),
(103,22,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(104,22,'_menu_item_xfn',''),
(105,22,'_menu_item_url','#whyus'),
(106,23,'_menu_item_type','custom'),
(107,23,'_menu_item_menu_item_parent','0'),
(108,23,'_menu_item_object_id','23'),
(109,23,'_menu_item_object','custom'),
(110,23,'_menu_item_target',''),
(111,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(112,23,'_menu_item_xfn',''),
(113,23,'_menu_item_url','#contact'),
(114,9,'_wp_trash_meta_status','publish'),
(115,9,'_wp_trash_meta_time','1721168365'),
(116,24,'_wp_trash_meta_status','publish'),
(117,24,'_wp_trash_meta_time','1721168383'),
(118,25,'_edit_lock','1721168654:1'),
(119,25,'_wp_trash_meta_status','publish'),
(120,25,'_wp_trash_meta_time','1721168686'),
(121,26,'_edit_lock','1721168954:1'),
(122,26,'_wp_trash_meta_status','publish'),
(123,26,'_wp_trash_meta_time','1721168960'),
(124,3,'_wp_trash_meta_status','draft'),
(125,3,'_wp_trash_meta_time','1721168998'),
(126,3,'_wp_desired_post_slug','privacy-policy'),
(127,2,'_wp_trash_meta_status','publish'),
(128,2,'_wp_trash_meta_time','1721168998'),
(129,2,'_wp_desired_post_slug','sample-page'),
(130,29,'_edit_lock','1722181764:2'),
(131,31,'_edit_lock','1721850739:2'),
(132,34,'_edit_lock','1721850948:2'),
(133,36,'_edit_lock','1721851153:2'),
(134,38,'_edit_lock','1721850719:2'),
(135,40,'_edit_lock','1721904531:2'),
(140,43,'_wp_attached_file','2024/07/image-2.png'),
(141,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:316;s:6:\"height\";i:160;s:4:\"file\";s:19:\"2024/07/image-2.png\";s:8:\"filesize\";i:52257;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-2-300x152.png\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22291;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(146,46,'_wp_attached_file','2024/07/image-5.png'),
(147,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:19:\"2024/07/image-5.png\";s:8:\"filesize\";i:72220;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(148,47,'_wp_attached_file','2024/07/image-6.png'),
(149,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:486;s:6:\"height\";i:303;s:4:\"file\";s:19:\"2024/07/image-6.png\";s:8:\"filesize\";i:5269;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-6-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1857;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1183;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(150,48,'_wp_attached_file','2024/07/image-7.png'),
(151,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:474;s:6:\"height\";i:272;s:4:\"file\";s:19:\"2024/07/image-7.png\";s:8:\"filesize\";i:3824;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-7-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:961;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(152,49,'_wp_attached_file','2024/07/image-8.png'),
(153,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:255;s:6:\"height\";i:170;s:4:\"file\";s:19:\"2024/07/image-8.png\";s:8:\"filesize\";i:587;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"image-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(156,51,'_wp_attached_file','2024/07/image-10.png'),
(157,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:583;s:6:\"height\";i:142;s:4:\"file\";s:20:\"2024/07/image-10.png\";s:8:\"filesize\";i:39114;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-10-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13809;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"image-10-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1522;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(160,53,'_wp_attached_file','2024/07/image-12.png'),
(161,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:549;s:6:\"height\";i:168;s:4:\"file\";s:20:\"2024/07/image-12.png\";s:8:\"filesize\";i:49719;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image-12-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16389;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"image-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:466;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(162,55,'_edit_lock','1722181552:2'),
(163,57,'_edit_lock','1721170244:1'),
(164,58,'_menu_item_type','post_type'),
(165,58,'_menu_item_menu_item_parent','0'),
(166,58,'_menu_item_object_id','55'),
(167,58,'_menu_item_object','page'),
(168,58,'_menu_item_target',''),
(169,58,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(170,58,'_menu_item_xfn',''),
(171,58,'_menu_item_url',''),
(172,57,'_wp_trash_meta_status','publish'),
(173,57,'_wp_trash_meta_time','1721170250'),
(174,59,'_customize_draft_post_name','home'),
(175,59,'_customize_changeset_uuid','ad161b47-abc0-4a0f-a9a4-9f9c547d1ba7'),
(176,60,'_wp_trash_meta_status','publish'),
(177,60,'_wp_trash_meta_time','1721170550'),
(178,61,'_customize_draft_post_name','about-us'),
(179,61,'_customize_changeset_uuid','3e144002-f334-43b0-be9d-aa5a178bad3a'),
(180,38,'_edit_last','1'),
(181,38,'_wp_page_template','default'),
(182,31,'_edit_last','1'),
(183,31,'_wp_page_template','default'),
(184,34,'_edit_last','1'),
(185,34,'_wp_page_template','default'),
(186,40,'_edit_last','1'),
(187,40,'_wp_page_template','default'),
(188,36,'_edit_last','1'),
(189,36,'_wp_page_template','default'),
(190,29,'_edit_last','1'),
(191,29,'_wp_page_template','default'),
(192,64,'origin','theme'),
(193,70,'origin','theme'),
(194,73,'_edit_lock','1721246563:1'),
(195,74,'_menu_item_type','post_type'),
(196,74,'_menu_item_menu_item_parent','0'),
(197,74,'_menu_item_object_id','73'),
(198,74,'_menu_item_object','page'),
(199,74,'_menu_item_target',''),
(200,74,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(201,74,'_menu_item_xfn',''),
(202,74,'_menu_item_url',''),
(203,76,'_edit_lock','1721853495:2'),
(204,78,'_edit_lock','1722457961:1'),
(205,80,'_edit_lock','1722457910:1'),
(206,82,'_edit_lock','1721854964:2'),
(207,84,'_edit_lock','1721247207:1'),
(208,85,'_edit_lock','1721247221:1'),
(209,86,'_edit_lock','1721247242:1'),
(210,87,'_menu_item_type','post_type'),
(211,87,'_menu_item_menu_item_parent','0'),
(212,87,'_menu_item_object_id','86'),
(213,87,'_menu_item_object','page'),
(214,87,'_menu_item_target',''),
(215,87,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(216,87,'_menu_item_xfn',''),
(217,87,'_menu_item_url',''),
(218,89,'_edit_lock','1721247277:1'),
(219,91,'_edit_lock','1721855817:2'),
(220,93,'_edit_lock','1721247330:1'),
(221,95,'_edit_lock','1721247344:1'),
(222,96,'_menu_item_type','post_type'),
(223,96,'_menu_item_menu_item_parent','0'),
(224,96,'_menu_item_object_id','95'),
(225,96,'_menu_item_object','page'),
(226,96,'_menu_item_target',''),
(227,96,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(228,96,'_menu_item_xfn',''),
(229,96,'_menu_item_url',''),
(230,98,'_edit_lock','1722346960:2'),
(231,99,'_menu_item_type','post_type'),
(232,99,'_menu_item_menu_item_parent','0'),
(233,99,'_menu_item_object_id','98'),
(234,99,'_menu_item_object','page'),
(235,99,'_menu_item_target',''),
(236,99,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(237,99,'_menu_item_xfn',''),
(238,99,'_menu_item_url',''),
(239,101,'_edit_lock','1721247387:1'),
(240,102,'_menu_item_type','post_type'),
(241,102,'_menu_item_menu_item_parent','0'),
(242,102,'_menu_item_object_id','101'),
(243,102,'_menu_item_object','page'),
(244,102,'_menu_item_target',''),
(245,102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(246,102,'_menu_item_xfn',''),
(247,102,'_menu_item_url',''),
(248,104,'_edit_last','1'),
(249,104,'_wp_page_template','default'),
(250,106,'_menu_item_type','post_type'),
(251,106,'_menu_item_menu_item_parent','0'),
(252,106,'_menu_item_object_id','104'),
(253,106,'_menu_item_object','page'),
(254,106,'_menu_item_target',''),
(255,106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(256,106,'_menu_item_xfn',''),
(257,106,'_menu_item_url',''),
(258,104,'_edit_lock','1721851711:2'),
(262,119,'footnotes',''),
(263,120,'_wp_attached_file','2024/07/Ethical-Charter_page-0005.jpg'),
(264,122,'_wp_attached_file','2024/07/Ethical-Charter_page-0001.jpg'),
(265,121,'_wp_attached_file','2024/07/Ethical-Charter_page-0002.jpg'),
(266,123,'_wp_attached_file','2024/07/Ethical-Charter_page-0006.jpg'),
(267,120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:37:\"2024/07/Ethical-Charter_page-0005.jpg\";s:8:\"filesize\";i:680885;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0005-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15281;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Ethical-Charter_page-0005-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110539;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0005-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5368;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0005-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102956;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Ethical-Charter_page-0005-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(268,121,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:37:\"2024/07/Ethical-Charter_page-0002.jpg\";s:8:\"filesize\";i:710363;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0002-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15720;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Ethical-Charter_page-0002-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116408;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5634;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0002-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110820;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Ethical-Charter_page-0002-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207218;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(269,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:37:\"2024/07/Ethical-Charter_page-0001.jpg\";s:8:\"filesize\";i:759966;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0001-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19062;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Ethical-Charter_page-0001-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125209;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6906;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0001-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120379;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Ethical-Charter_page-0001-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224371;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(270,124,'_wp_attached_file','2024/07/Ethical-Charter_page-0007.jpg'),
(271,123,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:37:\"2024/07/Ethical-Charter_page-0006.jpg\";s:8:\"filesize\";i:744800;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0006-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16572;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Ethical-Charter_page-0006-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122965;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6194;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0006-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116880;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Ethical-Charter_page-0006-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:217817;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(272,125,'_wp_attached_file','2024/07/Ethical-Charter_page-0003.jpg'),
(273,126,'_wp_attached_file','2024/07/Ethical-Charter_page-0004.jpg'),
(274,124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:37:\"2024/07/Ethical-Charter_page-0007.jpg\";s:8:\"filesize\";i:786455;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0007-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17102;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Ethical-Charter_page-0007-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131685;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0007-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:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0007-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123633;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Ethical-Charter_page-0007-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234312;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(275,125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:37:\"2024/07/Ethical-Charter_page-0003.jpg\";s:8:\"filesize\";i:784762;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0003-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17223;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Ethical-Charter_page-0003-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130366;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6232;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0003-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123390;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Ethical-Charter_page-0003-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229541;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(276,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:37:\"2024/07/Ethical-Charter_page-0004.jpg\";s:8:\"filesize\";i:722889;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0004-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15900;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Ethical-Charter_page-0004-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5610;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Ethical-Charter_page-0004-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112029;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Ethical-Charter_page-0004-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209652;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(277,128,'footnotes',''),
(278,130,'footnotes',''),
(279,132,'footnotes',''),
(284,8,'_edit_lock','1722457746:1'),
(285,142,'footnotes',''),
(286,145,'footnotes',''),
(287,146,'_wp_attached_file','2024/07/IMG-20240725-WA0004.jpg'),
(288,146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:719;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0004.jpg\";s:8:\"filesize\";i:99267;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0004-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15649;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0004-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6920;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0004-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68490;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289,147,'_wp_attached_file','2024/07/IMG-20240725-WA0005.jpg'),
(290,147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0005.jpg\";s:8:\"filesize\";i:306529;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0005-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14509;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0005-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97514;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0005-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:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0005-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62131;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0005-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179816;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291,148,'_wp_attached_file','2024/07/IMG-20240725-WA0006.jpg'),
(292,148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0006.jpg\";s:8:\"filesize\";i:479189;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0006-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22879;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0006-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175127;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9156;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0006-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175127;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"IMG-20240725-WA0006-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:329599;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293,149,'_wp_attached_file','2024/07/IMG-20240725-WA0016.jpg'),
(294,149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0016.jpg\";s:8:\"filesize\";i:487419;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0016-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21007;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0016-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168971;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0016-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8558;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0016-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102488;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"IMG-20240725-WA0016-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:330983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(295,150,'_wp_attached_file','2024/07/IMG-20240725-WA0017.jpg'),
(296,150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0017.jpg\";s:8:\"filesize\";i:304314;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0017-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19430;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0017-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125101;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0017-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8477;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0017-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81425;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"IMG-20240725-WA0017-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223513;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(297,151,'_wp_attached_file','2024/07/IMG-20240725-WA0018.jpg'),
(298,151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0018.jpg\";s:8:\"filesize\";i:265275;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0018-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17366;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0018-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0018-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7130;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0018-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87512;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"IMG-20240725-WA0018-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282431;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(299,152,'_wp_attached_file','2024/07/IMG-20240725-WA0019.jpg'),
(300,152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0019.jpg\";s:8:\"filesize\";i:310909;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0019-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19848;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0019-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156298;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0019-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8004;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0019-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97855;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(301,153,'_wp_attached_file','2024/07/IMG-20240725-WA0020.jpg'),
(302,153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0020.jpg\";s:8:\"filesize\";i:490000;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0020-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20956;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0020-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166737;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0020-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7977;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0020-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100871;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"IMG-20240725-WA0020-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:326827;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(303,154,'_wp_attached_file','2024/07/IMG-20240725-WA0021.jpg'),
(304,154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:609;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0021.jpg\";s:8:\"filesize\";i:35775;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0021-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7581;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0021-1024x577.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49067;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4932;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0021-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31662;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(305,155,'_wp_attached_file','2024/07/IMG-20240725-WA0022.jpg'),
(306,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0022.jpg\";s:8:\"filesize\";i:205581;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0022-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12682;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20240725-WA0022-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0022-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:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0022-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45883;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"IMG-20240725-WA0022-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122300;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(307,156,'_wp_attached_file','2024/07/IMG-20240725-WA0023.jpg'),
(308,156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:978;s:6:\"height\";i:963;s:4:\"file\";s:31:\"2024/07/IMG-20240725-WA0023.jpg\";s:8:\"filesize\";i:116383;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0023-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20240725-WA0023-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:31:\"IMG-20240725-WA0023-768x756.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:756;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110017;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(309,157,'_wp_attached_file','2024/07/Logo-Askar-Association-with-background.png'),
(310,157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1072;s:6:\"height\";i:856;s:4:\"file\";s:50:\"2024/07/Logo-Askar-Association-with-background.png\";s:8:\"filesize\";i:543364;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Logo-Askar-Association-with-background-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54218;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Logo-Askar-Association-with-background-1024x818.png\";s:5:\"width\";i:1024;s:6:\"height\";i:818;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:385030;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Logo-Askar-Association-with-background-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25417;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Logo-Askar-Association-with-background-768x613.png\";s:5:\"width\";i:768;s:6:\"height\";i:613;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242648;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(311,158,'_wp_attached_file','2024/07/Logo-Askar-Association-no-backgroud.png'),
(312,158,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:559;s:6:\"height\";i:446;s:4:\"file\";s:47:\"2024/07/Logo-Askar-Association-no-backgroud.png\";s:8:\"filesize\";i:140820;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Logo-Askar-Association-no-backgroud-300x239.png\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49290;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Logo-Askar-Association-no-backgroud-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24280;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(313,159,'_wp_attached_file','2024/07/Al-Quds-Open-University.jpg'),
(314,159,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:224;s:6:\"height\";i:225;s:4:\"file\";s:35:\"2024/07/Al-Quds-Open-University.jpg\";s:8:\"filesize\";i:19478;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Al-Quds-Open-University-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9951;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(315,160,'_wp_attached_file','2024/07/An-Najah-National-University.png'),
(316,160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:292;s:6:\"height\";i:292;s:4:\"file\";s:40:\"2024/07/An-Najah-National-University.png\";s:8:\"filesize\";i:40216;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"An-Najah-National-University-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27569;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(317,161,'_wp_attached_file','2024/07/Arab-American-University.png'),
(318,161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:36:\"2024/07/Arab-American-University.png\";s:8:\"filesize\";i:9471;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Arab-American-University-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22716;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(319,162,'_wp_attached_file','2024/07/Deeretna-Center.jpg'),
(320,162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:226;s:6:\"height\";i:223;s:4:\"file\";s:27:\"2024/07/Deeretna-Center.jpg\";s:8:\"filesize\";i:10405;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Deeretna-Center-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5001;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(321,163,'_wp_attached_file','2024/07/Ilham-Al-Khair.jpg'),
(322,163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:224;s:6:\"height\";i:224;s:4:\"file\";s:26:\"2024/07/Ilham-Al-Khair.jpg\";s:8:\"filesize\";i:11284;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Ilham-Al-Khair-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:\"0\";s:8:\"keywords\";a:0:{}}}'),
(323,164,'_wp_attached_file','2024/07/INJAZ.jpg'),
(324,164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:301;s:6:\"height\";i:470;s:4:\"file\";s:17:\"2024/07/INJAZ.jpg\";s:8:\"filesize\";i:9965;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"INJAZ-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"INJAZ-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3507;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(325,165,'_wp_attached_file','2024/07/Palestine-Red-Cross-Society.png'),
(326,165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:39:\"2024/07/Palestine-Red-Cross-Society.png\";s:8:\"filesize\";i:30766;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Palestine-Red-Cross-Society-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18164;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(327,166,'_wp_attached_file','2024/07/Psico-social-counceling-for-women.jpg'),
(328,166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:45:\"2024/07/Psico-social-counceling-for-women.jpg\";s:8:\"filesize\";i:18181;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Psico-social-counceling-for-women-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8971;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(329,167,'_wp_attached_file','2024/07/PWWSD.png'),
(330,167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:283;s:6:\"height\";i:283;s:4:\"file\";s:17:\"2024/07/PWWSD.png\";s:8:\"filesize\";i:83588;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"PWWSD-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(333,169,'_wp_attached_file','2024/07/Secour-Islamique.jpg'),
(334,169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:216;s:6:\"height\";i:94;s:4:\"file\";s:28:\"2024/07/Secour-Islamique.jpg\";s:8:\"filesize\";i:6647;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Secour-Islamique-150x94.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4706;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(335,170,'_wp_attached_file','2024/07/Seeds-for-development-and-Culture.jpg'),
(336,170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:45:\"2024/07/Seeds-for-development-and-Culture.jpg\";s:8:\"filesize\";i:12750;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Seeds-for-development-and-Culture-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6187;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(339,172,'_wp_attached_file','2024/07/Tanweer.jpg'),
(340,172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:357;s:6:\"height\";i:141;s:4:\"file\";s:19:\"2024/07/Tanweer.jpg\";s:8:\"filesize\";i:18454;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Tanweer-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Tanweer-150x141.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8273;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(341,173,'_wp_attached_file','2024/07/Womens-studies-Center.png'),
(342,173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:33:\"2024/07/Womens-studies-Center.png\";s:8:\"filesize\";i:4286;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Womens-studies-Center-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9274;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(343,174,'_wp_attached_file','2024/07/Yafa.jpg'),
(344,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:16:\"2024/07/Yafa.jpg\";s:8:\"filesize\";i:17135;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Yafa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7729;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(347,176,'_wp_attached_file','2024/07/Family-defence-society.png'),
(348,176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:912;s:6:\"height\";i:624;s:4:\"file\";s:34:\"2024/07/Family-defence-society.png\";s:8:\"filesize\";i:166249;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Family-defence-society-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29890;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Family-defence-society-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18134;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Family-defence-society-768x525.png\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129148;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(349,177,'footnotes',''),
(350,178,'_wp_attached_file','2024/07/PWWSD.webp'),
(351,178,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:18:\"2024/07/PWWSD.webp\";s:8:\"filesize\";i:11442;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:{}}}'),
(352,179,'_wp_attached_file','2024/07/PWWSD-1.png'),
(353,179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:257;s:6:\"height\";i:215;s:4:\"file\";s:19:\"2024/07/PWWSD-1.png\";s:8:\"filesize\";i:40306;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"PWWSD-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:27589;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(371,188,'_wp_attached_file','2024/07/SCD.jpg'),
(372,188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:269;s:6:\"height\";i:182;s:4:\"file\";s:15:\"2024/07/SCD.jpg\";s:8:\"filesize\";i:19747;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"SCD-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6762;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(373,189,'_wp_attached_file','2024/07/SCD-1.jpg'),
(374,189,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:269;s:6:\"height\";i:182;s:4:\"file\";s:17:\"2024/07/SCD-1.jpg\";s:8:\"filesize\";i:19747;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"SCD-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:6762;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(375,190,'_wp_attached_file','2024/07/Tamer-Institute.jpg'),
(376,190,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:290;s:6:\"height\";i:92;s:4:\"file\";s:27:\"2024/07/Tamer-Institute.jpg\";s:8:\"filesize\";i:8099;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Tamer-Institute-150x92.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2702;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(382,193,'_wp_attached_file','2024/07/Tamer-Institute-1.jpg'),
(383,193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:263;s:6:\"height\";i:186;s:4:\"file\";s:29:\"2024/07/Tamer-Institute-1.jpg\";s:8:\"filesize\";i:10671;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Tamer-Institute-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:4005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(384,194,'_wp_attached_file','2024/07/Youth-vision-soc.jpg'),
(385,194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:107;s:4:\"file\";s:28:\"2024/07/Youth-vision-soc.jpg\";s:8:\"filesize\";i:9835;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:{}}}'),
(395,200,'_wp_attached_file','2024/07/Representative-Office-of-Ireland-in-Palestine-1-scaled.jpg'),
(396,200,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1239;s:4:\"file\";s:66:\"2024/07/Representative-Office-of-Ireland-in-Palestine-1-scaled.jpg\";s:8:\"filesize\";i:175964;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"Representative-Office-of-Ireland-in-Palestine-1-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7963;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"Representative-Office-of-Ireland-in-Palestine-1-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48516;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Representative-Office-of-Ireland-in-Palestine-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:5706;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"Representative-Office-of-Ireland-in-Palestine-1-768x372.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31163;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"Representative-Office-of-Ireland-in-Palestine-1-1536x743.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:743;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87994;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:60:\"Representative-Office-of-Ireland-in-Palestine-1-2048x991.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:991;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126798;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:51:\"Representative-Office-of-Ireland-in-Palestine-1.jpg\";}'),
(397,201,'_wp_attached_file','2024/07/PGS.jpg'),
(398,201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:253;s:4:\"file\";s:15:\"2024/07/PGS.jpg\";s:8:\"filesize\";i:27527;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"PGS-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"PGS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8742;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(399,204,'_wp_attached_file','2024/07/Askar-Association-Logo.png'),
(400,204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2024/07/Askar-Association-Logo.png\";s:8:\"filesize\";i:131084;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Askar-Association-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:55515;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Askar-Association-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:19149;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(401,205,'footnotes',''),
(402,8,'_wp_page_template','page-wide'),
(405,217,'origin','theme'),
(406,224,'origin','theme'),
(407,225,'_edit_lock','1722379891:1'),
(409,250,'footnotes',''),
(410,253,'footnotes','');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_posts` (
2024-07-31 22:35:50 +02:00
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint unsigned NOT NULL DEFAULT '0',
2024-07-17 22:49:32 +02:00
`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',
2024-07-31 22:35:50 +02:00
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
2024-07-17 22:49:32 +02:00
`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',
2024-07-31 22:35:50 +02:00
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint NOT NULL DEFAULT '0',
2024-07-17 22:49:32 +02:00
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`)
2024-07-31 22:35:50 +02:00
) ENGINE=InnoDB AUTO_INCREMENT=256 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES
(1,1,'2024-07-16 21:54:43','2024-07-16 21:54:43','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2024-07-16 21:54:43','2024-07-16 21:54:43','',0,'http://localhost:8080/?p=1',0,'post','',1),
(2,1,'2024-07-16 21:54:43','2024-07-16 21:54:43','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:8080/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','trash','closed','open','','sample-page__trashed','','','2024-07-16 22:29:58','2024-07-16 22:29:58','',0,'http://localhost:8080/?page_id=2',0,'page','',0),
(3,1,'2024-07-16 21:54:43','2024-07-16 21:54:43','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://localhost:8080.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading
(4,1,'2024-07-16 21:56:15','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-07-16 21:56:15','0000-00-00 00:00:00','',0,'http://localhost:8080/?p=4',0,'post','',0),
(5,1,'2024-07-16 22:10:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-07-16 22:10:34','0000-00-00 00:00:00','',0,'http://localhost:8080/?p=5',0,'wp_block','',0),
(6,1,'2024-07-16 22:10:35','2024-07-16 22:10:35','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-astra','','','2024-07-16 22:10:35','2024-07-16 22:10:35','',0,'http://localhost:8080/?p=6',0,'wp_global_styles','',0),
(8,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30rem\",\"sliderWidthValue\":\"200%\",\"sliderWidthEditorValue\":\"200%\",\"editorCurrentImageValue\":{\"imageWidth\":1080,\"imageHeight\":719}} -->\n<div style=\"height:30rem;width:200%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719},\"backgroundSizeValue\":\"contain\",\"focalPoint\":{\"x\":0.49,\"y\":0.22},\"contentVerticalAlignValue\":\"is-vertical-bottom\",\"lazyloadValue\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active is-vertical-bottom\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"lazy\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:contain;object-position:49% 22%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"backgroundSizeValue\":\"contain\",\"focalPoint\":{\"x\":0.49,\"y\":0.47},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\",\"lazyloadValue\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" d
(9,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','{\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 7,\n 8\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:11:03\"\n },\n \"nav_menu[-1]\": {\n \"value\": {\n \"name\": \"Primary\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-1]\": {\n \"value\": {\n \"object_id\": 8,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 0,\n \"type\": \"post_type\",\n \"title\": \"Home\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-2]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Services\",\n \"url\": \"#services\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-3]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"custom\",\n \"title\": \"About\",\n \"url\": \"#about\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-4]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"custom\",\n \"title\": \"Reviews\",\n \"url\": \"#reviews\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:24\"\n },\n \"nav_menu_item[-5]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"custom\",\n \"title\": \"Why Us\",\n \"url\": \"#whyus\",\n \"target\": \"\",\n \"attr
(10,1,'2024-07-16 22:17:43','2024-07-16 22:17:43','','logo','','inherit','open','closed','','logo','','','2024-07-16 22:18:00','2024-07-16 22:18:00','',0,'http://localhost:8080/wp-content/uploads/2024/07/logo-1.png',0,'attachment','image/png',0),
(11,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','<!-- wp:cover {\"minHeight\":720,\"minHeightUnit\":\"px\",\"customGradient\":\"linear-gradient(35deg,rgb(6,0,151) 0%,rgb(130,4,255) 73%,rgb(193,15,255) 100%)\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:720px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(35deg,rgb(6,0,151) 0%,rgb(130,4,255) 73%,rgb(193,15,255) 100%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":118,\"mediaLink\":\"\",\"mediaType\":\"image\",\"mediaWidth\":43,\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:auto 43%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"left\",\"level\":1,\"textColor\":\"white\"} -->\n<h1 class=\"has-text-align-left has-white-color has-text-color\">Your Idea Matters!</h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pulvinar enim ac tortor nulla facilisi tristique facilisi <br>elementum sollicitudin eget lorem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\">Make a Website</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div><figure class=\"wp-block-media-text__media\"><img src=\"http://localhost:8080/wp-content/themes/astra/inc/assets/images/starter-content/hero-img.svg\" alt=\"\" class=\"wp-image-118 size-full\"/></figure></div>\n<!-- /wp:media-text --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0px\"}}},\"backgroundColor\":\"ast-global-color-5\",\"layout\":{\"inherit\":false,\"contentSize\":\"1200px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-ast-global-color-5-background-color has-background\" style=\"padding-bottom:0px\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"style\":{\"spacing\":{\"blockGap\":\"40px\"}}} -->\n<div class=\"wp-block-columns are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"style\":{\"spacing\":{\"blockGap\":\"8px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:image {\"id\":134,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/themes/astra/inc/assets/images/starter-content/building.svg\" alt=\"\" class=\"wp-image-134\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"style\":{\"spacing\":{\"margin\":{\"top\":\"16px\"}}}} -->\n<h3 class=\"has-text-align-left\" style=\"margin-top:16px\">Local Business</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Lorem ipsum dolor consectetur adipiscing elit eiusmod.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"style\":{\"spacing\":{\"blockGap\":\"8px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:image {\"id\":135,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/themes/astra/inc/assets/images/starter-content/shopping-bag.svg\" alt=\"\" class=\"wp-image-135\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"level\":3,\"style\":{\"spacing\":{\"margin\":{\"top\":\"16px\"}}}} -->\n<h3 class=\"has-text-align-left\" style=\"margin-top:16px\">Online Store</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\
(12,1,'2024-07-16 22:44:21','2024-07-16 22:19:24',' ','','','publish','closed','closed','','12','','','2024-07-16 22:44:21','2024-07-16 22:44:21','',0,'http://localhost:8080/?p=12',1,'nav_menu_item','',0),
(18,1,'2024-07-16 22:19:24','2024-07-16 22:19:24',' ','','','publish','closed','closed','','18','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=18',0,'nav_menu_item','',0),
(19,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','Services','','publish','closed','closed','','services-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=19',1,'nav_menu_item','',0),
(20,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','About','','publish','closed','closed','','about-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=20',2,'nav_menu_item','',0),
(21,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','Reviews','','publish','closed','closed','','reviews-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=21',3,'nav_menu_item','',0),
(22,1,'2024-07-16 22:19:24','2024-07-16 22:19:24','','Why Us','','publish','closed','closed','','why-us-2','','','2024-07-16 22:19:24','2024-07-16 22:19:24','',0,'http://localhost:8080/?p=22',4,'nav_menu_item','',0),
(23,1,'2024-07-16 22:19:25','2024-07-16 22:19:25','','Contact','','publish','closed','closed','','contact-2','','','2024-07-16 22:19:25','2024-07-16 22:19:25','',0,'http://localhost:8080/?p=23',5,'nav_menu_item','',0),
(24,1,'2024-07-16 22:19:43','2024-07-16 22:19:43','{\n \"astra-settings[ast-header-responsive-logo-width]\": {\n \"value\": {\n \"desktop\": 133,\n \"tablet\": \"\",\n \"mobile\": \"\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:19:43\"\n }\n}','','','trash','closed','closed','','36b13d0a-3887-445d-95fc-92b7f45127ba','','','2024-07-16 22:19:43','2024-07-16 22:19:43','',0,'http://localhost:8080/?p=24',0,'customize_changeset','',0),
(25,1,'2024-07-16 22:24:46','2024-07-16 22:24:46','{\n \"astra-settings[header-desktop-items]\": {\n \"value\": {\n \"popup\": {\n \"popup_content\": [\n \"mobile-menu\"\n ]\n },\n \"above\": {\n \"above_left\": [],\n \"above_left_center\": [],\n \"above_center\": [\n \"logo\"\n ],\n \"above_right_center\": [],\n \"above_right\": []\n },\n \"primary\": {\n \"primary_left\": [],\n \"primary_left_center\": [],\n \"primary_center\": [\n \"menu-1\"\n ],\n \"primary_right_center\": [],\n \"primary_right\": []\n },\n \"below\": {\n \"below_left\": [],\n \"below_left_center\": [],\n \"below_center\": [],\n \"below_right_center\": [],\n \"below_right\": []\n },\n \"flag\": true\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-preset-style]\": {\n \"value\": \"preset_4\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-mobile-items]\": {\n \"value\": {\n \"popup\": {\n \"popup_content\": [\n \"search\",\n \"mobile-menu\"\n ]\n },\n \"above\": {\n \"above_left\": [],\n \"above_center\": [],\n \"above_right\": []\n },\n \"primary\": {\n \"primary_left\": [\n \"logo\"\n ],\n \"primary_center\": [],\n \"primary_right\": [\n \"mobile-trigger\"\n ]\n },\n \"below\": {\n \"below_left\": [],\n \"below_center\": [],\n \"below_right\": []\n },\n \"flag\": true\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[hba-header-separator]\": {\n \"value\": \"0\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-button1-text]\": {\n \"value\": \"Sign up\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-html-1]\": {\n \"value\": \"<a href=\\\"#\\\">Log in</a>\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[header-menu1-submenu-width]\": {\n \"value\": 886,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:23:12\"\n },\n \"astra-settings[button-preset-style]\": {\n \"value\": \"button_03\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:24:12\"\n },\n \"astra-settings[theme-button-padding]\": {\n \"value\": {\n \"desktop\": {\n \"top\": 10,\n \"right\": 20,\n \"bottom\": 10,\n \"left\": 20\n },\n \"tablet\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"mobile\": {\n \"top\": \"\",\n \"right\": \"\",\n \"bottom\": \"\",\n \"left\": \"\"\n },\n \"desktop-unit\": \"px\",\n
(26,1,'2024-07-16 22:29:20','2024-07-16 22:29:20','{\n \"astra-settings[header-desktop-items]\": {\n \"value\": {\n \"popup\": {\n \"popup_content\": [\n \"mobile-menu\"\n ]\n },\n \"above\": {\n \"above_left\": [],\n \"above_left_center\": [],\n \"above_center\": [\n \"logo\"\n ],\n \"above_right_center\": [],\n \"above_right\": []\n },\n \"primary\": {\n \"primary_left\": [],\n \"primary_left_center\": [],\n \"primary_center\": [\n \"menu-1\"\n ],\n \"primary_right_center\": [],\n \"primary_right\": []\n },\n \"below\": {\n \"below_left\": [],\n \"below_left_center\": [],\n \"below_center\": [],\n \"below_right_center\": [],\n \"below_right\": []\n },\n \"flag\": true\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:29:12\"\n },\n \"astra-settings[transparent-header-enable]\": {\n \"value\": false,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:26:12\"\n },\n \"astra-settings[transparent-header-on-devices]\": {\n \"value\": \"mobile\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:26:12\"\n },\n \"astra-settings[header-mobile-items]\": {\n \"value\": {\n \"popup\": {\n \"popup_content\": [\n \"search\",\n \"mobile-menu\"\n ]\n },\n \"above\": {\n \"above_left\": [],\n \"above_center\": [],\n \"above_right\": []\n },\n \"primary\": {\n \"primary_left\": [\n \"logo\"\n ],\n \"primary_center\": [],\n \"primary_right\": [\n \"mobile-trigger\"\n ]\n },\n \"below\": {\n \"below_left\": [],\n \"below_center\": [],\n \"below_right\": []\n },\n \"flag\": false\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:28:12\"\n },\n \"astra-settings[different-transparent-logo]\": {\n \"value\": false,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:27:12\"\n },\n \"astra-settings[title_tagline-visibility-responsive]\": {\n \"value\": {\n \"desktop\": 1,\n \"tablet\": 1,\n \"mobile\": 1\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:29:12\"\n },\n \"astra-settings[header-menu1-submenu-width]\": {\n \"value\": \"\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:29:12\"\n },\n \"astra-settings[header-menu1-submenu-item-border]\": {\n \"value\": false,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:29:12\"\n }\n}','','','trash','closed','closed','','b7e8d8ff-da73-4201-ac79-c15e2c54871c','','','2024-07-16 22:29:20','2024-07-16 22:29:20','',0,'http://localhost:8080/?p=26',0,'customize_changeset','',0),
(27,1,'2024-07-16 22:29:58','2024-07-16 22:29:58','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://localhost:8080.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:headin
(28,1,'2024-07-16 22:29:58','2024-07-16 22:29:58','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:8080/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2024-07-16 22:29:58','2024-07-16 22:29:58','',2,'http://localhost:8080/?p=28',0,'revision','',0),
(29,1,'2024-07-16 22:58:48','2024-07-16 22:58:48','<!-- wp:paragraph -->\n<p>Charitable Askar Association for Development and Community Development, established in 1992 and officially registered as an NGO since 2019, is located in \"New Askar Camp” in Nablus. It is a member of the Union of Local Committees for Rehabilitation. The organization was founded with a mission to promote societal advancement through education and peace-building across all sectors, advocating for a state founded on non-violent principles. Today, the association\'s primary focus areas include women\'s empowerment, youth and children, disabilities, cultural activities, and raising awareness on various social, economic, and environmental issues within the community. It highlights the interconnected challenges between international development cooperation and development education.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":204,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Askar-Association-Logo.png\" alt=\"\" class=\"wp-image-204\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->','Who we are','','publish','closed','closed','','who-we-are','','','2024-07-28 15:49:25','2024-07-28 15:49:25','',55,'http://localhost:8080/?page_id=29',0,'page','',0),
(30,1,'2024-07-16 22:30:42','2024-07-16 22:30:42','<!-- wp:paragraph -->\n<p>Charitable Askar Association for Development and Community Development, established in 1992 and officially registered as an NGO since 2019, is located in \"New Askar Camp” in Nablus. It is a member of the Union of Local Committees for Rehabilitation. The organization was founded with a mission to promote societal advancement through education and peace-building across all sectors, advocating for a state founded on non-violent principles. Today, the association\'s primary focus areas include women\'s empowerment, youth and children, disabilities, cultural activities, and raising awareness on various social, economic, and environmental issues within the community. It highlights the interconnected challenges between international development cooperation and development education.</p>\n<!-- /wp:paragraph -->','Who we are','','inherit','closed','closed','','29-revision-v1','','','2024-07-16 22:30:42','2024-07-16 22:30:42','',29,'http://localhost:8080/?p=30',0,'revision','',0),
(31,1,'2024-07-16 22:58:26','2024-07-16 22:58:26','<!-- wp:paragraph -->\n<p>Charitable Askar Association for Development and Community Development works for a more conscious and cohesive society, through sustainable social development and non-violent means. In this context, the organization has an explicit (but not exclusive) focus on a set of core issues: inclusion, diversity, education, and community empowerment. Especially educating the community for enhancing confidence through a participative approach is thought to fulfill the families\' aspirations for the future, by adopting the following values:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Rule of law.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Integrity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Commitment and honesty.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Transparency in action.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Teamwork.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equal opportunities and human rights.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Efficiency and effectiveness of individuals.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Respect and non-discrimination.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Democracy.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Mission and Vision','','publish','closed','closed','','mission-and-vision','','','2024-07-16 22:58:26','2024-07-16 22:58:26','',55,'http://localhost:8080/?page_id=31',0,'page','',0),
(32,1,'2024-07-16 22:32:46','2024-07-16 22:32:46','<!-- wp:paragraph -->\n<p>Charitable Askar Association for Development and Community Development works for a more conscious and cohesive society, through sustainable social development and non-violent means. In this context, the organization has an explicit (but not exclusive) focus on a set of core issues: inclusion, diversity, education, and community empowerment. Especially educating the community for enhancing confidence through a participative approach is thought to fulfill the families’ aspirations for the future, by adopting the following values:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Rule of law.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Integrity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Commitment and honesty.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Transparency in action.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Teamwork.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equal opportunities and human rights.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Efficiency and effectiveness of individuals.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Respect and non-discrimination.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Democracy.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Mission and Vision','','inherit','closed','closed','','31-revision-v1','','','2024-07-16 22:32:46','2024-07-16 22:32:46','',31,'http://localhost:8080/?p=32',0,'revision','',0),
(33,1,'2024-07-16 22:34:14','2024-07-16 22:34:14','<!-- wp:paragraph -->\n<p>Charitable Askar Association for Development and Community Development works for a more conscious and cohesive society, through sustainable social development and non-violent means. In this context, the organization has an explicit (but not exclusive) focus on a set of core issues: inclusion, diversity, education, and community empowerment. Especially educating the community for enhancing confidence through a participative approach is thought to fulfill the families\' aspirations for the future, by adopting the following values:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Rule of law.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Integrity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Commitment and honesty.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Transparency in action.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Teamwork.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equal opportunities and human rights.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Efficiency and effectiveness of individuals.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Respect and non-discrimination.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Democracy.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Mission and Vision','','inherit','closed','closed','','31-revision-v1','','','2024-07-16 22:34:14','2024-07-16 22:34:14','',31,'http://localhost:8080/?p=33',0,'revision','',0),
(34,1,'2024-07-16 22:58:31','2024-07-16 22:58:31','<!-- wp:paragraph -->\n<p>Rule of law<br>Integrity<br>Commitment and honesty<br>Transparency in action<br>Teamwork<br>Equal opportunities and human rights<br>Efficiency and effectiveness of individuals<br>Respect and non-discrimination<br>Democracy</p>\n<!-- /wp:paragraph -->','Our Values','','publish','closed','closed','','our-values','','','2024-07-24 19:56:21','2024-07-24 19:56:21','',55,'http://localhost:8080/?page_id=34',0,'page','',0),
(35,1,'2024-07-16 22:34:29','2024-07-16 22:34:29','','Our Values','','inherit','closed','closed','','34-revision-v1','','','2024-07-16 22:34:29','2024-07-16 22:34:29','',34,'http://localhost:8080/?p=35',0,'revision','',0),
(36,1,'2024-07-16 22:58:44','2024-07-16 22:58:44','<!-- wp:paragraph -->\n<p>The primary goal: to empower the Charitable Askar Association for Development and Community Development and create a more aware and cohesive society.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>First objective: building and providing educational opportunities to develop capabilities and hone skills.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Second objective: engage in appropriate opportunities to demonstrate the impact of our work on human rights, women\'s rights, and educational issues.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Third objective: Providing opportunities for children and youth to develop their abilities in the field of academic education, culture, and arts.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fourth objective: Improving additional support for people with disabilities and their families.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fifth objective: Supporting gender equality and the empowerment of women and girls.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sixth objective: Pursuing sustainable development.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seventh objective: Providing humanitarian aid at the local and national levels.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Eighth objective: Continue to enhance effective, value-added partnerships.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Ninth objective: Improving the quality of work by developing and strengthening organizational capabilities and sustainability by building the capabilities of employees and volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Tenth objective: achieving effective financial stability and finding a source of self-financing.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Strategic Objectives and Theory of Change','','publish','closed','closed','','strategic-objectives-and-theory-of-change','','','2024-07-24 19:59:30','2024-07-24 19:59:30','',55,'http://localhost:8080/?page_id=36',0,'page','',0),
(37,1,'2024-07-16 22:35:15','2024-07-16 22:35:15','<!-- wp:paragraph -->\n<p>The primary goal: to empower the Charitable Askar Association for Development and Community Development and create a more aware and cohesive society.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>The first objective: building and providing educational opportunities to develop capabilities and hone skills.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Second objective: Engage in appropriate opportunities to demonstrate the impact of our work on human rights, women\'s rights, and educational issues.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Third objective: Providing opportunities for children and youth to develop their abilities in the field of academic education, culture, and arts.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fourth objective: Improving additional support for people with disabilities and their families.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fifth objective: Supporting gender equality and the empowerment of women and girls.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sixth objective: Pursuing sustainable development.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seventh objective: Providing humanitarian aid at the local and national levels.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Eighth objective: Continue to enhance effective, value-added partnerships.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Ninth objective: Improving the quality of work by developing and strengthening organizational capabilities and sustainability by building the capabilities of employees and volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Tenth objective: achieving effective financial stability and finding a source of self-financing.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Strategic Objectives and Theory of Change','','inherit','closed','closed','','36-revision-v1','','','2024-07-16 22:35:15','2024-07-16 22:35:15','',36,'http://localhost:8080/?p=37',0,'revision','',0),
(38,1,'2024-07-16 22:58:21','2024-07-16 22:58:21','<!-- wp:paragraph -->\n<p>Ethical Charter of Charitable Askar Association for Development and Community Development</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":122,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0001-791x1024.jpg\" alt=\"\" class=\"wp-image-122\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":121,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0002-791x1024.jpg\" alt=\"\" class=\"wp-image-121\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":125,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0003-791x1024.jpg\" alt=\"\" class=\"wp-image-125\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":126,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0004-791x1024.jpg\" alt=\"\" class=\"wp-image-126\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":120,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0005-791x1024.jpg\" alt=\"\" class=\"wp-image-120\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":123,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0006-791x1024.jpg\" alt=\"\" class=\"wp-image-123\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":124,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0007-791x1024.jpg\" alt=\"\" class=\"wp-image-124\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','Ethical charter','','publish','closed','closed','','ethical-charter','','','2024-07-24 19:51:59','2024-07-24 19:51:59','',55,'http://localhost:8080/?page_id=38',0,'page','',0),
(39,1,'2024-07-16 22:35:42','2024-07-16 22:35:42','','Ethical charter','','inherit','closed','closed','','38-revision-v1','','','2024-07-16 22:35:42','2024-07-16 22:35:42','',38,'http://localhost:8080/?p=39',0,'revision','',0),
(40,1,'2024-07-16 22:58:37','2024-07-16 22:58:37','<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner International Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":201,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/PGS.jpg\" alt=\"\" class=\"wp-image-201\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":200,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Representative-Office-of-Ireland-in-Palestine-1-scaled.jpg\" alt=\"\" class=\"wp-image-200\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":53,\"width\":\"832px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-12.png\" alt=\"\" class=\"wp-image-53\" style=\"width:832px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner Local Institutions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":159,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Al-Quds-Open-University.jpg\" alt=\"\" class=\"wp-image-159\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":160,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/An-Najah-National-University.png\" alt=\"\" class=\"wp-image-160\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":161,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Arab-American-University.png\" alt=\"\" class=\"wp-image-161\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":162,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Deeretna-Center.jpg\" alt=\"\" class=\"wp-image-162\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":163,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ilham-Al-Khair.jpg\" alt=\"\" class=\"wp-image-163\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":165,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Palestine-Red-Cross-Society.png\" alt=\"\" class=\"wp-image-165\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":166,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Psico-social-counceling-for-women.jpg\" alt=\"\" class=\"wp-image-166\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":179,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/PWWSD-1.png\" alt=\"\" class=\"wp-image-179\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":164,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/INJAZ.jpg\" alt=\"\" class=\"wp-image-164\"/></figure>\n<!--
(43,1,'2024-07-16 22:36:49','2024-07-16 22:36:49','','image-2','','inherit','open','closed','','image-2','','','2024-07-16 22:36:49','2024-07-16 22:36:49','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-2.png',0,'attachment','image/png',0),
(46,1,'2024-07-16 22:38:06','2024-07-16 22:38:06','','image-5','','inherit','open','closed','','image-5','','','2024-07-16 22:38:06','2024-07-16 22:38:06','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-5.png',0,'attachment','image/png',0),
(47,1,'2024-07-16 22:38:11','2024-07-16 22:38:11','','image-6','','inherit','open','closed','','image-6','','','2024-07-16 22:38:11','2024-07-16 22:38:11','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-6.png',0,'attachment','image/png',0),
(48,1,'2024-07-16 22:38:18','2024-07-16 22:38:18','','image-7','','inherit','open','closed','','image-7','','','2024-07-16 22:38:18','2024-07-16 22:38:18','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-7.png',0,'attachment','image/png',0),
(49,1,'2024-07-16 22:38:32','2024-07-16 22:38:32','','image-8','','inherit','open','closed','','image-8','','','2024-07-16 22:38:32','2024-07-16 22:38:32','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-8.png',0,'attachment','image/png',0),
(51,1,'2024-07-16 22:40:16','2024-07-16 22:40:16','','image-10','','inherit','open','closed','','image-10','','','2024-07-16 22:40:16','2024-07-16 22:40:16','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-10.png',0,'attachment','image/png',0),
(53,1,'2024-07-16 22:40:46','2024-07-16 22:40:46','','image-12','','inherit','open','closed','','image-12','','','2024-07-16 22:40:46','2024-07-16 22:40:46','',40,'http://localhost:8080/wp-content/uploads/2024/07/image-12.png',0,'attachment','image/png',0),
(54,1,'2024-07-16 22:41:18','2024-07-16 22:41:18','<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner International Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":51,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-10.png\" alt=\"\" class=\"wp-image-51\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":52,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-11.png\" alt=\"\" class=\"wp-image-52\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":53,\"width\":\"832px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-12.png\" alt=\"\" class=\"wp-image-53\" style=\"width:832px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner Local Institutions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":50,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-9-1024x368.png\" alt=\"\" class=\"wp-image-50\"/></figure>\n<!-- /wp:image -->','Partners','','inherit','closed','closed','','40-revision-v1','','','2024-07-16 22:41:18','2024-07-16 22:41:18','',40,'http://localhost:8080/?p=54',0,'revision','',0),
(55,1,'2024-07-16 22:45:30','2024-07-16 22:45:30','<!-- wp:paragraph -->\n<p>The Askar refugee camp was established in 1950 and it was officially recognized as a refugee camp by UNRWA.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In 1964 the camp was expanded into a new part to which residents refer as “New Askar” (Al-Jadid). However, this extended part is not officially recognized by the UN as a refugee camp and this is why there are only few structure financially supported by UNRWA here.<br>These structures are the schools, the hospitals and funding for the maintenance of the current infrastructure. Today the New Askar Camp it is inhabited by around 15.000 refugees.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The camp\'s major issues are overcrowding and lack of resources.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like most camps, Askar has severe problems because it is overcrowded and it is in great need of further expansion.</p>\n<!-- /wp:paragraph -->','About New Askar Camp','','publish','closed','closed','','about-us','','','2024-07-24 20:49:02','2024-07-24 20:49:02','',0,'http://localhost:8080/?page_id=55',0,'page','',0),
(56,1,'2024-07-16 22:45:04','2024-07-16 22:45:04','','About Us','','inherit','closed','closed','','55-revision-v1','','','2024-07-16 22:45:04','2024-07-16 22:45:04','',55,'http://localhost:8080/?p=56',0,'revision','',0),
(57,1,'2024-07-16 22:50:50','2024-07-16 22:50:50','{\n \"astra::nav_menu_locations[secondary_menu]\": {\n \"value\": 3,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n },\n \"nav_menu_item[14]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n },\n \"nav_menu_item[13]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:50\"\n },\n \"nav_menu_item[15]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:50\"\n },\n \"nav_menu_item[16]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:50\"\n },\n \"nav_menu_item[17]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:50\"\n },\n \"astra-settings[header-mobile-menu-bg-obj-responsive]\": {\n \"value\": {\n \"desktop\": {\n \"background-color\": \"\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n },\n \"tablet\": {\n \"background-color\": \"var(--ast-global-color-5)\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\",\n \"background-type\": \"color\"\n },\n \"mobile\": {\n \"background-color\": \"\",\n \"background-image\": \"\",\n \"background-repeat\": \"repeat\",\n \"background-position\": \"center center\",\n \"background-size\": \"auto\",\n \"background-attachment\": \"scroll\",\n \"overlay-type\": \"\",\n \"overlay-color\": \"\",\n \"overlay-opacity\": \"\",\n \"overlay-gradient\": \"\"\n }\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n },\n \"nav_menu_item[-6814578225419630000]\": {\n \"value\": {\n \"object_id\": 55,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"About Us\",\n \"url\": \"http://localhost:8080/?page_id=55\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"nav_menu_term_id\": 3,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n },\n \"nav_menu_item[-7579766264511752000]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:50:01\"\n }\n}','','','trash','closed',
(58,1,'2024-07-16 22:50:50','2024-07-16 22:50:50',' ','','','publish','closed','closed','','58','','','2024-07-16 22:50:50','2024-07-16 22:50:50','',0,'http://localhost:8080/?p=58',2,'nav_menu_item','',0),
(59,1,'2024-07-16 22:55:16','0000-00-00 00:00:00','','Home','','auto-draft','closed','closed','','','','','2024-07-16 22:55:16','0000-00-00 00:00:00','',0,'http://localhost:8080/?page_id=59',0,'page','',0),
(60,1,'2024-07-16 22:55:50','2024-07-16 22:55:50','{\n \"prime-education::nav_menu_locations[primary]\": {\n \"value\": -1751317898634156000,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:55:50\"\n },\n \"nav_menu[-1751317898634156000]\": {\n \"value\": {\n \"name\": \"Nav\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": true\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2024-07-16 22:55:50\"\n }\n}','','','trash','closed','closed','','ad161b47-abc0-4a0f-a9a4-9f9c547d1ba7','','','2024-07-16 22:55:50','2024-07-16 22:55:50','',0,'http://localhost:8080/?p=60',0,'customize_changeset','',0),
(61,1,'2024-07-16 22:56:32','0000-00-00 00:00:00','','About Us','','auto-draft','closed','closed','','','','','2024-07-16 22:56:32','0000-00-00 00:00:00','',0,'http://localhost:8080/?page_id=61',0,'page','',0),
(62,1,'2024-07-16 22:57:28','2024-07-16 22:57:28','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"#860cbf\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}},\"color\":{\"background\":\"#4a0d66\"}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#4a0d66\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#3f085b\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#ae92bb\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentyfour','','','2024-07-17 19:52:43','2024-07-17 19:52:43','',0,'http://localhost:8080/?p=62',0,'wp_global_styles','',0),
(63,1,'2024-07-16 22:57:30','2024-07-16 22:57:30','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Our Work\",\"type\":\"page\",\"id\":73,\"url\":\"http://localhost:8080/?page_id=73\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"Main Units\",\"type\":\"page\",\"id\":76,\"url\":\"http://localhost:8080/?page_id=76\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Projects\",\"type\":\"page\",\"id\":78,\"url\":\"http://localhost:8080/?page_id=78\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Programs\",\"type\":\"page\",\"id\":80,\"url\":\"http://localhost:8080/?page_id=80\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Services\",\"type\":\"page\",\"id\":82,\"url\":\"http://localhost:8080/?page_id=82\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Media Center\",\"type\":\"page\",\"id\":86,\"url\":\"http://localhost:8080/?page_id=86\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"News\",\"type\":\"page\",\"id\":89,\"url\":\"http://localhost:8080/?page_id=89\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Gallery\",\"type\":\"page\",\"id\":91,\"url\":\"http://localhost:8080/?page_id=91\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Visuals\",\"type\":\"page\",\"id\":93,\"url\":\"http://localhost:8080/?page_id=93\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-link {\"label\":\"Achieve\",\"type\":\"page\",\"id\":95,\"url\":\"http://localhost:8080/?page_id=95\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Donate\",\"type\":\"page\",\"id\":98,\"url\":\"http://localhost:8080/?page_id=98\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Get Involved\",\"type\":\"page\",\"id\":101,\"url\":\"http://localhost:8080/?page_id=101\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact Us\",\"type\":\"page\",\"id\":104,\"url\":\"http://localhost:8080/?page_id=104\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/wp-admin\">Login</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','Primary','','publish','closed','closed','','primary','','','2024-07-30 22:51:19','2024
(64,1,'2024-07-16 23:02:02','2024-07-16 23:02:02','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:group {\"style\":{\"dimensions\":{\"minHeight\":\"\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":20,\"shouldSyncIcon\":false,\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} /-->\n\n<!-- wp:site-title {\"level\":0,\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"position\":{\"type\":\"\"},\"dimensions\":{\"minHeight\":\"0px\"},\"spacing\":{\"blockGap\":\"0\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\" style=\"min-height:0px;margin-top:0;margin-bottom:0;padding-right:0;padding-left:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"className\":\"has-medium-font-size\",\"fontFamily\":\"body\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size has-body-font-family\" style=\"font-style:normal;font-weight:600\">Social</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":218,\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:0\"><!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast-2\",\"fontSize\":\"small\"} -->\n<p class=\"has-contrast-2-color has-text-color has-link-color has-small-font-size\">\n Designed with <a href=\"https://wordpress.org\" rel=\"nofollow\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Footer','','publish','closed','closed','','footer','','','2024-07-30 22:50:02','2024-07-30 22:50:02','',0,'http://localhost:8080/?p=64',0,'wp_template_part','',0),
(65,1,'2024-07-16 23:02:02','2024-07-16 23:02:02','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->','Primary','','inherit','closed','closed','','63-revision-v1','','','2024-07-16 23:02:02','2024-07-16 23:02:02','',63,'http://localhost:8080/?p=65',0,'revision','',0),
(66,1,'2024-07-16 23:03:15','2024-07-16 23:03:15','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"var(--wp--preset--color--base-2)\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#38629F\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#244E8A\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#D5E0F0\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','62-revision-v1','','','2024-07-16 23:03:15','2024-07-16 23:03:15','',62,'http://localhost:8080/?p=66',0,'revision','',0),
(67,1,'2024-07-17 19:51:55','2024-07-17 19:51:55','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"#860cbf\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}},\"color\":{\"background\":\"#4a0d66\"}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#38629F\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#244E8A\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#D5E0F0\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','62-revision-v1','','','2024-07-17 19:51:55','2024-07-17 19:51:55','',62,'http://localhost:8080/?p=67',0,'revision','',0),
(68,1,'2024-07-17 19:52:19','2024-07-17 19:52:19','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"#860cbf\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}},\"color\":{\"background\":\"#4a0d66\"}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#4a0d66\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#3f085b\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#D5E0F0\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','62-revision-v1','','','2024-07-17 19:52:19','2024-07-17 19:52:19','',62,'http://localhost:8080/?p=68',0,'revision','',0),
(69,1,'2024-07-17 19:52:43','2024-07-17 19:52:43','{\"styles\":{\"blocks\":{\"core\\/button\":{\"variations\":{\"outline\":{\"spacing\":{\"padding\":{\"bottom\":\"calc(0.8rem - 2px)\",\"left\":\"calc(1.6rem - 2px)\",\"right\":\"calc(1.6rem - 2px)\",\"top\":\"calc(0.8rem - 2px)\"}},\"border\":{\"width\":\"2px\"}}}},\"core\\/site-title\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontWeight\":\"normal\"}},\"core\\/navigation\":{\"typography\":{\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontWeight\":\"normal\"}}},\"elements\":{\"button\":{\"border\":{\"radius\":\"6px\"},\"color\":{\"background\":\"var(--wp--preset--color--contrast)\",\"text\":\"#860cbf\"},\"spacing\":{\"padding\":{\"bottom\":\"0.98rem\",\"left\":\"1.6rem\",\"right\":\"1.6rem\",\"top\":\"0.8rem\"}},\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"fontSize\":\"var(--wp--preset--font-size--small)\",\"fontStyle\":\"normal\"},\":hover\":{\"color\":{\"background\":\"var(--wp--preset--color--contrast)\"}}},\"heading\":{\"typography\":{\"fontFamily\":\"var(--wp--preset--font-family--heading)\",\"letterSpacing\":\"0\"}}},\"color\":{\"background\":\"#4a0d66\"}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"color\":\"#4a0d66\",\"name\":\"Base\",\"slug\":\"base\"},{\"color\":\"#3f085b\",\"name\":\"Base \\/ Two\",\"slug\":\"base-2\"},{\"color\":\"#FFFFFFA1\",\"name\":\"Contrast \\/ 2\",\"slug\":\"contrast-2\"},{\"color\":\"#FFFFFF\",\"name\":\"Contrast\",\"slug\":\"contrast\"},{\"color\":\"#ae92bb\",\"name\":\"Contrast \\/ 3\",\"slug\":\"contrast-3\"}]}},\"typography\":{\"fontFamilies\":{\"theme\":[{\"fontFace\":[{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_italic_400.woff2\"]},{\"fontFamily\":\"Cardo\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":[\"file:.\\/assets\\/fonts\\/cardo\\/cardo_normal_700.woff2\"]}],\"fontFamily\":\"Cardo\",\"name\":\"Cardo\",\"slug\":\"body\"},{\"fontFace\":[{\"fontFamily\":\"Jost\",\"fontStyle\":\"normal\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-VariableFont_wght.woff2\"]},{\"fontFamily\":\"Jost\",\"fontStyle\":\"italic\",\"fontWeight\":\"100 900\",\"src\":[\"file:.\\/assets\\/fonts\\/jost\\/Jost-Italic-VariableFont_wght.woff2\"]}],\"fontFamily\":\"\\\"Jost\\\", sans-serif\",\"name\":\"Jost\",\"slug\":\"heading\"},{\"fontFamily\":\"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif\",\"name\":\"System Sans-serif\",\"slug\":\"system-sans-serif\"},{\"fontFamily\":\"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\",\"name\":\"System Serif\",\"slug\":\"system-serif\"}]},\"fontSizes\":{\"theme\":[{\"fluid\":false,\"name\":\"Small\",\"size\":\"1rem\",\"slug\":\"small\"},{\"fluid\":false,\"name\":\"Medium\",\"size\":\"1.2rem\",\"slug\":\"medium\"},{\"fluid\":{\"min\":\"1.5rem\",\"max\":\"2rem\"},\"name\":\"Large\",\"size\":\"2rem\",\"slug\":\"large\"},{\"fluid\":{\"min\":\"2rem\",\"max\":\"2.65rem\"},\"name\":\"Extra Large\",\"size\":\"2.65rem\",\"slug\":\"x-large\"},{\"fluid\":{\"min\":\"2.65rem\",\"max\":\"3.5rem\"},\"name\":\"Extra Extra Large\",\"size\":\"3.5rem\",\"slug\":\"xx-large\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','62-revision-v1','','','2024-07-17 19:52:43','2024-07-17 19:52:43','',62,'http://localhost:8080/?p=69',0,'revision','',0),
(70,1,'2024-07-17 19:54:06','2024-07-17 19:54:06','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\",\"align\":\"center\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\"} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":1} /-->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-featured-image {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|40\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></main>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"level\":0,\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Pages','Displays a static page unless a custom template has been applied to that page or a dedicated template exists.','publish','closed','closed','','page','','','2024-07-17 20:26:36','2024-07-17 20:26:36','',0,'http://localhost:8080/?p=70',0,'wp_template','',0),
(71,1,'2024-07-17 19:54:06','2024-07-17 19:54:06','','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-17 19:54:06','2024-07-17 19:54:06','',8,'http://localhost:8080/?p=71',0,'revision','',0),
(72,1,'2024-07-17 20:01:08','2024-07-17 20:01:08','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\",\"align\":\"center\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\"} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":1} /-->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-featured-image {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|40\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></main>\n<!-- /wp:group -->','Pages','Displays a static page unless a custom template has been applied to that page or a dedicated template exists.','inherit','closed','closed','','70-revision-v1','','','2024-07-17 20:01:08','2024-07-17 20:01:08','',70,'http://localhost:8080/?p=72',0,'revision','',0),
(73,1,'2024-07-17 20:05:05','2024-07-17 20:05:05','','Our Work','','publish','closed','closed','','our-work','','','2024-07-17 20:05:05','2024-07-17 20:05:05','',0,'http://localhost:8080/?page_id=73',0,'page','',0),
(74,1,'2024-07-17 20:05:05','2024-07-17 20:05:05',' ','','','publish','closed','closed','','74','','','2024-07-17 20:05:05','2024-07-17 20:05:05','',0,'http://localhost:8080/?p=74',0,'nav_menu_item','',0),
(75,1,'2024-07-17 20:05:05','2024-07-17 20:05:05','','Our Work','','inherit','closed','closed','','73-revision-v1','','','2024-07-17 20:05:05','2024-07-17 20:05:05','',73,'http://localhost:8080/?p=75',0,'revision','',0),
(76,1,'2024-07-17 20:07:23','2024-07-17 20:07:23','<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>The Social Development Center Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Volunteers Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>People with Disabilities Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Down Dreams Center Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shams AL-Amal Kindergarten</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Main Units','','publish','closed','closed','','main-units','','','2024-07-17 20:07:23','2024-07-17 20:07:23','',73,'http://localhost:8080/?page_id=76',0,'page','',0),
(77,1,'2024-07-17 20:07:23','2024-07-17 20:07:23','<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>The Social Development Center Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Volunteers Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>People with Disabilities Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Down Dreams Center Unit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shams AL-Amal Kindergarten</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Main Units','','inherit','closed','closed','','76-revision-v1','','','2024-07-17 20:07:23','2024-07-17 20:07:23','',76,'http://localhost:8080/?p=77',0,'revision','',0),
(78,1,'2024-07-17 20:09:08','2024-07-17 20:09:08','<!-- wp:paragraph -->\n<p><strong>The Charitable Askar Association carries out numerous projects with long-standing local and international partners.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>\"Develop and Empower Children, Youth, Women and People with Disabilities in New Askar Camp\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Funded by the Palestine Solidarity Association of Sweden - </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Palestinagrupperna i Sverige PGS</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>The project started in 1993 with the goal of fostering development by building the capabilities of the administrative and executive staff, in addition to offering awareness services through organized activities, courses, and camps. These initiatives aim to equip participants with essential life skills, boost their involvement in artistic, cultural, and sports activities, encourage talents, and nurture creativity. The project also focuses on promoting the concepts of democracy and human rights, raising awareness on important social issues, and carrying out community initiatives to improve the participants\' quality of life. Additionally, efforts are made to develop the camp, creating a safer and more suitable environment to achieve the project\'s objectives.</summary><!-- wp:paragraph {\"placeholder\":\"Type / to add a hidden block\"} -->\n<p></p>\n<!-- /wp:paragraph --></details>\n<!-- /wp:details -->\n\n<!-- wp:paragraph -->\n<p>Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youth leaders: educational workshops on political agenda and capacity building, along with methodological courses in project writing and management, curriculum vitae writing,&nbsp; computer education, and others.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Children\'s rights: lectures and workshops to raise community awareness on early marriage, education, disabilities, and psychological support.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gender: Focus on women\'s rights, including topics such as gender-based violence, early marriage, food, land ownership, psychological support, and health issues like breast cancer and women\'s health.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Foreign language courses (usually held by volunteers): English and French, in addition to Arabic courses for volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Folk art: extracurricular activities that allow the participants to express themselves through art.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dance: folk dance <em>Dabka</em> and expressive dance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Music: a series of training courses overseen by both local and international trainers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Community problems: workshops addressing issues such as drug consumption, bullying, electronic extortion, and violence.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Different target groups benefit from these courses: school and university students, staff and volunteers, in addition to summer camp\'s children during the summer school holidays.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>\"My Father Read to Me</strong>\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>This is a campaign in cooperation with the Tamer Foundation for Community Development, encourages students to read. This project provides a space for parents and children to engage in play, learning and various artistic and expressive activities, highlighting the importance of quality time that enriches th
(79,1,'2024-07-17 20:09:08','2024-07-17 20:09:08','<!-- wp:paragraph -->\n<p>The project “Develop and Empower Children, Youth, Women and People with Disabilities in New Askar Camp” is funded by the Palestine Solidarity Association of Sweden “PGS”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The project started in 1993 with the goal of fostering development by building the capabilities of the administrative and executive staff, in addition to offering awareness services through organized activities, courses, and camps. These initiatives aim to equip participants with essential life skills, boost their involvement in artistic, cultural, and sports activities, encourage talents, and nurture creativity. The project also focuses on promoting the concepts of democracy and human rights, raising awareness on important social issues, and carrying out community initiatives to improve the participants\' quality of life. Additionally, efforts are made to develop the camp, creating a safer and more suitable environment to achieve the project\'s objectives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youth leaders: educational workshops on political agenda and capacity building, along with methodological courses in project writing and management, curriculum vitae writing,  computer education, and others.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Children\'s rights: lectures and workshops to raise community awareness on early marriage, education, disabilities, and psychological support.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gender: Focus on women’s rights, including topics such as gender-based violence, early marriage, food, land ownership, psychological support, and health issues like breast cancer and women\'s health.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Foreign language courses (usually held by volunteers): English and French, in addition to Arabic courses for volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Folk art: extracurricular activities that allow the participants to express themselves through art.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dance: folk dance ‘Dabka’ and expressive dance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Music: a series of training courses overseen by both local and international trainers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Community problems: workshops addressing issues such as drug consumption, bullying, electronic extortion, and violence. </li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Different target groups benefit from these courses: school and university students, staff and volunteers, in addition to summer camp’s children during the summer school holidays.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Projects','','inherit','closed','closed','','78-revision-v1','','','2024-07-17 20:09:08','2024-07-17 20:09:08','',78,'http://localhost:8080/?p=79',0,'revision','',0),
(80,1,'2024-07-17 20:13:56','2024-07-17 20:13:56','<!-- wp:paragraph -->\n<p><strong>Women\'s program</strong>: raise awareness about gender and individual rights through workshops and various activities organized by the association. It also focuses on improving educational aspects for both men and women, addressing topics such as gender-based violence, food security, and diverse leadership.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Summer and Winter Camps Program</strong>: annual extracurricular activities in New Askar camp during summer, winter, and international camps, involving both local and international volunteers. The target groups include hundreds of children as well as children with disabilities.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Public Library Program</strong>: borrowing of cultural, literary, linguistic, and academic books. It aims to develop a generation that understands equality, democracy, and environmental preservation through theoretical workshops, practical applications, and small projects. It fosters a belief in freedom of opinion and respect for other cultures while reducing the financial burden of academic books. Since its inception as part of an agreement with the Solidarity Association with the Palestinians of Sweden, the library now houses around 4,500 volumes and is regularly visited by volunteers, university students, and school groups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Public Relations and International Relations Program</strong>: enhance global connections by sending youth abroad to experience different cultures and environments outside of Palestine. It also focuses on developing the human resources sector, essential for supporting our goals and activities, by welcoming volunteers from around the world. Central to this program are various partnerships, both local and international.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Documentary Film Program</strong>: document all activities and programs implemented by the association, as well as produce documentaries on various public and private topics, with a particular focus on preserving the memories of the Nakba and events in the camp. It was initiated with the help of training provided by a group of French volunteers to local volunteers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>University Students Training Program</strong>: volunteering and its significance in the lives of students and institutions is one of our most significant accomplishments over the years. Annually, about 50 students receive assistance and training to complete their university studies. These students actively participate in all programs, activities, and plans during their training period.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Free computer and internet lab program</strong>: raise awareness of today\'s interconnected and globalized era, emphasizing the cultural impact that has made the world resemble a small village. It seeks to facilitate youth, citizens, and civil institutions in their research and access to technical and technological information and news through training courses offered at nominal fees. Additionally, the program integrates education on artificial intelligence, reflecting its growing importance in modern society. Since its inception, this program has been part of the agreement between the Solidarity Association and the Palestinians of Sweden (PGS).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Emergency and aid program</strong>: assist the Askar camp community during challenging periods, such as the Covid-19 pandemic, Gaza war, and daily raids in Palestinian areas of the West Bank. It provides essential support such as food and medical supplies, while also advocating for and economically supporting other local communities and camps in need.</p>\n<!-- /wp:paragraph -->','Programs','','publish','closed','closed','','programs','','','2024-07-31 20:34:12','2024-07-31 20:34:12','',73,'h
(81,1,'2024-07-17 20:13:56','2024-07-17 20:13:56','<!-- wp:paragraph -->\n<p>Women\'s program: This program aims to raise awareness about gender and individual rights through workshops and various activities organized by the association. It also focuses on improving educational aspects for both men and women, addressing topics such as gender-based violence, food security, and diverse leadership.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Summer and Winter Camps Program: This program organizes annual extracurricular activities in New Askar camp during summer, winter, and international camps, involving both local and international volunteers. The target groups include hundreds of children as well as children with disabilities.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Public Library Program:  This program allows the borrowing of cultural, literary, linguistic, and academic books. It aims to develop a generation that understands equality, democracy, and environmental preservation through theoretical workshops, practical applications, and small projects. It fosters a belief in freedom of opinion and respect for other cultures while reducing the financial burden of academic books. Since its inception as part of an agreement with the Solidarity Association with the Palestinians of Sweden, the library now houses around 4,500 volumes and is regularly visited by volunteers, university students, and school groups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The \"My Father Read to Me\" campaign, in cooperation with the Tamer Foundation for Community Development, encourages students to read. This campaign provides a space for parents and children to engage in play, learning, and various artistic and expressive activities, highlighting the importance of quality time that enriches their lives and illuminates their path to the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Public Relations and International Relations Program: Public Relations and International Relations Program: This program aims to enhance global connections by sending youth abroad to experience different cultures and environments outside of Palestine. It also focuses on developing the human resources sector, essential for supporting our goals and activities, by welcoming volunteers from around the world. Central to this program are various partnerships, both local and international.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Documentary Film Program: This program aims to document all activities and programs implemented by the association, as well as produce documentaries on various public and private topics, with a particular focus on preserving the memories of the Nakba and events in the camp. It was initiated with the help of training provided by a group of French volunteers to local volunteers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>University Students Training Program: Volunteering and its significance in the lives of students and institutions is one of our most significant accomplishments over the years. Annually, about 50 students receive assistance and training to complete their university studies. These students actively participate in all programs, activities, and plans during their training period.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Free computer and internet lab program: This program aims to raise awareness of today\'s interconnected and globalized era, emphasizing the cultural impact that has made the world resemble a small village. It seeks to facilitate youth, citizens, and civil institutions in their research and access to technical and technological information and news through training courses offered at nominal fees. Additionally, the program integrates education on artificial intelligence, reflecting its growing importance in modern society. Since its inception, this program has been part of the agreement between the Solidarity Association and the Palestinians of Sweden (PGS).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<
(82,1,'2024-07-17 20:14:54','2024-07-17 20:14:54','<!-- wp:paragraph -->\n<p><em>Established in 2002 with support from the Popular Art Centre, Masha\'el Falesteen is a diverse dance ensemble comprising 20 young performers aged 13 to 18. Originating from economically disadvantaged backgrounds, these dancers lack recreational facilities and often gather at the association to engage in activities, primarily learning Dabka and other skills. Their aspiration extends beyond the confines of their circumstances as they dream of exploring the world outside their community. Through their performances, Masha\'el Falesteen endeavours to highlight the Palestinian cultural heritage and tradition, shedding light on the human dimension of a nation frequently marginalized. With their repertoire of traditional songs and Dabka dance, they invite audiences to delve into this rich tradition.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Inception</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The inspiration for establishing a group like Masha\'el Falesteen arose from the Askar Association for Community and Development\'s commitment to imparting Palestinian heritage and culture to youth. By fostering a deep connection to their roots, the association aims to empower young individuals to contribute to preserving and disseminating Palestine\'s cultural legacy. Today, Mashaâel Falesteen has gained widespread recognition; as a result, it is in high demand at festivals and ceremonies across Nablus.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Global Outreach</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Since its inception in 2002, Masha\'el Falesteen embarked on its maiden international tour in subsequent years. From performing at dance festivals in Norway in 2003 and 2004 touring Austria in 2006, the group continued to captivate audiences abroad. Subsequent tours took them back to Norway in 2007 and across four European countries (Holland, Belgium, Germany, and France) in 2009, followed by Belgium and France in 2010. Their most recent tour occurred in 2020, encompassing Belgium, Italy, France, and Spain.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Understanding Dabka</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Dabka, a traditional folk dance prevalent in several Arab countries including Lebanon, Palestine, Syria, Jordan, and Iraq, is a communal dance form involving both male and female participants. Each region boasts its distinctive steps and rhythms, contributing to the dance\'s diverse tapestry. The name itself, \"stomping of the feet,\" alludes to one of its defining features, alongside jumping. While often </em><em>performed at celebratory occasions like weddings, Dabka is a focal point for competitive events in Palestine.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em><img src=\"https://lh7-us.googleusercontent.com/docsz/AD_4nXdIFwQCFq9s6IP6cOYQiH_K10j9OHb8-hC0-xXaQ6Ruo31qMaYUV-XSLispv0ZdVq43619Saoxgf0p32hZvwWdBhkYdNVWn9ElMcnC1faUtoiXyeGyqU7Ur2DA8AHWfV22hfuyMXglz5I7-m--T8YgSdksY2BU9zOr6VgYrcGV33s18wn8vvYY?key=pj_5TOEMWUNIDsPvZzVDuQ\" width=\"584\" height=\"318\"></em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\"><em><img src=\"https://lh7-us.googleusercontent.com/docsz/AD_4nXd1RCc7mSB785fle61rBBKxrTEsSknK75yG8YpgFSUA9v95ShkvYSKSQSc7r3XL3IAAULOZfWgUpAYrdsy2XwAOBQh7Lsu5kEhOwoYvAQvHXXgSc2tuqM6ggJC-WBQlWphsIFNDq9j5PPgYcbAzb6W56cxdZkqEKu8_4rcm6tUgHZIWKHIjWNA?key=pj_5TOEMWUNIDsPvZzVDuQ\" width=\"347\" height=\"195\"></em></p>\n<!-- /wp:paragraph -->','Services - Masha\'el Falesteen','','publish','closed','closed','','services','','','2024-07-24 21:03:19','2024-07-24 21:03:19','',73,'http://localhost:8080/?page_id=82',0,'page','',0),
(83,1,'2024-07-17 20:14:54','2024-07-17 20:14:54','','Services','','inherit','closed','closed','','82-revision-v1','','','2024-07-17 20:14:54','2024-07-17 20:14:54','',82,'http://localhost:8080/?p=83',0,'revision','',0),
(84,1,'2024-07-17 20:15:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-07-17 20:15:34','0000-00-00 00:00:00','',0,'http://localhost:8080/?page_id=84',0,'page','',0),
(85,1,'2024-07-17 20:15:58','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-07-17 20:15:58','0000-00-00 00:00:00','',0,'http://localhost:8080/?page_id=85',0,'page','',0),
(86,1,'2024-07-17 20:16:20','2024-07-17 20:16:20','','Media Center','','publish','closed','closed','','media-center','','','2024-07-17 20:16:20','2024-07-17 20:16:20','',0,'http://localhost:8080/?page_id=86',0,'page','',0),
(87,1,'2024-07-17 20:16:20','2024-07-17 20:16:20',' ','','','publish','closed','closed','','87','','','2024-07-17 20:16:20','2024-07-17 20:16:20','',0,'http://localhost:8080/?p=87',2,'nav_menu_item','',0),
(88,1,'2024-07-17 20:16:20','2024-07-17 20:16:20','','Media Center','','inherit','closed','closed','','86-revision-v1','','','2024-07-17 20:16:20','2024-07-17 20:16:20','',86,'http://localhost:8080/?p=88',0,'revision','',0),
(89,1,'2024-07-17 20:16:56','2024-07-17 20:16:56','','News','','publish','closed','closed','','news','','','2024-07-17 20:16:56','2024-07-17 20:16:56','',86,'http://localhost:8080/?page_id=89',0,'page','',0),
(90,1,'2024-07-17 20:16:56','2024-07-17 20:16:56','','News','','inherit','closed','closed','','89-revision-v1','','','2024-07-17 20:16:56','2024-07-17 20:16:56','',89,'http://localhost:8080/?p=90',0,'revision','',0),
(91,1,'2024-07-17 20:17:18','2024-07-17 20:17:18','','Gallery','','publish','closed','closed','','gallery','','','2024-07-24 21:16:58','2024-07-24 21:16:58','',86,'http://localhost:8080/?page_id=91',0,'page','',0),
(92,1,'2024-07-17 20:17:18','2024-07-17 20:17:18','','Gallery','','inherit','closed','closed','','91-revision-v1','','','2024-07-17 20:17:18','2024-07-17 20:17:18','',91,'http://localhost:8080/?p=92',0,'revision','',0),
(93,1,'2024-07-17 20:17:46','2024-07-17 20:17:46','','Visuals','','publish','closed','closed','','visuals','','','2024-07-17 20:17:46','2024-07-17 20:17:46','',86,'http://localhost:8080/?page_id=93',0,'page','',0),
(94,1,'2024-07-17 20:17:46','2024-07-17 20:17:46','','Visuals','','inherit','closed','closed','','93-revision-v1','','','2024-07-17 20:17:46','2024-07-17 20:17:46','',93,'http://localhost:8080/?p=94',0,'revision','',0),
(95,1,'2024-07-17 20:18:07','2024-07-17 20:18:07','','Achieve','','publish','closed','closed','','achieve','','','2024-07-17 20:18:07','2024-07-17 20:18:07','',0,'http://localhost:8080/?page_id=95',0,'page','',0),
(96,1,'2024-07-17 20:18:07','2024-07-17 20:18:07',' ','','','publish','closed','closed','','96','','','2024-07-17 20:18:07','2024-07-17 20:18:07','',0,'http://localhost:8080/?p=96',3,'nav_menu_item','',0),
(97,1,'2024-07-17 20:18:07','2024-07-17 20:18:07','','Achieve','','inherit','closed','closed','','95-revision-v1','','','2024-07-17 20:18:07','2024-07-17 20:18:07','',95,'http://localhost:8080/?p=97',0,'revision','',0),
(98,1,'2024-07-17 20:18:20','2024-07-17 20:18:20','','Donate','','publish','closed','closed','','donate','','','2024-07-17 20:18:20','2024-07-17 20:18:20','',0,'http://localhost:8080/?page_id=98',0,'page','',0),
(99,1,'2024-07-17 20:18:20','2024-07-17 20:18:20',' ','','','publish','closed','closed','','99','','','2024-07-17 20:18:20','2024-07-17 20:18:20','',0,'http://localhost:8080/?p=99',4,'nav_menu_item','',0),
(100,1,'2024-07-17 20:18:20','2024-07-17 20:18:20','','Donate','','inherit','closed','closed','','98-revision-v1','','','2024-07-17 20:18:20','2024-07-17 20:18:20','',98,'http://localhost:8080/?p=100',0,'revision','',0),
(101,1,'2024-07-17 20:18:41','2024-07-17 20:18:41','','Get Involved','','publish','closed','closed','','get-involved','','','2024-07-17 20:18:41','2024-07-17 20:18:41','',0,'http://localhost:8080/?page_id=101',0,'page','',0),
(102,1,'2024-07-17 20:18:41','2024-07-17 20:18:41',' ','','','publish','closed','closed','','102','','','2024-07-17 20:18:41','2024-07-17 20:18:41','',0,'http://localhost:8080/?p=102',5,'nav_menu_item','',0),
(103,1,'2024-07-17 20:18:41','2024-07-17 20:18:41','','Get Involved','','inherit','closed','closed','','101-revision-v1','','','2024-07-17 20:18:41','2024-07-17 20:18:41','',101,'http://localhost:8080/?p=103',0,'revision','',0),
(104,1,'2024-07-17 20:23:24','2024-07-17 20:23:24','<!-- wp:paragraph -->\n<p><strong>Charitable Askar Association for Development and Community Development</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Palestine - Nablus - New Askar Camp - School Str.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Emails: sdcaskar@gmail.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> amjadrfaie@yahoo.co.uk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>00970 92327349</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>00970 9599886742</p>\n<!-- /wp:paragraph -->','Contact Us','','publish','closed','closed','','contact-us','','','2024-07-24 20:08:32','2024-07-24 20:08:32','',0,'http://localhost:8080/?page_id=104',0,'page','',0),
(105,1,'2024-07-17 20:23:05','2024-07-17 20:23:05','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Our Work\",\"type\":\"page\",\"id\":73,\"url\":\"http://localhost:8080/?page_id=73\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"Main Units\",\"type\":\"page\",\"id\":76,\"url\":\"http://localhost:8080/?page_id=76\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Projects\",\"type\":\"page\",\"id\":78,\"url\":\"http://localhost:8080/?page_id=78\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Programs\",\"type\":\"page\",\"id\":80,\"url\":\"http://localhost:8080/?page_id=80\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Services\",\"type\":\"page\",\"id\":82,\"url\":\"http://localhost:8080/?page_id=82\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Media Center\",\"type\":\"page\",\"id\":86,\"url\":\"http://localhost:8080/?page_id=86\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"News\",\"type\":\"page\",\"id\":89,\"url\":\"http://localhost:8080/?page_id=89\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Gallery\",\"type\":\"page\",\"id\":91,\"url\":\"http://localhost:8080/?page_id=91\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Visuals\",\"type\":\"page\",\"id\":93,\"url\":\"http://localhost:8080/?page_id=93\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-link {\"label\":\"Achieve\",\"type\":\"page\",\"id\":95,\"url\":\"http://localhost:8080/?page_id=95\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Donate\",\"type\":\"page\",\"id\":98,\"url\":\"http://localhost:8080/?page_id=98\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Get Involved\",\"type\":\"page\",\"id\":101,\"url\":\"http://localhost:8080/?page_id=101\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact Us\",\"type\":\"page\",\"id\":104,\"url\":\"http://localhost:8080/?page_id=104\",\"kind\":\"post-type\"} /-->','Primary','','inherit','closed','closed','','63-revision-v1','','','2024-07-17 20:23:05','2024-07-17 20:23:05','',63,'http://localhost:8080/?p=105',0,'revision','',0),
(106,1,'2024-07-17 20:23:24','2024-07-17 20:23:24',' ','','','publish','closed','closed','','106','','','2024-07-17 20:23:24','2024-07-17 20:23:24','',0,'http://localhost:8080/?p=106',6,'nav_menu_item','',0),
(107,1,'2024-07-17 20:23:24','2024-07-17 20:23:24','','Contact Us','','inherit','closed','closed','','104-revision-v1','','','2024-07-17 20:23:24','2024-07-17 20:23:24','',104,'http://localhost:8080/?p=107',0,'revision','',0),
(108,1,'2024-07-17 20:25:20','2024-07-17 20:25:20','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\",\"align\":\"center\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\"} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":1} /-->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-featured-image {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|40\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></main>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Pages','Displays a static page unless a custom template has been applied to that page or a dedicated template exists.','inherit','closed','closed','','70-revision-v1','','','2024-07-17 20:25:20','2024-07-17 20:25:20','',70,'http://localhost:8080/?p=108',0,'revision','',0),
(109,1,'2024-07-17 20:26:36','2024-07-17 20:26:36','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\",\"align\":\"center\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\"} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":1} /-->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:post-featured-image {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|40\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></main>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"level\":0,\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Pages','Displays a static page unless a custom template has been applied to that page or a dedicated template exists.','inherit','closed','closed','','70-revision-v1','','','2024-07-17 20:26:36','2024-07-17 20:26:36','',70,'http://localhost:8080/?p=109',0,'revision','',0),
(110,1,'2024-07-23 06:17:28','2024-07-23 06:17:28','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Our Work\",\"type\":\"page\",\"id\":73,\"url\":\"http://localhost:8080/?page_id=73\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"Main Units\",\"type\":\"page\",\"id\":76,\"url\":\"http://localhost:8080/?page_id=76\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Projects\",\"type\":\"page\",\"id\":78,\"url\":\"http://localhost:8080/?page_id=78\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Programs\",\"type\":\"page\",\"id\":80,\"url\":\"http://localhost:8080/?page_id=80\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Services\",\"type\":\"page\",\"id\":82,\"url\":\"http://localhost:8080/?page_id=82\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Media Center\",\"type\":\"page\",\"id\":86,\"url\":\"http://localhost:8080/?page_id=86\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"News\",\"type\":\"page\",\"id\":89,\"url\":\"http://localhost:8080/?page_id=89\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Gallery\",\"type\":\"page\",\"id\":91,\"url\":\"http://localhost:8080/?page_id=91\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Visuals\",\"type\":\"page\",\"id\":93,\"url\":\"http://localhost:8080/?page_id=93\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-link {\"label\":\"Achieve\",\"type\":\"page\",\"id\":95,\"url\":\"http://localhost:8080/?page_id=95\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Donate\",\"type\":\"page\",\"id\":98,\"url\":\"http://localhost:8080/?page_id=98\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Get Involved\",\"type\":\"page\",\"id\":101,\"url\":\"http://localhost:8080/?page_id=101\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact Us\",\"type\":\"page\",\"id\":104,\"url\":\"http://localhost:8080/?page_id=104\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"/wp-login\">Login</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','Primary','','inherit','closed','closed','','63-revision-v1','','','2024-07-23 06:17:28','2024-07-23 06:17:28','',63,'http://localhost:8080/
(111,1,'2024-07-23 06:22:02','2024-07-23 06:22:02','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Our Work\",\"type\":\"page\",\"id\":73,\"url\":\"http://localhost:8080/?page_id=73\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"Main Units\",\"type\":\"page\",\"id\":76,\"url\":\"http://localhost:8080/?page_id=76\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Projects\",\"type\":\"page\",\"id\":78,\"url\":\"http://localhost:8080/?page_id=78\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Programs\",\"type\":\"page\",\"id\":80,\"url\":\"http://localhost:8080/?page_id=80\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Services\",\"type\":\"page\",\"id\":82,\"url\":\"http://localhost:8080/?page_id=82\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Media Center\",\"type\":\"page\",\"id\":86,\"url\":\"http://localhost:8080/?page_id=86\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"News\",\"type\":\"page\",\"id\":89,\"url\":\"http://localhost:8080/?page_id=89\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Gallery\",\"type\":\"page\",\"id\":91,\"url\":\"http://localhost:8080/?page_id=91\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Visuals\",\"type\":\"page\",\"id\":93,\"url\":\"http://localhost:8080/?page_id=93\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-link {\"label\":\"Achieve\",\"type\":\"page\",\"id\":95,\"url\":\"http://localhost:8080/?page_id=95\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Donate\",\"type\":\"page\",\"id\":98,\"url\":\"http://localhost:8080/?page_id=98\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Get Involved\",\"type\":\"page\",\"id\":101,\"url\":\"http://localhost:8080/?page_id=101\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact Us\",\"type\":\"page\",\"id\":104,\"url\":\"http://localhost:8080/?page_id=104\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"/wp-admin\">Login</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','Primary','','inherit','closed','closed','','63-revision-v1','','','2024-07-23 06:22:02','2024-07-23 06:22:02','',63,'http://localhost:8080/
(113,1,'2024-07-23 06:26:42','2024-07-23 06:26:42','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is content</p>\n<!-- /wp:paragraph -->','Ethical charter','','inherit','closed','closed','','38-revision-v1','','','2024-07-23 06:26:42','2024-07-23 06:26:42','',38,'http://localhost:8080/?p=113',0,'revision','',0),
(115,1,'2024-07-23 06:33:55','2024-07-23 06:33:55','<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">This is text</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is content</p>\n<!-- /wp:paragraph -->','Ethical charter','','inherit','closed','closed','','38-revision-v1','','','2024-07-23 06:33:55','2024-07-23 06:33:55','',38,'http://localhost:8080/?p=115',0,'revision','',0),
(117,1,'2024-07-23 06:49:46','2024-07-23 06:49:46','<!-- wp:paragraph -->\n<p>This is content</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\">This is a sub section</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Ethical charter','','inherit','closed','closed','','38-revision-v1','','','2024-07-23 06:49:46','2024-07-23 06:49:46','',38,'http://localhost:8080/?p=117',0,'revision','',0),
(118,2,'2024-07-24 19:43:19','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-07-24 19:43:19','0000-00-00 00:00:00','',0,'http://localhost:8080/?p=118',0,'post','',0),
(119,2,'2024-07-24 19:51:01','2024-07-24 19:51:01','<!-- wp:paragraph -->\n<p>This is content</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\">This is a sub section</h4>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":122,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0001-791x1024.jpg\" alt=\"\" class=\"wp-image-122\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":121,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0002-791x1024.jpg\" alt=\"\" class=\"wp-image-121\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":125,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0003-791x1024.jpg\" alt=\"\" class=\"wp-image-125\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":126,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0004-791x1024.jpg\" alt=\"\" class=\"wp-image-126\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":120,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0005-791x1024.jpg\" alt=\"\" class=\"wp-image-120\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":123,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0006-791x1024.jpg\" alt=\"\" class=\"wp-image-123\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":124,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0007-791x1024.jpg\" alt=\"\" class=\"wp-image-124\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','Ethical charter','','inherit','closed','closed','','38-autosave-v1','','','2024-07-24 19:51:01','2024-07-24 19:51:01','',38,'http://localhost:8080/?p=119',0,'revision','',0),
(120,2,'2024-07-24 19:50:20','2024-07-24 19:50:20','','Ethical-Charter_page-0005','','inherit','open','closed','','ethical-charter_page-0005','','','2024-07-24 19:50:20','2024-07-24 19:50:20','',38,'http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0005.jpg',0,'attachment','image/jpeg',0),
(121,2,'2024-07-24 19:50:20','2024-07-24 19:50:20','','Ethical-Charter_page-0002','','inherit','open','closed','','ethical-charter_page-0002','','','2024-07-24 19:50:20','2024-07-24 19:50:20','',38,'http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0002.jpg',0,'attachment','image/jpeg',0),
(122,2,'2024-07-24 19:50:20','2024-07-24 19:50:20','','Ethical-Charter_page-0001','','inherit','open','closed','','ethical-charter_page-0001','','','2024-07-24 19:50:20','2024-07-24 19:50:20','',38,'http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0001.jpg',0,'attachment','image/jpeg',0),
(123,2,'2024-07-24 19:50:20','2024-07-24 19:50:20','','Ethical-Charter_page-0006','','inherit','open','closed','','ethical-charter_page-0006','','','2024-07-24 19:50:20','2024-07-24 19:50:20','',38,'http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0006.jpg',0,'attachment','image/jpeg',0),
(124,2,'2024-07-24 19:50:20','2024-07-24 19:50:20','','Ethical-Charter_page-0007','','inherit','open','closed','','ethical-charter_page-0007','','','2024-07-24 19:50:20','2024-07-24 19:50:20','',38,'http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0007.jpg',0,'attachment','image/jpeg',0),
(125,2,'2024-07-24 19:50:20','2024-07-24 19:50:20','','Ethical-Charter_page-0003','','inherit','open','closed','','ethical-charter_page-0003','','','2024-07-24 19:50:20','2024-07-24 19:50:20','',38,'http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0003.jpg',0,'attachment','image/jpeg',0),
(126,2,'2024-07-24 19:50:20','2024-07-24 19:50:20','','Ethical-Charter_page-0004','','inherit','open','closed','','ethical-charter_page-0004','','','2024-07-24 19:50:20','2024-07-24 19:50:20','',38,'http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0004.jpg',0,'attachment','image/jpeg',0),
(127,2,'2024-07-24 19:51:59','2024-07-24 19:51:59','<!-- wp:paragraph -->\n<p>Ethical Charter of Charitable Askar Association for Development and Community Development</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":122,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0001-791x1024.jpg\" alt=\"\" class=\"wp-image-122\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":121,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0002-791x1024.jpg\" alt=\"\" class=\"wp-image-121\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":125,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0003-791x1024.jpg\" alt=\"\" class=\"wp-image-125\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":126,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0004-791x1024.jpg\" alt=\"\" class=\"wp-image-126\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":120,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0005-791x1024.jpg\" alt=\"\" class=\"wp-image-120\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":123,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0006-791x1024.jpg\" alt=\"\" class=\"wp-image-123\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":124,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ethical-Charter_page-0007-791x1024.jpg\" alt=\"\" class=\"wp-image-124\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','Ethical charter','','inherit','closed','closed','','38-revision-v1','','','2024-07-24 19:51:59','2024-07-24 19:51:59','',38,'http://localhost:8080/?p=127',0,'revision','',0),
(128,2,'2024-07-24 19:55:48','2024-07-24 19:55:48','','Our Values','','inherit','closed','closed','','34-autosave-v1','','','2024-07-24 19:55:48','2024-07-24 19:55:48','',34,'http://localhost:8080/?p=128',0,'revision','',0),
(129,2,'2024-07-24 19:56:21','2024-07-24 19:56:21','<!-- wp:paragraph -->\n<p>Rule of law<br>Integrity<br>Commitment and honesty<br>Transparency in action<br>Teamwork<br>Equal opportunities and human rights<br>Efficiency and effectiveness of individuals<br>Respect and non-discrimination<br>Democracy</p>\n<!-- /wp:paragraph -->','Our Values','','inherit','closed','closed','','34-revision-v1','','','2024-07-24 19:56:21','2024-07-24 19:56:21','',34,'http://localhost:8080/?p=129',0,'revision','',0),
(130,2,'2024-07-24 19:59:13','2024-07-24 19:59:13','<!-- wp:paragraph -->\n<p>The primary goal: to empower the Charitable Askar Association for Development and Community Development and create a more aware and cohesive society.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>First objective: building and providing educational opportunities to develop capabilities and hone skills.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Second objective: engage in appropriate opportunities to demonstrate the impact of our work on human rights, women\'s rights, and educational issues.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Third objective: Providing opportunities for children and youth to develop their abilities in the field of academic education, culture, and arts.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fourth objective: Improving additional support for people with disabilities and their families.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fifth objective: Supporting gender equality and the empowerment of women and girls.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sixth objective: Pursuing sustainable development.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seventh objective: Providing humanitarian aid at the local and national levels.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Eighth objective: Continue to enhance effective, value-added partnerships.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Ninth objective: Improving the quality of work by developing and strengthening organizational capabilities and sustainability by building the capabilities of employees and volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Tenth objective: achieving effective financial stability and finding a source of self-financing.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Strategic Objectives and Theory of Change','','inherit','closed','closed','','36-autosave-v1','','','2024-07-24 19:59:13','2024-07-24 19:59:13','',36,'http://localhost:8080/?p=130',0,'revision','',0),
(131,2,'2024-07-24 19:59:30','2024-07-24 19:59:30','<!-- wp:paragraph -->\n<p>The primary goal: to empower the Charitable Askar Association for Development and Community Development and create a more aware and cohesive society.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>First objective: building and providing educational opportunities to develop capabilities and hone skills.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Second objective: engage in appropriate opportunities to demonstrate the impact of our work on human rights, women\'s rights, and educational issues.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Third objective: Providing opportunities for children and youth to develop their abilities in the field of academic education, culture, and arts.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fourth objective: Improving additional support for people with disabilities and their families.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fifth objective: Supporting gender equality and the empowerment of women and girls.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sixth objective: Pursuing sustainable development.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seventh objective: Providing humanitarian aid at the local and national levels.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Eighth objective: Continue to enhance effective, value-added partnerships.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Ninth objective: Improving the quality of work by developing and strengthening organizational capabilities and sustainability by building the capabilities of employees and volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Tenth objective: achieving effective financial stability and finding a source of self-financing.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->','Strategic Objectives and Theory of Change','','inherit','closed','closed','','36-revision-v1','','','2024-07-24 19:59:30','2024-07-24 19:59:30','',36,'http://localhost:8080/?p=131',0,'revision','',0),
(132,2,'2024-07-24 20:08:30','2024-07-24 20:08:30','<!-- wp:paragraph -->\n<p><strong>Charitable Askar Association for Development and Community Development</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Palestine - Nablus - New Askar Camp - School Str.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Emails: sdcaskar@gmail.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> amjadrfaie@yahoo.co.uk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>00970 92327349</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>00970 9599886742</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','104-autosave-v1','','','2024-07-24 20:08:30','2024-07-24 20:08:30','',104,'http://localhost:8080/?p=132',0,'revision','',0),
(133,2,'2024-07-24 20:08:32','2024-07-24 20:08:32','<!-- wp:paragraph -->\n<p><strong>Charitable Askar Association for Development and Community Development</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Palestine - Nablus - New Askar Camp - School Str.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Emails: sdcaskar@gmail.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> amjadrfaie@yahoo.co.uk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>00970 92327349</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>00970 9599886742</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','104-revision-v1','','','2024-07-24 20:08:32','2024-07-24 20:08:32','',104,'http://localhost:8080/?p=133',0,'revision','',0),
(135,2,'2024-07-24 20:28:02','2024-07-24 20:28:02','<!-- wp:paragraph -->\n<p><strong>The Charitable Askar Association carries out numerous projects with long-standing local and international partners.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“Develop and Empower Children, Youth, Women and People with Disabilities in New Askar Camp” </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Funded by the Palestine Solidarity Association of Sweden - </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Palestinagrupperna i Sverige PGS</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>The project started in 1993 with the goal of fostering development by building the capabilities of the administrative and executive staff, in addition to offering awareness services through organized activities, courses, and camps. These initiatives aim to equip participants with essential life skills, boost their involvement in artistic, cultural, and sports activities, encourage talents, and nurture creativity. The project also focuses on promoting the concepts of democracy and human rights, raising awareness on important social issues, and carrying out community initiatives to improve the participants\' quality of life. Additionally, efforts are made to develop the camp, creating a safer and more suitable environment to achieve the project\'s objectives.</summary></details>\n<!-- /wp:details -->\n\n<!-- wp:paragraph -->\n<p>Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youth leaders: educational workshops on political agenda and capacity building, along with methodological courses in project writing and management, curriculum vitae writing,&nbsp; computer education, and others.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Children\'s rights: lectures and workshops to raise community awareness on early marriage, education, disabilities, and psychological support.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gender: Focus on women’s rights, including topics such as gender-based violence, early marriage, food, land ownership, psychological support, and health issues like breast cancer and women\'s health.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Foreign language courses (usually held by volunteers): English and French, in addition to Arabic courses for volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Folk art: extracurricular activities that allow the participants to express themselves through art.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dance: folk dance ‘Dabka’ and expressive dance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Music: a series of training courses overseen by both local and international trainers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Community problems: workshops addressing issues such as drug consumption, bullying, electronic extortion, and violence.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Different target groups benefit from these courses: school and university students, staff and volunteers, in addition to summer camp’s children during the summer school holidays.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>“<strong>Women\'s program</strong>” </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>The project aim to raise awareness about gender and individual rights through workshops and various activities organized by the association. It also focuses on improving educational aspects for both men and women, addressing topics such as gender-based violence, food security, and diverse leadership.</summary><!-- wp:paragraph {\"placeholder\":\"Type / to add a hidden bloc
(137,2,'2024-07-24 20:35:05','2024-07-24 20:35:05','<!-- wp:paragraph -->\n<p><strong>The Charitable Askar Association carries out numerous projects with long-standing local and international partners.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“Develop and Empower Children, Youth, Women and People with Disabilities in New Askar Camp” </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Funded by the Palestine Solidarity Association of Sweden - </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Palestinagrupperna i Sverige PGS</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>The project started in 1993 with the goal of fostering development by building the capabilities of the administrative and executive staff, in addition to offering awareness services through organized activities, courses, and camps. These initiatives aim to equip participants with essential life skills, boost their involvement in artistic, cultural, and sports activities, encourage talents, and nurture creativity. The project also focuses on promoting the concepts of democracy and human rights, raising awareness on important social issues, and carrying out community initiatives to improve the participants\' quality of life. Additionally, efforts are made to develop the camp, creating a safer and more suitable environment to achieve the project\'s objectives.</summary><!-- wp:paragraph {\"placeholder\":\"Type / to add a hidden block\"} -->\n<p></p>\n<!-- /wp:paragraph --></details>\n<!-- /wp:details -->\n\n<!-- wp:paragraph -->\n<p>Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youth leaders: educational workshops on political agenda and capacity building, along with methodological courses in project writing and management, curriculum vitae writing,&nbsp; computer education, and others.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Children\'s rights: lectures and workshops to raise community awareness on early marriage, education, disabilities, and psychological support.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gender: Focus on women’s rights, including topics such as gender-based violence, early marriage, food, land ownership, psychological support, and health issues like breast cancer and women\'s health.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Foreign language courses (usually held by volunteers): English and French, in addition to Arabic courses for volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Folk art: extracurricular activities that allow the participants to express themselves through art.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dance: folk dance ‘Dabka’ and expressive dance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Music: a series of training courses overseen by both local and international trainers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Community problems: workshops addressing issues such as drug consumption, bullying, electronic extortion, and violence.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Different target groups benefit from these courses: school and university students, staff and volunteers, in addition to summer camp’s children during the summer school holidays.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>“<strong>My Father Read to Me</strong>\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>This is a campaign in cooperation with the Tamer Foundation for Community Development, encourages students to read. This project provides a space for parents and children to engage in play, learning and various artistic and expressive activities, highlighting the importan
(139,2,'2024-07-24 20:49:02','2024-07-24 20:49:02','<!-- wp:paragraph -->\n<p>The Askar refugee camp was established in 1950 and it was officially recognized as a refugee camp by UNRWA.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In 1964 the camp was expanded into a new part to which residents refer as “New Askar” (Al-Jadid). However, this extended part is not officially recognized by the UN as a refugee camp and this is why there are only few structure financially supported by UNRWA here.<br>These structures are the schools, the hospitals and funding for the maintenance of the current infrastructure. Today the New Askar Camp it is inhabited by around 15.000 refugees.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The camp\'s major issues are overcrowding and lack of resources.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like most camps, Askar has severe problems because it is overcrowded and it is in great need of further expansion.</p>\n<!-- /wp:paragraph -->','About New Askar Camp','','inherit','closed','closed','','55-revision-v1','','','2024-07-24 20:49:02','2024-07-24 20:49:02','',55,'http://localhost:8080/?p=139',0,'revision','',0),
(141,2,'2024-07-24 20:52:51','2024-07-24 20:52:51','<!-- wp:paragraph -->\n<p><strong>Women\'s program</strong>: raise awareness about gender and individual rights through workshops and various activities organized by the association. It also focuses on improving educational aspects for both men and women, addressing topics such as gender-based violence, food security, and diverse leadership.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Summer and Winter Camps Program</strong>: annual extracurricular activities in New Askar camp during summer, winter, and international camps, involving both local and international volunteers. The target groups include hundreds of children as well as children with disabilities.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Public Library Program</strong>:  borrowing of cultural, literary, linguistic, and academic books. It aims to develop a generation that understands equality, democracy, and environmental preservation through theoretical workshops, practical applications, and small projects. It fosters a belief in freedom of opinion and respect for other cultures while reducing the financial burden of academic books. Since its inception as part of an agreement with the Solidarity Association with the Palestinians of Sweden, the library now houses around 4,500 volumes and is regularly visited by volunteers, university students, and school groups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Public Relations and International Relations Program</strong>: enhance global connections by sending youth abroad to experience different cultures and environments outside of Palestine. It also focuses on developing the human resources sector, essential for supporting our goals and activities, by welcoming volunteers from around the world. Central to this program are various partnerships, both local and international.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Documentary Film Program</strong>: document all activities and programs implemented by the association, as well as produce documentaries on various public and private topics, with a particular focus on preserving the memories of the Nakba and events in the camp. It was initiated with the help of training provided by a group of French volunteers to local volunteers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>University Students Training Program</strong>: volunteering and its significance in the lives of students and institutions is one of our most significant accomplishments over the years. Annually, about 50 students receive assistance and training to complete their university studies. These students actively participate in all programs, activities, and plans during their training period.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Free computer and internet lab program</strong>: raise awareness of today\'s interconnected and globalized era, emphasizing the cultural impact that has made the world resemble a small village. It seeks to facilitate youth, citizens, and civil institutions in their research and access to technical and technological information and news through training courses offered at nominal fees. Additionally, the program integrates education on artificial intelligence, reflecting its growing importance in modern society. Since its inception, this program has been part of the agreement between the Solidarity Association and the Palestinians of Sweden (PGS).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Emergency and aid program</strong>: assist the Askar camp community during challenging periods, such as the Covid-19 pandemic, Gaza war, and daily raids in Palestinian areas of the West Bank. It provides essential support such as food and medical supplies, while also advocating for and economically supporting other local communities and camps in need.</p>\n<!-- /wp:paragraph -->','Programs','','inherit','closed','closed','','80-revision-v1','','','2024-07-24 20:52:51','2024-07-24 20:52:51
(142,2,'2024-07-24 21:02:43','2024-07-24 21:02:43','<!-- wp:paragraph -->\n<p><em>Established in 2002 with support from the Popular Art Centre, Masha\'el Falesteen is a diverse dance ensemble comprising 20 young performers aged 13 to 18. Originating from economically disadvantaged backgrounds, these dancers lack recreational facilities and often gather at the association to engage in activities, primarily learning Dabka and other skills. Their aspiration extends beyond the confines of their circumstances as they dream of exploring the world outside their community. Through their performances, Masha\'el Falesteen endeavours to highlight the Palestinian cultural heritage and tradition, shedding light on the human dimension of a nation frequently marginalized. With their repertoire of traditional songs and Dabka dance, they invite audiences to delve into this rich tradition.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Inception</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The inspiration for establishing a group like Masha\'el Falesteen arose from the Askar Association for Community and Development\'s commitment to imparting Palestinian heritage and culture to youth. By fostering a deep connection to their roots, the association aims to empower young individuals to contribute to preserving and disseminating Palestine\'s cultural legacy. Today, Mashaâel Falesteen has gained widespread recognition; as a result, it is in high demand at festivals and ceremonies across Nablus.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Global Outreach</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Since its inception in 2002, Masha\'el Falesteen embarked on its maiden international tour in subsequent years. From performing at dance festivals in Norway in 2003 and 2004 touring Austria in 2006, the group continued to captivate audiences abroad. Subsequent tours took them back to Norway in 2007 and across four European countries (Holland, Belgium, Germany, and France) in 2009, followed by Belgium and France in 2010. Their most recent tour occurred in 2020, encompassing Belgium, Italy, France, and Spain.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Understanding Dabka</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Dabka, a traditional folk dance prevalent in several Arab countries including Lebanon, Palestine, Syria, Jordan, and Iraq, is a communal dance form involving both male and female participants. Each region boasts its distinctive steps and rhythms, contributing to the dance\'s diverse tapestry. The name itself, \"stomping of the feet,\" alludes to one of its defining features, alongside jumping. While often </em><em>performed at celebratory occasions like weddings, Dabka is a focal point for competitive events in Palestine.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em><img src=\"https://lh7-us.googleusercontent.com/docsz/AD_4nXdIFwQCFq9s6IP6cOYQiH_K10j9OHb8-hC0-xXaQ6Ruo31qMaYUV-XSLispv0ZdVq43619Saoxgf0p32hZvwWdBhkYdNVWn9ElMcnC1faUtoiXyeGyqU7Ur2DA8AHWfV22hfuyMXglz5I7-m--T8YgSdksY2BU9zOr6VgYrcGV33s18wn8vvYY?key=pj_5TOEMWUNIDsPvZzVDuQ\" width=\"584\" height=\"318\"></em></p>\n<!-- /wp:paragraph -->','Services - Masha\'el Falesteen','','inherit','closed','closed','','82-autosave-v1','','','2024-07-24 21:02:43','2024-07-24 21:02:43','',82,'http://localhost:8080/?p=142',0,'revision','',0),
(143,2,'2024-07-24 21:02:49','2024-07-24 21:02:49','<!-- wp:paragraph -->\n<p><em>Established in 2002 with support from the Popular Art Centre, Masha\'el Falesteen is a diverse dance ensemble comprising 20 young performers aged 13 to 18. Originating from economically disadvantaged backgrounds, these dancers lack recreational facilities and often gather at the association to engage in activities, primarily learning Dabka and other skills. Their aspiration extends beyond the confines of their circumstances as they dream of exploring the world outside their community. Through their performances, Masha\'el Falesteen endeavours to highlight the Palestinian cultural heritage and tradition, shedding light on the human dimension of a nation frequently marginalized. With their repertoire of traditional songs and Dabka dance, they invite audiences to delve into this rich tradition.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Inception</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The inspiration for establishing a group like Masha\'el Falesteen arose from the Askar Association for Community and Development\'s commitment to imparting Palestinian heritage and culture to youth. By fostering a deep connection to their roots, the association aims to empower young individuals to contribute to preserving and disseminating Palestine\'s cultural legacy. Today, Mashaâel Falesteen has gained widespread recognition; as a result, it is in high demand at festivals and ceremonies across Nablus.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Global Outreach</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Since its inception in 2002, Masha\'el Falesteen embarked on its maiden international tour in subsequent years. From performing at dance festivals in Norway in 2003 and 2004 touring Austria in 2006, the group continued to captivate audiences abroad. Subsequent tours took them back to Norway in 2007 and across four European countries (Holland, Belgium, Germany, and France) in 2009, followed by Belgium and France in 2010. Their most recent tour occurred in 2020, encompassing Belgium, Italy, France, and Spain.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Understanding Dabka</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Dabka, a traditional folk dance prevalent in several Arab countries including Lebanon, Palestine, Syria, Jordan, and Iraq, is a communal dance form involving both male and female participants. Each region boasts its distinctive steps and rhythms, contributing to the dance\'s diverse tapestry. The name itself, \"stomping of the feet,\" alludes to one of its defining features, alongside jumping. While often </em><em>performed at celebratory occasions like weddings, Dabka is a focal point for competitive events in Palestine.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em><img src=\"https://lh7-us.googleusercontent.com/docsz/AD_4nXdIFwQCFq9s6IP6cOYQiH_K10j9OHb8-hC0-xXaQ6Ruo31qMaYUV-XSLispv0ZdVq43619Saoxgf0p32hZvwWdBhkYdNVWn9ElMcnC1faUtoiXyeGyqU7Ur2DA8AHWfV22hfuyMXglz5I7-m--T8YgSdksY2BU9zOr6VgYrcGV33s18wn8vvYY?key=pj_5TOEMWUNIDsPvZzVDuQ\" width=\"584\" height=\"318\"></em></p>\n<!-- /wp:paragraph -->','Services - Masha\'el Falesteen','','inherit','closed','closed','','82-revision-v1','','','2024-07-24 21:02:49','2024-07-24 21:02:49','',82,'http://localhost:8080/?p=143',0,'revision','',0),
(144,2,'2024-07-24 21:03:19','2024-07-24 21:03:19','<!-- wp:paragraph -->\n<p><em>Established in 2002 with support from the Popular Art Centre, Masha\'el Falesteen is a diverse dance ensemble comprising 20 young performers aged 13 to 18. Originating from economically disadvantaged backgrounds, these dancers lack recreational facilities and often gather at the association to engage in activities, primarily learning Dabka and other skills. Their aspiration extends beyond the confines of their circumstances as they dream of exploring the world outside their community. Through their performances, Masha\'el Falesteen endeavours to highlight the Palestinian cultural heritage and tradition, shedding light on the human dimension of a nation frequently marginalized. With their repertoire of traditional songs and Dabka dance, they invite audiences to delve into this rich tradition.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Inception</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The inspiration for establishing a group like Masha\'el Falesteen arose from the Askar Association for Community and Development\'s commitment to imparting Palestinian heritage and culture to youth. By fostering a deep connection to their roots, the association aims to empower young individuals to contribute to preserving and disseminating Palestine\'s cultural legacy. Today, Mashaâel Falesteen has gained widespread recognition; as a result, it is in high demand at festivals and ceremonies across Nablus.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Global Outreach</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Since its inception in 2002, Masha\'el Falesteen embarked on its maiden international tour in subsequent years. From performing at dance festivals in Norway in 2003 and 2004 touring Austria in 2006, the group continued to captivate audiences abroad. Subsequent tours took them back to Norway in 2007 and across four European countries (Holland, Belgium, Germany, and France) in 2009, followed by Belgium and France in 2010. Their most recent tour occurred in 2020, encompassing Belgium, Italy, France, and Spain.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Understanding Dabka</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Dabka, a traditional folk dance prevalent in several Arab countries including Lebanon, Palestine, Syria, Jordan, and Iraq, is a communal dance form involving both male and female participants. Each region boasts its distinctive steps and rhythms, contributing to the dance\'s diverse tapestry. The name itself, \"stomping of the feet,\" alludes to one of its defining features, alongside jumping. While often </em><em>performed at celebratory occasions like weddings, Dabka is a focal point for competitive events in Palestine.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em><img src=\"https://lh7-us.googleusercontent.com/docsz/AD_4nXdIFwQCFq9s6IP6cOYQiH_K10j9OHb8-hC0-xXaQ6Ruo31qMaYUV-XSLispv0ZdVq43619Saoxgf0p32hZvwWdBhkYdNVWn9ElMcnC1faUtoiXyeGyqU7Ur2DA8AHWfV22hfuyMXglz5I7-m--T8YgSdksY2BU9zOr6VgYrcGV33s18wn8vvYY?key=pj_5TOEMWUNIDsPvZzVDuQ\" width=\"584\" height=\"318\"></em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\"><em><img src=\"https://lh7-us.googleusercontent.com/docsz/AD_4nXd1RCc7mSB785fle61rBBKxrTEsSknK75yG8YpgFSUA9v95ShkvYSKSQSc7r3XL3IAAULOZfWgUpAYrdsy2XwAOBQh7Lsu5kEhOwoYvAQvHXXgSc2tuqM6ggJC-WBQlWphsIFNDq9j5PPgYcbAzb6W56cxdZkqEKu8_4rcm6tUgHZIWKHIjWNA?key=pj_5TOEMWUNIDsPvZzVDuQ\" width=\"347\" height=\"195\"></em></p>\n<!-- /wp:paragraph -->','Services - Masha\'el Falesteen','','inherit','closed','closed','','82-revision-v1','','','2024-07-24 21:03:19','2024-07-24 21:03:19','',82,'http://localhost:8080/?p=144',0,'revision','',0),
(145,2,'2024-07-24 21:04:54','2024-07-24 21:04:54','','Gallery','','inherit','closed','closed','','91-autosave-v1','','','2024-07-24 21:04:54','2024-07-24 21:04:54','',91,'http://localhost:8080/?p=145',0,'revision','',0),
(146,2,'2024-07-25 08:57:45','2024-07-25 08:57:45','','IMG-20240725-WA0004','','inherit','open','closed','','img-20240725-wa0004','','','2024-07-25 08:57:45','2024-07-25 08:57:45','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg',0,'attachment','image/jpeg',0),
(147,2,'2024-07-25 08:57:46','2024-07-25 08:57:46','','IMG-20240725-WA0005','','inherit','open','closed','','img-20240725-wa0005','','','2024-07-25 08:57:46','2024-07-25 08:57:46','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg',0,'attachment','image/jpeg',0),
(148,2,'2024-07-25 08:57:47','2024-07-25 08:57:47','','IMG-20240725-WA0006','','inherit','open','closed','','img-20240725-wa0006','','','2024-07-25 08:57:47','2024-07-25 08:57:47','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006.jpg',0,'attachment','image/jpeg',0),
(149,2,'2024-07-25 08:57:48','2024-07-25 08:57:48','','IMG-20240725-WA0016','','inherit','open','closed','','img-20240725-wa0016','','','2024-07-25 08:57:48','2024-07-25 08:57:48','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016.jpg',0,'attachment','image/jpeg',0),
(150,2,'2024-07-25 08:57:50','2024-07-25 08:57:50','','IMG-20240725-WA0017','','inherit','open','closed','','img-20240725-wa0017','','','2024-07-25 08:57:50','2024-07-25 08:57:50','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017.jpg',0,'attachment','image/jpeg',0),
(151,2,'2024-07-25 08:57:51','2024-07-25 08:57:51','','IMG-20240725-WA0018','','inherit','open','closed','','img-20240725-wa0018','','','2024-07-25 08:57:51','2024-07-25 08:57:51','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018.jpg',0,'attachment','image/jpeg',0),
(152,2,'2024-07-25 08:57:52','2024-07-25 08:57:52','','IMG-20240725-WA0019','','inherit','open','closed','','img-20240725-wa0019','','','2024-07-25 08:57:52','2024-07-25 08:57:52','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019.jpg',0,'attachment','image/jpeg',0),
(153,2,'2024-07-25 08:57:53','2024-07-25 08:57:53','','IMG-20240725-WA0020','','inherit','open','closed','','img-20240725-wa0020','','','2024-07-25 08:57:53','2024-07-25 08:57:53','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020.jpg',0,'attachment','image/jpeg',0),
(154,2,'2024-07-25 08:57:54','2024-07-25 08:57:54','','IMG-20240725-WA0021','','inherit','open','closed','','img-20240725-wa0021','','','2024-07-25 08:57:54','2024-07-25 08:57:54','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021.jpg',0,'attachment','image/jpeg',0),
(155,2,'2024-07-25 08:57:54','2024-07-25 08:57:54','','IMG-20240725-WA0022','','inherit','open','closed','','img-20240725-wa0022','','','2024-07-25 08:57:54','2024-07-25 08:57:54','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022.jpg',0,'attachment','image/jpeg',0),
(156,2,'2024-07-25 08:57:56','2024-07-25 08:57:56','','IMG-20240725-WA0023','','inherit','open','closed','','img-20240725-wa0023','','','2024-07-25 08:57:56','2024-07-25 08:57:56','',0,'http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0023.jpg',0,'attachment','image/jpeg',0),
(157,2,'2024-07-25 08:57:58','2024-07-25 08:57:58','','Logo Askar Association with background','','inherit','open','closed','','logo-askar-association-with-background','','','2024-07-25 08:57:58','2024-07-25 08:57:58','',0,'http://localhost:8080/wp-content/uploads/2024/07/Logo-Askar-Association-with-background.png',0,'attachment','image/png',0),
(158,2,'2024-07-25 08:58:00','2024-07-25 08:58:00','','Logo Askar Association no backgroud','','inherit','open','closed','','logo-askar-association-no-backgroud','','','2024-07-25 08:58:00','2024-07-25 08:58:00','',0,'http://localhost:8080/wp-content/uploads/2024/07/Logo-Askar-Association-no-backgroud.png',0,'attachment','image/png',0),
(159,2,'2024-07-25 09:22:33','2024-07-25 09:22:33','','Al-Quds Open University','','inherit','open','closed','','al-quds-open-university','','','2024-07-25 09:22:33','2024-07-25 09:22:33','',0,'http://localhost:8080/wp-content/uploads/2024/07/Al-Quds-Open-University.jpg',0,'attachment','image/jpeg',0),
(160,2,'2024-07-25 09:22:33','2024-07-25 09:22:33','','An-Najah National University','','inherit','open','closed','','an-najah-national-university','','','2024-07-25 09:22:33','2024-07-25 09:22:33','',0,'http://localhost:8080/wp-content/uploads/2024/07/An-Najah-National-University.png',0,'attachment','image/png',0),
(161,2,'2024-07-25 09:22:33','2024-07-25 09:22:33','','Arab American University','','inherit','open','closed','','arab-american-university','','','2024-07-25 09:22:33','2024-07-25 09:22:33','',0,'http://localhost:8080/wp-content/uploads/2024/07/Arab-American-University.png',0,'attachment','image/png',0),
(162,2,'2024-07-25 09:22:33','2024-07-25 09:22:33','','Deeretna Center','','inherit','open','closed','','deeretna-center','','','2024-07-25 09:22:33','2024-07-25 09:22:33','',0,'http://localhost:8080/wp-content/uploads/2024/07/Deeretna-Center.jpg',0,'attachment','image/jpeg',0),
(163,2,'2024-07-25 09:22:33','2024-07-25 09:22:33','','Ilham Al-Khair','','inherit','open','closed','','ilham-al-khair','','','2024-07-25 09:22:33','2024-07-25 09:22:33','',0,'http://localhost:8080/wp-content/uploads/2024/07/Ilham-Al-Khair.jpg',0,'attachment','image/jpeg',0),
(164,2,'2024-07-25 09:22:34','2024-07-25 09:22:34','','INJAZ','','inherit','open','closed','','injaz','','','2024-07-25 09:22:34','2024-07-25 09:22:34','',0,'http://localhost:8080/wp-content/uploads/2024/07/INJAZ.jpg',0,'attachment','image/jpeg',0),
(165,2,'2024-07-25 09:22:34','2024-07-25 09:22:34','','Palestine Red Cross Society','','inherit','open','closed','','palestine-red-cross-society','','','2024-07-25 09:22:34','2024-07-25 09:22:34','',0,'http://localhost:8080/wp-content/uploads/2024/07/Palestine-Red-Cross-Society.png',0,'attachment','image/png',0),
(166,2,'2024-07-25 09:22:34','2024-07-25 09:22:34','','Psico social counceling for women','','inherit','open','closed','','psico-social-counceling-for-women','','','2024-07-25 09:22:34','2024-07-25 09:22:34','',0,'http://localhost:8080/wp-content/uploads/2024/07/Psico-social-counceling-for-women.jpg',0,'attachment','image/jpeg',0),
(167,2,'2024-07-25 09:22:34','2024-07-25 09:22:34','','PWWSD','','inherit','open','closed','','pwwsd','','','2024-07-25 09:22:34','2024-07-25 09:22:34','',0,'http://localhost:8080/wp-content/uploads/2024/07/PWWSD.png',0,'attachment','image/png',0),
(169,2,'2024-07-25 09:22:35','2024-07-25 09:22:35','','Secour Islamique','','inherit','open','closed','','secour-islamique','','','2024-07-25 09:22:35','2024-07-25 09:22:35','',0,'http://localhost:8080/wp-content/uploads/2024/07/Secour-Islamique.jpg',0,'attachment','image/jpeg',0),
(170,2,'2024-07-25 09:22:35','2024-07-25 09:22:35','','Seeds for development and Culture','','inherit','open','closed','','seeds-for-development-and-culture','','','2024-07-25 09:22:35','2024-07-25 09:22:35','',0,'http://localhost:8080/wp-content/uploads/2024/07/Seeds-for-development-and-Culture.jpg',0,'attachment','image/jpeg',0),
(172,2,'2024-07-25 09:22:36','2024-07-25 09:22:36','','Tanweer','','inherit','open','closed','','tanweer','','','2024-07-25 09:22:36','2024-07-25 09:22:36','',0,'http://localhost:8080/wp-content/uploads/2024/07/Tanweer.jpg',0,'attachment','image/jpeg',0),
(173,2,'2024-07-25 09:22:36','2024-07-25 09:22:36','','Womens studies Center','','inherit','open','closed','','womens-studies-center','','','2024-07-25 09:22:36','2024-07-25 09:22:36','',0,'http://localhost:8080/wp-content/uploads/2024/07/Womens-studies-Center.png',0,'attachment','image/png',0),
(174,2,'2024-07-25 09:22:36','2024-07-25 09:22:36','','Yafa','','inherit','open','closed','','yafa','','','2024-07-25 09:22:36','2024-07-25 09:22:36','',0,'http://localhost:8080/wp-content/uploads/2024/07/Yafa.jpg',0,'attachment','image/jpeg',0),
(176,2,'2024-07-25 09:33:27','2024-07-25 09:33:27','','Family defence society','','inherit','open','closed','','family-defence-society','','','2024-07-25 09:33:27','2024-07-25 09:33:27','',0,'http://localhost:8080/wp-content/uploads/2024/07/Family-defence-society.png',0,'attachment','image/png',0),
(177,2,'2024-07-25 10:44:46','2024-07-25 10:44:46','<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner International Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":201,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/PGS.jpg\" alt=\"\" class=\"wp-image-201\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":200,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Representative-Office-of-Ireland-in-Palestine-1-scaled.jpg\" alt=\"\" class=\"wp-image-200\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":53,\"width\":\"832px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-12.png\" alt=\"\" class=\"wp-image-53\" style=\"width:832px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner Local Institutions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":159,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Al-Quds-Open-University.jpg\" alt=\"\" class=\"wp-image-159\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":160,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/An-Najah-National-University.png\" alt=\"\" class=\"wp-image-160\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":161,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Arab-American-University.png\" alt=\"\" class=\"wp-image-161\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":162,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Deeretna-Center.jpg\" alt=\"\" class=\"wp-image-162\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":163,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ilham-Al-Khair.jpg\" alt=\"\" class=\"wp-image-163\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":165,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Palestine-Red-Cross-Society.png\" alt=\"\" class=\"wp-image-165\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":166,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Psico-social-counceling-for-women.jpg\" alt=\"\" class=\"wp-image-166\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":179,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/PWWSD-1.png\" alt=\"\" class=\"wp-image-179\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":164,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/INJAZ.jpg\" alt=\"\" class=\"wp-image-164\"/></figure>\n<!-
(178,2,'2024-07-25 09:42:51','2024-07-25 09:42:51','','PWWSD','','inherit','open','closed','','pwwsd-2','','','2024-07-25 09:42:51','2024-07-25 09:42:51','',40,'http://localhost:8080/wp-content/uploads/2024/07/PWWSD.webp',0,'attachment','image/webp',0),
(179,2,'2024-07-25 09:44:38','2024-07-25 09:44:38','','PWWSD-1','','inherit','open','closed','','pwwsd-1','','','2024-07-25 09:44:38','2024-07-25 09:44:38','',40,'http://localhost:8080/wp-content/uploads/2024/07/PWWSD-1.png',0,'attachment','image/png',0),
(183,2,'2024-07-25 09:50:29','2024-07-25 09:50:29','<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner International Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":51,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-10.png\" alt=\"\" class=\"wp-image-51\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":52,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-11.png\" alt=\"\" class=\"wp-image-52\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":53,\"width\":\"832px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-12.png\" alt=\"\" class=\"wp-image-53\" style=\"width:832px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner Local Institutions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":159,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Al-Quds-Open-University.jpg\" alt=\"\" class=\"wp-image-159\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":160,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/An-Najah-National-University.png\" alt=\"\" class=\"wp-image-160\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":161,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Arab-American-University.png\" alt=\"\" class=\"wp-image-161\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":162,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Deeretna-Center.jpg\" alt=\"\" class=\"wp-image-162\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":163,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ilham-Al-Khair.jpg\" alt=\"\" class=\"wp-image-163\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":165,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Palestine-Red-Cross-Society.png\" alt=\"\" class=\"wp-image-165\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":166,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Psico-social-counceling-for-women.jpg\" alt=\"\" class=\"wp-image-166\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":179,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/PWWSD-1.png\" alt=\"\" class=\"wp-image-179\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":164,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/INJAZ.jpg\" alt=\"\" class=\"wp-image-164\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":169,
(188,2,'2024-07-25 10:18:00','2024-07-25 10:18:00','','SCD','','inherit','open','closed','','scd','','','2024-07-25 10:18:00','2024-07-25 10:18:00','',0,'http://localhost:8080/wp-content/uploads/2024/07/SCD.jpg',0,'attachment','image/jpeg',0),
(189,2,'2024-07-25 10:18:16','2024-07-25 10:18:16','','SCD-1','','inherit','open','closed','','scd-1','','','2024-07-25 10:18:16','2024-07-25 10:18:16','',40,'http://localhost:8080/wp-content/uploads/2024/07/SCD-1.jpg',0,'attachment','image/jpeg',0),
(190,2,'2024-07-25 10:21:49','2024-07-25 10:21:49','','Tamer-Institute','','inherit','open','closed','','tamer-institute-2','','','2024-07-25 10:21:49','2024-07-25 10:21:49','',40,'http://localhost:8080/wp-content/uploads/2024/07/Tamer-Institute.jpg',0,'attachment','image/jpeg',0),
(193,2,'2024-07-25 10:27:47','2024-07-25 10:27:47','','Tamer Institute','','inherit','open','closed','','tamer-institute','','','2024-07-25 10:27:47','2024-07-25 10:27:47','',0,'http://localhost:8080/wp-content/uploads/2024/07/Tamer-Institute-1.jpg',0,'attachment','image/jpeg',0),
(194,2,'2024-07-25 10:30:17','2024-07-25 10:30:17','','Youth vision soc.','','inherit','open','closed','','youth-vision-soc','','','2024-07-25 10:30:17','2024-07-25 10:30:17','',0,'http://localhost:8080/wp-content/uploads/2024/07/Youth-vision-soc.jpg',0,'attachment','image/jpeg',0),
(195,2,'2024-07-25 10:30:34','2024-07-25 10:30:34','<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner International Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":51,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-10.png\" alt=\"\" class=\"wp-image-51\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":52,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-11.png\" alt=\"\" class=\"wp-image-52\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":53,\"width\":\"832px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-12.png\" alt=\"\" class=\"wp-image-53\" style=\"width:832px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner Local Institutions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":159,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Al-Quds-Open-University.jpg\" alt=\"\" class=\"wp-image-159\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":160,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/An-Najah-National-University.png\" alt=\"\" class=\"wp-image-160\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":161,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Arab-American-University.png\" alt=\"\" class=\"wp-image-161\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":162,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Deeretna-Center.jpg\" alt=\"\" class=\"wp-image-162\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":163,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ilham-Al-Khair.jpg\" alt=\"\" class=\"wp-image-163\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":165,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Palestine-Red-Cross-Society.png\" alt=\"\" class=\"wp-image-165\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":166,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Psico-social-counceling-for-women.jpg\" alt=\"\" class=\"wp-image-166\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":179,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/PWWSD-1.png\" alt=\"\" class=\"wp-image-179\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":164,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/INJAZ.jpg\" alt=\"\" class=\"wp-image-164\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":169,
(200,2,'2024-07-25 10:41:12','2024-07-25 10:41:12','','Representative-Office-of-Ireland-in-Palestine-1','','inherit','open','closed','','representative-office-of-ireland-in-palestine-1','','','2024-07-25 10:41:12','2024-07-25 10:41:12','',40,'http://localhost:8080/wp-content/uploads/2024/07/Representative-Office-of-Ireland-in-Palestine-1.jpg',0,'attachment','image/jpeg',0),
(201,2,'2024-07-25 10:43:53','2024-07-25 10:43:53','','PGS','','inherit','open','closed','','pgs','','','2024-07-25 10:43:53','2024-07-25 10:43:53','',40,'http://localhost:8080/wp-content/uploads/2024/07/PGS.jpg',0,'attachment','image/jpeg',0),
(202,2,'2024-07-25 10:47:59','2024-07-25 10:47:59','<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner International Organizations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":201,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/PGS.jpg\" alt=\"\" class=\"wp-image-201\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":200,\"width\":\"828px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Representative-Office-of-Ireland-in-Palestine-1-scaled.jpg\" alt=\"\" class=\"wp-image-200\" style=\"width:828px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":53,\"width\":\"832px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/image-12.png\" alt=\"\" class=\"wp-image-53\" style=\"width:832px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"fontSize\":\"medium\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size\">Partner Local Institutions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":159,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Al-Quds-Open-University.jpg\" alt=\"\" class=\"wp-image-159\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":160,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/An-Najah-National-University.png\" alt=\"\" class=\"wp-image-160\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":161,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Arab-American-University.png\" alt=\"\" class=\"wp-image-161\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":162,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Deeretna-Center.jpg\" alt=\"\" class=\"wp-image-162\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":163,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Ilham-Al-Khair.jpg\" alt=\"\" class=\"wp-image-163\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":165,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Palestine-Red-Cross-Society.png\" alt=\"\" class=\"wp-image-165\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":166,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Psico-social-counceling-for-women.jpg\" alt=\"\" class=\"wp-image-166\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":179,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/PWWSD-1.png\" alt=\"\" class=\"wp-image-179\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":164,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/INJAZ.jpg\" alt=\"\" class=\"wp-image-164\"/></figure>\n<!-
(203,2,'2024-07-28 15:45:03','2024-07-28 15:45:03','<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":146,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\" alt=\"\" class=\"wp-image-150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":151,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018-1024x768.jpg\" alt=\"\" class=\"wp-image-151\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019-1024x768.jpg\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":153,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020-1024x768.jpg\" alt=\"\" class=\"wp-image-153\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":155,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022-1024x682.jpg\" alt=\"\" class=\"wp-image-155\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":154,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021-1024x577.jpg\" alt=\"\" class=\"wp-image-154\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":156,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0023.jpg\" alt=\"\" class=\"wp-image-156\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-28 15:45:03','2024-07-28 15:45:03','',8,'http://localhost:8080/?p=203',0,'revision','',0),
(204,2,'2024-07-28 15:46:08','2024-07-28 15:46:08','','Askar Association Logo','','inherit','open','closed','','askar-association-logo','','','2024-07-28 15:46:08','2024-07-28 15:46:08','',0,'http://localhost:8080/wp-content/uploads/2024/07/Askar-Association-Logo.png',0,'attachment','image/png',0),
(205,2,'2024-07-28 15:49:24','2024-07-28 15:49:24','<!-- wp:paragraph -->\n<p>Charitable Askar Association for Development and Community Development, established in 1992 and officially registered as an NGO since 2019, is located in \"New Askar Camp” in Nablus. It is a member of the Union of Local Committees for Rehabilitation. The organization was founded with a mission to promote societal advancement through education and peace-building across all sectors, advocating for a state founded on non-violent principles. Today, the association\'s primary focus areas include women\'s empowerment, youth and children, disabilities, cultural activities, and raising awareness on various social, economic, and environmental issues within the community. It highlights the interconnected challenges between international development cooperation and development education.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":204,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Askar-Association-Logo.png\" alt=\"\" class=\"wp-image-204\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->','Who we are','','inherit','closed','closed','','29-autosave-v1','','','2024-07-28 15:49:24','2024-07-28 15:49:24','',29,'http://localhost:8080/?p=205',0,'revision','',0),
(206,2,'2024-07-28 15:49:25','2024-07-28 15:49:25','<!-- wp:paragraph -->\n<p>Charitable Askar Association for Development and Community Development, established in 1992 and officially registered as an NGO since 2019, is located in \"New Askar Camp” in Nablus. It is a member of the Union of Local Committees for Rehabilitation. The organization was founded with a mission to promote societal advancement through education and peace-building across all sectors, advocating for a state founded on non-violent principles. Today, the association\'s primary focus areas include women\'s empowerment, youth and children, disabilities, cultural activities, and raising awareness on various social, economic, and environmental issues within the community. It highlights the interconnected challenges between international development cooperation and development education.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":204,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Askar-Association-Logo.png\" alt=\"\" class=\"wp-image-204\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->','Who we are','','inherit','closed','closed','','29-revision-v1','','','2024-07-28 15:49:25','2024-07-28 15:49:25','',29,'http://localhost:8080/?p=206',0,'revision','',0),
(207,3,'2024-07-29 06:32:27','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-07-29 06:32:27','0000-00-00 00:00:00','',0,'http://localhost:8080/?p=207',0,'post','',0),
(209,3,'2024-07-29 06:39:56','2024-07-29 06:39:56','<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-gallery alignfull has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":146,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\" alt=\"\" class=\"wp-image-150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":151,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018-1024x768.jpg\" alt=\"\" class=\"wp-image-151\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019-1024x768.jpg\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":153,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020-1024x768.jpg\" alt=\"\" class=\"wp-image-153\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":155,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022-1024x682.jpg\" alt=\"\" class=\"wp-image-155\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":154,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021-1024x577.jpg\" alt=\"\" class=\"wp-image-154\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":156,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0023.jpg\" alt=\"\" class=\"wp-image-156\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-29 06:39:56','2024-07-29 06:39:56','',8,'http://localhost:8080/?p=209',0,'revision','',0),
(210,3,'2024-07-29 06:41:40','2024-07-29 06:41:40','<!-- wp:image {\"id\":146,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\" alt=\"\" class=\"wp-image-150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":151,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018-1024x768.jpg\" alt=\"\" class=\"wp-image-151\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019-1024x768.jpg\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":153,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020-1024x768.jpg\" alt=\"\" class=\"wp-image-153\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":155,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022-1024x682.jpg\" alt=\"\" class=\"wp-image-155\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":154,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021-1024x577.jpg\" alt=\"\" class=\"wp-image-154\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":156,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0023.jpg\" alt=\"\" class=\"wp-image-156\"/></figure>\n<!-- /wp:image -->','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-29 06:41:40','2024-07-29 06:41:40','',8,'http://localhost:8080/?p=210',0,'revision','',0),
(211,3,'2024-07-29 06:42:44','2024-07-29 06:42:44','<!-- wp:image {\"id\":146,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"full\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image alignfull size-large is-style-rounded\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\" alt=\"\" class=\"wp-image-150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":151,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018-1024x768.jpg\" alt=\"\" class=\"wp-image-151\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019-1024x768.jpg\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":153,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020-1024x768.jpg\" alt=\"\" class=\"wp-image-153\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":155,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022-1024x682.jpg\" alt=\"\" class=\"wp-image-155\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":154,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021-1024x577.jpg\" alt=\"\" class=\"wp-image-154\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":156,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0023.jpg\" alt=\"\" class=\"wp-image-156\"/></figure>\n<!-- /wp:image -->','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-29 06:42:44','2024-07-29 06:42:44','',8,'http://localhost:8080/?p=211',0,'revision','',0),
(212,3,'2024-07-29 07:00:21','2024-07-29 07:00:21','<!-- wp:image {\"id\":146,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"right\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image alignright size-large is-style-rounded\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\" alt=\"\" class=\"wp-image-150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":151,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018-1024x768.jpg\" alt=\"\" class=\"wp-image-151\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019-1024x768.jpg\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":153,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020-1024x768.jpg\" alt=\"\" class=\"wp-image-153\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":155,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022-1024x682.jpg\" alt=\"\" class=\"wp-image-155\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":154,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021-1024x577.jpg\" alt=\"\" class=\"wp-image-154\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":156,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0023.jpg\" alt=\"\" class=\"wp-image-156\"/></figure>\n<!-- /wp:image -->','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-29 07:00:21','2024-07-29 07:00:21','',8,'http://localhost:8080/?p=212',0,'revision','',0),
(213,3,'2024-07-29 07:01:22','2024-07-29 07:01:22','<!-- wp:image {\"id\":146,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"full\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image alignfull size-large is-style-rounded\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\" alt=\"\" class=\"wp-image-150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":151,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018-1024x768.jpg\" alt=\"\" class=\"wp-image-151\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019-1024x768.jpg\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":153,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020-1024x768.jpg\" alt=\"\" class=\"wp-image-153\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":155,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022-1024x682.jpg\" alt=\"\" class=\"wp-image-155\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":154,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021-1024x577.jpg\" alt=\"\" class=\"wp-image-154\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":156,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0023.jpg\" alt=\"\" class=\"wp-image-156\"/></figure>\n<!-- /wp:image -->','Home','','inherit','closed','closed','','8-revision-v1','','','2024-07-29 07:01:22','2024-07-29 07:01:22','',8,'http://localhost:8080/?p=213',0,'revision','',0),
(214,2,'2024-07-30 13:35:45','2024-07-30 13:35:45','<!-- wp:image {\"id\":146,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"full\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image alignfull size-large is-style-rounded\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\" alt=\"\" class=\"wp-image-150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":151,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018-1024x768.jpg\" alt=\"\" class=\"wp-image-151\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019-1024x768.jpg\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":153,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020-1024x768.jpg\" alt=\"\" class=\"wp-image-153\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":155,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022-1024x682.jpg\" alt=\"\" class=\"wp-image-155\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":154,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021-1024x577.jpg\" alt=\"\" class=\"wp-image-154\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":156,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0023.jpg\" alt=\"\" class=\"wp-image-156\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','8-revision-v1','','','2024-07-30 13:35:45','2024-07-30 13:35:45','',8,'http://localhost:8080/?p=214',0,'revision','',0),
(216,2,'2024-07-30 13:43:25','2024-07-30 13:43:25','<!-- wp:image {\"id\":146,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"full\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image alignfull size-large is-style-rounded\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\" alt=\"\" class=\"wp-image-150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":151,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0018-1024x768.jpg\" alt=\"\" class=\"wp-image-151\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0019-1024x768.jpg\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":153,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0020-1024x768.jpg\" alt=\"\" class=\"wp-image-153\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":155,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0022-1024x682.jpg\" alt=\"\" class=\"wp-image-155\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":154,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0021-1024x577.jpg\" alt=\"\" class=\"wp-image-154\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":204} -->\n<figure class=\"wp-block-image\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/Askar-Association-Logo.png\" alt=\"\" class=\"wp-image-204\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','8-revision-v1','','','2024-07-30 13:43:25','2024-07-30 13:43:25','',8,'http://localhost:8080/?p=216',0,'revision','',0),
(217,1,'2024-07-30 22:40:47','2024-07-30 22:40:47','<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\",\"bottom\":\"20px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-contrast-background-color has-text-color has-background has-link-color\" style=\"padding-top:20px;padding-bottom:20px\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-contrast-background-color has-text-color has-background has-link-color\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"level\":0,\"textAlign\":\"center\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":63,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\",\"orientation\":\"horizontal\"},\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"},\"blockGap\":\"var:preset|spacing|20\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Header','','publish','closed','closed','','header','','','2024-07-30 22:52:04','2024-07-30 22:52:04','',0,'http://localhost:8080/?p=217',0,'wp_template_part','',0),
(218,1,'2024-07-30 22:45:16','2024-07-30 22:45:16','<!-- wp:navigation-link {\"label\":\"Facebook\",\"url\":\"https://www.facebook.com/SDC.center1\",\"kind\":\"custom\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Instagram\",\"url\":\"https://www.instagram.com/charitable_askar_association\",\"kind\":\"custom\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Twitter/X\",\"url\":\"https://x.com/madani_tag14702\",\"kind\":\"custom\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"LinkedIn\",\"url\":\"https://www.linkedin.com/in/charitable-askar-association-for-development-and-community-development-931552289\",\"kind\":\"custom\"} /-->','Navigation','','publish','closed','closed','','navigation','','','2024-07-30 22:45:16','2024-07-30 22:45:16','',0,'http://localhost:8080/?p=218',0,'wp_navigation','',0),
(219,1,'2024-07-30 22:45:16','2024-07-30 22:45:16','<!-- wp:navigation-link {\"label\":\"Facebook\",\"url\":\"https://www.facebook.com/SDC.center1\",\"kind\":\"custom\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Instagram\",\"url\":\"https://www.instagram.com/charitable_askar_association\",\"kind\":\"custom\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Twitter/X\",\"url\":\"https://x.com/madani_tag14702\",\"kind\":\"custom\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"LinkedIn\",\"url\":\"https://www.linkedin.com/in/charitable-askar-association-for-development-and-community-development-931552289\",\"kind\":\"custom\"} /-->','Navigation','','inherit','closed','closed','','218-revision-v1','','','2024-07-30 22:45:16','2024-07-30 22:45:16','',218,'http://localhost:8080/?p=219',0,'revision','',0),
(220,1,'2024-07-30 22:45:16','2024-07-30 22:45:16','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:group {\"style\":{\"dimensions\":{\"minHeight\":\"\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":20,\"shouldSyncIcon\":false,\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} /-->\n\n<!-- wp:site-title {\"level\":0,\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"className\":\"has-medium-font-size\",\"fontFamily\":\"body\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size has-body-font-family\" style=\"font-style:normal;font-weight:600\">Social</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":218,\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:0\"><!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast-2\",\"fontSize\":\"small\"} -->\n<p class=\"has-contrast-2-color has-text-color has-link-color has-small-font-size\">\n Designed with <a href=\"https://wordpress.org\" rel=\"nofollow\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Footer','','inherit','closed','closed','','64-revision-v1','','','2024-07-30 22:45:16','2024-07-30 22:45:16','',64,'http://localhost:8080/?p=220',0,'revision','',0),
(221,1,'2024-07-30 22:50:02','2024-07-30 22:50:02','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"30%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30%\"><!-- wp:group {\"style\":{\"dimensions\":{\"minHeight\":\"\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":20,\"shouldSyncIcon\":false,\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} /-->\n\n<!-- wp:site-title {\"level\":0,\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"position\":{\"type\":\"\"},\"dimensions\":{\"minHeight\":\"0px\"},\"spacing\":{\"blockGap\":\"0\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\" style=\"min-height:0px;margin-top:0;margin-bottom:0;padding-right:0;padding-left:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"className\":\"has-medium-font-size\",\"fontFamily\":\"body\"} -->\n<h2 class=\"wp-block-heading has-medium-font-size has-body-font-family\" style=\"font-style:normal;font-weight:600\">Social</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":218,\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"spacing\":{\"blockGap\":\"var:preset|spacing|10\"}},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:0\"><!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast-2\",\"fontSize\":\"small\"} -->\n<p class=\"has-contrast-2-color has-text-color has-link-color has-small-font-size\">\n Designed with <a href=\"https://wordpress.org\" rel=\"nofollow\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Footer','','inherit','closed','closed','','64-revision-v1','','','2024-07-30 22:50:02','2024-07-30 22:50:02','',64,'http://localhost:8080/?p=221',0,'revision','',0),
(222,1,'2024-07-30 22:51:19','2024-07-30 22:51:19','<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"About Us\",\"type\":\"page\",\"description\":\"\",\"url\":\"http://localhost:8080/?page_id=55\",\"title\":\"\",\"kind\":\"post-type\",\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\"} -->\n<!-- wp:navigation-link {\"label\":\"Who we are\",\"type\":\"page\",\"id\":29,\"url\":\"http://localhost:8080/?page_id=29\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Mission and Vision\",\"type\":\"page\",\"id\":31,\"url\":\"http://localhost:8080/?page_id=31\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Our Values\",\"type\":\"page\",\"id\":34,\"url\":\"http://localhost:8080/?page_id=34\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Strategic Objectives and Theory of Change\",\"type\":\"page\",\"id\":36,\"url\":\"http://localhost:8080/?page_id=36\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Ethical charter\",\"type\":\"page\",\"id\":38,\"url\":\"http://localhost:8080/?page_id=38\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Partners\",\"type\":\"page\",\"id\":40,\"url\":\"http://localhost:8080/?page_id=40\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Our Work\",\"type\":\"page\",\"id\":73,\"url\":\"http://localhost:8080/?page_id=73\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"Main Units\",\"type\":\"page\",\"id\":76,\"url\":\"http://localhost:8080/?page_id=76\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Projects\",\"type\":\"page\",\"id\":78,\"url\":\"http://localhost:8080/?page_id=78\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Programs\",\"type\":\"page\",\"id\":80,\"url\":\"http://localhost:8080/?page_id=80\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Services\",\"type\":\"page\",\"id\":82,\"url\":\"http://localhost:8080/?page_id=82\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-submenu {\"label\":\"Media Center\",\"type\":\"page\",\"id\":86,\"url\":\"http://localhost:8080/?page_id=86\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"News\",\"type\":\"page\",\"id\":89,\"url\":\"http://localhost:8080/?page_id=89\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Gallery\",\"type\":\"page\",\"id\":91,\"url\":\"http://localhost:8080/?page_id=91\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Visuals\",\"type\":\"page\",\"id\":93,\"url\":\"http://localhost:8080/?page_id=93\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-link {\"label\":\"Achieve\",\"type\":\"page\",\"id\":95,\"url\":\"http://localhost:8080/?page_id=95\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Donate\",\"type\":\"page\",\"id\":98,\"url\":\"http://localhost:8080/?page_id=98\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Get Involved\",\"type\":\"page\",\"id\":101,\"url\":\"http://localhost:8080/?page_id=101\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact Us\",\"type\":\"page\",\"id\":104,\"url\":\"http://localhost:8080/?page_id=104\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"/wp-admin\">Login</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','Primary','','inherit','closed','closed','','63-revision-v1','','','2024-07-30 22:51:1
(223,1,'2024-07-30 22:52:04','2024-07-30 22:52:04','<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\",\"bottom\":\"20px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-contrast-background-color has-text-color has-background has-link-color\" style=\"padding-top:20px;padding-bottom:20px\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-contrast-background-color has-text-color has-background has-link-color\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"level\":0,\"textAlign\":\"center\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":63,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\",\"orientation\":\"horizontal\"},\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"},\"blockGap\":\"var:preset|spacing|20\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','Header','','inherit','closed','closed','','217-revision-v1','','','2024-07-30 22:52:04','2024-07-30 22:52:04','',217,'http://localhost:8080/?p=223',0,'revision','',0),
(224,1,'2024-07-30 22:52:43','2024-07-30 22:52:43','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\",\"layout\":{\"type\":\"default\"}} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0vh\",\"bottom\":\"6vh\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:0vh;padding-bottom:6vh\"><!-- wp:post-title {\"level\":1,\"fontSize\":\"x-large\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"1rem\",\"left\":\"1rem\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></main>\n<!-- /wp:group -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"twentytwentyfour\",\"tagName\":\"footer\",\"area\":\"footer\"} /-->','Page with Wide Image','','publish','closed','closed','','page-wide','','','2024-07-30 23:13:28','2024-07-30 23:13:28','',0,'http://localhost:8080/?p=224',0,'wp_template','',0),
(225,1,'2024-07-30 22:53:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2024-07-30 22:53:26','0000-00-00 00:00:00','',0,'http://localhost:8080/?post_type=superblockslider&p=225',0,'superblockslider','',0),
(227,1,'2024-07-30 22:59:25','2024-07-30 22:59:25','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:100vh;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1200%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"isEditorSlide\":true,\"slideIndex\":1} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"419px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:419px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":5} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"5\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superbloc
(228,1,'2024-07-30 23:01:37','2024-07-30 23:01:37','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"20em\",\"sliderWidthValue\":\"600rem\",\"variableHeightValue\":true,\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:auto;width:600rem\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\" data-variable-height=\"true\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"419px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:419px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-co
(229,1,'2024-07-30 23:03:01','2024-07-30 23:03:01','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"20em\",\"sliderWidthValue\":\"90%\",\"variableHeightValue\":true,\"sliderWidthEditorValue\":\"1024px\",\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:auto;width:90%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\" data-variable-height=\"true\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundPreviewEditor\":\"desktop\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"419px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:419px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure cl
(230,1,'2024-07-30 23:03:39','2024-07-30 23:03:39','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100%\",\"sliderWidthValue\":\"90%\",\"sliderWidthEditorValue\":\"1024px\",\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:100%;width:90%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundPreviewEditor\":\"desktop\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"419px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:419px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localho
(231,1,'2024-07-30 23:04:02','2024-07-30 23:04:02','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100px\",\"sliderWidthValue\":\"400px\",\"sliderWidthEditorValue\":\"1024px\",\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:100px;width:400px\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundPreviewEditor\":\"desktop\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"419px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:419px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://l
(232,1,'2024-07-30 23:04:20','2024-07-30 23:04:20','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderWidthValue\":\"100vw\",\"sliderWidthEditorValue\":\"1024px\",\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:100vh;width:100vw\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundPreviewEditor\":\"desktop\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"419px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:419px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads
(233,1,'2024-07-30 23:04:49','2024-07-30 23:04:49','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100%\",\"sliderWidthEditorValue\":\"1024px\",\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:100%;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"419px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:419px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":147,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0017-1024x682.jpg\
(234,1,'2024-07-30 23:05:29','2024-07-30 23:05:29','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100%\",\"variableHeightValue\":true,\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:auto;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\" data-variable-height=\"true\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"823px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:823px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"isEditorSlide\":true,\"slideIndex\":1} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":147,\"width\":\"754px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\" style=\"width:754px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->
(235,1,'2024-07-30 23:05:55','2024-07-30 23:05:55','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100%\",\"variableHeightValue\":true,\"editorCurrentImageValue\":{\"imageWidth\":200,\"imageHeight\":200}} -->\n<div style=\"height:auto;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\" data-variable-height=\"true\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":146,\"width\":\"823px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\" alt=\"\" class=\"wp-image-146\" style=\"width:823px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"isEditorSlide\":true,\"slideIndex\":1,\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\" style=\"overflow:hidden\"><!-- wp:image {\"id\":147,\"width\":\"754px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\" alt=\"\" class=\"wp-image-147\" style=\"width:754px;height:auto\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":2} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"2\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":149,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0016-1024x768.jpg\" alt=\"\" class=\"wp-image-149\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":3} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"3\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"><!-- wp:image {\"id\":148,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0006-768x1024.jpg\" alt=\"\" class=\"wp-image-148\"/></figure>\n<!-- /wp:image --></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":4} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide\" data-slide-index=\"4\"><div class=\"superblockslider__slide__bg\"></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblo
(236,1,'2024-07-30 23:08:31','2024-07-30 23:08:31','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100%\",\"variableHeightValue\":true,\"editorCurrentImageValue\":{\"imageWidth\":1072,\"imageHeight\":856}} -->\n<div style=\"height:auto;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\" data-variable-height=\"true\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading=\"e
(237,1,'2024-07-30 23:09:37','2024-07-30 23:09:37','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100%\",\"variableHeightValue\":true,\"editorCurrentImageValue\":{\"imageWidth\":1072,\"imageHeight\":856}} -->\n<div style=\"height:auto;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\" data-variable-height=\"true\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading=\"e
(238,1,'2024-07-30 23:13:28','2024-07-30 23:13:28','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100%\",\"variableHeightValue\":true,\"editorCurrentImageValue\":{\"imageWidth\":1072,\"imageHeight\":856}} -->\n<div style=\"height:auto;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\" data-variable-height=\"true\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005
(239,1,'2024-07-30 23:13:28','2024-07-30 23:13:28','<!-- wp:template-part {\"slug\":\"header\",\"theme\":\"twentytwentyfour\",\"tagName\":\"header\",\"area\":\"header\"} /-->\n\n<!-- wp:group {\"tagName\":\"main\",\"layout\":{\"type\":\"default\"}} -->\n<main class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0vh\",\"bottom\":\"6vh\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:0vh;padding-bottom:6vh\"><!-- wp:post-title {\"level\":1,\"fontSize\":\"x-large\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"1rem\",\"left\":\"1rem\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:post-content {\"lock\":{\"move\":false,\"remove\":true},\"layout\":{\"type\":\"constrained\"}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></main>\n<!-- /wp:group -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"twentytwentyfour\",\"tagName\":\"footer\",\"area\":\"footer\"} /-->','Page with Wide Image','','inherit','closed','closed','','224-revision-v1','','','2024-07-30 23:13:28','2024-07-30 23:13:28','',224,'http://localhost:8080/?p=239',0,'revision','',0),
(240,1,'2024-07-31 20:19:20','2024-07-31 20:19:20','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30em\",\"sliderWidthValue\":\"80em\",\"editorCurrentImageValue\":{\"imageWidth\":1072,\"imageHeight\":856}} -->\n<div style=\"height:30em;width:80em\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading=\"eager\"
(241,1,'2024-07-31 20:20:04','2024-07-31 20:20:04','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30em\",\"sliderWidthValue\":\"100em\",\"editorCurrentImageValue\":{\"imageWidth\":\"1080\",\"imageHeight\":\"719\"}} -->\n<div style=\"height:30em;width:100em\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading
(242,1,'2024-07-31 20:20:37','2024-07-31 20:20:37','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30em\",\"editorCurrentImageValue\":{\"imageWidth\":\"1080\",\"imageHeight\":\"719\"}} -->\n<div style=\"height:30em;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading=\"eager\" srcset=\"http://local
(243,1,'2024-07-31 20:20:53','2024-07-31 20:20:53','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"100%\",\"editorCurrentImageValue\":{\"imageWidth\":\"1080\",\"imageHeight\":\"719\"}} -->\n<div style=\"height:100%;width:100%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading=\"eager\" srcset=\"http://local
(244,1,'2024-07-31 20:21:41','2024-07-31 20:21:41','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"50vh\",\"sliderWidthValue\":\"130vw\",\"editorCurrentImageValue\":{\"imageWidth\":\"1080\",\"imageHeight\":\"719\"}} -->\n<div style=\"height:50vh;width:130vw\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading
(245,1,'2024-07-31 20:21:52','2024-07-31 20:21:52','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"50vh\",\"sliderWidthValue\":\"130vh\",\"editorCurrentImageValue\":{\"imageWidth\":\"1080\",\"imageHeight\":\"719\"}} -->\n<div style=\"height:50vh;width:130vh\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading
(246,1,'2024-07-31 20:22:38','2024-07-31 20:22:38','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"50rem\",\"sliderWidthValue\":\"200rem\",\"sliderWidthEditorValue\":\"130vh\",\"editorCurrentImageValue\":{\"imageWidth\":1080,\"imageHeight\":719}} -->\n<div style=\"height:50rem;width:200rem\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-2
(247,1,'2024-07-31 20:24:25','2024-07-31 20:24:25','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30rem\",\"sliderWidthValue\":\"200%\",\"editorCurrentImageValue\":{\"imageWidth\":\"1600\",\"imageHeight\":\"1066\"}} -->\n<div style=\"height:30rem;width:200%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" loading=\"eager\" srcset=\"ht
(248,1,'2024-07-31 20:24:35','2024-07-31 20:24:35','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30rem\",\"sliderWidthValue\":\"200%\",\"sliderWidthEditorValue\":\"200%\",\"editorCurrentImageValue\":{\"imageWidth\":1600,\"imageHeight\":1066}} -->\n<div style=\"height:30rem;width:200%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240725-WA0005\" alt=\"\" l
(249,1,'2024-07-31 20:25:00','2024-07-31 20:25:00','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30rem\",\"sliderWidthValue\":\"200%\",\"sliderWidthEditorValue\":\"200%\",\"editorCurrentImageValue\":{\"imageWidth\":1600,\"imageHeight\":1066}} -->\n<div style=\"height:30rem;width:200%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719}} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"eager\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:cover;object-position:50% 50%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\"} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\" width=\"1600\" height=\"900\" title=\"IMG-20240
(250,1,'2024-07-31 20:29:06','2024-07-31 20:29:06','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30rem\",\"sliderWidthValue\":\"200%\",\"sliderWidthEditorValue\":\"200%\",\"editorCurrentImageValue\":{\"imageWidth\":1072,\"imageHeight\":856}} -->\n<div style=\"height:30rem;width:200%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719},\"backgroundSizeValue\":\"contain\",\"focalPoint\":{\"x\":0.49,\"y\":0.22},\"contentVerticalAlignValue\":\"is-vertical-bottom\",\"lazyloadValue\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active is-vertical-bottom\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"lazy\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:contain;object-position:49% 22%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"backgroundSizeValue\":\"contain\",\"focalPoint\":{\"x\":0.49,\"y\":0.47},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\",\"lazyloadValue\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"
(251,1,'2024-07-31 20:29:11','2024-07-31 20:29:11','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30rem\",\"sliderWidthValue\":\"200%\",\"sliderWidthEditorValue\":\"200%\",\"editorCurrentImageValue\":{\"imageWidth\":1072,\"imageHeight\":856}} -->\n<div style=\"height:30rem;width:200%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719},\"backgroundSizeValue\":\"contain\",\"focalPoint\":{\"x\":0.49,\"y\":0.22},\"contentVerticalAlignValue\":\"is-vertical-bottom\",\"lazyloadValue\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active is-vertical-bottom\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"lazy\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:contain;object-position:49% 22%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"backgroundSizeValue\":\"contain\",\"focalPoint\":{\"x\":0.49,\"y\":0.47},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\",\"lazyloadValue\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\" data-slide-index=\"1\"
(252,1,'2024-07-31 20:30:43','2024-07-31 20:30:43','<!-- wp:superblockslider/slider {\"slides\":[\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\",\"Title\"],\"sliderHeightValue\":\"30rem\",\"sliderWidthValue\":\"200%\",\"sliderWidthEditorValue\":\"200%\",\"editorCurrentImageValue\":{\"imageWidth\":1080,\"imageHeight\":719}} -->\n<div style=\"height:30rem;width:200%\" class=\"superblockslider \" data-transition-duration=\".6s\" data-animation=\"cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><div class=\"superblockslider__window\"><div class=\"superblockslider__track\" style=\"width:1100%;transform:translateX(-0.0000%);transition-duration:.6s;transition-timing-function:cubic-bezier(0.46, 0.03, 0.52, 0.96)\"><!-- wp:superblockslider/slide {\"isActiveSlide\":true,\"isEditorSlide\":true,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":200,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":682,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\",\"height\":719,\"width\":1080,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0004\",\"width\":1080,\"height\":719},\"backgroundSizeValue\":\"contain\",\"focalPoint\":{\"x\":0.49,\"y\":0.22},\"contentVerticalAlignValue\":\"is-vertical-bottom\",\"lazyloadValue\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide superblockslider__slide--active is-vertical-bottom\" data-slide-index=\"0\"><div class=\"superblockslider__slide__bg\"><img class=\"image--xl visible--xl visible--sm visible--md visible--lg\" src=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg\" width=\"1080\" height=\"719\" title=\"IMG-20240725-WA0004\" alt=\"\" loading=\"lazy\" srcset=\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-150x150.jpg 150w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-300x200.jpg 300w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004-1024x682.jpg 1024w,http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0004.jpg 1080w,\" sizes=\"(max-width: 1080px) 100vw, 1080px\" style=\"object-fit:contain;object-position:49% 22%\"/></div><div class=\"superblockslider__slide__overlay\"></div><div class=\"superblockslider__slide_inner\"><div class=\"inner-blocks\"></div></div></div>\n<!-- /wp:superblockslider/slide -->\n\n<!-- wp:superblockslider/slide {\"slideIndex\":1,\"backgroundImage\":{\"alt\":\"\",\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"sizes\":{\"thumbnail\":{\"height\":150,\"width\":150,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-150x150.jpg\",\"orientation\":\"landscape\"},\"medium\":{\"height\":169,\"width\":300,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-300x169.jpg\",\"orientation\":\"landscape\"},\"large\":{\"height\":576,\"width\":1024,\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005-1024x576.jpg\",\"orientation\":\"landscape\"},\"full\":{\"url\":\"http://localhost:8080/wp-content/uploads/2024/07/IMG-20240725-WA0005.jpg\",\"height\":900,\"width\":1600,\"orientation\":\"landscape\"}},\"title\":\"IMG-20240725-WA0005\",\"width\":1600,\"height\":900},\"backgroundSizeValue\":\"contain\",\"focalPoint\":{\"x\":0.49,\"y\":0.47},\"contentVerticalAlignValue\":\"is-vertical-center\",\"contentOverflowValue\":\"hidden\",\"lazyloadValue\":true} -->\n<div class=\"wp-block-superblockslider-slide superblockslider__slide is-vertical-center\"
(253,1,'2024-07-31 20:32:41','2024-07-31 20:32:41','<!-- wp:paragraph -->\n<p><strong>The Charitable Askar Association carries out numerous projects with long-standing local and international partners.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“Develop and Empower Children, Youth, Women and People with Disabilities in New Askar Camp” </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Funded by the Palestine Solidarity Association of Sweden - </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Palestinagrupperna i Sverige PGS</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>The project started in 1993 with the goal of fostering development by building the capabilities of the administrative and executive staff, in addition to offering awareness services through organized activities, courses, and camps. These initiatives aim to equip participants with essential life skills, boost their involvement in artistic, cultural, and sports activities, encourage talents, and nurture creativity. The project also focuses on promoting the concepts of democracy and human rights, raising awareness on important social issues, and carrying out community initiatives to improve the participants\' quality of life. Additionally, efforts are made to develop the camp, creating a safer and more suitable environment to achieve the project\'s objectives.</summary><!-- wp:paragraph {\"placeholder\":\"Type / to add a hidden block\"} -->\n<p></p>\n<!-- /wp:paragraph --></details>\n<!-- /wp:details -->\n\n<!-- wp:paragraph -->\n<p>Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youth leaders: educational workshops on political agenda and capacity building, along with methodological courses in project writing and management, curriculum vitae writing,&nbsp; computer education, and others.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Children\'s rights: lectures and workshops to raise community awareness on early marriage, education, disabilities, and psychological support.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gender: Focus on women\'s rights, including topics such as gender-based violence, early marriage, food, land ownership, psychological support, and health issues like breast cancer and women\'s health.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Foreign language courses (usually held by volunteers): English and French, in addition to Arabic courses for volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Folk art: extracurricular activities that allow the participants to express themselves through art.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dance: folk dance <em>Dabka</em> and expressive dance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Music: a series of training courses overseen by both local and international trainers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Community problems: workshops addressing issues such as drug consumption, bullying, electronic extortion, and violence.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Different target groups benefit from these courses: school and university students, staff and volunteers, in addition to summer camp\'s children during the summer school holidays.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>\"My Father Read to Me</strong>\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>This is a campaign in cooperation with the Tamer Foundation for Community Development, encourages students to read. This project provides a space for parents and children to engage in play, learning and various artistic and expressive activities, highlighting the importance of quality time that
(254,1,'2024-07-31 20:33:24','2024-07-31 20:33:24','<!-- wp:paragraph -->\n<p><strong>The Charitable Askar Association carries out numerous projects with long-standing local and international partners.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>\"Develop and Empower Children, Youth, Women and People with Disabilities in New Askar Camp\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Funded by the Palestine Solidarity Association of Sweden - </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Palestinagrupperna i Sverige PGS</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>The project started in 1993 with the goal of fostering development by building the capabilities of the administrative and executive staff, in addition to offering awareness services through organized activities, courses, and camps. These initiatives aim to equip participants with essential life skills, boost their involvement in artistic, cultural, and sports activities, encourage talents, and nurture creativity. The project also focuses on promoting the concepts of democracy and human rights, raising awareness on important social issues, and carrying out community initiatives to improve the participants\' quality of life. Additionally, efforts are made to develop the camp, creating a safer and more suitable environment to achieve the project\'s objectives.</summary><!-- wp:paragraph {\"placeholder\":\"Type / to add a hidden block\"} -->\n<p></p>\n<!-- /wp:paragraph --></details>\n<!-- /wp:details -->\n\n<!-- wp:paragraph -->\n<p>Courses Program: to prepare an open-minded generation, through the implementation of training courses organized by Askar Association in collaboration with volunteers and partners:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youth leaders: educational workshops on political agenda and capacity building, along with methodological courses in project writing and management, curriculum vitae writing,&nbsp; computer education, and others.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Children\'s rights: lectures and workshops to raise community awareness on early marriage, education, disabilities, and psychological support.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gender: Focus on women\'s rights, including topics such as gender-based violence, early marriage, food, land ownership, psychological support, and health issues like breast cancer and women\'s health.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Foreign language courses (usually held by volunteers): English and French, in addition to Arabic courses for volunteers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Folk art: extracurricular activities that allow the participants to express themselves through art.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dance: folk dance <em>Dabka</em> and expressive dance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Music: a series of training courses overseen by both local and international trainers.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Community problems: workshops addressing issues such as drug consumption, bullying, electronic extortion, and violence.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Different target groups benefit from these courses: school and university students, staff and volunteers, in addition to summer camp\'s children during the summer school holidays.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>\"My Father Read to Me</strong>\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:details -->\n<details class=\"wp-block-details\"><summary>This is a campaign in cooperation with the Tamer Foundation for Community Development, encourages students to read. This project provides a space for parents and children to engage in play, learning and various artistic and expressive activities, highlighting the importance of quality time that enriches t
(255,1,'2024-07-31 20:34:12','2024-07-31 20:34:12','<!-- wp:paragraph -->\n<p><strong>Women\'s program</strong>: raise awareness about gender and individual rights through workshops and various activities organized by the association. It also focuses on improving educational aspects for both men and women, addressing topics such as gender-based violence, food security, and diverse leadership.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Summer and Winter Camps Program</strong>: annual extracurricular activities in New Askar camp during summer, winter, and international camps, involving both local and international volunteers. The target groups include hundreds of children as well as children with disabilities.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Public Library Program</strong>: borrowing of cultural, literary, linguistic, and academic books. It aims to develop a generation that understands equality, democracy, and environmental preservation through theoretical workshops, practical applications, and small projects. It fosters a belief in freedom of opinion and respect for other cultures while reducing the financial burden of academic books. Since its inception as part of an agreement with the Solidarity Association with the Palestinians of Sweden, the library now houses around 4,500 volumes and is regularly visited by volunteers, university students, and school groups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Public Relations and International Relations Program</strong>: enhance global connections by sending youth abroad to experience different cultures and environments outside of Palestine. It also focuses on developing the human resources sector, essential for supporting our goals and activities, by welcoming volunteers from around the world. Central to this program are various partnerships, both local and international.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Documentary Film Program</strong>: document all activities and programs implemented by the association, as well as produce documentaries on various public and private topics, with a particular focus on preserving the memories of the Nakba and events in the camp. It was initiated with the help of training provided by a group of French volunteers to local volunteers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>University Students Training Program</strong>: volunteering and its significance in the lives of students and institutions is one of our most significant accomplishments over the years. Annually, about 50 students receive assistance and training to complete their university studies. These students actively participate in all programs, activities, and plans during their training period.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Free computer and internet lab program</strong>: raise awareness of today\'s interconnected and globalized era, emphasizing the cultural impact that has made the world resemble a small village. It seeks to facilitate youth, citizens, and civil institutions in their research and access to technical and technological information and news through training courses offered at nominal fees. Additionally, the program integrates education on artificial intelligence, reflecting its growing importance in modern society. Since its inception, this program has been part of the agreement between the Solidarity Association and the Palestinians of Sweden (PGS).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Emergency and aid program</strong>: assist the Askar camp community during challenging periods, such as the Covid-19 pandemic, Gaza war, and daily raids in Palestinian areas of the West Bank. It provides essential support such as food and medical supplies, while also advocating for and economically supporting other local communities and camps in need.</p>\n<!-- /wp:paragraph -->','Programs','','inherit','closed','closed','','80-revision-v1','','','2024-07-31 20:34:12','2024-07-31 20:34:12','
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_term_relationships` (
2024-07-31 22:35:50 +02:00
`object_id` bigint unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
`term_order` int NOT NULL DEFAULT '0',
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
2024-07-31 22:35:50 +02:00
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES
(1,1,0),
(6,2,0),
(12,3,0),
(18,4,0),
(19,4,0),
(20,4,0),
(21,4,0),
(22,4,0),
(23,4,0),
(58,3,0),
(62,6,0),
(64,6,0),
(64,7,0),
(70,6,0),
(74,5,0),
(87,5,0),
(96,5,0),
(99,5,0),
(102,5,0),
(106,5,0),
(217,6,0),
(217,8,0),
(224,6,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_term_taxonomy` (
2024-07-31 22:35:50 +02:00
`term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint unsigned NOT NULL DEFAULT '0',
`count` bigint NOT NULL DEFAULT '0',
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
2024-07-31 22:35:50 +02:00
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES
(1,1,'category','',0,1),
(2,2,'wp_theme','',0,1),
(3,3,'nav_menu','',0,2),
(4,4,'nav_menu','',0,6),
(5,5,'nav_menu','',0,6),
(6,6,'wp_theme','',0,5),
(7,7,'wp_template_part_area','',0,1),
(8,8,'wp_template_part_area','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_termmeta` (
2024-07-31 22:35:50 +02:00
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
2024-07-31 22:35:50 +02:00
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_terms` (
2024-07-31 22:35:50 +02:00
`term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint NOT NULL DEFAULT '0',
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
2024-07-31 22:35:50 +02:00
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES
(1,'Uncategorized','uncategorized',0),
(2,'astra','astra',0),
(3,'Primary','primary',0),
(4,'Primary (2)','primary-2',0),
(5,'Nav','nav',0),
(6,'twentytwentyfour','twentytwentyfour',0),
(7,'footer','footer',0),
(8,'header','header',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_usermeta` (
2024-07-31 22:35:50 +02:00
`umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
2024-07-31 00:35:45 +02:00
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
2024-07-31 22:35:50 +02:00
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES
(1,1,'nickname','admin'),
(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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(13,1,'wp_user_level','10'),
(14,1,'dismissed_wp_pointers',''),
(15,1,'show_welcome_panel','1'),
(16,1,'session_tokens','a:2:{s:64:\"bc310e5303f1c7ede67b7c0c30fd97c4673e0ec46f56c8345bfa79bd192df591\";a:4:{s:10:\"expiration\";i:1722551632;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0\";s:5:\"login\";i:1722378832;}s:64:\"f98c13ad306396ddebc15135ef148995924b213802fab865768eacb8acb9e61e\";a:4:{s:10:\"expiration\";i:1723666698;s:2:\"ip\";s:10:\"172.18.0.1\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0\";s:5:\"login\";i:1722457098;}}'),
(17,1,'wp_dashboard_quick_press_last_post_id','4'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"172.18.0.0\";}'),
(19,1,'astra-sites-on-active','notice-dismissed'),
(20,1,'wp_persisted_preferences','a:4:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-07-31T20:30:32.109Z\";s:4:\"core\";a:2:{s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:15:\"page-attributes\";}s:29:\"isTemplatePartMoveHintVisible\";b:0;}s:14:\"core/edit-site\";a:4:{s:12:\"welcomeGuide\";b:0;s:16:\"welcomeGuidePage\";b:0;s:26:\"isComplementaryAreaVisible\";b:1;s:18:\"welcomeGuideStyles\";b:0;}}'),
(21,1,'wp_user-settings','libraryContent=browse'),
(22,1,'wp_user-settings-time','1721168380'),
(23,1,'nav_menu_recently_edited','3'),
(24,1,'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\";}'),
(25,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(26,1,'prime_education_dismissable_notice','1'),
(27,2,'nickname','aurora'),
(28,2,'first_name',''),
(29,2,'last_name',''),
(30,2,'description',''),
(31,2,'rich_editing','true'),
(32,2,'syntax_highlighting','true'),
(33,2,'comment_shortcuts','false'),
(34,2,'admin_color','fresh'),
(35,2,'use_ssl','0'),
(36,2,'show_admin_bar_front','true'),
(37,2,'locale',''),
(38,2,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),
(39,2,'wp_user_level','7'),
(40,2,'dismissed_wp_pointers',''),
(41,3,'nickname','mariam'),
(42,3,'first_name',''),
(43,3,'last_name',''),
(44,3,'description',''),
(45,3,'rich_editing','true'),
(46,3,'syntax_highlighting','true'),
(47,3,'comment_shortcuts','false'),
(48,3,'admin_color','fresh'),
(49,3,'use_ssl','0'),
(50,3,'show_admin_bar_front','true'),
(51,3,'locale',''),
(52,3,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),
(53,3,'wp_user_level','7'),
(54,3,'dismissed_wp_pointers',''),
(55,4,'nickname','askar'),
(56,4,'first_name',''),
(57,4,'last_name',''),
(58,4,'description',''),
(59,4,'rich_editing','true'),
(60,4,'syntax_highlighting','true'),
(61,4,'comment_shortcuts','false'),
(62,4,'admin_color','fresh'),
(63,4,'use_ssl','0'),
(64,4,'show_admin_bar_front','true'),
(65,4,'locale',''),
(66,4,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(67,4,'wp_user_level','10'),
(68,4,'dismissed_wp_pointers',''),
(69,2,'session_tokens','a:2:{s:64:\"9ed06ff15b0ba22d3c8990fdde9ac5526f52cecb64dc1c2d13635fe2c3432069\";a:4:{s:10:\"expiration\";i:1722354222;s:2:\"ip\";s:13:\"192.168.122.2\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36\";s:5:\"login\";i:1722181422;}s:64:\"66548dd82396d4500d1b2a753b48795551adcff6a24224cb5aeab7385e0c199a\";a:4:{s:10:\"expiration\";i:1722521508;s:2:\"ip\";s:13:\"192.168.122.2\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36\";s:5:\"login\";i:1722348708;}}'),
(70,2,'wp_dashboard_quick_press_last_post_id','118'),
(71,2,'community-events-location','a:1:{s:2:\"ip\";s:13:\"192.168.122.0\";}'),
(72,2,'wp_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:0;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-07-30T13:36:05.935Z\";s:4:\"core\";a:1:{s:10:\"openPanels\";a:4:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";i:2;s:16:\"discussion-panel\";i:3;s:15:\"page-attributes\";}}}'),
(73,2,'wp_user-settings','libraryContent=browse'),
(74,2,'wp_user-settings-time','1721901039'),
(75,3,'session_tokens','a:1:{s:64:\"0a57f4a71a961b4d3ce12b34cdb184761861afcccf70461585b333801340e3a2\";a:4:{s:10:\"expiration\";i:1722407546;s:2:\"ip\";s:13:\"192.168.122.2\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36\";s:5:\"login\";i:1722234746;}}'),
(76,3,'wp_dashboard_quick_press_last_post_id','207'),
(77,3,'community-events-location','a:1:{s:2:\"ip\";s:13:\"192.168.122.0\";}'),
(78,3,'wp_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:0;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-07-29T07:01:24.740Z\";s:4:\"core\";a:1:{s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";}}}'),
(79,3,'edit_page_per_page','20'),
(80,3,'wp_user-settings','posts_list_mode=list'),
(81,3,'wp_user-settings-time','1722236654');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
2024-07-31 22:35:50 +02:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2024-07-17 22:49:32 +02:00
CREATE TABLE `wp_users` (
2024-07-31 22:35:50 +02:00
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
2024-07-17 22:49:32 +02:00
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2024-07-31 22:35:50 +02:00
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
2024-07-17 22:49:32 +02:00
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
2024-07-31 00:35:45 +02:00
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
2024-07-31 22:35:50 +02:00
/*!40101 SET character_set_client = @saved_cs_client */;
2024-07-17 22:49:32 +02:00
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
2024-07-31 22:35:50 +02:00
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES
(1,'admin','$P$BmWdiXPO/HG3XxkcBs9LWl/pP01NEh.','admin','unit@paranoici.org','http://localhost:8080','2024-07-16 21:54:43','',0,'admin'),
(2,'aurora','$P$BK5YJ8s8LEbLLfYqtOF9uShLTiMSMQ.','aurora','aurora.capizzi@gmail.com','','2024-07-23 05:53:01','',0,'aurora'),
(3,'mariam','$P$B6mHmvGwm1YTUE2b9inCXxlbBw5usj1','mariam','maswloli9@gmail.com','','2024-07-23 05:53:43','',0,'mariam'),
(4,'askar','$P$BnVGD/9k474L.Q/2r1GdF1hlcOJTLr/','askar','sdcaskar@gmail.com','','2024-07-23 05:55:40','1721714140:$P$BpsPo6p.Ww5twSOwBuZiBoNcU6TM071',0,'askar');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
2024-07-17 22:49:32 +02:00
UNLOCK TABLES;
2024-07-31 22:35:50 +02:00
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
2024-07-17 22:49:32 +02:00
2024-07-31 22:35:50 +02:00
/*!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 */;
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;
2024-07-17 22:49:32 +02:00
2024-07-31 22:35:50 +02:00
-- Dump completed on 2024-07-31 22:35:20