Files
KevKemChiroWP/wpdb.sql
T
CHIEFSOFT\ameye e9e5c0546c first commit
2023-11-30 13:20:54 -05:00

449 lines
7.3 MiB
Plaintext

-- MySQL dump 10.13 Distrib 8.0.30, for Linux (x86_64)
--
-- Host: localhost Database: wpdb
-- ------------------------------------------------------
-- Server version 8.0.30
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Current Database: `wpdb`
--
/*!40000 DROP DATABASE IF EXISTS `wpdb`*/;
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `wpdb` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `wpdb`;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_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,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
`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 '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text 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',
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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-01-14 10:32:07','2023-01-14 10:32:07','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 */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
`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',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00: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 '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
`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',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=535 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://demo.kevkem.chiefsoft.net','yes'),(2,'home','http://demo.kevkem.chiefsoft.net','yes'),(3,'blogname','KevKem','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ameye@chiefsoft.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','','yes'),(29,'rewrite_rules','','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:11:{i:0;s:37:\"absolute-reviews/absolute-reviews.php\";i:1;s:35:\"advanced-popups/advanced-popups.php\";i:2;s:17:\"canvas/canvas.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:25:\"envo-extra/envo-extra.php\";i:5;s:15:\"kirki/kirki.php\";i:6;s:47:\"one-click-demo-import/one-click-demo-import.php\";i:7;s:21:\"powerkit/powerkit.php\";i:8;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";i:9;s:55:\"searchwp-live-ajax-search/searchwp-live-ajax-search.php\";i:10;s:15:\"sight/sight.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','squaretype','yes'),(41,'stylesheet','squaretype','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','53496','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','posts','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:3:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:10:\"Categories\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','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','1689244326','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'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'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:8:{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\";i:5;s:23:\"powerkit_widget_posts-1\";i:6;s:23:\"powerkit_widget_posts-2\";i:7;s:12:\"categories-2\";}s:17:\"sidebar-offcanvas\";a:0:{}s:12:\"sidebar-hero\";a:0:{}s:14:\"sidebar-loaded\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:8:{i:1674318755;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1674340355;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s: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:1674340375;a:1:{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:1674383555;a:2:{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:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1674383575;a:2:{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;}}}i:1674383577;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:1674385122;a:1:{s:26:\"event_access_token_refresh\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1673692432;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(126,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.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.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1674304780;s:15:\"version_checked\";s:5:\"6.1.1\";s:12:\"translations\";a:0:{}}','no'),(141,'can_compress_scripts','0','no'),(150,'current_theme','Squaretype','yes'),(151,'theme_mods_enwoo','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1673693227;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"enwoo-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:18:\"enwoo-top-bar-area\";a:0:{}s:17:\"enwoo-footer-area\";a:0:{}}}}','yes'),(152,'theme_switched','','yes'),(168,'et_fc','Created with <a href=\"https://enwoo-wp.com/free-business-wp-theme/\" title=\"Free Business WordPress Theme\">Enwoo</a> WordPress theme','no'),(170,'recently_activated','a:0:{}','yes'),(173,'elementor_onboarded','1','no'),(174,'envothemes_active_time','1673692547','no'),(175,'envothemes_active_pro_time','1673692547','no'),(176,'active_enwoo_time','1673692547','no'),(191,'theme_mods_squaretype','a:58:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:9;s:6:\"mobile\";i:9;}s:18:\"custom_css_post_id\";i:-1;s:13:\"color_primary\";s:7:\"#2e073b\";s:20:\"archive_heading_size\";s:5:\"small\";s:14:\"archive_layout\";s:4:\"grid\";s:22:\"category_subcategories\";b:1;s:20:\"color_navbar_submenu\";s:7:\"#ffffff\";s:13:\"color_overlay\";s:19:\"rgba(10,10,10,0.33)\";s:11:\"column_hero\";b:0;s:17:\"column_hero_color\";s:22:\"rgba(255,255,255,0.86)\";s:19:\"column_hero_content\";s:13:\"numbered-list\";s:9:\"font_base\";a:8:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:7:\"regular\";s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:9:\"font-size\";s:4:\"1rem\";s:14:\"letter-spacing\";s:3:\"0px\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:13:\"font_headings\";a:8:{s:11:\"font-family\";s:10:\"hg-grotesk\";s:7:\"variant\";s:3:\"700\";s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:14:\"letter-spacing\";s:8:\"-0.025em\";s:14:\"text-transform\";s:4:\"none\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:700;s:10:\"font-style\";s:6:\"normal\";}s:18:\"font_entry_excerpt\";a:2:{s:9:\"font-size\";s:4:\"1rem\";s:11:\"line-height\";s:3:\"1.5\";}s:17:\"font_post_content\";a:8:{s:11:\"font-family\";s:7:\"inherit\";s:7:\"variant\";s:0:\"\";s:7:\"subsets\";a:1:{i:0;s:5:\"latin\";}s:9:\"font-size\";s:4:\"1rem\";s:14:\"letter-spacing\";s:7:\"inherit\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:0;s:10:\"font-style\";s:0:\"\";}s:25:\"footer_instagram_username\";s:17:\"codesupplyco_demo\";s:26:\"footer_social_links_scheme\";s:5:\"light\";s:21:\"footer_subscribe_name\";b:1;s:20:\"general_hero_bg_type\";s:5:\"image\";s:18:\"general_hero_color\";s:7:\"#f8f8f8\";s:22:\"general_hero_end_color\";s:7:\"#e4b28e\";s:20:\"general_hero_exclude\";b:1;s:26:\"general_hero_image_overlay\";s:16:\"rgba(0,0,0,0.13)\";s:19:\"general_hero_layout\";s:9:\"fullwidth\";s:24:\"general_hero_more_button\";b:0;s:26:\"general_hero_preview_image\";b:0;s:24:\"general_hero_start_color\";s:7:\"#c0909c\";s:13:\"header_follow\";s:6:\"button\";s:26:\"header_follow_button_label\";s:0:\"\";s:25:\"header_follow_button_link\";s:1:\"#\";s:13:\"header_height\";s:5:\"100px\";s:13:\"header_layout\";s:5:\"large\";s:22:\"header_shadow_submenus\";b:1;s:26:\"header_social_links_scheme\";s:5:\"light\";s:4:\"hero\";b:1;s:17:\"home_heading_size\";s:5:\"small\";s:11:\"home_layout\";s:4:\"grid\";s:20:\"home_pagination_type\";s:9:\"load-more\";s:16:\"post_author_type\";s:7:\"default\";s:16:\"post_header_type\";s:8:\"standard\";s:9:\"post_meta\";a:0:{}s:12:\"post_sidebar\";s:8:\"disabled\";s:19:\"post_subscribe_name\";b:1;s:12:\"header_width\";s:9:\"fullwidth\";s:16:\"header_offcanvas\";b:0;s:20:\"header_search_button\";b:0;s:12:\"page_sidebar\";s:8:\"disabled\";s:16:\"page_header_type\";s:4:\"none\";s:12:\"page_excerpt\";b:0;s:14:\"post_prev_next\";b:0;s:17:\"general_hero_meta\";a:0:{}s:12:\"home_sidebar\";s:8:\"disabled\";s:14:\"home_post_meta\";a:0:{}s:21:\"effects_navbar_scroll\";b:1;s:19:\"header_social_links\";b:1;s:4:\"logo\";i:2185;s:10:\"large_logo\";i:2185;}','yes'),(196,'csco_theme_version_squaretype','3.0.7','yes'),(197,'post_views_counter_settings_display','a:1:{s:8:\"position\";s:6:\"manual\";}','yes'),(198,'wpseo_titles','a:1:{s:15:\"breadcrumbs-sep\";s:34:\"<span class=\"cs-separator\"></span>\";}','yes'),(203,'kirki_downloaded_font_files','a:56:{s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV0exoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV0exoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVQexoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVQexoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVwexoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVwexoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVMexoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVMexoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVIexoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVIexoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV8exoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV8exoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exoMUdjFnmiU_.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAexoMUdjFnmg.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAexoMUdjFnmg.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV0exoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV0exoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVQexoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVQexoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVwexoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVwexoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVMexoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVMexoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVIexoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVIexoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV8exoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV8exoMUdjFnmiU_.woff\";s:118:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exoMUdjFnmiU_.woff\";s:118:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exoMUdjFnmiU_.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVAexoMUdjFnmg.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVAexoMUdjFnmg.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQUwaEQXjN_mQ.woff\";s:113:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQUwaEQXjM.woff\";s:113:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQUwaEQXjM.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4taVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4taVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4kaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4kaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4saVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4saVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4jaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4jaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4iaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4iaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4vaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4vaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVQUwaEQXjN_mQ.woff\";s:113:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4gaVQUwaEQXjM.woff\";s:113:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4gaVQUwaEQXjM.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4taVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4taVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4kaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4kaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4saVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4saVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4jaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4jaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4iaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4iaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4vaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4vaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVQUwaEQXjN_mQ.woff\";s:113:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4gaVQUwaEQXjM.woff\";s:113:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4gaVQUwaEQXjM.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4taVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4taVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4kaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4kaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4saVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4saVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4jaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4jaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4iaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4iaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4vaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4vaVQUwaEQXjN_mQ.woff\";s:116:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVQUwaEQXjN_mQ.woff\";s:116:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVQUwaEQXjN_mQ.woff\";s:113:\"https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVQUwaEQXjM.woff\";s:113:\"/var/www/html/wp-content/fonts/open-sans/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVQUwaEQXjM.woff\";s:70:\"https://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxsAUi-sNiXg7eU0.woff\";s:69:\"/var/www/html/wp-content/fonts/lato/S6u8w4BMUTPHjxsAUi-sNiXg7eU0.woff\";s:68:\"https://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxsAXC-sNiXg7Q.woff\";s:67:\"/var/www/html/wp-content/fonts/lato/S6u8w4BMUTPHjxsAXC-sNiXg7Q.woff\";s:74:\"https://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wq_FQfrx9897sxZ.woff\";s:73:\"/var/www/html/wp-content/fonts/lato/S6u_w4BMUTPHjxsI5wq_FQfrx9897sxZ.woff\";s:72:\"https://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wq_Gwfrx9897g.woff\";s:71:\"/var/www/html/wp-content/fonts/lato/S6u_w4BMUTPHjxsI5wq_Gwfrx9897g.woff\";s:68:\"https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:67:\"/var/www/html/wp-content/fonts/lato/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff\";s:65:\"https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:64:\"/var/www/html/wp-content/fonts/lato/S6uyw4BMUTPHjx4wWCWtFCc.woff\";s:72:\"https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:71:\"/var/www/html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff\";s:69:\"https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";s:68:\"/var/www/html/wp-content/fonts/lato/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff\";}','yes'),(206,'envato_purchase_code_23389898','1e15f167-693b-4aa5-b602-af9f0bbd6045','yes'),(207,'squaretype_license_data','a:10:{s:6:\"status\";b:1;s:10:\"demos_list\";s:24:\"csco_register_demos_list\";s:5:\"demos\";s:16:\"csco_theme_demos\";s:4:\"ocdi\";a:5:{s:11:\"parent_slug\";s:10:\"themes.php\";s:10:\"page_title\";s:12:\"Demo Content\";s:10:\"menu_title\";s:12:\"Demo Content\";s:10:\"capability\";s:6:\"import\";s:9:\"menu_slug\";s:17:\"csco-demo-content\";}s:15:\"license_history\";a:3:{i:0;a:4:{s:6:\"status\";s:6:\"active\";s:14:\"purchase_count\";i:2;s:6:\"domain\";s:26:\"https://blog.chiefsoft.com\";s:5:\"email\";N;}i:1;a:4:{s:6:\"status\";s:6:\"active\";s:14:\"purchase_count\";i:2;s:6:\"domain\";s:25:\"http://www3.ccgchurch.com\";s:5:\"email\";N;}i:2;a:4:{s:6:\"status\";s:6:\"active\";s:14:\"purchase_count\";i:2;s:6:\"domain\";s:25:\"http://192.168.1.140:8011\";s:5:\"email\";N;}}s:7:\"item_id\";i:23389898;s:7:\"sold_at\";s:25:\"2019-11-17T11:17:06+11:00\";s:15:\"supported_until\";s:25:\"2020-05-18T01:17:06+10:00\";s:14:\"purchase_count\";i:2;s:7:\"message\";s:118:\" <div class=\"notice notice-success\">\r\n <p>Licence key activated. All theme features are now unlocked.</p>\r\n </div>\r\n \";}','yes'),(213,'widget_abr_reviews_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(216,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.7.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1673693836;s:7:\"version\";s:5:\"5.7.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(217,'powerkit_db_version','2.8.2','yes'),(218,'searchwp_live_search_last_update','1673693930','yes'),(219,'searchwp_live_search_version','1.7.3','yes'),(222,'sight_db_version','1.0.8','yes'),(224,'canvas_db_version','2.3.9','yes'),(225,'widget_powerkit_widget_author','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(226,'widget_powerkit_widget_contributors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(227,'widget_powerkit_facebook_fanpage_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(228,'widget_powerkit_widget_featured_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(229,'widget_powerkit_instagram_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(230,'widget_powerkit_opt_in_subscription_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(231,'widget_powerkit_pinterest_board_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(232,'widget_powerkit_pinterest_profile_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(233,'widget_powerkit_widget_posts','a:3:{i:1;a:11:{s:5:\"title\";s:14:\"Featured Posts\";s:8:\"template\";s:8:\"numbered\";s:14:\"posts_per_page\";s:1:\"5\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:10:\"time_frame\";s:0:\"\";s:9:\"post_meta\";a:1:{i:0;s:4:\"date\";}s:18:\"post_meta_category\";b:0;s:17:\"post_meta_compact\";b:0;s:14:\"post_meta_data\";a:0:{}s:15:\"avoid_duplicate\";b:0;}i:2;a:11:{s:5:\"title\";s:12:\"Recent Posts\";s:8:\"template\";s:5:\"large\";s:14:\"posts_per_page\";s:1:\"3\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:10:\"time_frame\";s:0:\"\";s:9:\"post_meta\";a:1:{i:0;s:4:\"date\";}s:15:\"avoid_duplicate\";s:2:\"on\";s:18:\"post_meta_category\";b:0;s:17:\"post_meta_compact\";b:0;s:14:\"post_meta_data\";a:0:{}}s:12:\"_multiwidget\";i:1;}','yes'),(234,'widget_powerkit_social_links_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(235,'widget_powerkit_toc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(236,'widget_powerkit_twitter_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(237,'widget_powerkit_widget_about','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(238,'widget_searchwp_live_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(239,'powerkit_coming_soon_init','1','yes'),(240,'powerkit_coming_soon_page','8','yes'),(241,'searchwp_lite_admin_notifications','a:3:{s:10:\"updated_at\";i:1674304796;s:13:\"dismissed_ids\";a:0:{}s:13:\"notifications\";a:0:{}}','yes'),(249,'wp_calendar_block_has_published_posts','1','yes'),(250,'category_children','a:1:{i:2;a:3:{i:0;i:3;i:1;i:6;i:2;i:7;}}','yes'),(251,'sight-categories_children','a:0:{}','yes'),(338,'WPLANG','','yes'),(339,'new_admin_email','ameye@chiefsoft.com','yes'),(342,'recovery_keys','a:0:{}','yes'),(343,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(349,'finished_updating_comment_type','1','yes'),(352,'_site_transient_timeout_browser_a818ab359804517f2549e94c88d03c0b','1674327253','no'),(353,'_site_transient_browser_a818ab359804517f2549e94c88d03c0b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"108.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'),(442,'_site_transient_timeout_php_check_f615bb1e23847416e204708c1a47460a','1674909539','no'),(443,'_site_transient_php_check_f615bb1e23847416e204708c1a47460a','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(444,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":5,\"critical\":1}','yes'),(446,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1674304781;s:7:\"checked\";a:5:{s:5:\"enwoo\";s:5:\"1.3.0\";s:10:\"squaretype\";s:5:\"3.0.7\";s:15:\"twentytwentyone\";s:3:\"1.7\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.3\";}s:8:\"response\";a:1:{s:5:\"enwoo\";a:6:{s:5:\"theme\";s:5:\"enwoo\";s:11:\"new_version\";s:5:\"1.3.1\";s:3:\"url\";s:35:\"https://wordpress.org/themes/enwoo/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/enwoo.1.3.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:3:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.0.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.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(447,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1674304781;s:8:\"response\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.0.2.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:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.2\";}s:25:\"envo-extra/envo-extra.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/envo-extra\";s:4:\"slug\";s:10:\"envo-extra\";s:6:\"plugin\";s:25:\"envo-extra/envo-extra.php\";s:11:\"new_version\";s:5:\"1.6.0\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/envo-extra/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/envo-extra.1.6.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/envo-extra/assets/icon-256x256.png?rev=2800543\";s:2:\"1x\";s:63:\"https://ps.w.org/envo-extra/assets/icon-128x128.png?rev=2800543\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/envo-extra/assets/banner-1544x500.png?rev=2800543\";s:2:\"1x\";s:65:\"https://ps.w.org/envo-extra/assets/banner-772x250.png?rev=2800543\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:21:\"powerkit/powerkit.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/powerkit\";s:4:\"slug\";s:8:\"powerkit\";s:6:\"plugin\";s:21:\"powerkit/powerkit.php\";s:11:\"new_version\";s:7:\"2.8.3.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/powerkit/\";s:7:\"package\";s:51:\"https://downloads.wordpress.org/plugin/powerkit.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:61:\"https://ps.w.org/powerkit/assets/icon-256x256.png?rev=1889660\";s:2:\"1x\";s:53:\"https://ps.w.org/powerkit/assets/icon.svg?rev=1889660\";s:3:\"svg\";s:53:\"https://ps.w.org/powerkit/assets/icon.svg?rev=1889660\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/powerkit/assets/banner-1544x500.png?rev=1886824\";s:2:\"1x\";s:63:\"https://ps.w.org/powerkit/assets/banner-772x250.png?rev=1886824\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.0.3\";s:12:\"requires_php\";s:3:\"5.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:37:\"absolute-reviews/absolute-reviews.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/absolute-reviews\";s:4:\"slug\";s:16:\"absolute-reviews\";s:6:\"plugin\";s:37:\"absolute-reviews/absolute-reviews.php\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/absolute-reviews/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/absolute-reviews.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/absolute-reviews/assets/icon-256x256.png?rev=2200392\";s:2:\"1x\";s:61:\"https://ps.w.org/absolute-reviews/assets/icon.svg?rev=2200392\";s:3:\"svg\";s:61:\"https://ps.w.org/absolute-reviews/assets/icon.svg?rev=2200392\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/absolute-reviews/assets/banner-1544x500.png?rev=2200392\";s:2:\"1x\";s:71:\"https://ps.w.org/absolute-reviews/assets/banner-772x250.png?rev=2200392\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:35:\"advanced-popups/advanced-popups.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/advanced-popups\";s:4:\"slug\";s:15:\"advanced-popups\";s:6:\"plugin\";s:35:\"advanced-popups/advanced-popups.php\";s:11:\"new_version\";s:5:\"1.1.3\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/advanced-popups/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/advanced-popups.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/advanced-popups/assets/icon-256x256.png?rev=2690535\";s:2:\"1x\";s:60:\"https://ps.w.org/advanced-popups/assets/icon.svg?rev=2690535\";s:3:\"svg\";s:60:\"https://ps.w.org/advanced-popups/assets/icon.svg?rev=2690535\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/advanced-popups/assets/banner-1544x500.png?rev=2690539\";s:2:\"1x\";s:70:\"https://ps.w.org/advanced-popups/assets/banner-772x250.png?rev=2690539\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:17:\"canvas/canvas.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/canvas\";s:4:\"slug\";s:6:\"canvas\";s:6:\"plugin\";s:17:\"canvas/canvas.php\";s:11:\"new_version\";s:5:\"2.3.9\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/canvas/\";s:7:\"package\";s:49:\"https://downloads.wordpress.org/plugin/canvas.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/canvas/assets/icon-256x256.png?rev=2200393\";s:2:\"1x\";s:60:\"https://ps.w.org/canvas/assets/icon-128х128.png?rev=2200393\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/canvas/assets/banner-1544x500.png?rev=2201109\";s:2:\"1x\";s:61:\"https://ps.w.org/canvas/assets/banner-772x250.png?rev=2200393\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.7.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:15:\"kirki/kirki.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:19:\"w.org/plugins/kirki\";s:4:\"slug\";s:5:\"kirki\";s:6:\"plugin\";s:15:\"kirki/kirki.php\";s:11:\"new_version\";s:6:\"4.0.24\";s:3:\"url\";s:36:\"https://wordpress.org/plugins/kirki/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/kirki.4.0.24.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:58:\"https://ps.w.org/kirki/assets/icon-256x256.png?rev=2682560\";s:2:\"1x\";s:58:\"https://ps.w.org/kirki/assets/icon-256x256.png?rev=2682560\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/kirki/assets/banner-1544x500.png?rev=2290025\";s:2:\"1x\";s:60:\"https://ps.w.org/kirki/assets/banner-772x250.png?rev=2290025\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:47:\"one-click-demo-import/one-click-demo-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/one-click-demo-import\";s:4:\"slug\";s:21:\"one-click-demo-import\";s:6:\"plugin\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:11:\"new_version\";s:5:\"3.1.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/one-click-demo-import/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-256x256.png?rev=2506685\";s:2:\"1x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-128x128.png?rev=2506685\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/one-click-demo-import/assets/banner-1544x500.png?rev=2506685\";s:2:\"1x\";s:76:\"https://ps.w.org/one-click-demo-import/assets/banner-772x250.png?rev=2506685\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/regenerate-thumbnails\";s:4:\"slug\";s:21:\"regenerate-thumbnails\";s:6:\"plugin\";s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";s:11:\"new_version\";s:5:\"3.1.5\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/regenerate-thumbnails/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/regenerate-thumbnails.3.1.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/regenerate-thumbnails/assets/icon-128x128.png?rev=1753390\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/regenerate-thumbnails/assets/banner-1544x500.jpg?rev=1753390\";s:2:\"1x\";s:76:\"https://ps.w.org/regenerate-thumbnails/assets/banner-772x250.jpg?rev=1753390\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:55:\"searchwp-live-ajax-search/searchwp-live-ajax-search.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"w.org/plugins/searchwp-live-ajax-search\";s:4:\"slug\";s:25:\"searchwp-live-ajax-search\";s:6:\"plugin\";s:55:\"searchwp-live-ajax-search/searchwp-live-ajax-search.php\";s:11:\"new_version\";s:5:\"1.7.3\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/searchwp-live-ajax-search/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/searchwp-live-ajax-search.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/searchwp-live-ajax-search/assets/icon-256x256.png?rev=2464967\";s:2:\"1x\";s:78:\"https://ps.w.org/searchwp-live-ajax-search/assets/icon-128x128.png?rev=2464967\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/searchwp-live-ajax-search/assets/banner-1544x500.png?rev=2113131\";s:2:\"1x\";s:80:\"https://ps.w.org/searchwp-live-ajax-search/assets/banner-772x250.png?rev=2464969\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:15:\"sight/sight.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:19:\"w.org/plugins/sight\";s:4:\"slug\";s:5:\"sight\";s:6:\"plugin\";s:15:\"sight/sight.php\";s:11:\"new_version\";s:5:\"1.0.8\";s:3:\"url\";s:36:\"https://wordpress.org/plugins/sight/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/sight.1.0.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:58:\"https://ps.w.org/sight/assets/icon-256x256.png?rev=2606252\";s:2:\"1x\";s:58:\"https://ps.w.org/sight/assets/icon-128x128.png?rev=2606252\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/sight/assets/banner-1544x500.png?rev=2606252\";s:2:\"1x\";s:60:\"https://ps.w.org/sight/assets/banner-772x250.png?rev=2606252\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}}s:7:\"checked\";a:13:{s:37:\"absolute-reviews/absolute-reviews.php\";s:5:\"1.1.1\";s:35:\"advanced-popups/advanced-popups.php\";s:5:\"1.1.3\";s:19:\"akismet/akismet.php\";s:5:\"5.0.1\";s:17:\"canvas/canvas.php\";s:5:\"2.3.9\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.7.2\";s:25:\"envo-extra/envo-extra.php\";s:5:\"1.5.6\";s:9:\"hello.php\";s:5:\"1.7.2\";s:15:\"kirki/kirki.php\";s:6:\"4.0.24\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:5:\"3.1.2\";s:21:\"powerkit/powerkit.php\";s:5:\"2.8.2\";s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";s:5:\"3.1.5\";s:55:\"searchwp-live-ajax-search/searchwp-live-ajax-search.php\";s:5:\"1.7.3\";s:15:\"sight/sight.php\";s:5:\"1.0.8\";}}','no'),(448,'_site_transient_timeout_browser_b9cbd8dc13f19f9e7eb854f472bfa274','1674909596','no'),(449,'_site_transient_browser_b9cbd8dc13f19f9e7eb854f472bfa274','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"109.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'),(450,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1674348003','no'),(451,'_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:\"Thu, 19 Jan 2023 11:56:32 +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.2-alpha-55106\";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:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – December 2022\";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:72:\"https://wordpress.org/news/2023/01/the-month-in-wordpress-december-2022/\";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:\"Thu, 19 Jan 2023 12:00:00 +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:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";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=14191\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"Last month at State of the Word, WordPress Executive Director Josepha Haden Chomphosy shared some opening thoughts on “Why WordPress” and the Four Freedoms of open source. In this recent letter, she expands on her vision for the WordPress open source project as it prepares for the third phase of Gutenberg: “We are now, as [&#8230;]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12820:\"\n<p>Last month at <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">State of the Word</a>, WordPress Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> shared some opening thoughts on “Why WordPress” and the Four Freedoms of open source. <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">In this recent letter</a>, she expands on her vision for the WordPress open source project as it prepares for the third phase of Gutenberg:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-default\">\n<p>“We are now, as we ever were, securing the opportunity for those who come after us, because of the opportunity secured by those who came before us.”</p>\n<cite>Josepha Haden Chomphosy</cite></blockquote>\n\n\n\n<p>December brought with it a time for reflection—a time to look back, celebrate, and start planning new projects. Read on to find out what 2023 holds for WordPress so far.</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is turning 20!</h2>\n\n\n\n<p>2023 marks the <a href=\"https://wordpress.org/news/2023/01/wordpress-is-turning-20-lets-celebrate/\">20th anniversary of WordPress’ launch</a>. The project has come a long way since <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">the first release</a> as it continues to advance its mission to democratize publishing. From its beginnings as a blogging platform to a <a href=\"https://wordpress.org/showcase/\">world-leading open source CMS</a> powering over 40% of websites.</p>\n\n\n\n<p>Join the WordPress community in celebrating this important milestone. As the anniversary date approaches, there will be events, commemorative swag, and more.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wp20.wordpress.net/\">Stay tuned for updates</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.2 is scheduled for March 28, 2023</h2>\n\n\n\n<p>Work on WordPress 6.2, the first major release of 2023, is already underway. <strong>It is expected to launch on March 28, 2023</strong>, and will include up to Gutenberg 15.1 for a total of 10 <a href=\"https://developer.wordpress.org/block-editor/contributors/versions-in-wordpress/\">Gutenberg releases</a>.</p>\n\n\n\n<p>The proposed schedule includes four Beta releases to accommodate the first WordCamp Asia and avoid having major release milestones very close to this event.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">Read more about the 6.2 schedule and release team</a><em>.</em></p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\"><strong>Gutenberg 14.8</strong></a> was released on December 21, 2022. This version features a reorganized Site Editor interface with a Browse Mode that facilitates navigation through templates and template parts. In addition, it includes the ability to add custom CSS via the Style panel and a Style Book that provides an overview of all block styles in a centralized location.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\"><strong>Gutenberg 14.9</strong></a> became available for download on January 4, 2023. It introduces a new “Push changes to Global Styles” button in the Site Editor, which allows users to apply individual block style changes to all blocks of that type across their site. Other features include typography support for the Page List block, and the ability to import sidebar widgets into a template part when transitioning from a classic theme.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Learn how Gutenberg’s latest releases are <a href=\"https://make.wordpress.org/core/2023/01/06/core-editor-improvement-advancing-the-site-editor-experience/\">advancing the Site Editor experience</a> to be more intuitive and scalable.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: WordPress big picture goals, new Incident Response Team, and more</h2>\n\n\n\n<ul>\n<li>Josepha shared <a href=\"https://make.wordpress.org/project/2023/01/18/big-picture-goals-2023/\">WordPress’ big picture goals for 2023</a>, which support the vision set out in <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">State of the Word 2022</a> and her recent <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">letter to WordPress</a>.</li>\n\n\n\n<li>Let’s welcome the newly formed <a href=\"https://make.wordpress.org/project/2022/12/21/announcement-new-wordpress-incident-response-team/\">WordPress Incident Response Team (​​IRT)</a>—a group of contributors who will help as a community resource when behavior or actions do not align with the code of conduct.</li>\n\n\n\n<li>A number of Make teams have announced their team representatives for 2023, including <a href=\"https://make.wordpress.org/community/2022/12/20/community-team-reps-for-2023/\">Community</a>, <a href=\"https://make.wordpress.org/core/2022/12/20/core-team-reps-for-2023-and-beyond/\">Core</a>, <a href=\"https://make.wordpress.org/marketing/2023/01/10/2023-marketing-team-new-meeting-time-and-new-team-reps/\">Marketing</a>, <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">Polyglots</a>, <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a>, and <a href=\"https://make.wordpress.org/training/2022/12/23/training-team-meeting-recap-for-december-20-2022/\">Training</a>.</li>\n\n\n\n<li>As part of the WordPress.org redesign project, <a href=\"https://make.wordpress.org/design/2023/01/16/a-refresh-of-wordpress-org-themes/\">the Theme Directory will soon get a refreshed look and feel</a>.</li>\n\n\n\n<li>The return of in-person events and the Meetup Reactivation project are some of the highlights that marked a challenging but successful year for the Community Team. Learn more about <a href=\"https://make.wordpress.org/community/2022/12/20/community-team-2022-goals-recap/\">what they achieved in 2022</a>.</li>\n\n\n\n<li>#WPDiversity also celebrated its accomplishments in <a href=\"https://make.wordpress.org/community/2022/12/19/diverse-speaker-training-group-wpdiversity-2022-year-end-report/\">this report</a>. Last year, the training group held 15 events attended by more than 200 participants.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/03/a-year-in-core-2022/\">A Year in Core – 2022</a> provides a data overview of contributions made to the WordPress core codebase in the past year.</li>\n\n\n\n<li>Are you into WordPress development? Don’t miss this post on <a href=\"https://developer.wordpress.org/news/2022/12/28/2022-the-block-developers-year-in-review/\">2022&#8217;s most notable milestones and learning resources for block developers</a>.</li>\n\n\n\n<li>The January 2023 editions of the <a href=\"https://make.wordpress.org/polyglots/2023/01/13/polyglots-monthly-newsletter-january-2023/\">Polyglots monthly newsletter</a> and the <a href=\"https://make.wordpress.org/community/2023/01/18/meetup-organizer-newsletter-january-2023/\">Meetup Organizer newsletter</a> are now available for reading.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/project/2023/01/13/sotw22qa/\">Check out the 2022 State of the Word Q&amp;A post</a>, which answers submitted questions that Matt could not address at the live event.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/01/11/fse-program-testing-call-20-find-your-style/\">Join the latest FSE Program testing call</a> to help strengthen the upcoming WordPress site editing experience. Leave your feedback by February 1, 2023.</li>\n\n\n\n<li>The WordPress Developer Blog is <a href=\"https://make.wordpress.org/core/2023/01/12/can-you-help-with-topics-for-the-wordpress-developer-blog/\">gathering ideas for content topics</a>.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Have thoughts for improving the Five for the Future contributor experience? <a href=\"https://make.wordpress.org/project/2023/01/09/request-for-feedback-how-can-we-improve-the-five-for-the-future-contributor-journey/\">This post calls for ideas</a> on how this initiative can better support the project and the people behind it.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>Get ready for <a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a>! The first flagship WordCamp in Asia is happening on February 17-19, 2023, in Bangkok, Thailand. <a href=\"https://asia.wordcamp.org/2023/schedule/\">Check out the schedule</a> to learn more about the sessions and speakers.</li>\n\n\n\n<li>The <a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit</a> and <a href=\"https://us.wordcamp.org/2023/\">WordCamp US 2023</a> will take place in Maryland, USA, in August 2023. You can now <a href=\"https://us.wordcamp.org/2023/wcus-organizing-team/\">apply to join the organizing team</a> and help bring the next WCUS to life.</li>\n\n\n\n<li>Join #WPDiversity with a free online workshop on <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-apac-tickets-513455969627\">How to Own Your Expertise &amp; Start Speaking at WordPress Events APAC</a>. The event will take place on January 28, 2023.</li>\n\n\n\n<li>Don’t miss these other upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"🇵🇭\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Would you like to be a speaker at WordCamp Europe 2023? <a href=\"https://europe.wordcamp.org/2023/call-for-speakers/\">Submit your application</a> by the first week of February.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>.</em></p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14191\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WP Briefing: Episode 47: Letter from the Executive Director\";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:81:\"https://wordpress.org/news/2023/01/episode-47-letter-from-the-executive-director/\";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:\"Mon, 16 Jan 2023 12:00:00 +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:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";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:53:\"https://wordpress.org/news/?post_type=podcast&p=14175\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Hear from WordPress Executive Director Josepha Haden Chomphosy on her vision for the open source project in 2023. \";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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/01/WP-Briefing-047.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8912:\"\n<p>On episode forty-seven of the WordPress Briefing podcast, Executive Director Josepha Haden Chomphosy shares her vision and current thinking for the WordPress open source project in 2023. <em>Rather read it? <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">The full letter is also available</a>.</em></p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<p><a href=\"http://make.WordPress.org/core\">make.WordPress.org/core</a><br><a href=\"https://make.wordpress.org/core/6-2/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/6-2/\">Join the 6.2 Release!</a><br><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the Community Summit!</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14175\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]&nbsp;</strong></p>\n\n\n\n<p>Last month at State of the Word, I shared some opening thoughts about why WordPress. For me, this is an easy question, and the hardest part is always knowing which lens to answer through. Though I always focus on the philosophical parts of the answer, I know that I often speak as an advocate for many types of WordPressers.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00]&nbsp;</strong></p>\n\n\n\n<p>So as we prepare ourselves for the start of a new year, I have a few additional thoughts that I&#8217;d like to share with you, my WordPress community, to take into the year with you.&nbsp;</p>\n\n\n\n<p>Firstly, the Four Freedoms. If you have already listened to State of the Word, you have heard my take on the philosophical side of open source and the freedoms it provides.</p>\n\n\n\n<p>But if you didn&#8217;t, then the TL;DR on that is that open source provides protections and freedoms to creators on the web that I really think should just be a given. But there are a couple of other things about the Four Freedoms, and especially the way that WordPress does this kind of open source-y thing that I think are worth noting as well.</p>\n\n\n\n<p>One of those things is that WordPress entrepreneurs, those who are providing services or designing sites, building applications, they have proven that open source provides an ethical framework for conducting business. No one ever said that you aren&#8217;t allowed to build a business using free and open source software, and I am regularly heartened by the way that successful companies and freelancers make the effort to pay forward what they can.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:02]</strong></p>\n\n\n\n<p>Not always for the sole benefit of WordPress, of course, but often for the general benefit of folks who are also learning how to be entrepreneurs or how to kind of navigate our ecosystem. And the other thing that I love about the Four Freedoms and the way that WordPress does it is that leaders in the WordPress community, no matter where they are leading from, have shown that open source ideals can be applied to the way we work with one another and show up for one another.</p>\n\n\n\n<p>As a community, we tend to approach solution gathering as an us-versus-the-problem exercise, which not only makes our solutions better, it also makes our community stronger.&nbsp;</p>\n\n\n\n<p>As I have witnessed all of these things work together over the years, one thing that is clear to me is this: not only is open source an idea that can change our generation by being an antidote to proprietary systems and the data economy, but open source methodologies represent a process that can change the way we approach our work and our businesses.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:01]&nbsp;</strong></p>\n\n\n\n<p>The second big thing that I want to make sure you all take into the year with you is that we are preparing for the third phase of the Gutenberg project. We are putting our backend developer hats on and working on the APIs that power our workflows. That workflows phase will be complex. A little bit because APIs are dark magic that binds us together, but also because we&#8217;re going to get deep into the core of WordPress with that phase.</p>\n\n\n\n<p>If you want to have impactful work for future users of WordPress, though, this is the phase to get invested in. This phase will focus on the main elements of collaborative user workflows. If that doesn&#8217;t really make sense to you, I totally get it. Think of it this way, this phase will work on built-in real-time collaboration, commenting options in drafts, easier browsing of post revisions, and things like programmable editorial, pre-launch checklists.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00]&nbsp;</strong></p>\n\n\n\n<p>So phases one and two of the Gutenberg project had a very ‘blocks everywhere’ sort of vision. And phase three and, arguably, phase four will have more of a ‘works with the way you work’ vision.</p>\n\n\n\n<p>And my final thought for you all as we head into the year is this, there are a couple of different moments that folks point to as the beginning of the Gutenberg project. Some say it was State of the Word 2013, where Matt dreamed on stage of a true WYSIWYG editor for WordPress. Some say it was State of the Word 2016, where we were all encouraged to learn JavaScript deeply. For a lot of us though, it was at WordCamp Europe in 2018 when the Gutenberg feature plugin first made its way to the repo.</p>\n\n\n\n<p>No matter when you first became aware of Gutenberg, I can confirm that it feels like it&#8217;s been a long time because it has been a long time. But I can also confirm that it takes many pushes to knock over a refrigerator.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]&nbsp;</strong></p>\n\n\n\n<p>For early adopters, both to the creation of Gutenberg as well as its use, hyperfocus on daily tasks makes it really hard to get a concept of scale.</p>\n\n\n\n<p>And so I encourage everyone this year to look out toward the horizon a bit more and up toward our guiding stars a bit more as well. Because we are now, as we ever were, securing opportunity for those who come after us because of the opportunity that was secured for us by those who came before us.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:33]&nbsp;</strong></p>\n\n\n\n<p>That brings us now to our small list of big things. It&#8217;s a very small list, but two pretty big things. The first thing on the list is that the WordPress 6.2 release is on its way. If you would like to get started contributing there, you can wander over to make.WordPress.org/core. You can volunteer to be part of the release squad. You can volunteer your time just as a regular contributor, someone who can test things &#8212; any of that.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>We&#8217;ll put a link in the show notes. And the second thing that I wanted to remind you of is that today is the deadline to submit topics for the Community Summit that&#8217;s coming up in August. That comes up in the middle of August, like the 22nd and 23rd or something like that.&nbsp;</p>\n\n\n\n<p>We&#8217;ll put a link to that in the show notes as well. If you already have chatted with a team rep about some things that you really want to make sure get discussed at the community summit, I think that we can all assume that your team rep has put that in. But if not, it never hurts to give it a second vote by putting a new submission into the form.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14175\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;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:49:\"Letter from WordPress’ Executive Director, 2022\";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:81:\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\";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:\"Mon, 16 Jan 2023 12:00:00 +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:7:\"General\";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=14180\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"If Phases 1 and 2 had a \"blocks everywhere\" vision, think of Phase 3 with more of a “works with the way you work” vision. \";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5903:\"\n<p>Last month at State of the Word, I shared some opening thoughts about &#8220;Why WordPress.&#8221; For me, this is an easy question, and the hardest part is knowing which lens to answer through. The reasons that a solopreneur will choose WordPress are different than the reasons a corporation would. And while artists and activists may have a similar vision for the world, their motivations change their reasons, too. That&#8217;s why I always focus on the philosophical parts of the answer because I know that I am speaking as an advocate for many types of WordPressers. I have a few other reasons, too, which you may not be aware of as you use our software every day.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why WordPress?</h2>\n\n\n\n<p>Most importantly, the Four Freedoms of Open Source. If you have already listened to State of the Word, you have heard my thoughts on the philosophical side of open source and the freedoms it provides. If you didn’t, then the tl;dr on that is that open source provides protections and freedoms to creators on the web that should be a given. There&#8217;s an extent to which the idea of owning your content and data online is a radical idea. So radical, even, that it is hard for folks to grasp what we mean when we say &#8220;free as in speech, not free as in beer.&#8221; Securing an open web for the future is, I believe, a net win for the world especially when contrasted to the walled gardens and proprietary systems that pit us all against one another with the purpose of gaining more data to sell.</p>\n\n\n\n<p>A second reason is that WordPress entrepreneurs (those providing services, designing sites, and building applications) have proven that open source offers an ethical framework for conducting business. No one ever said that you cannot build a business using free and open source software. And I am regularly heartened by the way successful companies and freelancers make an effort to pay forward what they can. Not always for the sole benefit of WordPress, but often for the general benefit of folks learning how to be an entrepreneur in our ecosystem. Because despite our competitive streaks, at the end of the day, we know that ultimately we are the temporary caretakers of an ecosystem that has unlocked wealth and opportunity for people we may never meet but whose lives are made infinitely better because of us.</p>\n\n\n\n<p>And the final reason is that leaders in the WordPress community (team reps, component maintainers, and community builders) have shown that open source ideals can be applied to how we work with one another. As a community, we tend to approach solution gathering as an “us vs. the problem” exercise, which not only makes our solutions better and our community stronger. And our leaders—working as they are in a cross-cultural, globally-distributed project that guides or supports tens of thousands of people a year—have unparalleled generosity of spirit. Whether they are welcoming newcomers or putting out calls for last-minute volunteers, seeing the way that they collaborate every day gives me hope for our future.</p>\n\n\n\n<p>As I have witnessed these three things work together over the years, one thing is clear to me: not only is open source an idea that can change our generation by being an antidote to proprietary systems and the data economy, open source methodologies represent a process that can change the way we approach our work and our businesses.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress in 2023</h2>\n\n\n\n<p>As we prepare for the third phase of the Gutenberg project, we are putting on our backend developer hats and working on the APIs that power our workflows. Releases during Phase 3 will focus on the main elements of collaborative user workflows. If that doesn’t make sense, think of built-in real-time collaboration, commenting options in drafts, easier browsing of post revisions, and programmatic editorial and pre-launch checklists.</p>\n\n\n\n<p>If Phases 1 and 2 had a &#8220;blocks everywhere&#8221; vision, think of Phase 3 with more of a “works with the way you work” vision.&nbsp;</p>\n\n\n\n<p>In addition to this halfway milestone of starting work on Phase 3, <a rel=\"noreferrer noopener\" href=\"https://wp20.wordpress.net/\" target=\"_blank\">WordPress also hits the milestone of turning 20 years old</a>. I keep thinking back to various milestones we&#8217;ve had (which you can read about in the second version of the Milestones book) and realized that almost my entire experience of full-time contributions to WordPress has been in the Gutenberg era.</p>\n\n\n\n<p><em>I hear some of you already thinking incredulous thoughts so, come with me briefly.</em></p>\n\n\n\n<p>There are a couple of different moments that folks point to as the beginning of the Gutenberg project. Some say it was at State of the Word 2013 when Matt dreamed of &#8220;a true WYSIWYG&#8221; editor for WordPress. Some say it was at State of the Word 2016 where we were encouraged to &#8220;learn Javascript deeply.&#8221; For many of us, it was at WordCamp Europe in 2017 when the Gutenberg demo first made its way on stage.</p>\n\n\n\n<p>No matter when you first became aware of Gutenberg, I can confirm that it feels like a long time because it has been a long time. I can also confirm that it takes many pushes to knock over a refrigerator. For early adopters (both to the creation of Gutenberg and its use), hyper-focus on daily tasks makes it hard to get a concept of scale.</p>\n\n\n\n<p>So I encourage you this year to look out toward the horizon and up toward our guiding stars. We are now, as we ever were, securing the opportunity for those who come after us, because of the opportunity secured by those who came before us.</p>\n\n\n\n<p><em>Rather listen? <a href=\"https://wordpress.org/news/2023/01/episode-47-letter-from-the-executive-director/\">The abbreviated spoken letter is also available.</a> </em></p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14180\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:63:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress is Turning 20: Let’s Celebrate!\";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:74:\"https://wordpress.org/news/2023/01/wordpress-is-turning-20-lets-celebrate/\";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, 10 Jan 2023 21:38:49 +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:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WP20\";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=14155\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"2023 marks the 20th year of WordPress. Read on to learn about how WordPress is celebrating this milestone.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1476:\"\n<p>2023 marks the 20th year of WordPress. Where would we all be without WordPress? Just think of that! While many technologies, software stacks, and fashion trends have come and gone throughout the past two decades, WordPress has thrived. This is due to the fantastic work and contributions of the WordPress community, comprised of thousands of contributors; and millions of users who have embraced the <a href=\"https://wordpress.org/about/\">four freedoms of WordPress</a> and the mission to democratize publishing.</p>\n\n\n\n<p>Let’s celebrate!</p>\n\n\n\n<p>Throughout the beginning of 2023, leading up to the official anniversary date of WordPress’s launch (May 27, 2003), a number of different events will celebrate this important milestone, reflect on the journey, and look toward the future.</p>\n\n\n\n<p>Please join in!</p>\n\n\n\n<p>Over the next few months, be sure to check WordPress’s official social media accounts along with the <a href=\"https://wp20.wordpress.net/\">official anniversary website</a> for updates on how you can be involved in this exciting celebration by contributing content, collecting cool anniversary swag, and much more. </p>\n\n\n\n<p>Use the hashtag <strong>#WP20</strong> on social media so the community can follow along.</p>\n\n\n\n<p>If you have something planned to celebrate that you would like to be considered for inclusion on the official website, please <a href=\"https://forms.gle/my1yknAJYZ4jFLb79\">use this form to share the details</a>.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14155\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WP Briefing: Episode 46: The WP Bloopers Podcast\";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:70:\"https://wordpress.org/news/2022/12/episode-46-the-wp-bloopers-podcast/\";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:\"Sat, 31 Dec 2022 12:00:00 +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:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";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:53:\"https://wordpress.org/news/?post_type=podcast&p=14123\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"This episode of the WP Briefing features all the Josepha bloopers our little elves have stored away over the year. \";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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/12/WP-Briefing-046.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9636:\"\n<p>This episode of the WP Briefing features all the Josepha bloopers our little elves have stored away over the year. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14123\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can normally catch quick explanations of the ideas behind the WordPress open source project with the hope that deeper understanding creates deeper appreciation.</p>\n\n\n\n<p>But on today&#8217;s bonus episode, instead of catching quick explanations, you&#8217;ll catch some quick bloopers.&nbsp;</p>\n\n\n\n<p>The end of the year is a time when many people and many cultures gather together, and whether you observe traditions of light or faith, compassion, or celebration from everyone here at the WordPress Briefing Podcast, we&#8217;re wishing you a happy, festive season and a very happy New Year.</p>\n\n\n\n<p>Sit back, relax, and enjoy some of the laughs and outtakes from recording the WP Briefing over the year.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress. This is the thing I&#8217;ve done 25 times, and I know how to do it for reals.</p>\n\n\n\n<p>Welcome to WordPress Briefing, episode 20. Oh no, 7? 27? 26? Episode 27. I know how many things I&#8217;ve done.</p>\n\n\n\n<p>Ooh, neat. This is Josepha recording episode 46 of the WP Bonus Briefings. Not because we&#8217;ve had 46 bonus Briefings, but because this is the 46th one and it is a bonus, it will also have a fancy name. But right now, I&#8217;m just calling it the bonus. It&#8217;s gonna be quick. Here I go.&nbsp;</p>\n\n\n\n<p>Group them into two big buckets, themes, uh, themes and tools. Mmm, I&#8217;m gonna have to redo the whole thing! No! I thought I could save it, and I didn&#8217;t save it. I had a typo in my script, and then I messed it up. I, it said into you big buckets instead of into two big buckets.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00]&nbsp;</strong></p>\n\n\n\n<p>I&#8217;m gonna start over from the target release date because I kind of smeared it all together, um, despite what I intended to do.</p>\n\n\n\n<p>And gives everyone, no. What is this ringing of phones? Oh, I was doing so well. Where was I? Let&#8217;s see if I can just pick it up.</p>\n\n\n\n<p>All righty, live from my closet. It&#8217;s episode 20, the WordPress Briefing, WP Briefing. So I have a title for this, and when I started writing it, I really had every intention of writing it to the title. And then what I wrote doesn&#8217;t fit the title at all, but does really hang together well. And so we&#8217;re gonna have to come up with a new title, but at the moment, it&#8217;s called So Many Ways to WordPress.</p>\n\n\n\n<p>Here in a minute, you will see why it doesn&#8217;t fit. Also, at the end, I feel like I get very, like, angry nerd leader.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00]&nbsp;&nbsp;</strong></p>\n\n\n\n<p>And so I may, I may at the end, give that a second go and see if there&#8217;s a way that I can soften it a little bit, but, I, I don&#8217;t know that I can soften it. I feel very strongly about it. So, maybe I am just an angry nerd leader.</p>\n\n\n\n<p>Oh, okay. I&#8217;ll get us started now that I apparently have filled the room with apologies, not the room, the closet.&nbsp;</p>\n\n\n\n<p>We&#8217;ll figure out something very catchy as a title or as an alternative. Very descriptive, and people will click on it because they must know, but we&#8217;ll figure out the title later.</p>\n\n\n\n<p>@wordpress.org. However, I don&#8217;t know why I decided to do an invitation to email me in the middle of that. I&#8217;m gonna start from the top of that paragraph. I just got too excited by the opportunity to get mail.</p>\n\n\n\n<p>I gotta slow it down. I&#8217;m like the fastest talker, had too much coffee. Okay, slowing it down now.&nbsp;</p>\n\n\n\n<p>Huh? What am I saying? No, no, that&#8217;s what I&#8217;m saying. It&#8217;s fine. I, I can do this.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00]</strong></p>\n\n\n\n<p>Hold on. Oww. Sorry. I was adjusting my microphone, and then it fell down. I happened to be holding it at the time, so it didn&#8217;t, like, slam down, I think, and hurt your ears and so I apologize. Good thing I stopped so it didn&#8217;t just, like, slam down in the middle of a recording.</p>\n\n\n\n<p>That&#8217;s all right. I&#8217;m gonna give myself that win, even though it&#8217;s a hollow one. All right. Trying again. Starting right there, at now since.</p>\n\n\n\n<p>This year, it starts on October 18th, 2001. That&#8217;s the year? No, 2021. That&#8217;s the year. Oh man. I&#8217;m doing such a great job of this.</p>\n\n\n\n<p>Um, I&#8217;m recording this slightly before, um, you&#8217;re hearing it? What, how am I gonna start this? Hold on. I don&#8217;t know how to start this. All right. I&#8217;m, I can do it.</p>\n\n\n\n<p>Oh, I&#8217;m so glad I remembered. We had guests that could have been so embarrassing.</p>\n\n\n\n<p>Now for me, the trade-offs work well. How many times can I say now?</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]&nbsp;</strong></p>\n\n\n\n<p>Do I just start every sentence with now now? Is this just how I do things? Uh, now, now, now, now. I&#8217;m gonna start all over again because I&#8217;m in my head about the words in my mouth now. So.</p>\n\n\n\n<p>In some near timeframe, some near timeframe. This is not a thing that people say, Dustin, I&#8217;m sorry. That&#8217;s not a thing people say. I&#8217;m just gonna retry that one sentence to sound like I speak with other human beings sometimes.</p>\n\n\n\n<p>Today is the start of… I can do these things.</p>\n\n\n\n<p>This was a terrible ending. I need to just finish that last part. I&#8217;m gonna redo the part where I started with my name and not the name of the podcast. Um, and we&#8217;ll do that.</p>\n\n\n\n<p>And if you&#8217;re supporting or building anything to hand off to clients, you know that timely, easy to ship changes on a site are considered a vital part of any overarching brand and marketing strategy. Wow. It&#8217;s like, I don&#8217;t know what words are right there.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>I tripped over my own tongue a lot. I&#8217;m gonna sit, I&#8217;m gonna do that paragraph again because I didn&#8217;t do a very good job of it.</p>\n\n\n\n<p>I&#8217;ll do a better job.</p>\n\n\n\n<p>I literally digress, and now I don&#8217;t know. I am in my thing. What was I saying? Oh, there we go.&nbsp;</p>\n\n\n\n<p>Topher DeRosia, who founded Word not WordPress. Holy moly. That was a, I knew I was gonna say that, and I was like, don&#8217;t say that when you actually get around to saying this, but here I am, and I did it. Even though I knew I was gonna do it and I told myself not to. Doing it again. Right from there.</p>\n\n\n\n<p>Not which audiench segment. Oh man. Audiench is not a word, folks. I was on a roll. I&#8217;m gonna start right from the primary thing.</p>\n\n\n\n<p>I don&#8217;t even remember how I started this podcast. What is the last thing I said? I said, here we go. All right.&nbsp;</p>\n\n\n\n<p>Kind of covered some interesting ground, and so, oh no, this is not where I&#8217;m gonna start it. I know exactly where I&#8217;m gonna start it. Okay. I&#8217;m really ready now. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00]&nbsp;</strong></p>\n\n\n\n<p>I suddenly, I&#8217;m gonna pause right here because I suddenly got really worried that I didn&#8217;t actually hit record. Oh my gosh. I did. Woo. I&#8217;m all over the place. Okay. We&#8217;ll now continue. Wait, did I? Oh my goodness. I did, super sorry.</p>\n\n\n\n<p>Of the WordPress Briefing. I&#8217;m gonna do some singing in the middle of some talking, but I keep trying to talk myself out of the singing, so I&#8217;m gonna go ahead and do the singing, and then I&#8217;ll do the talking before I talk myself out of the singing. Here I go, probably.</p>\n\n\n\n<p>I added a word. That was so good. I&#8217;m gonna start again. I&#8217;m gonna get some water, and then I&#8217;m gonna start again. Not again. Again. Just from the ‘and finally.’</p>\n\n\n\n<p>I don&#8217;t know how I finish my show. Y&#8217;all, I do this literally every week. I never know how to finish my show. Here we go.</p>\n\n\n\n<p>I don&#8217;t know why I shouted at you from the other side of the tiny closet. I apologize. I&#8217;m gonna start again from ‘and finally.’</p>\n\n\n\n<p>Tada we did it.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:00]&nbsp;</strong></p>\n\n\n\n<p>Ha. I hate it. I hate the whole podcast. It&#8217;s gonna be fine.&nbsp;</p>\n\n\n\n<p>Done. Nailed it.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>With that, I&#8217;m your host, Josepha Haden Chomphosy. Merry Christmas from me. Happy holidays to you, and we&#8217;ll see you again in the new year.</p>\n\n\n\n<p>Done.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 45: State of the Word Reflections\";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:76:\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\";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:\"Thu, 22 Dec 2022 12:00:00 +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:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";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:53:\"https://wordpress.org/news/?post_type=podcast&p=14070\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Josepha reflects on this year\'s State of the Word address here on the WP Briefing podcast. \";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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/12/WP-Briefing-045.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14564:\"\n<p>In the forty-fifth episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy discusses highlights from this year&#8217;s State of the Word address. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">LearnWP</a><br><a href=\"https://developer.wordpress.org/playground/demo/\">WordPress Playground</a><br><a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">ICYMI: State of the Word Recap</a><br><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey!</a><br><a href=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\">Exploring WordPress Certifications</a><br><a href=\"https://communitysummit.wordcamp.org/2023/\" data-type=\"URL\" data-id=\"https://communitysummit.wordcamp.org/2023/\">Community Summit WordCamp Site</a><br><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the 2023 Community Summit</a><br><a href=\"https://wp20.wordpress.net/\">20th Anniversary&#8211; Stay Tuned for Updates</a><br><a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Check Out Style Variations and the 2023 Theme</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14070\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:39] </strong></p>\n\n\n\n<p>Last week, WordPress hosted its annual State of the Word. As usual, this was delivered by our project co-founder Matt Mullenweg and represented a year-long labor of love from the WordPress community as a whole. There are many things I love about State of the Word, but consistently the thing I love the most is being able to shine spotlights on the great work of our global network of contributors.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:02]&nbsp;</strong></p>\n\n\n\n<p>Since that presentation goes by at the speed of light, I wanted to highlight a few things as well. First things first, I wanted to highlight that we had nearly 1,400 contributors, and by nearly, I mean just one too few. We had 1,399 contributors. So that is a big deal in general, but it&#8217;s an especially big deal to me because that&#8217;s before we start looking at any contributions that aren&#8217;t specifically tied to a release.&nbsp;</p>\n\n\n\n<p>You may be wondering what those non-release contributions are. An incomplete list of those contributions would include organizing WordPress events, training others how to use WordPress, the myriad podcasts, articles, and newsletters that make up the WordPress media community, and any participant in a call for testing. Not to mention the unglamorous ways to contribute, like reviewing themes or reviewing plugins.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:58]&nbsp;</strong></p>\n\n\n\n<p>Things like patching security vulnerabilities and the bazillion things that Meta does to make sure that our community has all the tools that it needs to function. So I want to echo, once again, the huge, huge thanks that Matt already shared in State of the Word, and thank all of you for showing up for our project and for each other this way.</p>\n\n\n\n<p>The next thing I wanted to be sure to highlight was LearnWP. It was briefly noted that 12,000 learners had found their way to courses on learn.wordpress.org, and then during the Q&amp;A, there was a related question about certifications in WordPress.&nbsp;</p>\n\n\n\n<p>The need for certifications has been a regular topic in our project, and I mentioned that there are two different ongoing discussions at the moment. One of those discussions is happening directly on the make.wordpress.org/training site, so I&#8217;ll share a link in the show notes for that.</p>\n\n\n\n<p>But I&#8217;ve also been personally chatting on and off with Training team reps and other members of the community about what makes that so hard. In case you have not heard my whole spiel about what makes it difficult, it&#8217;s the logistics and our speed of iteration, and public perception.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:05] </strong></p>\n\n\n\n<p>So not exactly a small set of hurdles. I&#8217;ll be doing a more complete post on this in the New Year so that we can get some solid documentation of the state of things and not let it be lost forever in this podcast. But I do know that it is something that we are very interested in as a community and something that, historically, I have really been resistant to.</p>\n\n\n\n<p>Not because I think it&#8217;s a bad idea, but because as someone who&#8217;s looking out for our operations side of things and our logistics side of things, it is not clear how we&#8217;re gonna get that done. Like I said, in the New Year, keep an eye out for a big, big post that takes a look at the benefits versus the costs and everything that we can do to help make those match each other a bit better.</p>\n\n\n\n<p>And then the last thing I wanted to highlight was the WordPress Playground. Okay, so this was the last thing that Matt mentioned, and I want to be sure that it&#8217;s clear what&#8217;s going on with this project because when I first heard about it, I very nearly lept from my chair!&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:03]&nbsp;</strong></p>\n\n\n\n<p>It was such a remarkably big deal. Okay, so the WordPress Playground uses technological magic called ‘web assembly.’ I don&#8217;t know what it is, but it&#8217;s magic. And when I say magic, I mean that this tool makes it possible to run WordPress, an instance of WordPress, including a theme and a handful of plug-ins entirely inside your browser as a logged-in admin.</p>\n\n\n\n<p>You don&#8217;t need a server. You don&#8217;t need to select a host. You don&#8217;t need to download anything at all. You don&#8217;t need to know what your domain&#8217;s going to be. You simply select the theme you want to test. Add some dummy content and see how all of the posts and pages function as though we&#8217;re a real live WordPress site running on your favorite top-tier host.</p>\n\n\n\n<p>Then when you close the tab, it&#8217;s gone forever. Poof. Just like that. Now, this is a brand new project. It&#8217;s brand new to us and has a long way to go. So if working on that sounds cool, stop by the Meta Playground channel in the Making WordPress Slack.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:09]&nbsp;</strong></p>\n\n\n\n<p>But this, in my mind, changes the way that we stage sites.</p>\n\n\n\n<p>It could change the way we determine whether a theme or plugin is right for us. And arguably, it can become a stress-free way to introduce new or undecided users to WordPress’s admin area so that they can tell what they&#8217;re getting into. So when I say that this is a mind-blowing thing, and when I say that it is powered by magic, like it is astounding, it is astounding.</p>\n\n\n\n<p>And the applications for our users as a whole, I think, are untapped yet, and potentially even the applications for our learners and future learners of WordPress– equally untapped. I&#8217;m very excited to see what we can do with this project in the future. So stop by the Meta channel. Stop by Meta Playground.</p>\n\n\n\n<p>See what&#8217;s going on over there. We would love to have you.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>So those are my highlights of the day for State of the Word. Like I said, there are a few things I want to do more of a deep dive on in the text, so keep an eye out on make.wordpress.org/projects for most of those. But right now, let&#8217;s make some time for the small list of big things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:17]&nbsp;</strong></p>\n\n\n\n<p>Today I actually have kind of like a big list of big things. But I pretended it was small, so you didn&#8217;t turn off the podcast. So the first thing that I have is that in case you missed State of the Word, if you didn&#8217;t have a Watch Party to go to, or you didn&#8217;t know it was happening and so you didn&#8217;t really tune in at the time, I&#8217;m going to drop in a link of the recording.</p>\n\n\n\n<p>It&#8217;s gonna probably start right when everything gets going. And so you shouldn&#8217;t have to scrub through anything. If you end up on one of the recordings that includes like the whole live stream, there is jazz for the first 30 minutes, and just, you know, skip through that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00] </strong></p>\n\n\n\n<p>The second thing on my big list of big things is our annual community survey. So Matt mentioned this in State of the Word, and he pointed out that one of the things that makes WordPress and open source in general so effective is that we have a way to communicate with people who are using our software and we make every effort to be responsive to it.</p>\n\n\n\n<p>So the annual survey that we send out, it used to be quite big, and we&#8217;ve cut it down to 20 questions. If you want, you can think of it as like a census, so have your type of work and how long you&#8217;ve been working in WordPress, and what you wish to do with WordPress– have all those things be counted so we have a good idea of the type of person who&#8217;s currently using WordPress, and we can account for your needs and wants.</p>\n\n\n\n<p>But also, if you want to think of it more as an opportunity to share the things that were especially useful for you in the project this year or especially valuable for you as a contributor, this is also an excellent place to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:01]&nbsp;</strong></p>\n\n\n\n<p>There&#8217;s a QR code running around on the internet somewhere, but I&#8217;ll also put a link in the show notes. If you do not know where the show notes are, by the way, they are at wordpress.org/news/podcast, and you&#8217;ll be able to get to the survey.</p>\n\n\n\n<p>The third thing on my big list of big things is that next year we&#8217;re hosting a community summit. So if you&#8217;ve never been to a community summit, Matt mentioned that it is an opportunity for the best and most prolific contributors that we have to show up and discuss the things that are the biggest problems for the WordPress project right now.</p>\n\n\n\n<p>But we also want to make sure that we are making space for the voices that we know that we are missing from the community as well as contributors who look like they are probably excellent future stewards of this open source project that we are taking care of together. And so there is a whole website for that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:55]&nbsp;</strong></p>\n\n\n\n<p>I believe it&#8217;s communitysummit.wordcamp.org. Right now, there is a form up asking for topics that you want to be able to discuss while we are there, but it&#8217;s taking place, if I recall correctly, on August 22nd and 23rd of 2023.</p>\n\n\n\n<p>Number four on my big list of big things is that next year is WordPress&#8217;s 20th anniversary. So on May 27th of next year, WordPress will officially be 20 years old. So on our 10th birthday, anniversary rather, and our 15th anniversary, we pulled together some parties all across the world.&nbsp;</p>\n\n\n\n<p>We had some images, some logos, and things that were specific to the celebration that we printed into stickers and that folks put on, like, mugs and backpacks and cakes and stuff. So if you want to learn more about that, keep an eye out in the community channel in making WordPress Slack. They will keep you posted on how to one, find any of those logos and designs so that your local community can join in the celebrations.<br></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:03]&nbsp;</strong></p>\n\n\n\n<p>But they will also help you learn how to have any sort of WordPress celebration party that we&#8217;re doing there in May of 2023.&nbsp;</p>\n\n\n\n<p>And then the final thing on my big list of big things, it was mentioned that on the 2023 theme that was shipped with a bunch of style variations and there was this really, I think, excellent illustrative video that <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> put together for us that shows that you can switch through style variations on a single theme and have a site that looks totally different.</p>\n\n\n\n<p>Now, that feels like that&#8217;s just a thing that should always have been in WordPress, but it is new this year. And so, if you have not yet had a chance to look at the 2023 theme, it is the default theme that shipped with 6.1. And so, if you have it on your website and just haven&#8217;t had a look at it yet, I encourage you to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:00]</strong></p>\n\n\n\n<p>It&#8217;s a really interesting implementation that makes a single theme potentially look like an infinite number of other themes, and those style variations can be specific to the theme or can just kind of be around and about in the patterns that are also available in Core.&nbsp;</p>\n\n\n\n<p>Give that a look. I think it&#8217;s super worthwhile.</p>\n\n\n\n<p>And that, my friends, is your big list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in the New Year.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – November 2022\";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:72:\"https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\";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, 20 Dec 2022 12:05:04 +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:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";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=14124\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:317:\"WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project\'s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13931:\"\n<p>WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project&#8217;s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word 2022</h2>\n\n\n\n<p>WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> delivered the annual State of the Word address on <strong>December 15, 2022</strong>, before a live audience in New York City. Most attendees joined the event via livestream or one of the 33 watch parties held across 11 countries.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, Executive Director of WordPress, kicked off this year&#8217;s event with an introduction to the <strong>Four Freedoms of open source</strong> and the importance of WordPress in ensuring “a free, open and interconnected web for the future.”</p>\n\n\n\n<p>Similar to past State of the Word events, Matt reflected on the project’s achievements over the past year, including Gutenberg’s adoption beyond WordPress, the steady progress in advancing the site editing experience, and the return to in-person events.<em> </em>In addition, he took the opportunity to remind everyone of the <a href=\"https://communitysummit.wordcamp.org/2023/\">2023 Community Summit</a> and the <a href=\"https://wp20.wordpress.net/\">20th anniversary of WordPress</a> coming up next year.</p>\n\n\n\n<p><strong>Ahead of 2023</strong>, Matt announced <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">new taxonomies</a> in the WordPress.org theme and plugin directories to help users identify the extensions that best fit their needs and plans for Phase 3 of Gutenberg—Collaboration—among other notable updates.</p>\n\n\n\n<p>People who watched the State of the Word enjoyed a demo of <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, an experimental project to explore, experiment, and build apps with a WordPress instance that runs entirely in the browser.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Missed the event? <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">Read the recap</a> or <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watch the State of the Word recording</a> and <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">Q&amp;A session</a> on WordPress.tv.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 2022 WordPress Survey is open</h2>\n\n\n\n<p>The annual WordPress survey helps project leadership and those who build WordPress understand more about the contributor experience, how the software is used, and by whom.</p>\n\n\n\n<p>This year’s survey will remain <strong>open through the end of 2022</strong> and is available in English, French, German, Italian, Japanese, Russian, and Spanish.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey</a> to help make an impact on the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\"><strong>Gutenberg 14.6</strong></a>, released on November 23, 2022, came with many refinements to core blocks. Notable highlights include a variation picker that allows users to choose a desired layout when a Group block is inserted on a page, a new list view for editing the Navigation block, and a keyboard shortcut to transform paragraph blocks into headings.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\"><strong>Gutenberg 14.7</strong></a>, released on December 7, 2022, introduced an experimental tabbed sidebar, colors to help identify some block types in list view, and improvements to the Page List block to make it easier to manage page links in the content.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Introducing the block editor in the support forums, a revamped Showcase page, and more</h2>\n\n\n\n<ul>\n<li>The Support and Meta Teams are bringing <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">the block editor experience into the WordPress.org support forums</a>.</li>\n\n\n\n<li>WordPress.org’s redesign continues with a <a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">refreshed Showcase page</a>.</li>\n\n\n\n<li>A <a href=\"https://make.wordpress.org/community/2022/12/05/proposed-2023-global-community-sponsorship-program/\">proposal for the 2023 Global Community Sponsorship Program</a> has been published.</li>\n\n\n\n<li>WordPress is accessible to more people thanks to 19,357 contributors who translated more than eight million strings this year. Learn more about the <a href=\"https://make.wordpress.org/polyglots/2022/12/12/reflecting-on-2022-in-polyglots/\">Polyglots Team&#8217;s achievements in 2022</a>.</li>\n\n\n\n<li>Speaking of accomplishments, supporters of the Global Meetup Reactivation project <a href=\"https://make.wordpress.org/community/2022/12/09/december-update-global-meetup-reactivation-project/\">helped reactivated 126 meetup groups</a> in 2022! There are also some discussions on <a href=\"https://make.wordpress.org/community/2022/12/15/idea-creating-a-translation-events-kit-for-meetups/\">how these efforts can support the Polyglots Outreach Effort project</a>, and vice versa.</li>\n\n\n\n<li>The Community Team met with members of the Meetup.com team to help report some feedback and issues with an accessibility overlay that they ultimately <a href=\"https://make.wordpress.org/community/2022/11/23/meetup-com-accessibility-overlay-update/\">agreed to remove</a>.</li>\n\n\n\n<li>The Training Team highlighted <a href=\"https://make.wordpress.org/training/2022/12/05/learn-wordpress-site-updates-december-2022/\">the latest updates</a> that have been made to <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. In addition, <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">part 1</a> and <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">part 2</a> of the Developers Guide to Block Themes are now available on the platform.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a> and <a href=\"https://make.wordpress.org/polyglots/2022/11/08/call-for-polyglots-team-representatives-2/#comment-295831\">Polyglots</a> Teams announced their team representatives for 2023.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2022/11/30/now-available-wordpress-3-7-4-0-final-releases/\">final releases for WordPress 3.7-4.0</a> were made available on November 30, 2022, with a notice that they are no longer receiving security updates. WordPress 4.1 and later will continue to receive such updates.</li>\n\n\n\n<li>Fresh off the press, the <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">December 2022 edition of the Polyglots monthly newsletter</a> is available for reading.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\">Huanyi Chuang</a>, a front end developer from Taiwan.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about why WordPress has so many releases? <a href=\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\">Tune in to Episode 44 of WP Briefing</a> to learn about the role of major and minor releases in the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Help efforts to wrap up Gutenberg Phase 2 by <a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">testing the Site Editor’s latest updates</a>. Leave your feedback by January 6, 2023.</li>\n\n\n\n<li>The Performance Team shared a <a href=\"https://make.wordpress.org/core/2022/12/09/enhancing-the-scripts-api-with-a-loading-strategy/\">new proposal for enhancing the Scripts API with a loading strategy</a>.</li>\n\n\n\n<li>The Full Site Editing (FSE) Outreach Program is <a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\">looking for volunteers to use Replay.io for capturing bugs</a>. Express your interest by December 28, 2022.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Community Team is calling on WordPress contributor teams to <a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">suggest topics for the 2023 Community Summit</a> by January 16, 2023.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>The #WPDiversity working group organized <a href=\"https://make.wordpress.org/community/2022/12/17/report-wpdiversity-inclusion-and-diverse-speaker-workshops-october-and-november-2022/\">several workshops</a> during the past few months. Among other highlights, attendees of the Speaker Workshop for Women Voices in Latin America reported a 52% increase in self-confidence to speak in public. <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/#upcoming-wpdiversity-workshops\">Stay tuned for the next events</a>.</li>\n\n\n\n<li>The WordCamp Europe 2023 organizing team shared <a href=\"https://europe.wordcamp.org/2023/wceu-2023-content-vision/\">their content vision</a> for next year&#8217;s flagship event in Athens, Greece.</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> is just a few months away, scheduled for February 17-19, 2023, in Bangkok, Thailand. Organizers have announced the first recipient of the WordCamp Asia Diversity Scholarship, <a href=\"https://asia.wordcamp.org/2023/diversity-scholarship-recipient/\">Awais Arfan</a>.</li>\n\n\n\n<li>Three more WordCamps are happening in the next few months:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"🇵🇭\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>WordCamp Europe 2023 is calling for <a href=\"https://europe.wordcamp.org/2023/the-call-for-sponsors-is-now-open/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2023/call-for-speakers-is-open-now/\">speakers</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, and <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>.</em></p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"State of the Word 2022: A Celebration of the Four Freedoms of Open Source\";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:64:\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\";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:\"Fri, 16 Dec 2022 22:11:15 +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:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"state of the word\";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=14110\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress belongs to all of us, but really we’re taking care of it for the next generation.” Matt Mullenweg A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder Matt Mullenweg. Those who could not join in person joined via livestream [&#8230;]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5677:\"\n<blockquote class=\"wp-block-quote\">\n<p>WordPress belongs to all of us, but really we’re taking care of it for the next generation.” </p>\n<cite>Matt Mullenweg</cite></blockquote>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/VeigCZuxnfY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>. Those who could not join in person joined via livestream or one of 33 watch parties held across 11 countries, with more than 500 RSVPs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"The four freedoms of open source: run the program, study the change, redistribute, and distribute your copies.\" class=\"wp-image-14111\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Executive Director, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, introduced the event with a reminder of why so many of those gathered choose WordPress—the Four Freedoms of open source. As Haden Chomphosy noted, open source is an idea that can change our generation, and WordPress is one of the most consistent and impactful stewards of those freedoms.</p>\n\n\n\n<p>As with past State of the Word events, Matt reflected on the year’s accomplishments, learnings, and aspirations as the project moves into 2023. From Gutenberg concluding its second phase of site editing in preparation for phase three—Collaborative Workflows, to the reactivation of meetups and global WordCamps, to the introduction of a new theme and plugin taxonomy, to musings on the potential of machine learning, WordPress enters its <a href=\"https://wp20.wordpress.net/\">20th year</a> continuing to define bleeding edge technology in thanks to the ecosystem’s vibrant community.&nbsp;</p>\n\n\n\n<p>The one-hour multimedia presentation was followed by an interactive <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">question and answer</a> session where Matt fielded questions from the livestream and studio audience. All questions will be responded to in a follow-up post on <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project\" target=\"_blank\">Make.WordPress.org/project</a>.&nbsp;</p>\n\n\n\n<p>Discover everything that was covered by <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watching the official event recording</a> and join the ongoing #StateOfTheWord conversation on <a href=\"https://www.tumblr.com/tagged/StateoftheWord?sort=top\">Tumblr</a>, <a href=\"https://www.instagram.com/explore/tags/stateoftheword/\">Instagram</a>, <a href=\"https://www.facebook.com/hashtag/stateoftheword\">Facebook</a>, <a href=\"https://www.linkedin.com/feed/hashtag/?keywords=stateoftheword\">Linkedin</a>, and <a href=\"https://twitter.com/hashtag/StateOfTheWord\">Twitter</a>. For another way to get involved, consider sharing your experience with WordPress in the <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">2022 WordPress Community Survey</a>.</p>\n\n\n\n<span id=\"more-14110\"></span>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Referenced Resources</strong>&nbsp;</h2>\n\n\n\n<ul>\n<li><a href=\"http://wordpress.tumblr.com/\">WordPress on Tumblr</a></li>\n\n\n\n<li><a href=\"http://engineawesome.com/\">Engineawesome.com</a> using Gutenberg</li>\n\n\n\n<li><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></li>\n\n\n\n<li><a href=\"http://wp20.wordpress.net/\">WP20.wordpress.net</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/\">learn.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/openverse\">Openverse</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/\">Make.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground\">WordPress Playground</a></li>\n\n\n\n<li><a href=\"http://photomatt.tumblr.com/\">Matt on Tumblr</a></li>\n\n\n\n<li><a href=\"https://distributed.blog/\">Distributed.blog</a></li>\n</ul>\n\n\n\n<p><em><em>Special thanks to <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> and <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> for review and collaboration.</em></em></p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Share Your Experience: The 2022 WordPress Survey is Open\";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:57:\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\";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:\"Thu, 01 Dec 2022 16:00:19 +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:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"survey\";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=14062\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"The 2022 WordPress survey is open for your input and available in English, French, German, Italian, Japanese, Russian, and Spanish.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4584:\"\n<p>Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide valuable feedback through an annual survey. Key takeaways and trends that emerge from this survey often find their way into the annual <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word</a> address, are shared in the public project blogs, and can influence the direction and strategy for the WordPress project.</p>\n\n\n\n<p>Simply put: this survey helps those who build WordPress understand more about how the software is used, and by whom. The survey also helps leaders in the WordPress open source project learn more about our contributors’ experiences.&nbsp;&nbsp;</p>\n\n\n\n<p>To ensure that your WordPress experience is represented in the 2022 survey results, <a href=\"https://wordpressdotorg.survey.fm/en-2022\">take the 2022 annual survey now.</a></p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/en-2022\">Take the 2022 Survey (English)</a></div>\n</div>\n\n\n\n<p>You may also take the survey in <a href=\"https://wordpressdotorg.survey.fm/fr-2022\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/de-2022\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/it-2022\">Italian</a>, <a href=\"https://wordpressdotorg.survey.fm/jp-2022\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/ru-2022\">Russian</a>, or <a href=\"https://wordpressdotorg.survey.fm/es-2022\">Spanish</a>, thanks to the efforts of WordPress polyglot contributors. These are the most frequently installed languages based on the number of WordPress downloads. </p>\n\n\n\n<p>The survey will be open through the end of 2022, and then WordPress plans to publish the results sometime in 2023. This year, the survey questions have been refreshed for more effortless survey flow, completion, and analysis. Some questions have been removed, while a few new ones are now present, reflecting the present and future of WordPress. If you’re looking for the analysis of the 2021 survey results, those will also be shared in early 2023.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Spread the word</h2>\n\n\n\n<p>Help spread the word about the survey by sharing it with your network, through Slack, or within your social media accounts. The more people who complete the survey and share their experience with WordPress, the more the project as a whole will benefit in the future.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security and privacy</h2>\n\n\n\n<p>Data security and privacy are paramount to the WordPress project and community. With this in mind, all data will be anonymized: no email addresses nor IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, view the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you</h2>\n\n\n\n<p>Thank you to the following WordPress contributors for assisting with the annual survey project, including question creation, strategy, survey build-out, and translation:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/dansoschin/\">dansoschin</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili/\">_dorsvenabili</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">angelasjin</a>, <a href=\"https://profiles.wordpress.org/arkangel/\">arkangel</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">audrasjb</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">atachibana</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">bjmcsherry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">eidolonnight</a>, <a href=\"https://profiles.wordpress.org/fernandot/\">fernandot</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">fierevere</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">fxbenard</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">jdy68</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">jpantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">laurlittle</a>, <a href=\"https://profiles.wordpress.org/nao/\">nao</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">nielslange</a>, <a href=\"https://profiles.wordpress.org/peiraisotta/\">peiraisotta</a>, <a href=\"https://profiles.wordpress.org/piermario/\">piermario</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">santanainniss</a>.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Huanyi Chuang\";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:69:\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\";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:\"Wed, 30 Nov 2022 20:09:00 +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:6:{i:0;a:5:{s:4:\"data\";s:9:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";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=13562\";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:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"The latest People of WordPress story features Huanyi Chuang, from #Taiwan, on his journey to become a digital marketer and front end developer. \";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11689:\"\n<p><strong>This month we feature Huanyi (Eric) Chuang, a front end developer from Taiwan, who helps connect local groups to WordPress and the worldwide open source community. He is part of the team helping to make the first WordCamp Asia a success in 2023.</strong></p>\n\n\n\n<p><strong>The People of WordPress series shares some of the inspiring stories of how people&#8217;s lives can change for the better through WordPress and its global network of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1014\" height=\"627\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?resize=1014%2C627&#038;ssl=1\" alt=\"Huanyi pictured sitting inside a rock formation.\" class=\"wp-image-13479\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=1014&amp;ssl=1 1014w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=768&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Discovering WordPress and the benefit of child themes </strong></h2>\n\n\n\n<p>Huanyi’s first footsteps in WordPress began in 2017 when he worked for a firm that built blogs and developed ad content for clients.</p>\n\n\n\n<p>After building a few sites using the platform, he discovered child themes and through them opened up a world of possibilities for his clients. To this day, he uses child themes to deliver truly custom designs and functionality for clients.</p>\n\n\n\n<p>Later in his career, Huanyi moved into digital marketing, integrating sites with massive ad platforms like Google and Facebook. This led him to learn to work with tracking code and JavaScript. He also began his learning journey in HTML, CSS, and PHP, to be able to improve his development skills and customize child themes.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Meetups bring together software users to learn together</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?fit=600%2C800&amp;ssl=1\" alt=\"Huanyi and a koala.\" class=\"wp-image-13476\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?w=225&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" /><figcaption class=\"wp-element-caption\"><em>Huanyi pictured in Australia during one of his travels meeting a koala bear.</em></figcaption></figure>\n\n\n\n<p>When Huanyi had a problem with a client&#8217;s site, he looked to WordPress meetups near where he lived in <a href=\"https://www.meetup.com/Taipei-WordPress/\">Taipei</a> to help find the solutions.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong>“When I encountered an issue with the custom archive pages, a local meetup announcement showed up on my WordPress dashboard</strong>.&#8221;</p>\n<cite>Huanyi Chuang</cite></blockquote>\n\n\n\n<p>At the meetup, he met more experienced WordPress users and developers there, who answered his questions and helped him learn.</p>\n\n\n\n<p>“When I encountered an issue with the custom archive pages, a local meetup announcement showed up on my WordPress dashboard. That was my original connection with the local community,” Huanyi said.</p>\n\n\n\n<p>The WordPress community gave Huanyi a chance to connect with people, feed his curiosity about the software, and join a circle of people he could share this interest.</p>\n\n\n\n<p>At first, he thought meetups were an opportunity to source new clients, and he took his business cards to every event. However, he soon found that these events offered him the opportunity to make friends and share knowledge.</p>\n\n\n\n<p>From then on, Huanyi started focusing more on what he could give to these events and networks, making new friends, and listening to people. This led him to share as a meetup speaker his own commercial website management experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The road to WordCamp</strong></h2>\n\n\n\n<p>It was going to his first meetup and then getting involved with WordCamps that changed Huanyi&#8217;s whole relationship with WordPress.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?resize=600%2C800&#038;ssl=1\" alt=\"Huanyi pictured on an outing, stood next to a white car.\" class=\"wp-image-13477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?w=225&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In 2018, he took the step to help as an organizer, having joined the Taoyuan Meetup in Taiwan. He played several parts across the organizing team, and the welcoming feeling he got in every situation encouraged him to get more involved.</p>\n\n\n\n<p>He recalls meeting new friends from different fields and other countries, which gave him a great sense of achievement and strengthened his passion for participating in the community.</p>\n\n\n\n<p>When the team started this meetup, numbers were much lower than in the group in the city of Taipei, but they were not disheartened and gradually grew the local WordPress community.</p>\n\n\n\n<p>They created a pattern of ‘multiple organizers,’ which spread the workload and grew friendships.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong>“Being connected to and from meetups is the most valuable part of the community. Having these friends makes me gather more information. We share information and benefit from others’ information, and thus we gain more trust in each other. With such credibility, we share more deeply and build deeper relations.”</strong> </p>\n<cite>Huanyi Chuang</cite></blockquote>\n\n\n\n<p>Before the pandemic, the meetup met every month and grew to become the second largest meetup in Taiwan. Huanyi also contributed to the WordPress community as an organizer of WordCamp Taipei 2018 in the speaker team and lead organizer of <a href=\"https://taiwan.wordcamp.org/2021/\">WordCamp Taiwan 2021</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>So why should you join the community?</strong></h2>\n\n\n\n<p>According to Huanyi, you will always have something to take home with you. It might be new information or experiences. It might be plugins or theme ideas. But most of all, it is the chance to meet fascinating people and make new friends.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Huanyi’s message to other contributors:<br>&#8220;Keep participating, and you will find more you can achieve than you expect.” </p>\n</blockquote>\n\n\n\n<p>He added that long-term participation will &#8216;let you feel the humanity behind the project&#8217;.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Localize: the road ahead for WordPress</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"900\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?resize=900%2C675&#038;ssl=1\" alt=\"Huanyi standing on a sandy beach.\" class=\"wp-image-13478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=768&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Huanyi believes WordPress has the power to break down the barriers between designers, project managers, developers, marketers, writers, and publishers. In Taiwan, he said WordPress is &#8216;a common protocol&#8217; that lets people from all of these disciplines work and communicate together more easily than they ever have before.</p>\n\n\n\n<p>That is why he works on and encourages others to localize plugins today. He believes localization of the software is the foundation for the extension of the WordPress community as it enables people to ‘Flex their Freedom’ in a language they speak!</p>\n\n\n\n<p>He has helped to organize online events around previous <a href=\"https://wptranslationday.org/\">WordPress Translation Day</a> events.</p>\n\n\n\n<p>Huanyi said: “I think it&#8217;s important to localize WordPress because its very concept of ‘open source’ means that people can access it freely. In another way, free from the monopoly of knowledge and speech. To achieve it, it&#8217;s important that people can access it with their own language.</p>\n\n\n\n<p>“Localization is the foundation of the extension of WordPress community because it helps people using different languages to access the project and lowers the hurdle to understand how things work.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Contributors</strong></h2>\n\n\n\n<p>Thank you to <a href=\'https://profiles.wordpress.org/no249a002/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>no249a002</a> for sharing his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Adeeb Malik (<a href=\'https://profiles.wordpress.org/adeebmalik/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adeebmalik</a>) for research, interviews, and contributing to this feature article.</p>\n\n\n\n<p>The <em>People of WordPress</em> series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13562\";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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";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:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 21 Jan 2023 12:39:59 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 19 Jan 2023 12:00:00 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(452,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1674348003','no'),(453,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1674304803','no'),(454,'_site_transient_timeout_community-events-28bc4fbbfb87f094d514694b21fff2af','1674348003','no'),(455,'_site_transient_community-events-28bc4fbbfb87f094d514694b21fff2af','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:8:\"10.0.0.0\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:32:\"Conyers WordPress Monthly Meetup\";s:3:\"url\";s:64:\"https://www.meetup.com/conyers-wordpress-meetup/events/290351051\";s:6:\"meetup\";s:24:\"Conyers WordPress Meetup\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Conyers-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-01-26 19:00:00\";s:8:\"end_date\";s:19:\"2023-01-26 21:00:00\";s:20:\"start_unix_timestamp\";i:1674777600;s:18:\"end_unix_timestamp\";i:1674784800;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Conyers, GA, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.666565;s:9:\"longitude\";d:-84.017845;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:23:\"WordCamp Birmingham, AL\";s:3:\"url\";s:37:\"https://birmingham.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-02-04 08:00:00\";s:8:\"end_date\";s:19:\"2023-02-05 00:00:00\";s:20:\"start_unix_timestamp\";i:1675519200;s:18:\"end_unix_timestamp\";i:1675576800;s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Birmingham, AL\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.5096117;s:9:\"longitude\";d:-86.7974738;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:36:\"Gainesville WordPress Monthly Meetup\";s:3:\"url\";s:68:\"https://www.meetup.com/gainesville-wordpress-meetup/events/290351175\";s:6:\"meetup\";s:28:\"Gainesville WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/Gainesville-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-02-09 12:00:00\";s:8:\"end_date\";s:19:\"2023-02-09 13:00:00\";s:20:\"start_unix_timestamp\";i:1675962000;s:18:\"end_unix_timestamp\";i:1675965600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:34.29;s:9:\"longitude\";d:-83.82;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:32:\"Conyers WordPress Monthly Meetup\";s:3:\"url\";s:64:\"https://www.meetup.com/conyers-wordpress-meetup/events/290351055\";s:6:\"meetup\";s:24:\"Conyers WordPress Meetup\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Conyers-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-02-23 19:00:00\";s:8:\"end_date\";s:19:\"2023-02-23 21:00:00\";s:20:\"start_unix_timestamp\";i:1677196800;s:18:\"end_unix_timestamp\";i:1677204000;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Conyers, GA, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.666565;s:9:\"longitude\";d:-84.017845;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:36:\"Gainesville WordPress Monthly Meetup\";s:3:\"url\";s:68:\"https://www.meetup.com/gainesville-wordpress-meetup/events/290351201\";s:6:\"meetup\";s:28:\"Gainesville WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/Gainesville-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-03-09 12:00:00\";s:8:\"end_date\";s:19:\"2023-03-09 13:00:00\";s:20:\"start_unix_timestamp\";i:1678381200;s:18:\"end_unix_timestamp\";i:1678384800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:34.29;s:9:\"longitude\";d:-83.82;}}}}','no'),(456,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1674348003','no'),(457,'_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:84:\"WPTavern: WordPress Community Team Proposes Adopting GitHub to Improve Collaboration\";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:30:\"https://wptavern.com/?p=141302\";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:97:\"https://wptavern.com/wordpress-community-team-proposes-adopting-github-for-improved-collaboration\";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:4415:\"<p>Although GitHub is primarily used for code collaboration, WordPress&#8217; Community team is considering adopting the platform to standardize their project management tools. </p>\n\n\n\n<p>Contributing to open source can already be challenging but when it requires signing up for multiple services in order to access the team&#8217;s many spreadsheets, trello boards, Slack groups, and other modes of communication, onboarding new contributors becomes needlessly difficult.</p>\n\n\n\n<p>A new <a href=\"https://make.wordpress.org/community/2023/01/19/proposal-adopt-github-for-team-projects/\">proposal</a>, authored by Community team rep Leo Gopal, outlines the benefits of using GitHub as a central communication tool. These benefits include improved collaboration and communication using the platform&#8217;s commenting system and the ability to track progress and assign tasks.</p>\n\n\n\n<p>Gopal contends that standardizing on GitHub would increase transparency and accountability while supporting better organization with tools like issues, labels, milestones, and project boards.</p>\n\n\n\n<p>&#8220;By adopting GitHub for project management and issue tracking, the Community Team will standardize our way of working, making it easier for new team members to get up to speed and enabling more effective cross-team collaboration,&#8221; Gopal said. &#8220;This standardization also makes it easier for Community Team members to track progress, identify issues and make data-driven decisions.&#8221;</p>\n\n\n\n<p>Other Make teams, such as Learn, Hosting, Meta, Marketing and more, are already successfully using GitHub to manage communication and prioritize projects. Gopal proposes the Community team learn from their efforts and adopt these tooling methods for a quarter as an experiment.</p>\n\n\n\n<p>&#8220;If after the first Quarter the consensus is that this does not suit our team, we will revert back to initial project and tracking practices and explore more,&#8221; Gopal said. </p>\n\n\n\n<p>A few participants in the resulting discussion have concerns about transparency and losing track of conversations, as they would not be linked to WordPress.org profiles. </p>\n\n\n\n<p>&#8220;The truth is that I am unsure about it,&#8221; Weglot-sponsored Community team contributorJuan Hernando said. &#8220;I think the community team is not particularly technical, and using GitHub may pose certain barriers we didn’t have so far. Maybe for many people opening an issue, requesting a pull request, or similar is their everyday life, but for others, it can be a bit blocking.</p>\n\n\n\n<p>&#8220;I’m also afraid that discussions will move from this Make site to GitHub, and we shouldn’t lose the spirit of owning our content (linked to our .org profile) and lose the use of this space for decision-making and public discussions like this one.&#8221;</p>\n\n\n\n<p>Gopal addressed this concern stating that there would be no code and that users who can work with Trello boards will have no problem adopting GitHub&#8217;s tools for planning. </p>\n\n\n\n<p>&#8220;Trello was used for planning and often forgotten until time for reviews or recaps,&#8221; Gopal said. &#8220;There was no way other teams would know what we are working on or add to the conversation unless they dug up our trello boards AND if we took their suggestion and weighed it in.&#8221;</p>\n\n\n\n<p>Gopal said using GitHub would allow the team to incorporate advantages like automations, assignments, and inter-team collaboration with advanced reporting capabilities. Overall, GitHub has the potential to increase the visibility of their work for those collaborating across teams.</p>\n\n\n\n<p>Milana Cap, who uses GitHub to help organize the Documentation team for reporting issues and automating tasks, recommended adopting the platform and shared how the Docs team is using it.</p>\n\n\n\n<p>&#8220;All the other benefits: version control, precise contribution tracking, all sorts of project management tools etc., can not be found all in one tool other than GitHub, and I can not recommend it enough – for everything,&#8221; Cap said.</p>\n\n\n\n<p>Discussion is still open on the <a href=\"https://make.wordpress.org/community/2023/01/19/proposal-adopt-github-for-team-projects/\">proposal</a> and Gopal has published a <a href=\"https://poll.fm/11305090\">Proposal Poll</a> for Community Team members to give their feedback on standardizing communications on GitHub.</p>\";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:\"Sat, 21 Jan 2023 04:32:47 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;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:103:\"WPTavern: Gutenberg 15.0 Introduces “Sticky” Position Block Support, Adds “Paste Styles” Option\";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:30:\"https://wptavern.com/?p=141268\";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:101:\"https://wptavern.com/gutenberg-15-0-introduces-sticky-position-block-support-adds-paste-styles-option\";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:3623:\"<p><a href=\"https://make.wordpress.org/core/2023/01/20/whats-new-in-gutenberg-15-0-18-january/\">Gutenberg 15.0</a> was released this week with some exciting new features for working with blocks and an improved UI for managing controls in the inspector panel. This release marks the end of the block inspector tabs experiment, which is now stabilized in the plugin. </p>\n\n\n\n<p>Users will notice that some blocks will now have separate tabs in the inspector for displaying settings and design controls, and optionally a list view tab that is included in the &#8220;off canvas navigation editor&#8221; experiment. Taking the block inspector tabs out of experimentation paves the way for the Navigation block&#8217;s off-canvas editor to become the default experience.</p>\n\n\n\n<img />image credit: <a href=\"https://make.wordpress.org/core/2023/01/20/whats-new-in-gutenberg-15-0-18-january/\">Gutenberg 15.0 release post</a>\n\n\n\n<p>Version 15.0 introduces <a href=\"https://github.com/WordPress/gutenberg/pull/45477\">a new &#8220;paste styles&#8221; feature</a> that works in a similar way to the &#8220;paste&#8221; or &#8220;paint&#8221; formatting function in Microsoft Word or Google Docs. Users can click on any block, select &#8220;Copy block&#8221; from the menu in the block settings panel and then paste those styles onto another block using the &#8220;Paste Styles&#8221; menu item.</p>\n\n\n\n<img />\n\n\n\n<p>When using this feature, users may have to give the browser additional permissions in order to read from the clipboard. If permissions are denied, Gutenberg will display a warning snackbar to notify the user.</p>\n\n\n\n<p>Another major feature in this release is the ability for users to give blocks &#8220;sticky&#8221; positioning on the page. This will keep the block in the viewport even when scrolling down the page. The sticky/fixed positioning sticks the block to the top of the direct parent block. It can be previewed on the frontend and equally as well inside the editor.</p>\n\n\n\nvideo credit: <a href=\"https://github.com/WordPress/gutenberg/issues/47043\">Follow-up tasks for Sticky positioning</a>\n\n\n\n<p>Gutenberg contributors concluded that although sticky positioning will be valuable for headers, footers, and creative instances, it is not likely to be used frequently. For this reason, it is de-emphasized in the UI. This is the first iteration of the sticky positioning feature, and contributors are tracking a list of <a href=\"https://github.com/WordPress/gutenberg/issues/47043\">follow-up tasks</a> to improve it.</p>\n\n\n\n<p>A few other important changes in this release include the following: </p>\n\n\n\n<ul>\n<li>Edit block style variations from global styles (<a href=\"https://github.com/WordPress/gutenberg/pull/46343\">46343</a>)</li>\n\n\n\n<li>Constrain image sizing to the width of the container (<a href=\"https://github.com/WordPress/gutenberg/pull/45775\">45775</a>)</li>\n\n\n\n<li>Allow resizing the Site Editor&#8217;s sidebar and frame (<a href=\"https://github.com/WordPress/gutenberg/pull/46903\">46903</a>)</li>\n\n\n\n<li>Activate copy/cut shortcut in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/45752\">45752</a>)</li>\n</ul>\n\n\n\n<p>If you want to take advantage of these new features before they land in WordPress core, you will need to have the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a> installed. Check out the <a href=\"https://make.wordpress.org/core/2023/01/20/whats-new-in-gutenberg-15-0-18-january/\">15.0 release post</a> to visually explore the highlights with more videos and links to all the pull requests for the release.</p>\n\n\n\n<p><br /></p>\";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:\"Sat, 21 Jan 2023 00:37:23 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;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:63:\"Post Status: Launching a WordPress Product in Public: Session 1\";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:\"https://poststatus.com/?p=146618\";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:73:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-1/\";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:77120:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><a href=\"https://twitter.com/hirethere\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> go live to discuss the creation and launch of a WordPress product they have partnered to build. <a href=\"https://crop.express/#welcome\">Crop.Express</a> originated as a solution to a common problem Maass experienced. Miller loved the idea and wondered how to build this into a plugin to solve problems within the WordPress workflow. This is a candid conversation about the evolution of partnering to develop a WordPress product. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">59</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, <a href=\"https://twitter.com/hirethere\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> discuss the origin of the WordPress product they are creating. Together they explore the benefits of partnership, the challenges of being a creator, and what it takes to build viable solutions. This is only the beginning of their process and partnership, but it’s loaded with experience and insight from the journeys they have had within WordPress that brought them to this moment, as well as takeaways they’ve discovered with their new undertaking.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>The Power of Partnering:</strong> Many entrepreneurs aren’t interested in partnership. But they create an opportunity to own and contribute the things you do well alongside someone who has other skill sets, strengths, and experiences. Partnerships offer space to practice open dialogue while showing respect and gaining perspective. They are a great solution for all the things you can’t do, don’t want to do, or shouldn’t do.&nbsp;</li>\n\n\n\n<li><strong>Build for a Need:</strong> Sometimes we create things believing we have brilliant ideas that will attract an audience. But where problems exist, so do the needs for solutions. You can trust if you have a problem, other people likely have the same problem and need a solution.</li>\n\n\n\n<li><strong>Look to Make Things Easier:</strong> When you have to go out of your workflow to do a task, things feel frustrating and clunky. Finding ways to integrate tools within our natural workflow adds tremendous value to the user experience.</li>\n\n\n\n<li><strong>Products Require Passion and Capacity:</strong> Yes, you may have the ability to create really cool, helpful things. But if you lack a sincere passion for the products you build or truly don’t have the time they require, they tend to fall flat somewhere along the way. You tap out at the end of your skillset or energy, and even though there may be real potential, the passion and time to carry things forward are missing.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-4 wp-block-columns has-theme-palette-8-background-color has-background\" id=\"GoDaddy-Pro\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3 id=\"GoDaddy-Pro\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/godaddypro\">GoDaddy Pro</a></h3>\n\n\n\n<p>Manage your clients, websites, and tasks from a single dashboard with <strong>GoDaddy Pro</strong>. Perform security scans, backups, and remote updates to many sites on any host. Check up on site performance, monitor uptime and analytics, and then send reports to your clients. <a href=\"https://poststat.us/godaddypro\">GoDaddy Pro is free</a> — and designed to make your life better.</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\">\n<a href=\"https://poststat.us/godaddypro\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/gdpro800x500-1-300x188.png\" alt=\"GoDaddy Pro\" class=\"wp-image-93683\" width=\"150\" height=\"94\" title=\"Pressable\" /></a>\n</div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/\">WordCamp</a></li>\n\n\n\n<li><a href=\"https://ninjaforms.com/\">Ninja Forms</a></li>\n\n\n\n<li><a href=\"https://kanbanwp.com/\">Kanban for Wp</a></li>\n\n\n\n<li><a href=\"https://www.adobe.com/products/photoshop\">Photoshop</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://itmsecurity.net/\">ITM Security</a></li>\n\n\n\n<li><a href=\"https://trello.com/\">Trello</a></li>\n\n\n\n<li><a href=\"https://twitter.com/pippinsplugins\">Pippin Williamson</a></li>\n\n\n\n<li><a href=\"https://twitter.com/dustinbolton\">Dustin Bolton</a></li>\n\n\n\n<li><a href=\"https://twitter.com/chrisjean\">Chris Jean</a></li>\n\n\n\n<li><a href=\"https://ithemes.com/\">iThemes</a></li>\n\n\n\n<li><a href=\"https://slack.com/\">Slack</a></li>\n\n\n\n<li><a href=\"https://convertkit.com/\">Convert Kit</a></li>\n\n\n\n<li><a href=\"https://twitter.com/nathanbarry\">Nathan Barry</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/\">WordPress.org</a></li>\n\n\n\n<li><a href=\"https://yoast.com/\">Yoast</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/hirethere\">Corey Maass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory and Corey Episode 1<br />Cory Miller: [00:00:00] Hey everybody. Welcome to a cool series. Uh, my friend Corey and I have been talking about it for a couple months, a project, and we said, Hey, why don\'t we just broadcast this out, do it in public. And so this series is kind of called Launching a WordPress product in Public. This is session one we\'re gonna talk about.<br />First. I\'m gonna let Corey introduce himself in just a second, but we\'re gonna talk about the agenda is, um, kind of where we\'ve been, just to catch everybody up. And then second part, we\'re gonna talk about next steps for what we\'re doing. And we\'ll of course describe the project, uh, as we go. So, Corey, I think people know you, but let\'s, let\'s, uh, go ahead and share it.<br />Tell us more about, uh, who you are, what you\'ve done with WordPress.<br />Corey Maass: Of course. Uh, so I\'m Corey Moss, currently [00:01:00] residing in the northeast of the United States. Um, I\'ve been a developer and an entrepreneur for 25 years or so, and largely locked into the WordPress space for 10 years or more. It was the day job for a very long time, and I was pushing SaaS apps or BU building and pushing SaaS apps, uh, in evenings and weekends.<br />And then, I don\'t know, years ago at this point, I went to, uh, WordCamp in Atlanta, Georgia, and met a few WordPress entrepreneurs, including the, um, specifically the Ninja Forms guys down there. And suddenly a light bulb went off of like, oh, there\'s, you know, there\'s a lot more to WordPress products and the WordPress ecosystem than I realized.<br />And. It can be used to build SaaS apps, which I also do. Um, but [00:02:00] also these plugins that can be grown and built into pot, you know, sometimes, or potentially into, into businesses under themselves. So that really kind of got me started. And so, uh, around that time, I, I learned about the Post Status community.<br />Uh, I\'m, I am wearing the Post Status t-shirt underneath. It\'s just too cold. Um, being up here in the northeast. But, um, yeah, so it\'s been, you know, fun to be part of the community and fun to grow. Uh, I\'ve now grown and sold a couple of businesses or a couple of WordPress plugins. Um, and here we are about to launch.<br />Cory Miller: Yeah, I, I\'m trying to remember back when we actually met Corey, but I knew you were like this developer who loved to like launch stuff and you had the kbo, uh, plugin at that time. Mm-hmm. , and I remember talking through that and how passionate you were, you were about it. Um, so, and then we chatted the last year or so comparing notes and I\'m like, man,[00:03:00]<br />Corey and Cor, sorry, the broadcast system went off on my ears. Excuse me. Just one second. Okay. Whew. That was weird. I\'ve got hearing aids and my phone comes through and I was like, emergency broadcast system. Mm-hmm. Um, but anyway, um, so it was fun. We\'ve gotten to kind of get to know each other over the last year or so and member huddles and you shared this thing you were doing and I\'ve followed up and I was like, I need this, I want this.<br />Um, and it\'s funny too in parallel is how much stuff that we\'ve got in common or things were stages of life we\'re, we\'re going through. And so I think it was a couple months ago you mentioned on the huddle or, and then we started talking about it in Post Status dms, the project that we\'re launching in public today called Crop Express.<br />But um, you wanna share a little bit about that, how you came to it? And I can add a little, my perspective on it. Yeah, of course. This was your idea. Um, and I was like, oh my God, this has [00:04:00] to exist in the WordPress. Um, I need it because I need it. And that\'s a typically if I try to keep at the user level and I\'m like, if I like something and use something, I\'m like, maybe there\'s more people out there that would need it too.<br />But talk about the start of Crop Express.<br />Corey Maass: Well, before that, I want to fill in a couple of blanks. One, yeah. Uh, you and I met when you were the keynote speaker at, uh, what was it? Word? WordCamp, y\'all. The, the WordCamp in Bur Birmingham, Alabama. I have lots of friends in. Birmingham, England spelled the same, but pronounced very different.<br />So I have a hard time pronouncing Birmingham . Um, but anyway, um, I was living in Nashville at the time and drove down and uh, that\'s you And I went to lunch with a couple of other people and I, I, I must have had too much of the free coffee, cuz I remember talking your ear off while we were waiting for like barbecue or something [00:05:00] and then, You turned to me at one point you were being a very good listener, I have to say.<br />And then at one point you turned to me and are like, aren\'t you speaking in like four minutes ? And I looked down and realized that yes, indeed, my session was starting in minutes and I still hadn\'t gotten my food. Um, and so you and the folks we were with were nice enough to bring me my food halfway through the session.<br />Oh, chicken and waffles. I got chicken and waffles, the weird things you remember. Anyway, . Um, but yeah, I, you and I have, uh, kept in touch over the years and then, um, I think mostly caught up over on the huddles. Um, but I, I mean, I tell that cuz it\'s sort of a fun story and a little background, but I also, I think it\'s.<br />It\'s a great ex, uh, example of the longevity of a lot of the relationships that I\'ve had in WordPress, in the WordPress ecosystem, the [00:06:00] WordPress community. Um, you know, once in a while I, I get approached, I know you do too, of people who are like, you know, let\'s partner, or, I see you\'re doing a thing, let\'s do a thing together with no background, no context.<br />Um, and I, I\'m definitely not saying that people shouldn\'t reach out, always reach out. You know, you never know what good is gonna come from, from reaching out. Um, I love that people messaged me directly on Twitter and um, and in Post Status and stuff like that, but also, you know, the long-term. Being part of any, uh, any, uh, being part of the WordPress community and culminating these relationships and staying in touch with people over years.<br />Cuz at this point, I lived in Nashville like eight years ago, so you and I met eight years ago and I don\'t think talked really for five years Anyway, so that was one of the things that jumped out at me. So getting onto Crop Express. So yeah, I. I built a, [00:07:00] a conbon plug in a few years ago, sold that, um, have launched and been running a couple of others.<br />One I\'m about to sell. Um, and, and that might actually be something to talk about at another time because I, I built it because I could, um, very typical developer. I built it because I could, but I was never really passionate about it. And so at this point, I\'m, I\'m talking to some folks about, um, selling it because I\'ve just never been able to, man, I\'ve never been able to market it, meaning I\'ve never been able to make myself market it.<br />Um, and plugins and these businesses, to me are still side hustles. I\'ve never been able to grow them large enough to be the, you know, my primary source of income. And so I have clients and. Right now, I\'ve, I\'ve got clients who run, uh, a couple of pretty big sort of magazine style, pretty traditional blogs, but they\'re, you know, magazine style, full, beautiful, well-written, professionally written articles and [00:08:00] stuff like that.<br />And they are not technical at all. So they\'re, they\'re entrepreneurs, they\'re writers, they\'re content people. Um, but they. It\'s not that they don\'t understand, they\'re very smart people, but they\'re not experienced with, or they don\'t think in terms of like, oh, all images need to be squares, or all images need to be 16, nine, so that the site looks uniform and consistently good.<br />Um, and no matter what I did, I, I couldn\'t make it easy enough for them to crop their images consistently. I didn\'t want to get them into Photoshop, you know, other, and that cost of Fortune. Other free editors cost money, da, da da. So anyway, um, almost on a whim, over a weekend, I bought crop.express, the domain.<br />Um, Here\'s a industry secret. One of, one of my best kept secrets is the.express, um, what is it? Top level domain, [00:09:00] TLD. Um, there\'s so many words that have not been bought yet, so I actually own poll.express, crop.express reply.express. Um, screenshot.express is another project I\'m building out. Um, so if you, anybody listening, if you\'re looking for a good domain, I, I highly recommend it.<br />I keep wondering what I\'m doing wrong or like, are there companies that can\'t access this or something, you know? Yeah. But<br />Cory Miller: anyway, um, I think it\'s a hallmark of any, uh, tech entrepreneur in particular is to have like a too big of a. Portfolio that you have. That\'s very continuing. Well, that\'s too, yes. Um, I, I\'ve got way too many, um, my wife is always like, you should put some parking pages on this.<br />And I go, yeah, but it\'s a cool domain. What happens? I think there\'s two things. Uh, we definitely should, and we\'ll be talking about partnership along this whole way. Um, I\'ve had a good amount of experience with partners and like having [00:10:00] partners. Um, it\'s an anomaly in, in, I in a lot of the entrepreneurs I\'ve talked to is a lot of successful entrepreneurs go, no way.<br />I\'m not gonna partner with anybody. And I go, well, I kind of need to and want to. Um, but then, so I know we\'re gonna be. Some thoughts about the partnership and that\'s another thing is partnering in public is probably the subtext to this too on. Um, but as we\'ve talked, just real quick before we get back to the product, is, um, I\'m not a developer.<br />I should get the shirt. I\'m not a developer. Um, but I love products and I\'ve had a product business. Um, tried a bunch of products. I told you, I think yesterday I was like, my, my win rate is probably like in the one hundreds, uh, percentile. Um, we talked about baseball and I was like, you know, I\'m probably a strikeout king because I feel like I failed quite a bit.<br />But coming to someone, like it\'s an ideal match for me because I can, [00:11:00] you know, business and marketing, but it\'s not one you have to own in this partnership. I can own that and you contribute and obviously I can\'t even try to write code. Um, but I can contribute with product and, and experience and thoughts like that.<br />So now to the crop express. . Um, so when you shared this, I was like, yes. Because my experience in just talking about the user profile, I\'m so keen to the user profile cuz sometimes I think we come at it artificially and go, I have an idea. Let\'s go find a person for it. And I think some of the best ones come out of just, there\'s a need, and we talked about this, it\'s like, um, you hear the story is build it for your own itch or build it for yourself and all that kind of stuff.<br />We talked about Pi, PIP and Williamson yesterday, like he\'s a, he\'s the one I think of it\'s like, build it, build something for a need. Mm-hmm. for himself and grew into this great, uh, business called [00:12:00] EDD. Um, what struck me about this is I go, I have a. Like trying to find software that will crop, you know, I used to use, I was an early user of Photoshop, but I don\'t have Photoshop on my computer.<br />And I\'m like, well, I go to Mac preview and crop and export it out and then try to upload it to WordPress. So instantly I go, I need this. And then I thought, and we started having these discussions. I think other people do too. You know, the classic example I have just like your clients is my mom built a her own site about 10 years ago or so.<br />And we had a theme, don\'t cringe too much, but a theme that had rotating images in it at the top. Sure. And I tried to load the site . It was like, oh my God. She had 15 images all at like hop resolution. And this is something real quick. Uh, we both were like, this isn\'t something easy. It may be in WordPress, but it\'s not easy in WordPress.<br />And [00:13:00] my natural question was, If I have this problem, I bet you a lot of people have this problem. We talked, talked about images, we talked about agencies that turn sites over to clients and end up, why is this so slow? Or why isn\'t, you know, why doesn\'t this work? Right? And it\'s like, well, you loaded it native from your phone, , uh, the pick.<br />And so that was the thesis for me, for the, for the product is you already had the SaaS solution. I was like, yes. My question was, can I get it into a plugin where it\'s inside WordPress in my workflow?<br />Corey Maass: Yeah. And, and you helped, helped me turn that corner, honestly, cuz I, in a weekend I built. crop.express, which right now the website is the website.<br />It\'s exactly the first version that I built. Um, it\'s, it\'s not complicated. It\'s not well thought out, too well thought out. Like I have a, I\'ve been also working in product for years, and so I, I do [00:14:00] okay with going, oh, well, this, this will be intuitive enough that somebody could muddle through it. Um, but I really wanted to just solve the problem initially for my clients and yeah, threw it online.<br />I love doing this anyway. Start showing it to people, showed it to you, um, and you kept, you, you nudged me a couple of times in Post Status, like, how can we make this easier? And originally I was not thinking WordPress plugin, surprisingly. Um, I was thinking more. This is just a, a great little tool that people will use and it will hopefully, you know, maybe I could throw some ads on it or I, it will refer them to my other products.<br />Um, and so I was building a little Chrome extension and, and you\'re like, okay, that\'s a start. But you know what, if we really start to explore this and yeah, the conversations kind of flowed from there.<br />Cory Miller: And my premise with products, [00:15:00] particularly with WordPress or any tool is this, there\'s a workflow we all kind of have and you get in this system and when you have to veer out of that workflow, cropping an image, finding, cropping an image.<br />Yeah. So clunky within WordPress, and you have to go outside of that experience. You just added unnecessary time and energy for something frustration. When most times when I\'m creating content, I go, I want to get this out and edit it and press publish and put it out in the world. And anything that slows me down is a problem.<br />Um, So, you know, there\'s , our featured image on Post Status. I\'m not happy with it. We\'re still working on, on some of our design on the Post Status website. Uh, my personal side, I don\'t typically use images because of this. And so I think that was some of the, my, my perspective is like, there\'s enough use case here to say let\'s try it.<br />And I think what you and I go is like, we want to have, we wanna do something that is practical and useful [00:16:00] and then see where it goes. Um, we\'re not looking to get like mega rich on this or anything, but like, it\'s something we both have an interest in. Let\'s see where it, I\'m counting on it, man. . Hey, it would be nice to get me wrong.<br />Corey Maass: We, uh, we bought the Mega Millions ticket last night. You know, it\'s over a billion, but, uh, it hasn\'t been announced that we won this morning. So, you know, this is, this is the, the next best<br />Cory Miller: thing. Right. Yet, you haven\'t won yet. When we get some of that, carve off a little bit of that lottery money and we\'ll throw some, we\'ll do some cool, cool products.<br />Um, yeah. I, I\'m really addicted to products. I\'ve loved it for the longest time. Um, you said something earlier, you said I could build this and you did build things. Mm-hmm. , but the second part I wrote down was so interesting because it\'s, my experience too is I wasn\'t passionate about it. And I know when I\'ve gotten, um, those, that equation wrong is where I\'ve really failed miserably.<br />Um, the project I think about at Ithe was [00:17:00] called Exchange. It was e-commerce. I was passionate about a user experience that anybody could use, but I wasn\'t as passionate about the field. We just saw a big. I saw a big market potential there. WooCommerce was out there. It was the big, still is, the big behemoth.<br />And I go, man, it\'s really tough to like just create a new product in WordPress or, or in WooCommerce. Let\'s create an easier path to do that. Um, that didn\'t work. We didn\'t do it. And I think part of it was, I wasn\'t supremely passionate about the, the domain we\'re in. When we talk about this, I go, I have a, I have a lot of experience with images and cropping and content that\'s bulk of my career before I, themes and Post Status was, and communications work and newspapers, journalism.<br />And I\'m like, you know, it\'s a factor. Everybody wants an image on the site. And so what we decided was to start with the featured image [00:18:00] cropping, that making that experience, um, really smooth and easy.<br />Corey Maass: So that\'s the, yeah, I think the other thing to talk about here is as a developer, as a human being, I\'ve learned this lesson.<br />It\'s, it\'s just cuz you can doesn\'t mean you should. Um, and for I think people like you and I, I\'m speaking for you, but I, I hope I\'m right. We, we get excited about a lot of things. It\'s easy to, to dip a toe into a lot of things. Um, but then we end up taking on too much and we get overwhelmed and everything is, you know, what is it?<br />Do two things and you\'re doing two things half-assed instead of one thing, whole ass. Or, you know, and we\'re never gonna limit ourselves to one thing, let\'s be honest. But having, definitely having too many things. Um, and like I\'ve. Epic trips, um, you know, which is, I, [00:19:00] I was lucky enough to do, but I came home and people were like, was this amazing?<br />And I was like, I don\'t know why, but it wasn\'t. And I realized that it was like, just because I had the opportunity to take the trip, like I didn\'t, I, I wasn\'t in the right mindset. All I wanted to do was be home, you know? And so just cuz I could, um, doesn\'t mean I should have. And I, I keep trying, I try to think about that when I\'m taking classes or, you know, reading books or things like that.<br />Um, because time is precious, right? And, um, and we can only experience so much. So anyway, all that to say, um, yeah, with other products, I\'ve definitely built them, um, just because I could. And as a developer it\'s really dangerous because like, I look at that and I\'m like, oh, that\'d be really interesting to solve those problems.<br />Um, and then, uh, even as soon as you mentioned a WordPress plugin, uh, I was like, okay, well we need. X, y, z we need, you know, big da da da, and, [00:20:00] and that\'s great. Like a year from now, let\'s have all those bells and whistles and let\'s have all those features and, and, you know, and expand. Um, but of course, I\'m, again, I, I, I work, I have client work and w client work and family and obligations and stuff just as you do.<br />Um, and so you did a really good thing where we were chatting, we scratched our heads, and you were like, well, what if we, you know, what is the MVP here? And, and even that, I couldn\'t, I was like, well, da, da, da. And you were like, okay, featured image, one thing. Let\'s just start with that. Can we, and I, as soon as you said it, it clicked for me.<br />I was like, that\'s, that\'s the place to start. It\'s the one simple feature that, but it will solve the problem for a lot of people, and it will exemplify the problem we are trying to solve. . And so, and, and again, for me, it, it is tough at times as a developer, all [00:21:00] things are possible. Mm-hmm. , I mean, not literally, but, um, and that\'s, it\'s powerful but dangerous and I\'m, I\'m trying, you\'re, you are being, uh, non a not a developer and having a history of using this kind of thing is immensely valuable.<br />Um, keeping my feet grounded. And I\'m trying to do the same with thinking from the perspective of my clients, because again, they were the ones that inspired this, so what\'s gonna solve the problem for them? And that\'s where we, that\'s kind of where we\'ve landed and what we\'re getting pretty close to being able to launch.<br />Cory Miller: I, I think, um, the experience you talked about is like, everything is when , another shirt we should do, when everything is possible, everything sucks. Because when you have, when you\'re in the experience, I know this and I\'ve been. Uh, led teams of developers. I get it. Like, and I have the, I guess I\'ll say a gift in this sense of going, I don\'t know what all [00:22:00] is possible and it helps focus, but I think that\'s where, again, a partner comes in.<br />I struggle with this in different areas, um, where I\'m like, well, everything is possible. Everything sucks. And I, I lose focus in that. Um, and that\'s something I really enjoy being able to do is like, you worry about everything is possible and I can help just to ask questions. Um, and when we\'re, we talked about the MVP, I think about that iconic, um, like cartoon of this, the stages of an v mvp, how, how you start with an MVP and grow it.<br />And the one I like best, it feels a lot of theory and cool, like to try to plan this out like this, but it\'s like, what\'s the skateboard version of the. Bike or whatever, you know, the product becomes and it\'s not, uh, a skateboard. And then you add a seat and then you add handle bars to the skateboard and you try to build out.<br />And I\'m like, that\'s cool in theory. But [00:23:00] I think what this does is, the way we thought about this was what is a, a toe in the market that does solve that problem that can grow? Um, and, you know, marketing and technical and business questions come out of this. And I just saw one yesterday, uh, I can\'t remember his name on Twitter, but I replied to him.<br />He was trying to think like, where does this thing go? You know, like you start with the skateboard, but well, what if we want to do this with Crop Express and that with crop, you know? And, um, a lot of times, I think some of the best products have been part of grew organically instead of trying to say this is the end product, it was responding to customer needs and opportunities and grow out.<br />And sometimes maybe it grew into a little bit of a mess out here that we kind of had to make some hard decisions, um, with our ITM security product there for sure. And then backup Buddy over time. Um, we saw that, but it, I think it stays close to the customer [00:24:00] when somebody goes, I will pay money for this.<br />You go, oh, there\'s magic there because we, we might have something here. Um, and I, we decided, and we should talk about this decision too, we decided to release Crop Express as a free plug in first on the.org repo. We\'ll be talking about that experience as we go. We\'re not there yet, but we\'re really close to releasing the v mvp V1 in the repo.<br />Uh, and then, but what I like Corey, is we\'ve done this in a way to give us options or paths to go. We\'re not, we didn\'t try to build the bicycle and launch that as a premium product. We said, what time resources do we have? And that mvp all that went into this conversation you and I had of like this.<br />Okay, let\'s come down to if we can get this point, and that\'s in the stream of people\'s workflow. You know, you\'re firing and proposed headline, okay, I need my future. You\'re gonna go over here, click feature damage. And that\'s where [00:25:00] Crop Crop Express is gonna help you. And I don\'t, you know, you\'ve been great to navigate us technically, where we\'re not gonna hit a dead end on something.<br />Um, but that\'s the part of this adventure. You never know where you\'re gonna go with it. Right.<br />Corey Maass: And I\'ve, uh, you know, we\'ve already touched on a, a bunch of things that I see questions about all the time, like part of the MVP. Uh, I\'m, I\'m a, I\'m a good developer, but I have very limited experience with Gutenberg, um, excuse me, the block editor.<br />Um, and even, and so we, we are looking at doing a custom block down the road, version 1.2 or whatever. Um, but even to get, uh, just the, to, to work with just the featured image. Like I didn\'t have experience with the panels, uh, inside the block editor. And so I looked at it, I hacked at it for a [00:26:00] little while, and then I said, okay, you know what, I\'ve got a buddy who can help me out with this.<br />So, hired him for a couple of hours to get me over the hump. Um, you know, and so. There\'s that, there\'s again, the partnering, uh, you and I working together, um, which we haven\'t really flushed out, but we\'re kind of excited to do, um, launching something, putting something in, in the plugin directory is, is its own experience.<br />Um, and so yeah, I think there\'s, there\'s a lot of different things here that if nothing else, just getting that, you know, the tip of the iceberg. Um, or I\'m mixing metaphors here. But anyway, you know, just getting this thing out the door and, and starting, um, is, is where a lot of, uh, a lot of questions arise and there\'s, there\'s a lot of hurdles, you know, unto itself.<br />But, um, you know, I think the, one of the things that I really like about WordPress is that. It does require, or [00:27:00] WordPress plugins, WordPress products, it does require development, no question. Um, I don\'t think there\'s a big overlap yet enough of an overlap yet with like, no code products, um, services out there that, you know, people are building products against to then somehow get that into WordPress.<br />Um, but it doesn\'t have to be a huge lift. It doesn\'t have to be like, some of the best, um, plugins out. There are one single feature or, you know, single file, um, the, the plugin that we have so far that, that gets the featured image. Cropped and, and injected into a post is, is still basically just two files.<br />You know, it\'s not complicated. It\'s not this big convoluted thing. Um, I\'ve got, uh, from, you know, from a nerd perspective, like there\'s a couple of developer patterns that I\'m using, but there, there [00:28:00] aren\'t frameworks. We\'re using a library that, you know, does the cropping for us, cuz there\'s no way I\'m stepping into that quagmire.<br />Um, you know, but we\'ll grow from there. I mean, and I think that that\'s, that\'s the big difference. It\'s like, yes, we wanna launch something that is useful, um, and complete unto itself, but it can be, it can start as a feature and grow.<br />Cory Miller: How, how has this experience differed from your past product experiences?<br />Um, you know, you, you released, let\'s say the CommonBond different plugins on your own. I think, um, were, were similar problems and questions. That we\'ve talked about just in this, I don\'t know, month or so we\'ve actually gotten real serious about it. No, it\'s probably what, three, four weeks I think. . Yeah. Um, but like did you have similar things like that as a developer when you were doing like the combine?<br />Or did you just go, okay, this is what I want to build and you knew like the N V P V one V two kind of sorted [00:29:00] it out. How did those experience go in comparison to this one?<br />Corey Maass: Yeah, the con bond, I really, I wanted the name space. That\'s the thing that sticks in my mind. This was, you know, eight years ago now.<br />Um, so I don\'t, I don\'t remember everything, but we, same sort of experience. I was working at a startup and we needed a conbon solution. Um, Trello has. Rubbed me the wrong way. I don\'t know why. Um, and, and it was then that I was first starting to look at, so another, I\'ll give away another one of my secrets here is honestly, I often look for a, um, blue o, well, red Ocean SaaS solution or SaaS app that I can put into WordPress.<br />Um, and so with something like Trello, I was like, you know, we are, we are working in [00:30:00] WordPress, um, but we have to go over to Trello and, and do stuff. And for whatever reason, I didn\'t like Trello anyway. Um, and so that\'s part of what made me go, oh yes, if we had a CONBON board built into WordPress, so like posts were your cards or whatever, like, this makes sense anyway.<br />And so I cranked out a first version, very clunky and. Mostly just because I, I wanted to, I\'m trying to think if I had actually put a plugin in the repo before that. I don\'t, no. I had, I had, but years before. And so it was, it was really a new experience for me. Um, and I made all sorts of mistakes and I was listening to, like, one of the biggest ones was, um, I kept going back and forth.<br />Coming from, coming from a tra a, um, a, an a developer perspective outside of WordPress, [00:31:00] I wanted to do custom tables. And I was like, no. The word pressy way is you have to use the post tables. And I swear, the week after I released it, I heard an episode of, um, back when Pippin and Brad Ard had their podcast pippin\'s, like one of the greatest regrets of my life was using the post post table for e d D.<br />And that was like the beginning of when they were trying to release version three, which took them years to, to untangle, basically. I was like, crap. So right away I had to untangle my own thing, which thankfully only had 50 users or something, but I had to, you know, build a migration there and stuff like that.<br />Um, and then I think there\'s Go ahead. Go ahead, go ahead. Well just, you know, and, but there were, I I think maybe part of your question is like, There was, there were, I was solving bigger problems, you know? Um, whereas this, I think is like, I, I like, I mean, part of why [00:32:00] the, the light bulb went off when you were like, no, just featured image to start with.<br />So it just, it kept it focused, you know? And that\'s so much easier. Again, like I, I hacked away for a month or two months, you know, to get a working Now conbon board is a more complicated problem than, than what we\'re talking about. But, um, you know, but it, it, it was a much bigger lift to get it out the door, which I don\'t, I don\'t think is the right thing to do.<br />You know, you, you need, you need, especially talking about customers and clients and users, you need something. You need to get people using it as fast as possible.<br />Cory Miller: I, I think they\'re, I\'m seeing two paths that when you\'re launching a product, there\'s the technical path and the business path. Um, particularly if you want to monetize from it.<br />Um, but technical, I saw my teams for years. It was like, I, I always describe development as a, uh, an adventure and territory. You don\'t always know like, what\'s, what\'s gonna [00:33:00] come over the next hill. You could hit a swamp and end up drudging through a swamp or get sidetracked totally off on a minor bug. And so some of the things I started watching over the years is like, it, it\'s, it\'s a tough gig with the technical cuz you got a roadmap for potential.<br />You don\'t know where all the terrain\'s going cause you don\'t know where the business case is gonna come from, the use case. Um, and I just think it\'s like a blind expedition oftentimes. Like, so what we would do is, and we\'re doing this now too, is just kind of check in and see how we\'re going. And I valued having someone else external watching to at least kind of keep track.<br />And then I\'ll say this on the business side. Same thing. There\'s potential here. I see potential here from a business, business case. I don\'t know what it is. I\'m not even gonna be foolish enough to try to predict, but there\'s something here, I think. And um, because I don\'t predict anymore, by the way, Corey, because I\'m wrong most of the times when I try to predict, [00:34:00] oh, this is gonna be $20,000 a month, you know, MRR kind of product.<br />Yeah. I go, there\'s maybe a hope for those things, but I never predict or promise because if I get too mired in that, I start to get too f a little bit off of focus. Because some of the questions we\'ve talked about is, okay, free plugin, what do we do there? We felt it was, at least for our collaboration here, partnership, we want to do this.<br />We want this in the world, you know? Um, we think though putting it in the world has the potential for something that could grow into. Something We don\'t even, but I, I say this cuz we, we said, I love every time you say something like, Hey, I think we should do this. I\'m like, right on. We should be honest. We should be authentic and share the experience.<br />I think too, oftentimes in business and stuff, it\'s like, this is the way I felt when I left eye themes is like the pressure real or unreal. Hey, [00:35:00] Corey did this, oh, what\'s his next thing gonna be? And I was like, she, uh, let\'s see here. Um, I don\'t know. I followed the trail, um, and kept following that trail and trying to keep going on that trail for as long as we could.<br />Um, th this, I just like the fact that. One of the questions I try to ask myself before I begin any new venture or partnership is, what if it fails? What\'s the worst that can happen? You know? And what\'s great is we\'ve been talking about those things along where we manage it. I know when you hired the, the friend to help with some of that stuff, I was like, well, how much is that?<br />And, you know, do you need me to share it? And you\'re like, Hey, for now, let\'s just, I\'m gonna keep track of it. But, uh, to see where it goes and, um, I think that\'s healthy. That open dialogue and conversation where you respect each other, what each other knows. And know just because you\'re a developer doesn\'t mean you, you have a ton of insight and feedback [00:36:00] and perspectives to share on both business and marketing.<br />And, but it, it, it, I don\'t know. I see those two pasts. This is the one I\'ll tell you ahead of time, Corey is I\'ll struggle with, is when we get to the point we\'re like, okay, how much should we charge for? , it\'s oftentimes feels like this meandering thing of like, okay, and I\'ll need the same for you to go.<br />Sure. Hey, what if we do this? Um, because if everything\'s an option, everything sucks. .<br />Corey Maass: Yeah. I, so a couple of things that you touched on, like, it, this needs to exist in the world. I haven\'t found a better solution. So hiring somebody to get us over the hill immediately was worth it. And just like you said, if it, if it fails, if it never makes, uh, A dollar if you and I af after this call are like, yeah, I don\'t like you in the end it turns out, let\'s just call it, it\'s like, no, it was still money well spent.<br />You know, and I, I understand that I, I am in [00:37:00] the very fortunate position to have a, a little money that I can throw towards a project like this, but it\'s, it\'s very limited. And I, I think of this type of stuff as a hobby. Um, and there\'s been a lot of life choices that have gone into inclu, especially with, with my, my wife talking about like, okay, what is, if, if this is a hobby, what is an appropriate amount of money to spend on it?<br />Cuz there were times 20 years ago when I first started building SaaS apps that I was like, every spare dollar that I have is gonna go back into this without thinking about it. Um, because everything I ever think of is brilliant and every product I launch is undoubtedly gonna make me millions. Um, Spoiler alert.<br />None of it has yet, yet. Um, but uh, you know, yeah, we, we, we gotta start somewhere. Um, and, uh, I\'m with you. So I, I\'m also looking [00:38:00] forward to, like, I\'ve been, I met, it was, it was at a, it wasn\'t a WordCamp, it was like, um, what are they called? Free camp, or there\'s, there\'s conferences where it\'s like anybody can sign up to talk about anything.<br />Um, and it\'s sort of tech specific. But anyway, I met a young woman, uh, who was a developer and she had lucked onto a client who became a partner, um, who was an older guy who ran, I don\'t remember, an advertising agency, but he had access to an, a pool of customers, basically. And so he would tell her what to build.<br />and then he would sell it to his audience and they just kept cranking out products. And I was like, okay. Despite being an only child, and despite my first instinct being to do everything by myself, you know, there are things that I can\'t do. There [00:39:00] are things that I don\'t wanna do. and, and things that I shouldn\'t do.<br />So I\'m happy to weigh in on, you know, as, as your owning, marketing and your owning business, I, I want to weigh in, I want to have opinions, I want to make suggestions. And, you know, I think you and I have established that we, the expectation is that, you know, we, there\'s, there\'s going to be quite a bit of overlap in our concentric circles.<br />Um, but we, we each are gonna own a lane, which I think makes a huge difference. Um, and we\'re also able to sort of look over the cubicle wall to the other person and say, Hey, you know, like I, I touched on earlier, just cuz I can, doesn\'t mean I shouldn\'t, I\'m. Not going to want. There\'s going to be times where I, I\'m going, I\'m not going to want to build what I need to build.<br />Like there\'s a feature that every client is clamoring for. You are finally confident. You\'re like, they will all pay X number of dollars if you [00:40:00] just add this. And I\'m gonna be like, yeah, but we need a dark mode or some ridiculous thing that\'s just gonna be more fun to build. Um, and I think there\'s definitely going to be points where, you know, I, we\'re essentially going to need to be each other\'s bosses.<br />Um, and that\'s going to be interesting and going to be difficult at times. But I, but I think good, you know, you, you, you need other people. There are people out there that are, there are exceptions to this of course, but you know, I, I think we\'ve pretty well established that both you and I do better if nothing else.<br />Having a sounding board, having somebody else who\'s as invested, um, you know, and helps keeps us, keep us on the line we\'re supposed to be on.<br />Cory Miller: Yeah. On that note too, um, the partnership side of things where I, I\'ve been in circumstances where, okay, this is Mon Lane, that\'s your lane. [00:41:00] And sometimes, like you were really good to ask me what part of the development do you want to contribute to?<br />And I said, my strengths through trial and error. By the way, I think my contribution strengths are u UI experience, like how things flow. Um, I obsess over there cuz I want them to be as fast as possible. Mm-hmm. intuitive as possible. Knowing some of my, probably I\'m gonna have to freshen up on some things.<br />And the other is I said, you gotta be careful with me because I will share all of these things that I would love to see, but we\'ve like, But we gotta put \'em on a, a feature roadmap, A backlog somewhere. Because I said, and I told you this, I said, be careful cuz I\'ll come in and go, what about this, what about that?<br />And what I had to tell my team too, and I told you is like, please don\'t unless I go, can we get this in the next release? Please don\'t think that. Let\'s do this right now. And that\'s the [00:42:00] idea Fairy in me is mm-hmm. . Uh, but, and so an example of that was we have a square coop cropper. And I was like, okay, I\'m introducing the new customer story here, which is my own, every, the Posts newsletter has those little circles in them for all the, and I\'m like, that is a pain in the butt to do.<br />Now I flag that because I go, if I\'m the, uh, kind of a typical user, I don. Know how, how to crop that, you know, there\'s tools out there, right? But like I go, there\'s an experience if, if someone has that and I go, Hey, what about a circle cropper? And then I knew you were going to like chase it , and I was like, Hey, hey, hey.<br />Not for this one unless it\'s an easy thing. This was that back and forth I did with Right. All the developers I\'ve worked with too is just like, please don\'t say, please don\'t interpret that as, can we do this right now? Um, sometimes I\'ll be like, can we do this right now? Because I\'ll, I\'ll feel [00:43:00] like we got something here.<br />Um, but then you\'re like, okay. I was like, well,<br />Corey Maass: it\'s just cuz you can doesn\'t mean you should. Yeah. But there\'s also, you know, you and I, I, I also get the sense, we haven\'t talked about this, but I get the sense that we both trust our instincts pretty well, um, when it comes to product. You know, and I\'ve, I\'ve been, I.<br />Studying product, looking at product. Um, for years and years and years, I\'ve got, you know, books on architecture. And, uh, the, one of my favorite books about, about the Bowhouse School is sitting next to me. I mean, things like this and like, I nerd out about this stuff. And so, um, I\'m not saying I\'m an expert, I\'m not trained in any way, but like, I think I like a lot of people we know, you know, I, I, I love putting, I love loading an app and putting it in front of my mom.<br />You know, who\'s, who\'s not trained in any way. She has [00:44:00] a little bit of an artistic background. Um, but she is a power user. I mean, she, at this point, she doesn\'t even have a computer. She does everything on her iPad. Bless her heart, honestly, because. Trying to book tickets or, you know, I mean, things that she does on her iPad, I, I didn\'t think possible, um, even, which really is just in a browser and, and her fingertip, you know, but gets an unbelievable amount of stuff done.<br />But I love putting things in front of her and saying, you know, show me how you would muddle through this. Um, and, and anyway, so all of this to say that I, I trust my instinct a lot of the time, um, when, when somebody mentions a feature to me of like, oh, this is worth doing right now. Even if it, yes, it\'s not mission critical, you know, we haven\'t released yet, so technically any feature other than one feature is, is enough.<br />But I was like, not only [00:45:00] do, is there not a image cropper for WordPress the way that we want. Out there, but I really don\'t think any of \'em do circles. And again, my clients for most of their stories featured images are 16, nine or square. But for whatever reason, there\'s that, that now that browser pattern where avatars people are circles.<br />And so, you know, let me see if I can, I can crank this out and it\'s, and it\'s fun. Um, and sure enough, like, like you said, it, it wasn\'t a big lift, but yeah, I think, I think you and I will, we\'re just gonna have to figure that stuff out. Like everything, everything goes on a backlog. Everything gets discussed at least a little bit.<br />Um, but I also, you know, I don\'t, I don\'t think that there\'s harm in, you know, there\'s low hanging fruit, there\'s return on investment. There\'s lots of different ways to put it. [00:46:00] It\'s like, oh, well if we, you know, if we make all the buttons green, you know, is it, does the user benefit? No. You know, so just cuz it takes a minute isn\'t worth it.<br />But, you know, we\'re, we\'re just gonna have to, and, and I liked what you said too, of like, we, we are gonna have to, I guess this is the other, the other benefit of trying to get this thing out the door is like, get people using it, talk to people using it. Um, you know, being part of a, a community like Post Status, um, there\'s the great, um, advanced WordPress Facebook group.<br />Like there\'s, there\'s places that. You and I have been involved for a long time, kind of regardless of, of our actual position within those communities. But, you know, trying to add value or trying to Twitter to trying to just, you reply to tweets for months and then you hope that when you, you do something and you need somebody else to reply that, they will.<br />So it\'s like, let\'s get this thing out there. Let\'s see what people think. [00:47:00] Give it a try. Um, you know, and, and follow, follow our.<br />Cory Miller: This is where I struggle back and forth with product. But my typical mo, what I feel instinct is you, uh, there\'s product people that are just genius and gifted. They\'re like, here, you know?<br />And you\'re like, God, okay, cool. Uh, but for mere mortals, um, for me it\'s been put something enough out there, check some boxes. Okay, is this something you think we need? Like, does anybody even need it? Because I put those things out there, I\'m like, put \'em out there. Not necessarily products, but other things.<br />I\'m like, nobody\'s even asking for this. And a lot of the entrepreneurial books and stuff, it\'s like, okay, how you scientifically go down it? And I go, it\'s art and science. Yeah, it\'s a blend. It\'s this alchemy and magic of like, but I know the power of like putting something out there and that creates enough a ripple where you get a feedback loop and, um, [00:48:00] That was so helpful along the way when you get feedback like, I, I, we feel this is a good, this is a good V one, solve somebody\'s problem, that laser beam, you know, thing of what we\'re doing for it.<br />Um, but what I\'m most looking forward to the product is how people react when you hear those. Like, um, backup buddy was in development, uh, and then, I can\'t remember, 2009, 2010, and I, we were at, we had a little group thing where, and this, these two twin brothers ran an agency and I just, this wasn\'t something somebody told me.<br />I was just like, Hey. We\'re doing this thing and this plugin, and it helps you do, um, basically, uh, backup, restore, and migrate websites. By the way, those were not things that came from me. They came from Dustin Bolton and Christine and I themes, they\'re like, no, a backup needs to do these three things. Okay, okay, let\'s do it.<br />Sounds good to me. But I mentioned to them [00:49:00] the migrate, or what was it? The migrate side and just in passing, and they, their eyes lit up and they go, we pay somebody $300 to do, to do that now. Wow. Consider the time and everything. This is back in the day. And I was like, okay, I think we got something.<br />Because, you know, and then we just try to, okay, I think we\'re gonna keep going, keep doing, we obviously launch it, we\'re gonna launch it no matter what. But um, that\'s where I was like those moments where someone lights up and they\'re. Can I pay you now? The shut up pay, shut up. Let me pay you thing. Right? I was like, shut up.<br />You can take my money. Shut up and take my money. That\'s a magical moment. Um, I think times I\'ve tried to force it, um, and it\'s just, it\'s not, or create a category you hear that\'s not, and I\'m like, cool. Yeah. For those a hundred people out there that have that insane genius to create a category, most of us stumble into it.<br />Right. You know, um, the garage stories for startup [00:50:00] stories are always make me laugh. Cause I\'m like, what was the background? What was the context? I\'m like, that\'s a sexy headline. We started in a garage and here we are, apple. I\'m like, that\'s a sexy headline. Don\'t, and I like it. Don\'t get me wrong, but I\'m like, what Were all the actual moments, the places you got phenomenally lucky.<br />I know there\'s a big part of mine luck and every time I\'ve tried to time it and like, okay, I\'m gonna ride this thing, it just hasn\'t worked. And that\'s why I really like her direction with this. Um, Because we kind of had a fleeting thought of like, I think as I recall, like this could be a paid product.<br />Um, you know, I don\'t even know if we entertained much of starting with a paid, we\'re like, let\'s just do the free plugin. And I will say, remember actually, um, give you credit for this too, is I think I said, what about a Gutenberg block? Put it in editor. So upload image crop, boom, I\'m there. My workflow\'s fast, efficient.<br />And, [00:51:00] um, you, you looked into that, you chased a little bit of it and I said, Hey, there\'s some roadblocks here. And that\'s that collaboration of how we go, okay, featured image, what if we started right here? We want to grow potentially into that. You know, I think the idea in this, and we\'re, I think we\'re both verbal processors, but is the thesis is start here and it\'ll grow into.<br />Block, like the inline process where you\'re in the thing and you\'re having the same problem, I need to crop it, figure out right. Dimensions and all that. Um, so I don\'t know where I was going with that other than to say that was some of the background too of decisions and knowing like you could hit a dead end.<br />And I\'m waiting for that. I think we\'re putting ourselves out there with this to see if there\'s magic in this. Yeah. Journey.<br />Corey Maass: Yeah. A couple of things you said, um, stuck out to me. One is [00:52:00] like a lot, everybody builds products differently. Everybody b builds UI differently. WordPress has very soft wall, has a lot of walls, but they\'re very soft and there\'s a lot of discussion, often negative, often complaints about, um, The, the experience that a plugin provides.<br />And I think what\'s different about WordPress, right, is like often you\'ll, you\'ll go to Trello and you interact with Trello, and you go to Slack and you interact with Slack in WordPress, you\'re essentially interacting with numerous apps, really numerous UIs, side by side. Um, and the tolerance for terrible ui.<br />I mean, let\'s be honest, even WordPress is not great anymore. Um, the tolerance is high for what you can [00:53:00] get done. Uh, and so I think that that\'s, that\'s an, that\'s something that I hadn\'t really thought about, but it\'s like things you can get away with in WordPress as long as you can solve the problem. And so there\'s, there\'s a lot to be said for, bless you.<br />There\'s a lot to be said for. Solving the problem, um, and not getting caught up in the genius of a product. You know, cuz like you said, people, people wanna get it done and get out, you know, get on with their lives. Um, the other thing that I\'ve had a lot of luck with, so I think we should do this here, is talking about that feedback loop.<br />Um, with Conbon, I put myself on the homepage and had a, and, and had a nice. Response. Um, with, uh, there\'s an online game that I built during the pandemic that, that I\'ve told you about, um, called Mexican Train [00:54:00] in the web websites, Mexican train.online. So if anybody out there wants to play Mexican train, which is a Domino\'s game, but I built an online version, um, I put myself on the homepage and it\'s a game that is played by a lot of seniors and especially during the pandemic when everybody was really locked down.<br />And then even now a lot of seniors are still trying to stay inside, stay safe, stay more isolated than they were before. Um, and isolated being the word. They use the game to keep interacting with their friends, um, which is just amazing. Um, but they. Not only does every email that come in start with, Hey Corey, because I am on the homepage.<br />Um, but apparently when, like, there, there are groups of people that play every week and even every day and uh, they curse me when they get bad dominoes. They praise my name when they get good dominoes. Um, the picture is of me [00:55:00] eating cheezits cuz it\'s sort of as a joke, like, Cheezits are a guilty pleasure for me.<br />So a number of them actually like, go and buy Cheezits and eat Cheezits while they\'re playing because it\'s become a, you know, uh, a thing. Um, inside joke I guess is the, you know, uh, or whatever. Um, but there\'s the, that feedback loop is definitely there. Like, they talk to Corey, you know, and then even with.<br />Subsequent products that I\'ve built, me being on the homepage with a blurb about like why I started the Solve the Problem and stuff like that, has made a huge difference. And so I think as, at least early on, that\'s something that you and I should definitely replicate is, you know, as we\'re se I mean, we\'ll we\'ll send this to our friends and family.<br />Okay, that\'s easy, that\'s obvious. But, um, you know, maybe even building in a mechanism that\'s like, you know, Hey, it\'s your favorite. Corey and Corey, like, tell us what you think. What do you, you know, um, does this work for [00:56:00] you? Does this not work for you? That kind of thing. I usually don\'t think about explicitly collecting feedback until further down the road.<br />Um, usually wanting to focus on like paid customers and that kind of thing, but, you know, maybe it\'s something we start with sooner than later.<br />Cory Miller: I definitely think so, because, you know, so many times I\'ve put products out there and not really made that splash. Like, you know, they\'re like, okay, there\'s practical, they\'re doing this thing, um, that we set out to do, but I think you wanna have push, push it to have an opinion.<br />Mm-hmm. , you know, like the user to have a reaction to it, enough to say it sucks or it\'s awesome. Um, some, some way of that to see where you\'re at. I think both if you get it sucks and it\'s awesome. You\'ve got some validation there, you\'ve got something. Um, but putting things out there, that\'s [00:57:00] how I, my mo with products.<br />So 2006 or seven I think I, I launched, I did launch, I guess, uh, this is way back in Word Press was different, but I launched a theme and put my zip file. Uploaded it to.org. People downloaded it and I was like, this is crazy. I got a response from them, which I had a contact form up , you know, my website linked in the theme and stuff, and they\'re like, will you build blog for me?<br />And I was like, whoa. I\'m learning. I did this too because I wanted to do it and I\'m learning. But that\'s the magic that when you put something out there. Yeah. But I think there\'s this case for put something out there that kind of pushes a reaction. You know,<br />Corey Maass: and I think this will be an interesting point of conflict potentially, is uh, there\'s going to be a point where.<br />We\'re, we\'re going to see different paths and we\'re gonna want different features too. And so I think this is, that\'ll be an [00:58:00] interesting, you know, let\'s try to have that conversation on camera because it\'s there. There\'s points where I\'m dogmatic, like I\'ve got my, one of my other plugins is like, like I said, I, I often look at products that are out, out on, out in the wild and I repurposed them inside WordPress.<br />And so I\'ve, I\'ve got a plugin that\'s kind of like a link tree or a card or an About me where it builds very simple social focused landing pages. Like the link bio pages is kind of the, the phrase most people think of. And uh, and even like when I submitted it, the, the people reviewing the plugin were like, um, you\'ve kind of built WordPress inside WordPress.<br />And so I still get a lot of requests for features that are beyond. The point of the product, because it is within, like WordPress using the right theme or page builder, you can do literally anything. [00:59:00] So this is supposed to be very focused and people come in, come, come in and are like, well make it do this.<br />And I\'m like, that makes no sense. Like, go use WordPress. Um, and so I have found myself being more and more dogmatic about like, my own vision or, you know, certain vision for a product. Um, you know, and right now, like you and I have it easy, like we know it, it it\'s a one trick pony or one and a half if we do circles.<br />Um, you know, so what\'s, what\'s the next thing that I think that\'ll, and, and, you know, in a year down the road, I think that\'ll be interesting. Um, again, that, that backlog, you\'re probably gonna end up hearing more feedback than I am. Um, you know, uh, Product ownership might ha end up being a thing that we, we actually have to sort out.<br />So, and it\'ll be an interesting ride.<br />Cory Miller: Well, that\'s been a lot of the background, um, that we wanted to share and kind of catch you all up since we were, were launching [01:00:00] this live or in public. Um, but catching you up on some of the background, some of those key conversations. I hope people can use some of this to, uh, inform their own product journey.<br />Um, where we are today, where are we today, Corey, with the actual product? Sure. Um,<br />Corey Maass: yeah, and I just to add to what you just said, like as people watch this, there are a few people watching live. Um, my expectation, like most things recorded is, you know, more people are going to watch it on the playback. Um, but we are going to.<br />Looking at comments, and I think both of us are pretty easy to find. Um, you know, so, so as, as the, as the conversation gets started, you know, I encourage anybody listening, please ask us questions, you know, give including hard questions. You know, what do you want us to talk about? What do you want? What questions do you want our answers to?[01:01:00]<br />Um, not that we have the answers to all these problems, but you know, this is, we\'re doing this out loud, recorded on the internet, you know, so we\'re happy to talk about it. Um, and we\'re both pretty candid out, outspoken kind of people. So we\'re, we\'re happy to talk about prayer, pretty much anything. Um, but anyway, where are we at now?<br />Um, so I, with, again, with the, the help of a freelancer built, uh, a first version, I did the p h P. Um, he helped get the. JavaScript and React part of the, um, panel inside of the block editor integrated. Um, and then I took the, the cropping library that we\'re using, stuck that in. Um, and we\'ve, we\'ve gotten pretty far with that.<br />The, what, what we had been limited to for the last couple of weeks [01:02:00] is the selecting of an image. So, you know, nobody\'s, nobody\'s seen this yet. So talking through the flow real quick, you\'re opening up a, a new post in WordPress. There\'s, you know, the built-in featured image panel on the right. Um, we\'re essentially replacing.<br />It looks very similar to the built-in one intentionally, but when you click on it, instead of it opening the media library where you upload an image or select an image, it uploads a, uh, or excuse me, it opens a modal where it says What shape do you want a crop? Um, it does say, do you want a circle? Um, you select an image from your hard drive, it then opens the crop.<br />And one of the nice things about this kind of tech is that that image is not uploaded yet. And so it\'s all just in the browser until you say, okay, set this, you know, I\'ve moved the crop. I want it this part. Set that as the featured image and that\'s what gets uploaded. [01:03:00] Um, as of today, I got a poll request again from my freelancer who helped me get started with the media library, cuz this is the one thing.<br />I\'m, I\'m undermining you here, but you said, I really want circles. To me, I was like, that\'s a differentiator. We need circles. Um, to, from my perspective, I\'m saying also we need very basic media library integration. I think you originally suggested this as a nice to have, and I was like, no, you\'re right like this.<br />To launch with, you need to be able to select an image that has already been uploaded or select an image from your hard drive, crop it and set it. Um, and so we\'re, we\'re pretty much there. The media library is opening and you can select an image. Um, so I need to do a, a couple more hours of development, I think, to get it so that it\'ll save that essentially re cropped version of what is in your media library.<br />Um, [01:04:00] and then from a d a product standpoint, we\'re pretty much ready to go, um, on, on your list. Um, I know we have the readme.<br />Cory Miller: That\'s, it was like, Hey, Corey, you have 15 minutes of work to do. .<br />Corey Maass: That\'s not true. I mean, it, it is to get it in the repo because it\'s one of those, you know, no, nobody does it if a tree falls in the wo if a plugin gets committed to the repo and there\'s nobody there to hear it. Yeah. Um, you know, or, or security by obfuscation kind of thing.<br />But, you know, there\'s, it\'s the beginning of the marketing. How do we describe this thing? What do we even really, what do we call it? You know, is it, is it crop express? Is it crop express image cropper? Is it image, crop express, da da da da da. Like, just, we have the domain, but that\'s it. So there\'s,<br />Cory Miller: uh, it presents a lot of questions.<br />[01:05:00] Um, and I know we\'ve run outta time, um, but it presents a lot of questions because you go, there\'s wordpress.org plugin search that is, Pretty big, right? Um, the, these are some of the things coming outta my mind with the readme because it does turn into that plug-in repo section. Um, I\'ve seen a bunch throughout the years how people like, enough there to go.<br />Here it is. And then my balancing act is, let\'s get enough to show this is the value proposition, this is what it can do for you. Uh, and then just like everything iterate over time. Um, but I can\'t help but tell and admit to you. I think, oh, it\'s gotta be like side bki put a plugin on the repo. Like he knows he\'s a marketer, he\'s got all these talents, but he, he understands how to put a plugin, um, and showcase it, right?<br />And so I\'m battling that a little bit, but I go, okay, get enough to, so here\'s the value prop and that this is an active development and we want that [01:06:00] feedback loop back about what\'s next. But I think the read me is showing. Telling enough of what we\'re trying to do where someone goes, that is a problem. I have this plugin, will will solve it.<br />Now getting to that is gonna be, is gonna be fun, but I started on the Readme file from the Generate WP site you gave me. And um, that\'s where I\'ll honestly spin some wheels a little bit, cuz I\'ll try to be perfect. But I think the two outcomes there really are, you know, clearly understanding what this does.<br />So someone, mm-hmm can go, oh, I\'ve got this problem, or my client\'s got this problem. And then second is, we need a loop. We need to know these things. Even the things you go, we\'re never gonna do. I still want to have \'em up there. I still want to have \'em in our visibility because it just allows us to make better informed decisions as we over time hone in on, you know, A lot of the products we [01:07:00] released at I themes, it was years before we go, oh, that group right there, because you get enough of big sample size and you go, okay, convert Kit had a very similar, uh, fault, Nathan Berry.<br />He started out with one thought in mine, and then he saw it was this creators, you know, um, economy. And then he just, when he got that bead, he just, you know, doubled down on that. And I, I see, I see that similar here. I think we have pretty good profiles, like anyone that wants to make image cropping easier, um, and faster from a blogger to an agency doing work for clients, um, that\'s a big use case for me.<br />And I\'m like, there\'s, that\'s why I have some faith that there\'s something here that we can do in an advanced case, but it\'s just discovery to me, you know, so.<br />Corey Maass: Yeah. Well, and I think that\'s part of, I, I think you should take notes on your experience and then tell me about it. The next time we have a call, like [01:08:00] mm-hmm.<br />you are a, apparently you launched a pro a theme many years ago, , uh, but have it since. And so when I was like, okay, you go, go and do the read me. You were like, uh, I need some guidance. Like I, yes, I can write words, but tell me more about the Read me and what are the consequences of, you know, the, what I put in the read Me.<br />Um, and I think that that\'s, you know, you, here\'s a prime example of your experiencing something for the first time. You know, tell us about that experience and, and, and the thinking, some of the thinking that goes into it, like, it is, it is something that gets iterated on often, but there are consequences of, uh, you know, when we submit the plugin, the slug, the u r l is going to be locked.<br />You can. ask them to change it [01:09:00] once within, I don\'t know, the first couple of days or something. But then that\'s it. So, you know, cuz and you\'ll, and you\'ll see that with plugins on the repo that the U R L is W P S E O, but the product is Yost, you know? Right. Or things like that. Um, things that they\'ve had to change over time, but you can\'t change the slug.<br />Cory Miller: I know that firsthand too . Right. I sure think security was better WP security and, and it still is. I think. I don\'t think we That\'s right. Get there\'s, yeah. So that\'s right. Yeah. There are some foundational things that can\'t change over time, which is tough when you\'re doing new products as you don\'t.<br />Always know where it\'s gonna go or what the right, you know, do we need to say image cropping, you know, kind of thing. Whatever the, the kind of keywords are.<br />Corey Maass: Yep. So, yep. So, but I, I definitely think that\'s, that\'ll be a great experience for you to talk about and, and also a lot of the, the thinking that, that it makes you do will subsequently guide at least some of our early work [01:10:00] when we do put up a marketing site.<br />Cory Miller: Absolutely. Well, okay, so last question. We\'ll wrap this up since we, since we got over time. Um, but it\'s hard not to stop talking with you. I enjoyed this. Um, so by next Wednesday, um, what do you think is realistic for us to make progress on and we can start talking about that next. Because we\'re gonna be doing this, by the way, for the next five, six weeks, I think.<br />Um, there\'s a webinar, um, that was in the newsletter, the link to that. And then of course, if you\'re watching on YouTube, you can just come back to Post Status on YouTube. But Corey, what do you think, um, our next steps are, the progress we wanna make in this week interval?<br />Corey Maass: Yeah. I think the goal should be either we get this across the first finish line or past the first milestone or whatever of it.<br />Either we submit it to the [01:11:00] plug-in repo or it\'s, or it\'s ready to go and we can talk about that. But, you know, feature, feature complete as far as version one is concerned, um, and, and that, that read me, basically it\'s the whole zip file ready to go and be submitted and then we can either, Maybe we even, we could even submit it while we\'re on the, uh, you know, on the call and kind of talk about like that.<br />And then I think we\'ll end up talking about like, you know, whenever I\'ve submitted plugins, um, I\'ve, I\'ve never just had one like stamp done. Like there were questions asked or there were, um, code revisions that I needed to make based on, I know that they use a programmatic, um, I can\'t think of what it\'s called, but basically code sniffer, um, to, you [01:12:00] know, it basically some little AI that, that will flag variables that aren\'t escaped or things like that.<br />And, um, and then I\'ve also usually wound up having a conversation with a human being who\'s like, you know, what are your intents? What, what\'s your intention of this? Or, you know, why do you think we need this? Or whatever. And so if, you know, I think that\'ll be worth talking about too.<br />Cory Miller: Because the submission to the repo takes some time because it\'s gotta go in the review and all that stuff too.<br />So, um, I think about timing wise as well as like, once it\'s there, it\'s, we\'re gonna have just by nature of the review process, which is good. I, I, I get it. Um, it\'s gonna push us out some to actual, to actual launch. That\'s something to consider too.<br />Corey Maass: So, you know, so we can, I think let\'s, you know, let\'s regroup, um, today\'s Wednesday, you know, end of the week, beginning of the week kind of thing.<br />Um, and we can. basically just hit submit. Um, and [01:13:00] I th the last I heard the review process takes a couple of days and I, that, that fits with my experience. Mm-hmm. , um, you know, so maybe we\'ve heard if we submit Friday or Monday, we might have heard by Wednesday. Um, and then we\'ll have that to talk about, you know, or we can just submit on Wednesday and then the following week we definitely should have something to talk about.<br />We might not be live in the repo, but um, you know, we should have heard back. I know we\'ll hear back within a week. Yeah.<br />Cory Miller: Okay. Well, my intention is to carve out some time today. I think I\'ve got some buckets of time to finish, to read me at least get a draft that you can review and we can go back and forth, um, to have that, at least you not be waiting on that or me, so that sounds great.<br />Corey Maass: Yeah, I\'m.<br />Cory Miller: All right, Corey. Thanks, man. It\'s always fun talking through this stuff. Yeah, having a partner and a collaborator. And, uh, thanks everybody else for, uh, joining in as you can. Um, we\'re gonna be here Wednesdays 11:00 AM Central Standard time, um, [01:14:00] for the next five, six weeks throughout January and February.<br />As we talk, just share the progress we\'re making for this WordPress product called Crop Express. Thanks everybody. Thanks Corey. See ya. See ya.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";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:\"Fri, 20 Jan 2023 20:00:18 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Emilee\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;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:44:\"Do The Woo Community: AI Text, Art, and Code\";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:28:\"https://dothewoo.io/?p=74344\";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:41:\"https://dothewoo.io/ai-text-art-and-code/\";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:397:\"<p>I chat with Mark Westguard from WS Form about how we have both used AI with content, art and even WordPress. With some added thoughts of AI and WooCommerce. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/ai-text-art-and-code/\">AI Text, Art, and Code</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Fri, 20 Jan 2023 12:12:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;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:75:\"WPTavern: WooCommerce Seeks to Improve Cart and Checkout Blocks Performance\";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:30:\"https://wptavern.com/?p=141242\";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:86:\"https://wptavern.com/woocommerce-seeks-to-improve-cart-and-checkout-blocks-performance\";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:3517:\"<p><a href=\"https://github.com/woocommerce/woocommerce-blocks\">WooCommerce Blocks</a> maintainers are asking the developer community to <a href=\"https://github.com/woocommerce/woocommerce-blocks/discussions/8166\">share feedback</a> on any performance issues they are experiencing with the Cart and Checkout blocks. </p>\n\n\n\n<p>&#8220;We&#8217;re aware there is work to be done in this area and we want to improve,&#8221; WooCommerce developer Alex Florisca said. </p>\n\n\n\n<p>&#8220;We&#8217;re specifically interested in any performance related issues that may be stopping merchants or developers from adopting the Cart and Checkout blocks over the shortcode version.&#8221;</p>\n\n\n\n<p>The plugin&#8217;s repository has nine open issues categorized as related to performance. Most of them are not straight forward and require more research and testing. For example, an issue with running multiple blocks of product grids was <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/7153\">reported</a> as having increased response times of 4+ seconds. Contributors have proposed a few different ideas to address performance issues, such as experimenting with <code>useSuspenseSelect</code> to <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/6799\">improve the perceived loading experience for various blocks</a> and finding a way to <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/6073\">track the performance of the Cart and Checkout blocks</a>. Neither of these tickets have seen much movement yet. </p>\n\n\n\n<p>Store owners will not be eager to switch over to a checkout experience that is slower, so the WooCommerce team is seeking feedback that will help them make the cart and checkout blocks faster. So far, one user reported that due to a bug in a third-party plugin, he got a glimpse of what the block-based checkout adds to the JS asset payload.</p>\n\n\n\n<p>&#8220;I think this adds at least ~300 kB (compressed) JS payload (initial numbers, my measurement process is still ongoing),&#8221; Leho Kraav said.</p>\n\n\n\n<p>&#8220;We don&#8217;t plan to convert our classic theme to a block theme any time soon, but still, I feel uneasy about this direction.&#8221;</p>\n\n\n\n<p>Florisca followed up on this feedback with a few cursory benchmarks comparing the legacy shortcode checkout with blocks checkout and Shopify: </p>\n\n\n\n<table><thead><tr><th></th><th>Blocks Checkout</th><th>Shortcode Checkout</th><th>Shopify</th></tr></thead><tbody><tr><td>Total Payload</td><td>2.9MB</td><td>935kb</td><td>6.1MB</td></tr><tr><td>Total Transferred</td><td>2.1MB</td><td>1.3MB*</td><td>3MB</td></tr><tr><td>Number of requests</td><td>144</td><td>77</td><td>146</td></tr></tbody></table>\n\n\n\n<p>&#8220;The number of requests has almost doubled for Blocks, which isn&#8217;t great so this is something that we can look into,&#8221; Florisca said. &#8220;I suspect the reason is because we rely on a few layers of abstraction on top &#8211; WooCommerce and WordPress, each with their packages and set ways of doing certain things. We can investigate if we can simply this.&#8221;</p>\n\n\n\n<p>The <a href=\"https://github.com/woocommerce/woocommerce-blocks/discussions/8166\">discussion on how to improve cart and checkout block performance</a> is still open for more developers to give feedback, and investigations are ongoing. The good news is that WooCommerce maintainers are aware of how much weight the block-based checkout adds and are actively looking for ways to improve it for users.</p>\";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:\"Fri, 20 Jan 2023 03:53:58 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;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:50:\"WPTavern: WordCamp Europe 2023 Tickets Now on Sale\";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:30:\"https://wptavern.com/?p=141212\";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:61:\"https://wptavern.com/wordcamp-europe-2023-tickets-now-on-sale\";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:2405:\"<p>WordCamp Europe <a href=\"https://europe.wordcamp.org/2023/wceu-tickets-available-now/\">announced</a> the first batch of tickets on sale for the 2023 event that will be hosted in Athens, Greece, June 8-10. General tickets are € 50.00, a fraction of their true cost, which is heavily subsidized by sponsors. It includes admission to the two-day event, lunches, coffee, snacks, Contributor Day, a commemorative t-shirt, and an invitation to the After Party.</p>\n\n\n\n<p>WCEU is also offering micro-sponsorship tickets at € 150.00, which organizers say is closer to the real cost of attendance.</p>\n\n\n\n<p><a href=\"https://wptavern.com/wordcamp-europe-2023-speaker-applications-open-organizers-call-for-more-interactive-sessions\">Speaker applications are still open</a> but will close soon in the first week of February. Applicants will be notified by the second week of March and organizers will announce the lineup in mid-April.</p>\n\n\n\n<p>WCEU is also <a href=\"https://europe.wordcamp.org/2023/call-for-host-city-2024/\">seeking a host city</a> for 2024. The minimum requirements are considerably less stringent than in previous years. Hosting the event is open to any team that has organized at least one successful in-person WordCamp in a European city in the last four years with a community that has been active during 2022. Organizers have also published an update to the selection process: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>For this year, we have tweaked the selection process to concentrate more on the local community and the city instead of deep knowledge about how to organise a successful WordCamp Europe.</p>\n\n\n\n<p>The selection of the WordCamp Europe 2024 host city will be based on the overall evaluation of the application, instead of ranking different parts of it. We don’t ask your team to prepare a budget for the whole event, but estimated costs for the proposed venue(s) should be available.</p>\n</blockquote>\n\n\n\n<p>Contributor Day registration for this year&#8217;s event is not yet open but will be free with the purchase of a conference ticket.</p>\n\n\n\n<p>At the time of publishing, only 257 tickets remain in this first round, but more batches will be released in the future. <a href=\"https://europe.wordcamp.org/2023/tickets/\">Register now</a> to lock in your spot or sign up for email updates on the registration page to be notified of future ticket releases.</p>\";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:\"Thu, 19 Jan 2023 19:37:51 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;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:92:\"Post Status: Interview With Product Lead Tiffany Bridge Of Nexcess — Post Status Draft 137\";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:\"https://poststatus.com/?p=146391\";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:99:\"https://poststatus.com/interview-with-product-lead-tiffany-bridge-of-nexcess-post-status-draft-137/\";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:57251:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In this episode, <a href=\"https://twitter.com/tiffany\">Tiffany Bridge</a> joins Cory Miller to talk about the latest innovations she and her team at <a href=\"https://twitter.com/nexcess\">Nexcess</a> have created for beginner online store owners, simplifying WordPress for users, and the ongoing battles between centralization and decentralization. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">59</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p><a href=\"https://twitter.com/tiffany\">Tiffany Bridge</a> has been working in WordPress almost since the beginning of WordPress. She is the Product Manager for WordPress eCommerce at <a href=\"https://twitter.com/nexcess\">Nexcess</a> and talks with Cory Miller about their hosting services and products, specifically highlighting the benefits and capabilities of Store Builder. They dive into optimizing UX in WordPress, the benefits of open source, and more.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>WooCommerce Simplified with Store Builder. </strong>As you know, WordPress and WooCommerce love to hide settings in layers of menus. Nexcess saw the struggles people had in trying to set up eCommerce sites and created StoreBuilder as an easy tool to go from zero to having an online store. This removes the initial learning curve required to get started in Woo and sets up a DIY tool for merchants.</li>\n\n\n\n<li><strong>A Platform to Grow with You: </strong>One of the great things about setting people up on WordPress and Woo as they start businesses is the flexibility available for future growth. If their model totally shifts, they can just uninstall a plugin and add another to obtain the functionality they need to sustain their business growth without the hassle of migration or the increased fees of a platform.</li>\n\n\n\n<li><strong>Solving for What Users Shouldn’t Have to Know. </strong>Kadence and so many WordPress and WooCommerce plugins are designed for WordPress professionals. We are working to leverage the power of Kadence by creating a top-notch user experience for people who don’t know what things like a border radius or gutter are. These tools enhance and expand the power of WordPress, so creating solutions that lower the knowledge barrier to entry is the kind of work that moves WordPress forward.</li>\n\n\n\n<li><strong>You Can Own Your Own Platform. </strong>Often people aren’t aware that this is an option. From Etsy to Twitter, controversies tend to increase demand for alternatives. Bringing more awareness to individual ownership on the web-for blogs, stores, or anything else-empowers people to show up online and conduct business on their terms.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-12 wp-block-columns has-theme-palette-8-background-color has-background\" id=\"GoDaddy-Pro\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3 id=\"GoDaddy-Pro\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/godaddypro\">GoDaddy Pro</a></h3>\n\n\n\n<p>Manage your clients, websites, and tasks from a single dashboard with <strong>GoDaddy Pro</strong>. Perform security scans, backups, and remote updates to many sites on any host. Check up on site performance, monitor uptime and analytics, and then send reports to your clients. <a href=\"https://poststat.us/godaddypro\">GoDaddy Pro is free</a> — and designed to make your life better.</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\">\n<a href=\"https://poststat.us/godaddypro\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/gdpro800x500-1-300x188.png\" alt=\"GoDaddy Pro\" class=\"wp-image-93683\" width=\"150\" height=\"94\" title=\"Pressable\" /></a>\n</div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://www.nexcess.net/storebuilder\">Store Builder</a></li>\n\n\n\n<li><a href=\"https://automattic.com/\">Automattic</a></li>\n\n\n\n<li><a href=\"https://automattic.design/tag/team51/\">Team 51</a></li>\n\n\n\n<li><a href=\"https://ithemes.com/\">iThemes</a></li>\n\n\n\n<li><a href=\"https://expressionengine.com/\">Expression Engine</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://account.magento.com\">Magento</a></li>\n\n\n\n<li><a href=\"https://www.etsy.com/\">Etsy</a></li>\n\n\n\n<li><a href=\"https://ghost.org/\">Ghost</a></li>\n\n\n\n<li><a href=\"https://www.kadencewp.com/\">Kadence</a></li>\n\n\n\n<li><a href=\"https://www.liquidweb.com/\">Liquid Web</a></li>\n\n\n\n<li><a href=\"https://tiff.is/\">Tiffany’s Blog</a></li>\n\n\n\n<li><a href=\"https://theinternet.social/@Tiffany\">Tiffany’s Mastodon</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/tiffany\">Tiffany Bridge</a> (Product Manager of WordPress eCommerce, <a href=\"https://twitter.com/nexcess\">Nexcess</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Hey everybody. Welcome to back to Post Status Draft. This is an interview in the series of product people that we\'re doing with some of the great product companies in WordPress. And today I have my new friend Tiffany. Um, we get to talk a couple weeks back and I love her energy, her experience, her approach to WordPress overall. She\'s very distinguished, uh, experienced person in WordPress having done some cool stuff that I\'m gonna let her talk about. But we\'re gonna be talking about Nexus and Store builder today I think So, um, Tiffany, welcome to Draft podcast. Thanks Corey. You tell us what you do, what, what you do in WordPress now, and where, where you got to this.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Okay. Well, so right now I am the product manager for WordPress e-commerce at Nexus, which is, uh, basically I kind of, uh, I have my hands in the entire experience [00:01:00] of using WordPress on our platform as a, as an e-commerce focused host. Um, that\'s a pretty wide swim lane, so I do a lot, a lot of different things.</p>\n\n\n\n<p>Um, the thing that I\'ve been focusing on is our store builder. Um, before Nexus I was, uh, I was at Automatic for a while doing, uh, I was on their special projects team, um, which works with, um, you know, interesting people and organizations to try and make sure they have a great experience on WordPress. So I did a lot of, sort of very bespoke projects there.</p>\n\n\n\n<p>Um, before that I freelanced. You know, was kind of doing what a lot of, uh, my colleagues are doing is just trying to, you know, help my clients have, um, you know, with by setting up like WordPress sites for them and things like that. And before that I was doing a lot of WordPress just kind of in personal projects.</p>\n\n\n\n<p>I started teaching myself WordPress in 2004. So, um, I\'ve been with WordPress almost as long as WordPress has been WordPress, which is, um, which is fun, like to see how far we\'ve. As a, as a community and as a, and as a piece of software. Right?</p>\n\n\n\n<p><strong>Cory Miller:</strong> We\'re gonna have to [00:02:00] talk about that later. I\'m gonna come back to that cuz you, you predate me. I was just a blogger in 2006 on, on this cool thing called WordPress . Um, but you said this, uh, as part of you, I know you\'re so, you\'re so humble, but I want to act accentuate a part of this, like that special projects team you did at Automatic is known for doing. Big, glamorous, cool sites with potential big problems attached to them.</p>\n\n\n\n<p>And I can\'t remember what the code name for the team has called, but I knew about it for years. And then when we met a couple weeks ago, months ago, um, and you told me your background, I was like, you were on that team. Cuz it\'s very, um, I, I would say like, You know, a celebrity status in my sense, because I know I\'d go, I\'d go to this blog site of this cool site and realize it was on WordPress, or somebody would say, now this is on WordPress, and you kind of dig into the details and you go, it\'s that team at Automatic that was doing it, that you were a part of for such a long time.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Yeah, I was there for, uh, well, it was just like, [00:03:00] it was a couple of years and, um, yeah, I mean I worked on some very, very cool projects and it\'s kind of like WordPress bootcamp, right? Like if you don\'t, whatever you think you know about WordPress, you will know more after, after like six months on that team.</p>\n\n\n\n<p>Um, because we solved like, Like every WordPress problem there is, right? Like you\'re, sometimes you\'re rescuing a site from a developer that maybe didn\'t do a great job. Sometimes you\'re converting a site that isn\'t on WordPress to WordPress. Um, like a, a project that I worked on that is very close to my heart that I can talk about is, um, I worked on the conversion of a list part from Expression Engine to WordPress, which was just an incredible experience.</p>\n\n\n\n<p>Um, I learned so much, and the a list part team was super great. So, um, yeah, like that was a, that was an intense couple of years. Like there\'s a lot, there\'s a lot that goes into those projects and our job was to kind of make it, it was like, you know, like the metaphor of the duck, right? Like you\'re, you\'re swimming seren except underneath, you\'re like furiously paddling</p>\n\n\n\n<p>And like that\'s, uh, [00:04:00] that\'s the special projects team.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Can you say this special code name for it? I wanna say stiff.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Um, the, so, I mean, every team at Automatic has like an internal nickname, right? Like the, the, the name. Because the names of teams at Automatic have historically not been, um, they have, there, there isn\'t just like, oh, that\'s accounts payable.</p>\n\n\n\n<p>Like there\'s, that\'s not what any of the teams are called, right? They all have like clever names, , um, special projects team is, uh, the overarching team is called Team 51. There are a lot of, there are a lot of rumors about why that was chosen. Um, none of them are, all of them are more glamorous and interesting than the real reason it was chosen</p>\n\n\n\n<p>Um, but now team 51 is actually, like, when I was there it was like 13 people, but it\'s now like 40 some people and so there\'s lots of subteams and those subteams all have names and things like that as well. So, but the overarching team internally is called Team 51.</p>\n\n\n\n<p><strong>Cory Miller:</strong> This is why I wanted to do these set of interviews cuz there\'s people behind, oftentimes behind the scenes with these vast experie.[00:05:00]</p>\n\n\n\n<p>Building the cool products that so many people use and why? I wanted to highlight your background. When we got to talk, I was like, oh, I\'ve gotta share this, because I think it\'s so compelling to see one, you\'ve been doing WordPress for a very long time. Two, you did it for with this like, very, uh, interesting team doing some cool projects that really put a great face on WordPress.</p>\n\n\n\n<p>Um, like a list apart. You know, so many people in our community know that like the back of their hands. Um, I wanna share that. Cause I think that that all formulates these compelling stories into today in your role at Nexus and what you\'re doing and formulates all this background. Like I remember at I themes, there\'s so many times we\'re building cool stuff, but people don\'t see inside the workshop, they don\'t see all this stuff.</p>\n\n\n\n<p>They don\'t know all the history and background, the care and passion that goes into this. And so that\'s one of the reasons I was doing this and why I wanted to like point it out, you know, , um, So, um, okay, so that brings us to [00:06:00] today, and now you\'re at Nexus doing store builder of many things. But I really wanna talk about store builder because I think it\'s really interesting.</p>\n\n\n\n<p>I know you\'ve been focusing on it, um, at Nexus and it, there\'s a big problem that I think it solves for my own work. , I shouldn\'t even say work, trying to use w this thing called WooCommerce, which is incredible. one I, I think I, I\'ve said at least, and you correct me, kept, but I\'m like WooCommerce is the default e-commerce software on the planet because it\'s used so broadly.</p>\n\n\n\n<p>I think it\'s growing faster still than WordPress and for good reason, but you can do anything and everything with it. And that presents a lot of complexity. Absolutely. Absolutely. What is the problem you\'re trying to solve with store builder?</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Sure. Oh, well. So as you say, like the more flexible and powerful something is, the more complicated it is.</p>\n\n\n\n<p>And you know, something that I learned, and this I think, especially I learned at, um, on special projects is that, [00:07:00] you know, setting up WordPress and WooCommerce, that\'s a different set of skills than just using them day-to-day. And the problem is that people who, like once you, once the, the site is set up right, people can learn to use it.</p>\n\n\n\n<p>It\'s not, it\'s not that hard to use, but getting to that point where you can just use it and run your business on it requires a ton of knowledge. And you know how WordPress. Is like, it likes to hide all of the settings, like in all of these different menus. And you have to, you have to kind of know what you\'re looking for in order to find it.</p>\n\n\n\n<p>Um, and that\'s a real, that\'s a real challenge for people. So the problem that we\'re trying to solve with store builder is this idea of like, okay, there\'s like five or six things you have to do in order to go from zero to a store. And we wanna like gather those all up in one place and just walk you through them in a very logical way.</p>\n\n\n\n<p>So, okay, first we\'re doing like what we call first time. Consider. You\'re setting like the name and address of the store and the name of the site. And then we wanna do look and feel. Um, so let\'s just get some pages into your site. Let\'s get some content into your site that you can edit and make your own.[00:08:00]</p>\n\n\n\n<p>Then we wanna, like, let\'s add a domain. We\'ve got this very cool, like we call it the Go Live wizard, where you just, um, where it like walks you through the process of, of connecting a domain right there from inside WP admin. And then we\'ve got, okay, great. Now it\'s time to add your products. Products we don\'t have a wizard for.</p>\n\n\n\n<p>We\'re just sort of surfacing a lot of help content to just help people make good choices as they\'re configuring their product, their products. And then it\'s like, great. Now let\'s connect your payment. Now let\'s set up your shipping. Hey, congratulations, you have a store. Is there more work to do on the site?</p>\n\n\n\n<p>Of course there is. There\'s always more work to do. But now we have gotten to a point where you have products and you can take payment and you can ship them, and your site has a domain name and therefore an SSL certificate. So here you are, now you\'re in business on the. And that\'s the problem that we\'re really trying to solve is just like, let\'s just get p get all of these, like things that you have to configure in front of people so they don\'t have to go hunting for.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And that\'s a huge problem I see that firsthand, um, is, you know, WordPress enabled me [00:09:00] to start a business, start a blog first, and then it evolved into a business. And that\'s the beauty of it. And I see that with, with commerce. Nearly any, uh, nuance thing you want to do, you can probably do it with WooCommerce.</p>\n\n\n\n<p>There\'s so many extensions, plug ons and addons and stuff. It from my experience, it seems like, you know, you get in and, and e-commerce just set aside from e-commerce is just complex because, okay, well you\'re selling in Europe and you need that and you need invoices or something like that. You\'re selling, you know, a digital good with a physical product and you want a free trial.</p>\n\n\n\n<p>I was just talking to somebody about that yesterday. The whole thing on e-commerce. And then you get to WooCommerce, great tool, awesome ecosystem and stuff. And I see this problem that you\'re trying to tackle over and over, uh, and I think it provides a huge need for those trying to build stores on the web.</p>\n\n\n\n<p>Um, tell me about who the product is really for. [00:10:00]</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> So you know, this product is really for that sort of like merchant who is either setting up the site themselves or maybe they\'re working with somebody to set up, but they\'re not like hiring an agency to build them a site, right? Like they might have, they might have a buddy who\'s good with computers, or they might even have paid a freelancer, but it\'s really meant to be kind of, Right at that like level of the person who is actually gonna be running the business should be able to set up the store.</p>\n\n\n\n<p>That\'s always the goal that we\'re after, right? Is if you decide, if you\'re like knitting hats and selling them on Etsy and you decide you wanna get off of Etsy, like you should be able to do this. So it\'s, it\'s meant for people whose skill is whatever it is that their business is. Not building websites, and that\'s who we\'re really targeting with this.</p>\n\n\n\n<p>Now, that is a very complicated problem and there\'s a lot of layers to it. And so we are always in the process of trying to solve for that use case. I think, um, I don\'t know if you can ever be, you can never say. We\'ve solved it, right? Like there\'s always gonna be more to do. [00:11:00] Um, and that\'s what we\'re doing with Store Builder right now, but that\'s who, that\'s for.</p>\n\n\n\n<p>Like a lot of our other products, like we host, we have Manageable commerce hosting, manage WordPress hosting. What we like to say about those products is that we\'re the hosts that you graduate to, right? If you\'re coming to us, you\'ve probably already been somewhere else. Um, but with Store Builder, we\'re really focusing on people who probably don\'t already have a website, and that\'s, uh, that\'s who the product\'s for.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That\'s unique with Nexus, but I know Nexus is a brand company, has extensive experience with e-commerce too. And this offering is really interesting because one, you\'re tackling a big problem. Um, but two, you\'ve got a lot of experience on your team and the company that has really dealt with this, um, the e-commerce question for a long time.</p>\n\n\n\n<p>So.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Yeah well, and it\'s such a privilege to be able to work with people who like really think about e-commerce, right? Like Nexus got its start doing Magento. And so like we have a lot of like all of our, you know, engineering and our operations, like, they understand like what an e-commerce site [00:12:00] needs. And so it\'s, it\'s been great to watch them kind of apply that knowledge to WordPress and w as well.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Excuse me. And I think this is. It\'s one thing to have a blog, you don\'t wanna have blog. Mm-hmm. , I didn\'t worry too much about downtime. Sure. When you have downtime or something happens and you can\'t get things done with your story, you\'re probably likely losing money. So Absolutely. I think that experience is, is key to highlight Mato Gun back to the, the days, you know, this big, big behemoth of an e-commerce platform that switched hands and</p>\n\n\n\n<p>.</p>\n\n\n\n<p>hear that background. Next is, So you, you said this, uh, just a second ago, but you talked about some of the things, like what you\'re trying to do, and you mentioned some, some key things in the last year or so, as you\'ve b led this project. Um, what are some of the things that, that stand out that you\'re, um, excited about, proud about that uh, you can share.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> You know, I think in terms of like actual product features, you know, I\'m so proud of that Go Live Wizard. Um, because like, [00:13:00] you know, what\'s this saying? Like it\'s always d n s, right? D n s is hard and that\'s. and that\'s such, and there\'s no way to talk about it in a way that isn\'t like technical, right? How do you connect a, a domain name to your site?</p>\n\n\n\n<p>Well, you\'ve gotta go change your name servers. Well, what\'s a name server? What\'s a cname? What\'s an a record? Um, people shouldn\'t have to know that, right? Like people shouldn\'t have to know that in order to get online, I think. Um, so it\'s been really fun to kind of build this cool tool that just walks people kind of through a decision tree.</p>\n\n\n\n<p>The first thing it asks you is, , do you have a domain name or do you need one? If you need one, it\'ll send you out to the Nexus checkout, or we\'re working on this feature where it\'ll send you out to the, the Nexus checkout. We\'re working on the feature where it brings you back, back into your store. Like right now, we can, we can send you out to our domain registration, but we, we have to rely on you to come back.</p>\n\n\n\n<p>We\'re working on a feature where we can move you out and then just bring you right back to where you left off. But you know, so that\'s the first question. And then like once you have it, it like it will actually validate whether your domain is ready to connect, right? It\'ll do all the queries to see like, [00:14:00] are your name servers set or do you have the C name set up?</p>\n\n\n\n<p>And it\'ll tell you. If not, it\'ll tell you what it is that you need to do. Um, And then, you know, you, as you proceed with it, it\'ll like set up the DNS zone in your portal and it will like do the, um, the find and replace on your database to make sure that like WordPress knows what domain it\'s supposed to be using and that all of your internal links are now referring to the correct domain.</p>\n\n\n\n<p>So like it does all of those like little things that, like on special projects, we have a whole checklist for, to make sure that a human does them well. Now we\'ve got like a. Um, so that, that does that, and that\'s, I actually tease my former coworkers sometimes and I\'m like, Hey, I\'m over here trying to replace special projects with a series of onboarding wizards.</p>\n\n\n\n<p>And they\'re like, yeah, good luck with that . I\'m like, Hey, look, I never said I like small problems. Right? . So, um, but so that, like, that feature is something that I\'m really, really proud of and, um, and excited about. And I\'m always telling people it\'s like the best single piece of store builder</p>\n\n\n\n<p><strong>Cory Miller:</strong> is, is this different [00:15:00] from the wizard?</p>\n\n\n\n<p>You mentioned a bit ago.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> It\'s the same one. Okay. I mean, it\'s like the, like that\'s the, that\'s the one that I\'m most excited about. And, and I think it\'s the reason that I may, that we\'re able to do that one so beautifully is because you don\'t have to, like, there isn\'t like a third party that we\'re having to connect with.</p>\n\n\n\n<p>Um, you know, when you start getting into like payments and shipping, like suddenly you\'re dealing with other people\'s APIs and so there\'s a limit to what you can do. Um, but like where we\'re able to kind of control the experience, we\'re able to make it like really beautiful and functional.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I know I\'ve, I\'ve helped people.</p>\n\n\n\n<p>You know how it is, I\'m sure you get this too. It\'s like if they know you do WordPress or websites, you know, everybody has some kind of idea. And, um, there\'s platforms out there, but again, the power of WooCommerce and, and WordPress particularly to, to grow your business. But there\'s complexity that happens that, that I know you\'re wiring in as you think about and build, continue to build the.</p>\n\n\n\n<p>For that experience. Um, it\'s kind of [00:16:00] going back for a second. I know Nexus does. Okay. You graduate to us. Uh, store builder specifically, I think is for a different kind of, um, problem. And you might have said this, but I want to come back to it cause I, I think I might have missed sharing this part of it. So, store builder, if you, you know, want to start a store and here are, you know, 15 options.</p>\n\n\n\n<p>This is the option if you want to, um, start a store and grow it.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Is that right? Yeah, I think so. I mean, I think there\'s a no better platform than WordPress and Woo for something that\'s gonna grow with your business and be flexible to your business. Like maybe you get farther down the road and you decide, you know what?</p>\n\n\n\n<p>I don\'t actually want to sell merchandise anymore. What I would rather do is do courses or events. I mean, all right, well just install another plugin. You can uninstall WooCommerce. , off you go. Um, and so, you know, having that option always available to people as well is really important. Like you can, [00:17:00] because as you know, it\'s so flexible and you can just swap in the pieces you need and take out the pieces you don\'t.</p>\n\n\n\n<p>Um, I think it\'s, it\'s really great to just get people, like, just, just get on the platform that\'s going to grow with you at the beginning instead of having. Migrate later, right? Like, nobody likes migrations, nobody likes, you know, having to convert their data and carry their, carry their orders from like their Shopify store and their commerce.</p>\n\n\n\n<p>Just start with WooCommerce. It\'s fine.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I know. Um, so we talked about in that experience, like really making that initial experience where you\'re like, I\'ve got something I want to sell. Um, you mentioned when we were talking before this too, like particularly you\'re on another platform, like an Etsy or some other platform.</p>\n\n\n\n<p>This is when, um, you\'re ready to go and there\'s this, there\'s this learning curve with WordPress WooCommerce that you\'re trying to sort out. Um, I think you said it when we were, um, prepping for this like idea to selling [00:18:00] is, is kind of that key, which I think is so awesome because I know from experience.</p>\n\n\n\n<p>People, you know, non-word, pressure related. Go, I\'m ready to do this. Lindsay and I, my wife have a, a partner, great founder who does physical products. And, and that was the question I was like, okay, well you have a couple of options. , they all have pros and cons, they have some things. Um, but having an experience like this, I think is so key because of that initial learning curve going live online.</p>\n\n\n\n<p>But there, I know there\'s other things too. Nexus happens to be in the family of LiquidWeb, which is Own, has a number of WordPress specific company outside of the Nexus brand of families that you all, um, leverage within the platform too.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Yes, absolutely. Um, the biggest, uh, so you know, the liquid web family of brands is large and growing, right?</p>\n\n\n\n<p>And, and, and as our post status friends know, there are quite a lot of like WordPress plug-in businesses that are now part of the family of brands. And the one that we are leveraging most right now in store builder is [00:19:00] cadence. And cadence. For those who don\'t know, is this really great? I don\'t wanna call.</p>\n\n\n\n<p>I mean, it\'s a theme, but it\'s like so much more than a theme, right? Um, it, it is a theme. It is blocks, it is starter templates. It\'s this whole package and it\'s really geared around people who are like web designers, but just need a great, um, like way to build and customize a site that doesn\'t necessarily rely on like a third party page builder.</p>\n\n\n\n<p>Right? Something I appreciate about Cadence is the way it sort of embraces. Extends the WordPress Block editor rather than trying to replace it. Um, cadence is there, there\'s so much great stuff, right? Like right now, store Builder really leverages this Cadence starter template. So you pick one of the starter templates around, uh, around e-commerce, and we import a site for you, basically.</p>\n\n\n\n<p>Um, and then you just have to edit it and make it your own. Replace the images, replace the text. But, you know, the, the feedback that we\'re getting from our customers is that that\'s still a lot of work and it. Their feedback is that because it is, they are correct. [00:20:00] That is still a lot of work to do. And so something that we\'re kind of, the next problem we\'re trying to tackle in store builder is this idea of editing all the not store parts of your site, making sure that you have a homepage and an about page and you know, all of your policy pages and things like that.</p>\n\n\n\n<p>And making it as easy as possible for people. Because you know, cadence was kind of designed around people who are already web designers and that isn\'t who our audience is. So we\'ve been working very closely with the ca cadence team on, you know, what\'s a, how can we leverage cadence and the power and the, the, the experience that they have, but create like a really great experience for, um, people who aren\'t.</p>\n\n\n\n<p>Who aren\'t already savvy with web design, right? Who don\'t know, like, what is a gutter, what\'s a border radius like, you know, no one should have to know that. Um, so we\'re, that\'s the next problem that we\'re trying to solve and um, and it\'s been a real privilege to work with my colleagues over on that side of the house on that.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I, That\'s you just kind of like [00:21:00] highlighted one of, one of the benefits why we, our partner and, and the founder of that physical products company. Like why not just to use, let\'s say a Shopify site or something is like mm-hmm. , the stuff you said that the non-store stuff is so awesome and attractive.</p>\n\n\n\n<p>Mm-hmm. and helpful for store owners where you can blog and. NCO and different things like that. And I happen to have some inside knowledge as far as . Um, having been at Lake Web a couple years ago, sold, sold our themes to, uh, lake Web, that there\'s a suite of tools That\'s awesome. And to see, you know, post status by the way, also runs cadence and such a powerful framework, whatever we call it, you know, word critical.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Yeah. It\'s a, it\'s a sweet a package. I don\'t know, it\'s like, it\'s a theme. It\'s a lot. It\'s a lot of stuff. Um, and it\'s, it\'s just great. And, um, I\'ve been really, it\'s been really nice to be able to, to work with, um, something that both kind of embraces kind of the WordPress way of doing things, but also really [00:22:00] enhances and expands it.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. So help me complete this sentence. As for product lead for this, this particular. Um, there\'s probably all these things that your, your team knows in sudden and out cuz you built them and you built them based on these customer, this journey of these problems with obstacles people ran into. I wish people knew or did about what?</p>\n\n\n\n<p>As part of store builder. Is there things from like, you know, your team just goes, gosh, they\'re not taking advantage of the school teacher. They\'re not doing this one thing that would make their life easier, the business would grow better. What are, what are some of those things, part of the platform that\'s come to mind?</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Oh, that\'s a hard one. I mean, I think the thing that I find is that the thing that I always want customers to know is usually it\'s bec, usually they don\'t know it cuz I haven\'t adequately conveyed it to them. So it seems a little bit almost self-serving. Right. To be like, oh, I wish [00:23:00] they knew. Like, one thing that I always find myself wishing that people knew is that e-commerce is really complicated.</p>\n\n\n\n<p>Right. Um, cuz I think sometimes we get people who come to. To store builder and expect us to solve all of the complexity of the e-commerce when what we\'re really able to solve is like the complexity of the website part. Like I read our, um, One of the things I do as a product manager is I read all of our cancellation reasons.</p>\n\n\n\n<p>Um, so like anytime somebody has left the product and they wanna tell me why it\'s hard reading, sometimes , it\'s very bad for the ego, but it\'s very good for the product. And somebody once said, well, I, I can\'t believe how many things I have to log into to use this. Like, okay. Well if you\'re talking about like our Nexus portal, like I agree with you.</p>\n\n\n\n<p>I would love to reduce the need for people to have to log into a web hosting portal. Right? But if you\'re talking about payments shipping, like was there ever a future where you weren\'t gonna need a Stripe account? I know some people are [00:24:00] tackling that by like building their own payments, but then I feel like that\'s another form of lock-in that I don\'t love.</p>\n\n\n\n<p>Right. Um, so, you know, so a thing that I, I want people to know is that, um, the system ha the, this, we\'re trying to, we\'re trying to balance like that like. Opinionated versus like freedom thing, right? Like, can we be very opinionated? Like, look, you\'re just gonna use, this is the payment system you\'re gonna use.</p>\n\n\n\n<p>Just, just, you know, while also still giving people that freedom of w of, of WooCommerce, um, I think that\'s always like when I\'m reading stuff, that\'s always what I\'m wishing people knew. And so now it\'s just a question of like, well, how do I then, like how do I teach \'em that it\'s not their fault? They don\'t know that I know that they don\'t know that.</p>\n\n\n\n<p>I think about e-commerce all day. You don\'t, you, all you wanna do is just get online and like sell this thing you made,</p>\n\n\n\n<p><strong>Cory Miller:</strong> sell your stuff. Absolutely. Well, and, and there\'s platforms out there like Shopify for instance, and it, it\'s super fast gets [00:25:00] something going, but the complexity exists of some of these things.</p>\n\n\n\n<p>Like, you gotta think through, are you selling to Europe? What do you, you know, that\'s just one that comes to mind for me. Exactly. Um, but I totally get it. Um, the space that you all are in, what the product you\'re trying to provide, um, that, that is kind of like a pro and con of the beauty of the. , you can with store builder, with WordPress, with WooCommerce, get a store up and going mm-hmm.</p>\n\n\n\n<p>Um, so you can do it. And that\'s a great freedom that we have and enjoy for sure. But that, uh, I know from having done had, obviously businesses that run e-commerce rely on e-commerce or website was our front door to our store, but it was down. We didn\'t make money. Um, and then trying to help navigate some of those complexities is, is a pretty tough job.</p>\n\n\n\n<p>Anything else that kind of comes out to. About what I wish people knew. Yeah.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Oh gosh. So many things. All the [00:26:00] things. Um, , they need anything, I guess they wouldn\'t need store builder</p>\n\n\n\n<p><strong>Cory Miller:</strong> anything about the product that we haven\'t. Mentioned that, that you want to share too? I</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> mean, I think, like, I think we\'ve covered all the things that I\'m like most passionate about.</p>\n\n\n\n<p>Like I just, yeah. You know, well, we were, you remember that controversy several months ago about Etsy and like Etsy\'s increase in fees and people were sh closing down their Etsy stores. And, um, like I just, like, I want people to know that it doesn\'t have to be that. . Like, it doesn\'t have to be that way.</p>\n\n\n\n<p>Like you can own the plat, like you can own your platform. We\'re seeing this now with Twitter, right? The implosion of Twitter. People are like, what are we gonna do? Where are we gonna go? And I\'m like, you should have a blog is what you should do. Um, you know, I think I, it just, I want people to know that it doesn\'t have to be that way.</p>\n\n\n\n<p>We don\'t have. Like our presences on the web, which is an increasingly important way of way, way that we conduct business, the way we conduct our relationships, the way we meet new people. Like we don\'t have to, it doesn\'t have to be that way, right? You [00:27:00] can own your home on the web, whether that home is a store or just a blog.</p>\n\n\n\n<p>Or just a blog or, um, or anything else. Like it. Just like, it doesn\'t have to be this way. It can be. There are many of us who would love to help you with it. And like, I\'m not saying that just as a person who wants to sell store builders, I wanna sell store builders, but I want to sell, like the reason that I care about store builder is because what it allows people to do.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Mm-hmm. Absolutely. You backed into my question I was gonna ask you next was to, you\'ve been a workforce a long time and you know when we prop. Uh, examples, like, I don\'t want to just poo poo Shopify, but use Shopify software is a service. There\'s benefits to having a SaaS Absolutely. Solution for what you\'re doing, but there\'s also,</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> there\'s a reason they\'re successful.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Absolutely. There\'s also downside, and you mentioned earlier it\'s like WooCommerce, WordPress, and even store builder and Nexus grows with you. Um, but I want you to share a little bit more about that. You know, Shopify, what I was telling our partner, I said, you know, [00:28:00] Shopify\'s the glamorous thing people look at.</p>\n\n\n\n<p>And I see, I see why. But I said, you\'re gonna trade some problems for a new set of problems. And one of those you\'ve mentioned a couple times is lock in. And the beauty of, I want you to share a little bit about the, what your thoughts are around WordPress, WooCommerce, and open.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Yeah, I mean, I think, I mean, the number one, biggest one is that you can own it and you can go, you know, wherever you want, and you can decide the experience that you wanna have.</p>\n\n\n\n<p>Um, I think that\'s something that a lot of us are spending a lot of time thinking about right now as like various social media platforms or like the, the downsides of like, for example, kind of lock in, uh, in social media pro. Platforms is becoming apparent, right? So that\'s like one thing that I think is really important.</p>\n\n\n\n<p>Um, another thing that\'s important is that, you know, the thing about, like, there are lots of companies in WordPress and Yes, here we all are trying to sell you our solution, right? We\'re all trying to make money. We\'re all trying to, you know, everybody, we, we live in capitalism. We\'re all trying to make money here.</p>\n\n\n\n<p>[00:29:00] But at the same time, like there is no reason. That you have to have any of that, right? Like the only thing that, that you have to pay for to use WordPress is someplace to. Right. You can download it, you can use it, it\'s all free, and that you can decide what you need and then you know what\'s worth paying for versus what\'s worth not paying.</p>\n\n\n\n<p>Like you can, it\'s such a like a choose your own adventure kind of platform. And I feel like, you know, we\'ve had so much centralization and so much, um, You know, like it\'s just so much centralization, so, so much like merging and like this company buys this company that we kind of forget that like we don\'t have to be that way.</p>\n\n\n\n<p>And I think it\'s, it\'s really important. Uh, I think open source is really important to like individual autonomy in that way. Like we\'re starting to get a little of like philosophical here, but I think, you know, just knowing that. If nothing else, you can just go download WordPress and learn to use it. Like I started downloading WordPress and learning to use it because, um, [00:30:00] movable type was going to a pay a for pay model and it was more money than I could pay at that time to indulge my like personal blog habit.</p>\n\n\n\n<p>And everybody was talking about this new system, WordPress that was open source and free. And I was like, free is good cuz I am broke. And I downloaded it and I started teaching myself to use it and it completely changed my. And I know I\'m not the only one. Right. I have talked to other people who are like, great.</p>\n\n\n\n<p>WordPress was free for me to learn to use, so I learned to use it. Word camp was $20 for me to go, so I slept on somebody\'s couch and went to a Word camp. Something that I think is, is so important is, is that kind of low financial barrier to entry. I would love to see us have a lower like knowledge barrier to.</p>\n\n\n\n<p>and I think we\'re all working on that every day. Um, but um, that, that\'s just like, that barrier to entry I think is always really close to my heart because I really believe that, you know, these are things that can change people\'s lives if they just have what they need in order to take advantage of them.</p>\n\n\n\n<p>Um, and I think that the community really [00:31:00] does care about that. And that\'s something that\'s like, makes me very proud to be involved in WordPress.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, you, you just, there\'s a practical side to this too, and I love the philosophical because it has practical implications as well. It\'s like Absolutely. You get locked into a platform, like you\'re talking about, whether it\'s an Etsy or a Twitter or a Shopify.</p>\n\n\n\n<p>Mm-hmm. , you\'re at kind of the whims of. What they\'re doing. That\'s a little bit different in word control,</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> like company gets bought by somebody who then does all kinds of questionable things with it, and then here you are, like, I\'ve been on Twitter for 15 years, right? Like I\'ve been on Twitter since, yeah, 2007.</p>\n\n\n\n<p>So I\'ve been on Twitter like 15 years and here I am. Like with my like 15 year old, like at Tiffany Twitter handle, because that\'s how long I\'ve been on it. I got my first name and now somebody\'s over here like running it into the ground, making all kinds of questionable decisions, messing up the experience I have.</p>\n\n\n\n<p>And then I\'m like, well, now what? Like half the people I know I met here, like now what do I do? And like here I am like. I got locked in. I said I wasn\'t gonna get [00:32:00] locked in, but here I am, locked in. Um, so yeah, I mean that has like very practical considerations. There\'s people that I\'m struggling to stay in touch with because I only knew them on Twitter and like, how do I find them now?</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, and you know, just a real direct one-to-one is, um, Shopify and Etsy platform versus this. And you, you look at a lot of entrepreneurs, e-commerce merchants start something, it blows. It. It starts to really grow and that lock in down the stream really comes into play For sure. Like you start getting taxed on your success in a sense where you, like you said, to that own and locked in feature where you go now.</p>\n\n\n\n<p>Exactly. With WordPress, we built a tool to, I themes that stellar brand that you can move websites very easily with. Exactly. Including at Nexus Brands.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Exactly. And you know, like you, you build something, you go viral, you\'re like, suddenly your Etsy store\'s [00:33:00] going crazy. Now you have like, you know, transaction fees at Etsy.</p>\n\n\n\n<p>So the bigger you are, like the more your fees grow at ets, you know, at Etsy. And um, so you have that problem, but also like maybe you never bought a domain name. So now everybody only knows where to find you on Etsy instead of getting a domain name. So now you\'ve gotta like figure out how to teach people to go somewhere else.</p>\n\n\n\n<p>Like if you wanna move, like it\'s, yeah, it\'s a real. . I see this a lot of times too with like content creators and like Instagram. They\'re like, oh my gosh. If, I mean, Instagram\'s how I reach my audience, how are people gonna find me? If inst, if Instagram goes down, y\'all, that is a problem. Like you need a website and, and it just like, it makes me nuts, like a thing that is, it just makes me like pound the table cuz I get so annoyed about it.</p>\n\n\n\n<p>Is so you don\'t have like, People, you can only have like one link on Instagram, right? It\'s in your bio link in bio. And so people will like pay money for a link in bio service and then like link to their website and a link in bio. And I\'m like, what if I told you that you could just put a page on your website with the list of all your [00:34:00] links and then put that link in your bio.</p>\n\n\n\n<p>Um, and then you wouldn\'t be locked into yet another service, right? You don\'t have to get locked into the, like, there\'s the lock into Instagram and then there\'s the lock into the, the thing that you did to like work around the limitations of Instagram. Just have websites. Y\'all just have websites.</p>\n\n\n\n<p><strong>Cory Miller:</strong> It\'s well in this, this partner of our same thing, built a great, huge audience on Instagram.</p>\n\n\n\n<p>Mm-hmm. that you gotta have an gotta have a website, gotta have an email list that you\'re trying, you know, things have, things have evolved. There\'s other marketing opportunities. But I go for me, website, email list that you can contact them that you quote own. So if something shifts, but you know, Tiffany, I\'m interested too.</p>\n\n\n\n<p>You see all this, you know, looking, looking around Instagram for instance. Some of the people that have got huge audiences, and I click those links and I think, okay, well maybe they\'re what, you know, at some point, how do they monetize that? And I go and I wanna get your thoughts on this and this whole creator [00:35:00] economy and what, I think probably 10 years ago we thought it\'s like bloggers and , you know, we have a new name for it now, but the creator economy, where they used the platform to get some initial buzz, but then, Okay.</p>\n\n\n\n<p>What\'s the path to Monet monetization. I mean, we\'re all passionate about what we do, but at some point you also need to, you know, keep the lights on and pay the pay the bills kind of thing. Absolutely. But I\'m curious too, like seeing that you\'ve been at WordPress a long time, seen in the web, a long time, been a technologist, but like, you know, what\'s your thoughts on that creator economy?</p>\n\n\n\n<p>Just like you said, okay, hey, here\'s a good point. Build your audience here. Hey, maybe not just a link tree or whatever it\'s called, but like, here\'s your website and all that. But what kind of trends and, and themes are you seeing in, in the foreseeable future, uh, that you know, you have thoughts on and ideas for as the creator economy builds?</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> I mean, I\'m seeing, I\'m seeing a lot of people kind of fall back to newsletters, which is very cool in like retro, right? Like this idea of [00:36:00] like email, like we\'ve all got email. We neglected our email boxes for a while, but now it\'s back email\'s back, baby. Um, I think that\'s really interesting. And, and you know, and we\'re still seeing like some consolidation there, right?</p>\n\n\n\n<p>Because then now it\'s like, oh, let\'s, let\'s have a CK and like, okay, but now you\'re like locked into ck, right? Yeah. Um, which, which is a little bit of a concern, but you can at least like export. Subscribers out from ck, like if nothing else, like you can take your list with you, which I think is really great.</p>\n\n\n\n<p>CK has put together like a really easy to use stack of things that you need to run a four page newsletter. And, um, and so they\'re, they\'re popular for a reason, even if I still think people should have websites mm-hmm. , um, you know, but, but we are seeing that and even within sub, I\'m starting to see people like branch out into.</p>\n\n\n\n<p>Having websites like ghosts, which is another open source project. I\'m seeing people do that instead. Um, I think it\'s, it\'s really interesting right now because we ha we\'re in this moment where like the, the platform, the [00:37:00] social media platforms are really starting to show the seams and, and it\'s starting to feel like maybe we\'re on the edge of something.</p>\n\n\n\n<p>And I was just talking about this with a friend of mine the other day, and cuz he was saying like, Man, like Google Reader died and it kind of killed R Ss, right? Like, and nobody\'s figured that problem out since then. I\'m like, well, no, because everybody just started aggregating through Twitter. Twitter\'s the new, your new Google reader, except now like Twitter is twittering.</p>\n\n\n\n<p>And, um, because then we all, you know, we, and, and that, and again, that\'s like that problem of consolidation. Like even Google Reader, which was aggregating sources, it was like the dominant r s s reader. And I don\'t know, I don\'t know how to solve that problem. decent, uh, of centralization. Right. But I think it\'s very interesting that we\'re seeing people kind of move to newsletters because then they at least know that they can contact you.</p>\n\n\n\n<p>Mm-hmm. , and, and you can, um, and you, and you can have more control of your audience that way. Well, and then I\'m watching people like try out, like mastered on and that\'s interesting. [00:38:00] I don\'t, I don\'t know how that\'s gonna go cuz I feel like Mastodon is still. It\'s too difficult from like an administrative perspective.</p>\n\n\n\n<p>Like it\'s too difficult to start an instance right. Still. Um, I was talking about this actually in post status Slack the other day. I feel like a big reason that I ever got as far as I did with WordPress is cuz they had that five minute install so early on. Yeah. Like even in 2004, it was easy enough to install that I could figure it out myself and that like, I tried to set up ma on like ju like just like on a Nexus test account and like, , we don\'t have a way to run that particular form of like, of SQL that it uses of S SQL L and so like, like I would immediately stop and like, well, I.</p>\n\n\n\n<p>Like this, this thing doesn\'t even, like, it has dependencies that aren\'t necessarily available everywhere. And um, and then you have to, like, there\'s all this stuff that you have to do to set it up. And I\'m like, and you all have to, and it all has to be done from the command line. Um, so I feel like, you [00:39:00] know, these kind of like federated platforms where you run under an instance are gonna have to put a lot of attention into installation and onboarding if they want to, if they really wanna take off.</p>\n\n\n\n<p>I think that\'s gonna be a big thing.</p>\n\n\n\n<p><strong>Cory Miller:</strong> What I take from this too is really going back to if you\'re thinking about building a business, even if you\'re dancing for passion, all of a sudden you\'re back in. You go, oh my gosh, I\'m a business owner. The thought process here to me is make sure you understand. What you own and what you\'re renting or borrowing for a time.</p>\n\n\n\n<p>Yeah, and just like you said, like I think so much from the we, I think we so much, by the way, benefit from de decentralization, AK WordPress, . You can, yes, you can copy it, you can for it and do whatever you want with WordPress. And there\'s power in that. And that shift of power where another platform has the rules.</p>\n\n\n\n<p>and regulations and policies that they change like Instagram, changing from more focus on [00:40:00] video to compete what\'s, let\'s say a TikTok and you go mm-hmm. Well, and, and I\'m not looking at my analytics all the time, but I look at likes, right? And I go, well, my likes went down quite a bit. Well, because I don\'t do video, I don\'t want to do video.</p>\n\n\n\n<p>Right. And right. Then you go, there\'s a way to build, it seems like build some initial audience, but make sure you have these off-ramps into something, even like an email list, you said, much less complex to export your subscriber list and go to another platform than e-commerce, but be really choosy and picky about what you\'re doing because.</p>\n\n\n\n<p>When your business does continue to grow, you want to be able to grow with it in the right platform to do that.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Absolutely. Absolutely. And also, you know, as like the thing about decentralization is that there are a lot of problems that we are accustomed to having platforms solved for us. That now we have to solve on our own a decentralized situation.</p>\n\n\n\n<p>And so those of us who\'ve been working in open source a long time and and who work in tech, kind of like we already understand that like moderation is a problem and you have to think [00:41:00] about it. But you\'ve got all these, like for example, new MA on instance, admins who\'ve never really thought about moderation is like a problem.</p>\n\n\n\n<p>They have to solve , , and, and, and you\'d better. Right? And so, and that\'s like a, I think that\'s gonna be a real adjustment for people to make as we kind of like, if we\'re, if we\'re really gonna see like the beginning of a decentralization here, like there\'s gonna be a lot of like lessons that have to get relearned.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yes. And when you said that about the five minute install, raise my hand because I go, that\'s why I loved WordPress. I didn\'t have to, what\'s a command line? What\'s the, you know, how do I. Upload, install, extract, set up my databases. Like that kind of simple. I\'ve seen so many tools over the years that promise some decentralization.</p>\n\n\n\n<p>But it\'s great for the developers that know all those things. But for the everyday person, once that gets figured out, that five minute or click, click install, I, I think we\'re gonna see some shifts in power.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Yeah, I think so too. I think, um, I think if they pay a lot of, at pay more attention to that, I think you\'ll start to see a lot more.</p>\n\n\n\n<p><strong>Cory Miller:</strong> [00:42:00] Tiffany, thanks so much for being on, um, post draft today and sharing some of your background and obviously your vision values, and then, um, what you\'re doing over at Nexus with store Builder and the other products. Um, tell, tell people where they can find you.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> Well, um, my slightly less neglected these days.</p>\n\n\n\n<p>Personal blog is tiff.is so, https://tiff.is/, you can find me there as long as there\'s still a Twitter. You can find me on Twitter at Tiffany. And, uh, you can find me on Mastodon at, uh, Tiffany@theinternet.social social.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Awesome. Thanks so much, Tiffany.</p>\n\n\n\n<p><strong>Tiffany Bridge:</strong> All right. Thank you.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";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:\"Thu, 19 Jan 2023 18:45:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;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:60:\"WordPress.org blog: The Month in WordPress – December 2022\";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=14191\";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:72:\"https://wordpress.org/news/2023/01/the-month-in-wordpress-december-2022/\";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:12476:\"<p>Last month at <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">State of the Word</a>, WordPress Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> shared some opening thoughts on “Why WordPress” and the Four Freedoms of open source. <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">In this recent letter</a>, she expands on her vision for the WordPress open source project as it prepares for the third phase of Gutenberg:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-default\">\n<p>“We are now, as we ever were, securing the opportunity for those who come after us, because of the opportunity secured by those who came before us.”</p>\n<cite>Josepha Haden Chomphosy</cite></blockquote>\n\n\n\n<p>December brought with it a time for reflection—a time to look back, celebrate, and start planning new projects. Read on to find out what 2023 holds for WordPress so far.</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is turning 20!</h2>\n\n\n\n<p>2023 marks the <a href=\"https://wordpress.org/news/2023/01/wordpress-is-turning-20-lets-celebrate/\">20th anniversary of WordPress’ launch</a>. The project has come a long way since <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">the first release</a> as it continues to advance its mission to democratize publishing. From its beginnings as a blogging platform to a <a href=\"https://wordpress.org/showcase/\">world-leading open source CMS</a> powering over 40% of websites.</p>\n\n\n\n<p>Join the WordPress community in celebrating this important milestone. As the anniversary date approaches, there will be events, commemorative swag, and more.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wp20.wordpress.net/\">Stay tuned for updates</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.2 is scheduled for March 28, 2023</h2>\n\n\n\n<p>Work on WordPress 6.2, the first major release of 2023, is already underway. <strong>It is expected to launch on March 28, 2023</strong>, and will include up to Gutenberg 15.1 for a total of 10 <a href=\"https://developer.wordpress.org/block-editor/contributors/versions-in-wordpress/\">Gutenberg releases</a>.</p>\n\n\n\n<p>The proposed schedule includes four Beta releases to accommodate the first WordCamp Asia and avoid having major release milestones very close to this event.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">Read more about the 6.2 schedule and release team</a><em>.</em></p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\"><strong>Gutenberg 14.8</strong></a> was released on December 21, 2022. This version features a reorganized Site Editor interface with a Browse Mode that facilitates navigation through templates and template parts. In addition, it includes the ability to add custom CSS via the Style panel and a Style Book that provides an overview of all block styles in a centralized location.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\"><strong>Gutenberg 14.9</strong></a> became available for download on January 4, 2023. It introduces a new “Push changes to Global Styles” button in the Site Editor, which allows users to apply individual block style changes to all blocks of that type across their site. Other features include typography support for the Page List block, and the ability to import sidebar widgets into a template part when transitioning from a classic theme.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Learn how Gutenberg’s latest releases are <a href=\"https://make.wordpress.org/core/2023/01/06/core-editor-improvement-advancing-the-site-editor-experience/\">advancing the Site Editor experience</a> to be more intuitive and scalable.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: WordPress big picture goals, new Incident Response Team, and more</h2>\n\n\n\n<ul>\n<li>Josepha shared <a href=\"https://make.wordpress.org/project/2023/01/18/big-picture-goals-2023/\">WordPress’ big picture goals for 2023</a>, which support the vision set out in <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">State of the Word 2022</a> and her recent <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">letter to WordPress</a>.</li>\n\n\n\n<li>Let’s welcome the newly formed <a href=\"https://make.wordpress.org/project/2022/12/21/announcement-new-wordpress-incident-response-team/\">WordPress Incident Response Team (​​IRT)</a>—a group of contributors who will help as a community resource when behavior or actions do not align with the code of conduct.</li>\n\n\n\n<li>A number of Make teams have announced their team representatives for 2023, including <a href=\"https://make.wordpress.org/community/2022/12/20/community-team-reps-for-2023/\">Community</a>, <a href=\"https://make.wordpress.org/core/2022/12/20/core-team-reps-for-2023-and-beyond/\">Core</a>, <a href=\"https://make.wordpress.org/marketing/2023/01/10/2023-marketing-team-new-meeting-time-and-new-team-reps/\">Marketing</a>, <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">Polyglots</a>, <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a>, and <a href=\"https://make.wordpress.org/training/2022/12/23/training-team-meeting-recap-for-december-20-2022/\">Training</a>.</li>\n\n\n\n<li>As part of the WordPress.org redesign project, <a href=\"https://make.wordpress.org/design/2023/01/16/a-refresh-of-wordpress-org-themes/\">the Theme Directory will soon get a refreshed look and feel</a>.</li>\n\n\n\n<li>The return of in-person events and the Meetup Reactivation project are some of the highlights that marked a challenging but successful year for the Community Team. Learn more about <a href=\"https://make.wordpress.org/community/2022/12/20/community-team-2022-goals-recap/\">what they achieved in 2022</a>.</li>\n\n\n\n<li>#WPDiversity also celebrated its accomplishments in <a href=\"https://make.wordpress.org/community/2022/12/19/diverse-speaker-training-group-wpdiversity-2022-year-end-report/\">this report</a>. Last year, the training group held 15 events attended by more than 200 participants.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/03/a-year-in-core-2022/\">A Year in Core – 2022</a> provides a data overview of contributions made to the WordPress core codebase in the past year.</li>\n\n\n\n<li>Are you into WordPress development? Don’t miss this post on <a href=\"https://developer.wordpress.org/news/2022/12/28/2022-the-block-developers-year-in-review/\">2022&#8217;s most notable milestones and learning resources for block developers</a>.</li>\n\n\n\n<li>The January 2023 editions of the <a href=\"https://make.wordpress.org/polyglots/2023/01/13/polyglots-monthly-newsletter-january-2023/\">Polyglots monthly newsletter</a> and the <a href=\"https://make.wordpress.org/community/2023/01/18/meetup-organizer-newsletter-january-2023/\">Meetup Organizer newsletter</a> are now available for reading.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/project/2023/01/13/sotw22qa/\">Check out the 2022 State of the Word Q&amp;A post</a>, which answers submitted questions that Matt could not address at the live event.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/01/11/fse-program-testing-call-20-find-your-style/\">Join the latest FSE Program testing call</a> to help strengthen the upcoming WordPress site editing experience. Leave your feedback by February 1, 2023.</li>\n\n\n\n<li>The WordPress Developer Blog is <a href=\"https://make.wordpress.org/core/2023/01/12/can-you-help-with-topics-for-the-wordpress-developer-blog/\">gathering ideas for content topics</a>.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Have thoughts for improving the Five for the Future contributor experience? <a href=\"https://make.wordpress.org/project/2023/01/09/request-for-feedback-how-can-we-improve-the-five-for-the-future-contributor-journey/\">This post calls for ideas</a> on how this initiative can better support the project and the people behind it.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>Get ready for <a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a>! The first flagship WordCamp in Asia is happening on February 17-19, 2023, in Bangkok, Thailand. <a href=\"https://asia.wordcamp.org/2023/schedule/\">Check out the schedule</a> to learn more about the sessions and speakers.</li>\n\n\n\n<li>The <a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit</a> and <a href=\"https://us.wordcamp.org/2023/\">WordCamp US 2023</a> will take place in Maryland, USA, in August 2023. You can now <a href=\"https://us.wordcamp.org/2023/wcus-organizing-team/\">apply to join the organizing team</a> and help bring the next WCUS to life.</li>\n\n\n\n<li>Join #WPDiversity with a free online workshop on <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-apac-tickets-513455969627\">How to Own Your Expertise &amp; Start Speaking at WordPress Events APAC</a>. The event will take place on January 28, 2023.</li>\n\n\n\n<li>Don’t miss these other upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"🇵🇭\" class=\"wp-smiley\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Would you like to be a speaker at WordCamp Europe 2023? <a href=\"https://europe.wordcamp.org/2023/call-for-speakers/\">Submit your application</a> by the first week of February.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>.</em></p>\";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:\"Thu, 19 Jan 2023 12:00:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;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:112:\"Do The Woo Community: Bringing WordPress Certification to the Community with Talisha Lewallen and Sophia DeRosia\";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:28:\"https://dothewoo.io/?p=74322\";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:44:\"https://dothewoo.io/wordpress-certification/\";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:427:\"<p>Talisha Lewallen &#038; Sophia DeRosia from CertifyWP chat with us about the importance of WordPress certification. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordpress-certification/\">Bringing WordPress Certification to the Community with Talisha Lewallen and Sophia DeRosia</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Thu, 19 Jan 2023 10:57:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;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:64:\"WPTavern: WooCommerce Blocks 9.4.0 Adds Support for Local Pickup\";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:30:\"https://wptavern.com/?p=141197\";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:75:\"https://wptavern.com/woocommerce-blocks-9-4-0-adds-support-for-local-pickup\";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:1740:\"<p>WooCommerce Blocks <a href=\"https://developer.woocommerce.com/2023/01/17/woocommerce-blocks-9-4-0-release-notes/\">version 9.4.0</a> was released with support for a new block-powered Local Pickup option under shipping settings. The <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">feature plugin</a> offers users early access to new blocks and improvements to existing blocks before they become available in WooCommerce core. </p>\n\n\n\n<p>Local Pickups introduces two new blocks: a shipping method toggle block that allows shoppers to select between regular shipping or pickup from a specified location, and a pickup location block that displays local pickup rates. </p>\n\n\n\n<img />image source: <a href=\"https://developer.woocommerce.com/2023/01/17/woocommerce-blocks-9-4-0-release-notes/\">WooCommerce Blocks 9.4.0 release post</a>\n\n\n\n<p>These blocks can both be enabled and configured via a new local pickup settings page. Store owners can even rename Local pickup to something else, and optionally add a price for this option.</p>\n\n\n\n<img />\n\n\n\n<p>It&#8217;s important to note that the new Local pickup blocks can only be used with the Checkout block. WooCommerce Blocks also introduces a change with this new Local Pickup experience that will support location-based taxes based on the pickup address, improving tax reporting. Previously, WooCommerce based local pickup taxes on the store address.</p>\n\n\n\n<p>WooCommerce Blocks 9.4.0 includes a handful of other small enhancements and bug fixes. Check out the <a href=\"https://developer.woocommerce.com/2023/01/17/woocommerce-blocks-9-4-0-release-notes/\">release post</a> for a more detailed look at everything that&#8217;s new in the latest version of the plugin.</p>\";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:\"Thu, 19 Jan 2023 02:59:07 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;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:21:\"Matt: Polls on Tumblr\";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:22:\"https://ma.tt/?p=75803\";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:38:\"https://ma.tt/2023/01/polls-on-tumblr/\";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:301:\"<p>We just <a href=\"https://www.tumblr.com/staff/706805192704802816/ok-folks-everybody-stay-calm-its-happening\">launched polls on Tumblr</a>, and it&#8217;s been pretty fun. Cool to bring together the <a href=\"https://crowdsignal.com/\">Crowdsignal</a> (née Polldaddy) technology into a new world.</p>\";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:\"Thu, 19 Jan 2023 01:38:22 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;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:106:\"WPTavern: WordPress Project Aims to Complete Customization Phase and Begin Exploring Collaboration in 2023\";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:30:\"https://wptavern.com/?p=141181\";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:117:\"https://wptavern.com/wordpress-project-aims-to-complete-customization-phase-and-begin-exploring-collaboration-in-2023\";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:3124:\"<p>WordPress Executive Director Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/project/2023/01/18/big-picture-goals-2023/\">published</a> a summary of the project&#8217;s &#8220;big picture&#8221; goals for 2023. The goals fall into three major categories: CMS, Community, and Ecosystem. </p>\n\n\n\n<p>WordPress development will focus on completing the <a href=\"https://github.com/WordPress/gutenberg/issues/33094\">remaining tasks for Phase 2</a> (Customization), and will move on to begin exploring Collaboration in Phase 3. </p>\n\n\n\n<p>&#8220;As we prepare for the third phase of the Gutenberg project, we are putting on our backend developer hats and working on the APIs that power our workflows,&#8221; Haden Chomphosy said in her recent <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">Letter to WordPress</a>. </p>\n\n\n\n<p>&#8220;Releases during Phase 3 will focus on the main elements of collaborative user workflows. If that doesn’t make sense, think of built-in real-time collaboration, commenting options in drafts, easier browsing of post revisions, and programmatic editorial and pre-launch checklists.&#8221;</p>\n\n\n\n<p>The vision for the first two phases was &#8220;blocks everywhere&#8221; and Haden Chomposy said this will be updated for Phase 3 to be centered on the idea of “works with the way you work.” </p>\n\n\n\n<p>In addition to the Phase 3 APIs, Haden Chomphosy identified the following items as part of the CMS goals for 2023:</p>\n\n\n\n<ul>\n<li>Openverse search in Core</li>\n\n\n\n<li>Navigation&nbsp;block</li>\n\n\n\n<li>Media management</li>\n\n\n\n<li>Simplify the release process</li>\n\n\n\n<li>PHP 8.2 compatibility (Core and Gutenberg)</li>\n\n\n\n<li>Block theme development tools</li>\n</ul>\n\n\n\n<p>Under the Community category, WordPress will be focusing on planning the Community Summit, which will be held at WordCamp US in 2023, contributor onboarding, improving Polyglot tools, establishing mentor programs, revamping WordPress.org designs, and keeping pace with learning content. The project is also aiming to develop a canonical plugin program, which should be helpful as some Performance team contributors recently <a href=\"https://make.wordpress.org/core/2023/01/10/performance-team-meeting-summary-10-january-2023/\">expressed</a> that they don&#8217;t fully understand what the process is for canonical plugins.</p>\n\n\n\n<p>The Ecosystem category will focus on the WordPress Playground, an experimental project that uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser without a PHP server</a> with many useful applications for contributors. </p>\n\n\n\n<p>WordPress contributors also prevailed upon Matt Mullenweg to consider having the project devote some time to working through old tickets and fixing bugs. Mullenweg <a href=\"https://twitter.com/photomatt/status/1613225543847260161\">said</a> he is amenable to tackling one long-standing ticket (the kind that are stuck because of missing decisions or multiple possible solutions) each month in 2023.</p>\";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:\"Wed, 18 Jan 2023 22:57:07 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;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:100:\"Post Status: Big Picture Goals 2023 • WP 6.2 Planning • LearnWP Needs Analysis • Wrong Plugins\";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:\"https://poststatus.com/?p=146539\";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:99:\"https://poststatus.com/big-picture-goals-2023-wp-6-2-planning-learnwp-needs-analysis-wrong-plugins/\";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:16840:\"<h2 id=\"h-this-week-at-wordpress-org-january-16-2023\">This Week at WordPress.org (January 16, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Where is WordPress going in 2023? Read Josepha\'s Big Picture Goals for the year. WordPress certifications are in the planning phases, and the foundation will include LearnWP. The Training Team is conducting a Needs Analysis. Help gather the community\'s input. Plugins Team is seeking intentionally wrong plugins, and Core has the 6.2 Planning Roundup. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_adc852-65\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-fe_rotateCw\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Big Picture Goals, Learning Needs Analysis, Wrong Plugins, 6.2 Planning</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f945.png\" alt=\"🥅\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/project/2023/01/18/big-picture-goals-2023/\">Big Picture Goals 2023</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2611.png\" alt=\"☑\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/training/2023/01/14/project-overview-learning-needs-analysis/\">Project Overview: Learning Needs Analysis</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f440.png\" alt=\"👀\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/plugins/2023/01/13/looking-for-your-intentionally-wrong-plugins/\">Looking for your (intentionally) wrong plugins</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/27bf.png\" alt=\"➿\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">WordPress 6.2 Planning Roundup</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f39f.png\" alt=\"🎟\" class=\"wp-smiley\" /> <a href=\"https://europe.wordcamp.org/2023/wceu-tickets-available-now/\">WCEU Tickets available NOW</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/01/the-month-in-wordpress-december-2022/\">The Month in WordPress – December 2022</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\">Letter from WordPress’ Executive Director, 2022</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/01/episode-47-letter-from-the-executive-director/\">WP Briefing: Episode 47: Letter from the Executive Director</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-19 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-central\"><a href=\"https://central.wordcamp.org\">Central</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/01/wordcamp-entebbe-first-wordcamp-to-happen-in-africa-in-2023-is-on/\">WordCamp Entebbe: First Wordcamp to happen in Africa in 2023 is on!</a></li>\n</ul>\n\n\n\n<h2 id=\"h-cli\"><a href=\"https://make.wordpress.org/cli\">CLI</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/01/11/good-issues-for-new-and-existing-contributors-2/\">Good issues for new and existing contributors</a></li>\n</ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/01/11/community-team-training-using-learn-wordpress-at-your-wordpress-meetup/\">Community Team Training: Using Learn WordPress at your WordPress Meetup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/01/12/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-january-11-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on January 11, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/16/a-week-in-core-january-16-2022/\">A Week in Core – January 16, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/12/can-you-help-with-topics-for-the-wordpress-developer-blog/\">Can you help with topics for the WordPress Developer Blog?</a></li>\n</ul>\n\n\n\n<h3 id=\"h-wordpress-6-2\">WordPress 6.2</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/11/early-bug-scrub-schedule-for-wp-6-2/\">Early bug scrub schedule for WP&nbsp;6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">WordPress 6.2 Planning Roundup</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/17/dev-chat-agenda-january-18-2023/\">Dev Chat agenda, January 18, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/17/editor-chat-agenda-18-january-2023/\">Editor Chat Agenda: 18 January 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/12/devchat-summary-wednesday-11-january-2023/\">DevChat Summary: Wednesday, 11 January 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/11/developer-blog-editorial-meeting-january-5-2023/\">Developer Blog – Editorial meeting: January 5, 2023</a></li>\n</ul>\n\n\n\n<h3 id=\"h-developer-blog\">Developer Blog</h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/01/some-very-cool-things-can-happen-when-you-hit-enter-in-a-block/\">Some very cool things can happen when you hit Enter in a block.</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/01/using-the-box-shadow-feature-for-themes/\">Using the box shadow feature for themes</a></li>\n</ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/01/16/a-refresh-of-wordpress-org-themes/\">A refresh of WordPress.org/themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/01/16/design-share-jan-2-jan-13/\">Design Share: Jan 2-Jan 13</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/01/16/developing-and-design-work-continues-on-helphub/\">Development and design work continues on Helphub</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/01/13/summary-for-docs-team-meeting-january-10-2023/\">Summary for Docs Team meeting, January 10, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/16/documentation-team-update-january-16-2023/\">Documentation Team Update – January 16, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/01/15/advanced-administration-handbook-status-2023-01-15/\">Advanced Administration Handbook: Status 2023-01-15</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/01/17/team-rep-meeting-notes-open-call-for-discussion/\">Team Rep Meeting Notes & Open Call for Discussion</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2022/12/22/two-factor-auth-progress-for-wordpress-org/\">Two-Factor Auth progress for WordPress.org</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/01/14/preparing-for-inaturalist/\">Preparing for iNaturalist</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/01/14/openverse-switches-to-photon-for-thumbnail-generation/\">Openverse switches to Photon for thumbnail generation</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/17/performance-team-meeting-summary-17-january-2023/\">Performance Chat Summary: 17 January 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/01/18/agenda-weekly-polyglots-chat-january-18-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – January 18, 2023 (13:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/01/13/looking-for-your-intentionally-wrong-plugins/\">Looking for your (intentionally) wrong plugins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2022/12/21/plugin-guideline-update-community-code-of-conduct/\">Plugin Guideline Update: Community Code of Conduct</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">Plugins/themes categorization</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/16/plugin-review-team-16-january-2023/\">Plugin Review Team – 16 January 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/01/18/big-picture-goals-2023/\">Big Picture Goals 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/01/13/sotw22qa/\">2022 State of the Word Q&A;</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/01/09/request-for-feedback-how-can-we-improve-the-five-for-the-future-contributor-journey/\">Request for Feedback: How can we Improve the Five for the Future Contributor Journey?</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/01/11/fse-program-testing-call-20-find-your-style/\">FSE Program Testing Call #20: Find Your Style</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/01/16/fse-program-running-through-refinements-summary/\">FSE Program Running Through Refinements Summary</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/16/test-team-update-16-january-2023/\">Test Team Update: 16 January 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/01/13/themes-team-meeting-notes-january-10-223/\">Themes Team Meeting Notes –&nbsp;January 10, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/17/themes-team-update-january-17-2023/\">Themes team update January 17, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/16/summary-update-courses-currently-in-development-16-january-2023/\">Summary Update: Courses Currently in Development (16 January 2023)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/16/meeting-agenda-for-january-17-2022/\">Meeting Agenda for January 17, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/16/project-thread-learning-needs-analysis/\">Project Thread: Learning Needs Analysis</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/15/january-2023-faculty-meeting/\">January 2023 Faculty Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/14/training-team-meeting-recap-for-january-10-2023/\">Training Team Meeting Recap for January 10, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/14/project-overview-learning-needs-analysis/\">Project Overview: Learning Needs Analysis</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/13/information-sources-for-wordpress-6-2/\">Information Sources for WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/13/training-team-discovering-our-values/\">Training Team: Discovering our Values</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/18/bite-sized-content-on-learn-wordpress/\">Bite-sized content on Learn WordPress</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-own-your-expertise-start-speaking-at-wordpress-events-apac\">How to Own Your Expertise & Start Speaking at WordPress Events APAC</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-interacting-with-the-wp-rest-api\">Let’s code: Interacting with the WP REST API</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-development-live-stream-interacting-with-the-wp-rest-api\">WordPress development live stream: Interacting with the WP REST API</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/taking-advantage-of-query-loops/\">Taking Advantage of Query Loops</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://www.php.net/ChangeLog-8.php#8.2.1\">PHP 8.2.1 Changelog</a></li>\n\n\n\n<li><a href=\"https://getcomposer.org/changelog/2.5.1\">Composer 2.5.1 Changelog</a></li>\n\n\n\n<li><a href=\"https://github.com/npm/cli/compare/v9.1.3...v9.2.0\">NPM 9.2.0 Changelog</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";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:\"Wed, 18 Jan 2023 20:57:41 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;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:80:\"WPTavern: #59 – Corey Maass on How To Use WordPress To Kickstart Your SaaS App\";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:48:\"https://wptavern.com/?post_type=podcast&p=141113\";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:94:\"https://wptavern.com/podcast/59-corey-maass-on-how-to-use-wordpress-to-kickstart-your-saas-app\";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:46303:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how WordPress can be used to get your SaaS app off the ground.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL to most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox. And use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Corey Maass.</p>\n\n\n\n<p>Corey is a full stack developer who works with agencies and businesses, large and small. He specializes in advanced WordPress functionality and building products for, and using, WordPress.</p>\n\n\n\n<p>Over the last decade or so SaaS, or software as a service, apps have become more and more popular. Not only are we using our computers more, but with the rise of smartphones, we&#8217;re connected to our services all the time. There does not appear to be any corner of life where online platforms don&#8217;t have some presence. From email to taxis, fitness to food planning and delivery. You can find it all in a SaaS app somewhere.</p>\n\n\n\n<p>Now that many people are comfortable using SaaS apps, there&#8217;s been a deluge of new players coming into the market, but it won&#8217;t surprise you to learn that most of them fail to make an impact and shut up shop.</p>\n\n\n\n<p>Corey is on the podcast today to talk about why he thinks that building an MVP, or minimum viable product, app on top of WordPress is a good way to start your product journey.</p>\n\n\n\n<p>We talk about how WordPress comes bundled with many of the features that apps require. User login, roles, permissions, and the REST API. This means that you don&#8217;t have to reinvent the wheel for the things that WordPress already does.</p>\n\n\n\n<p>On top of that, the plugin ecosystem which surrounds WordPress, might enable you to short circuit the need to build all the features that your service needs. It may be that there&#8217;s an existing plugin, which does most of what you require, and is ready to go right away.</p>\n\n\n\n<p>Corey talks about how using WordPress in this way might enable you to see if there&#8217;s really a market for your app. And if there&#8217;s not, you&#8217;ve used less resources finding that out. And if there is, then you might have some revenue to develop the app in other ways.</p>\n\n\n\n<p>If you&#8217;ve toyed with the idea of creating a SaaS app in the past, but never quite got there, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast. Where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Corey Maass.</p>\n\n\n\n<p>I am joined on the podcast today by Corey Maass. Hello, Corey.</p>\n\n\n\n<p>[00:03:58] <strong>Corey Maass:</strong> Hey there.</p>\n\n\n\n<p>[00:03:58] <strong>Nathan Wrigley:</strong> Very nice to have you on. Corey, we&#8217;re going to talk today all about the capabilities of WordPress as a SaaS platform. But as we typically do on this podcast, it would be very nice if we could orientate the listeners, allow them to figure out what your credentials are, what your WordPress chops are, if you like. So would you spend a few moments just giving us a brief potted history of your relationship with tech and WordPress more specifically?</p>\n\n\n\n<p>[00:04:24] <strong>Corey Maass:</strong> Absolutely. Back in the late nineties in college, a roommate of mine introduced me to this internet thing and the first websites I saw were some of my favorite bands. And I was a aspiring musician at the time, and I said, well, I want to appear as famous as they are. How do I make one of these website things, and the rest is history.</p>\n\n\n\n<p>I taught myself basic web design, web development. That led to learning some programming, JavaScript and then ASP classic way back in the day. But around that time there was the new trend of SaaS apps. 37 Signals was popular talking about this. Forums like Joel Spolsky&#8217;s, Joel on Software. And I caught the bug because I&#8217;ve always had an entrepreneurial streak.</p>\n\n\n\n<p>So I said, oh, this internet thing, building software, but not selling a download, but selling access to a website. So, I started going down that path, building websites for clients, but also building SaaS apps to try to sell on the side. And then WordPress took off and for a number of years, WordPress was pretty much my day job. Doing development or website setup or what have you, and then building Sass apps. Not using WordPress for a number of years.</p>\n\n\n\n<p>And then suddenly the light bulb went off. One, the WordPress market was getting bigger and bigger, and I realized that there actually was money in it. So that led me to start building plugins, which I think is what had you and I talking last time. But also at some point it occurred to me that WordPress had matured enough and solved enough of the problems that I was encountering over and over building SaaS apps that I said, let me look at WordPress as a SaaS platform, and I&#8217;ve been doing it ever since. So now it&#8217;s been probably five years or something, and WordPress only continues to mature, and this conversation continues to evolve.</p>\n\n\n\n<p>[00:06:27] <strong>Nathan Wrigley:</strong> So you, in the last few years, you&#8217;ve joined together the idea of a SaaS platform, but with WordPress handling some of the basic things in the background, if you like. I say basic, I just mean some of the things that we are more familiar with in WordPress. So user management, obviously if you throw some other things like WooCommerce at it, you may be able to handle billing or subscription or whatever it might be, and getting people to the right page depending on whether they&#8217;re logged in or not. Is it basically the promise of that? You can cut out a whole body of work, which you would need to build, well potentially from scratch, each time you create your own new SaaS app?</p>\n\n\n\n<p>[00:07:04] <strong>Corey Maass:</strong> Yeah, I think that&#8217;s the way to think about it. So, when you&#8217;re solving problems for people online, these days it&#8217;s definitely more broad than it was five years ago and 10 or 15 years ago, of course. So if you&#8217;re building something that&#8217;s B2B, technically speaking. So if you&#8217;re trying to build an API or some sort of true service that other systems are going to talk to. WordPress is probably not the answer you want.</p>\n\n\n\n<p>The REST API is, has come a long way, but it&#8217;s not really what it&#8217;s meant for, right? But if you think of most B2C apps, business to consumer, most of these apps are websites that you&#8217;re signing into. Well, WordPress accommodates that. You&#8217;re clicking through from page to page. WordPress accommodates that. You&#8217;re taking billing, you&#8217;re handling subscriptions. WordPress with WooCommerce or Easy Digital Downloads, or Restricted Content Pro or any number.</p>\n\n\n\n<p>I&#8217;ve been paying more attention to the membership plugins lately, which are in some ways are specifically designed to handle exactly this problem. Users signing in and doing something, interacting. Interacting with the website. Interacting with each other, that kind of thing. One of the things that, an example that I pick up on a lot is, years ago when I was building apps regularly for clients, for friends, for myself. Over and over and over again, I had to implement some sort of user password reset. And it&#8217;s so mundane. Once you&#8217;ve solved it once, it&#8217;s boring to solve as a developer. But it&#8217;s crucial to every app.</p>\n\n\n\n<p>And I got to the point where I was like, I just don&#8217;t want to ever think about this stupid problem again. But I had to integrate the code, again every time over and over again. It&#8217;s like with WordPress, I never have to think about that. And there&#8217;s a plugin called Theme My Login, that&#8217;s one of my favorites that you drop in and users can register for your website and immediately get access to a slash dashboard, which you can change. But arguably that&#8217;s the first huge leap, you set up a basic website.</p>\n\n\n\n<p>You want users to be able to register and have exclusive access to a page that they don&#8217;t have if they haven&#8217;t signed in or haven&#8217;t paid or what have you. So, these kinds of plugins just solve all of these basic problems. The bottom of the pyramid, so to speak. So that you can get onto whatever problem, your unique problem, that your SaaS is going to solve. As opposed to spending days, weeks, months, tackling the not unique problems like user registration.</p>\n\n\n\n<p>[00:09:36] <strong>Nathan Wrigley:</strong> So what you are suggesting here, let&#8217;s just lay this out. The audience that you are suggesting this to, is people who want to get something shipped quickly. And really, if you are at the beginning of your SaaS app journey, you&#8217;re not quite sure yet whether the market even exists. You&#8217;re just trying to float a solution to something that you believe might be viable in the marketplace, but you&#8217;re not sure.</p>\n\n\n\n<p>So we&#8217;re creating a shortcut. We&#8217;re offsetting the billing, the user management and so on to WordPress, just as a, as a quick way of getting an MVP or a minimum viable product out there. Is that the idea? Just to sort of test the water? WordPress is a good bet for that, and then presumably at some point you would advise that if it turns out to be an out and out success, then maybe, at that point you might need to look at different tooling.</p>\n\n\n\n<p>[00:10:28] <strong>Corey Maass:</strong> Not necessarily. There was a time when I would&#8217;ve said that definitively, but WordPress has come a long way. Hosting has come a long way. Optimization has come a long way. So it&#8217;s definitely the scenario that I&#8217;m using WordPress the most. I&#8217;ve got a new idea, or I&#8217;m working with somebody and they&#8217;ve got a new idea and this is how I want to get it off the ground.</p>\n\n\n\n<p>But there are a number of companies, big companies, in the WordPress space that continue to work, use WordPress as the core of their SaaS app, and they&#8217;ve got plenty of customers. I think it really, when you get to that level of, if you see a, a good amount of success, then there&#8217;s going to be technical problems to overcome.</p>\n\n\n\n<p>And so it&#8217;s either ramping up hosting, server power or optimizing queries or rewriting certain aspects of your app. We can talk about that. I had to do that for one of mine, about a year ago. Or again, depending on the amount of user inactivity or user, user interactivity, how much and how often your users are using your app, you may find that it handles it just fine.</p>\n\n\n\n<p>[00:11:43] <strong>Nathan Wrigley:</strong> So right at the beginning you started talking about why you use WordPress. You mentioned a few plugins, which might assist you on this journey. So I think some of the ones that you mentioned were things like Easy Digital Downloads, WooCommerce, and so on. Whilst I don&#8217;t want to necessarily promote certain plugins, I&#8217;m just wondering if, given the experience that you&#8217;ve had, if you could give us some tips as to plugins that you have found to be helpful for particular problems that you&#8217;ve faced while you&#8217;ve been trying to build it. And then in a few moments we&#8217;ll get onto the subject of how you&#8217;ve had to amend WordPress to do things, let&#8217;s say more efficient.</p>\n\n\n\n<p>[00:12:20] <strong>Corey Maass:</strong> Sure. So these days, I actually use Beaver Builder for building pages out. Beaver Builder&#8217;s a page builder. Elementor is another good one. But I find that doubling down and knowing these tools well, helps greatly with being able to solve a variety of problems because they&#8217;re not a theme, so they&#8217;re not locked into a certain layout or that kind of thing.</p>\n\n\n\n<p>But most SaaS apps have a pattern called CRUD, create, retrieve, update, and delete. So if it&#8217;s Twitter, then you are creating tweets. You are retrieving tweets, meaning you&#8217;re viewing all of them. You can&#8217;t really update tweets, but you can update your profile, that kind of thing. And again, you can&#8217;t really delete tweets, but you could delete your account, and that kind of thing. Facebook, you can create posts, you can delete posts, your viewing posts, so your retrieving posts, that kind of thing.</p>\n\n\n\n<p>So, a lot, a lot, a lot of software comes down to that pattern, and so using something like, Advanced Custom Fields and there&#8217;s a great plugin called ACF Front End, I think it&#8217;s called, that essentially puts an ACF form on the front end. So that&#8217;s how users can create and update. You could also use Gravity Forms. Or there are a couple of other plugins, form plugins, that you can then put on the front end, for again, collecting data from users or letting users post data. Essentially insert data into the database. And then using something like Beaver Builder or Elementor that have post modules.</p>\n\n\n\n<p>So it&#8217;s like if I was recreating Twitter, I would create a form, and this obviously once I&#8217;m logged in, but I would create a form that said, what do you want to tweet? And that would insert it into the database as a post record. And then I would use Beaver Builder, me personally, but you could use Elementor or again, any number of page builders, with a posts module that says, okay, show all posts, meaning tweets, with the author of Corey. So then you&#8217;ve just created a way to create tweets and then for somebody else to go look at all of Corey&#8217;s tweets, that kind of thing.</p>\n\n\n\n<p>So thinking, breaking it down to these kinds of patterns and then looking at these different plugins on how to solve them. A lot of the time I&#8217;m able to find ways to quickly implement. And it, again, it doesn&#8217;t have to be quick, and this doesn&#8217;t have to be forever, but a lot of the time it can be where WordPress and these plugins can solve these problems so that my SaaS offers the, again, the unique problem or solves the unique problem that I&#8217;m, the whole reason I&#8217;m building it in the first place.</p>\n\n\n\n<p>To get back to your question about those other plugins in particular. If you only want users to sign in, I love the plugin called Theme My Login. Again, look at membership plugins. And then, if you want to charge, again, break down the problem. What are you actually, what do you want? Usually you want subscriptions, like that&#8217;s a SaaS pattern that most people are used to now. And what are users paying for? Usually they&#8217;re paying for access to a page or pages or content or some feature to interact with other users or something like that. And there are plenty of plugins that restrict content. Which is the way to think about that.</p>\n\n\n\n<p>And so there&#8217;s literally Restricted Content Pro as a plugin. Easy Digital Downloads, which is e-commerce, but they have an add-on for restricting content. WooCommerce is really more e-commerce, but can handle this kind of stuff. And then again, membership plugins that are, as people are setting up communities, as at least some people are trying to get away from social media and get back to more private communities without relying on Facebook groups or Twitter or what have you.</p>\n\n\n\n<p>Membership plug-ins have been mature for a while, but are, I&#8217;m seeing them become even more and more popular. And are designed exactly for this. So a user pays for access to features, pages, what have you. And that&#8217;s again, kind of the core of most SaaS apps.</p>\n\n\n\n<p>[00:16:24] <strong>Nathan Wrigley:</strong> I suppose that if you are thinking of building a SaaS app, you must have some kind of kernel of an idea of whatever it is that you are trying to solve. So, you&#8217;ve got this fabulous idea, and the most important thing at that point is to judge whether or not this idea A, can be built, and let&#8217;s assume that after sitting down and thinking it through and mapping it out, you&#8217;ve decided, yep, yeah, this has got legs. This can be built with the technology that&#8217;s currently available on the web.</p>\n\n\n\n<p>And then thinking, okay, is there an audience for this? Are there going to be enough people out there who are willing to open their wallet to make it worthwhile? And if you go down the SaaS route, you may very well be an incredibly adept developer, in which case this may be in your purview.</p>\n\n\n\n<p>But if you are not and you are just trying to figure out whether the market is there and you want to do that affordably, then WordPress seems like a fairly decent bet, just because of what you said. The fact that with 60,000 plus plugins in the WordPress repository and countless more that you can purchase, in many cases for a very small amount of money.</p>\n\n\n\n<p>It may be that you can get 90%, 80%, 70% of the features that you are trying to build, but without having to do much in the way of custom coding. It may be that you can&#8217;t get a hundred percent of the way there, and that would require some tweaking, which we&#8217;ll get into. But is that essentially it? You know, you might have to cut some corners or, on your roadmap, cut out some of the things that you really thought would be nice to have in and just go for the things which can be enabled quickly and affordably.</p>\n\n\n\n<p>[00:17:58] <strong>Corey Maass:</strong> Yeah, I think it just depends on what you&#8217;re trying to accomplish. I have a buddy who is non-technical, knows enough CSS to be dangerous, which he&#8217;s learned over times, specifically for this scenario. He wanted to create a mentor program, and so he needed scheduling for matching mentorees to mentors.</p>\n\n\n\n<p>So we found a plugin that did that, or did that well enough. And then put I think a membership plug in. I don&#8217;t remember how he handled subscriptions. But basically put WordPresses stylized user management in front of it. Limited access to features based on a user being logged in or a user paying. And then a little bit of CSS to make it look a little more integrated or little more branded or what have you.</p>\n\n\n\n<p>And that was kind of all he needed. It solved the problem. He was able to charge for it. He got some customers. And then at some point he did end up hiring a developer to add a few bells and whistles or whatever features he found that were missing. But yeah, it got him 70, 80% of the way. Arguably it got him a hundred percent of the way of solving the problem enough that at least users could start using it.</p>\n\n\n\n<p>[00:19:10] <strong>Nathan Wrigley:</strong> Yeah, I suppose that&#8217;s it, isn&#8217;t it? If he&#8217;s got a core body of users, and he&#8217;s determined that, in this case he can use a calendar plugin or whatever it may be, and it will get him the user base that he needs. Then he can start to use the revenue that&#8217;s generated from the, let&#8217;s call it the SaaS app, to invest in having something done bespoke.</p>\n\n\n\n<p>That&#8217;s really interesting. That&#8217;s kind of nice to know. I guess one concern, which I may have, and I&#8217;m sure you&#8217;ve come across this before. Is just the notion that if you did build this and you fully had the intention of it staying on WordPress for all time. Then you are of course very much dependent upon the plugins that you are using. The spaghetti of plugins being updated regularly.</p>\n\n\n\n<p>In many cases that would very much be the case. It&#8217;s updated frequently. It&#8217;s made secure, and any vulnerabilities and things like that are taken care of. But there is always that chance that the developer of a key part of your SaaS app may just decide to call it quits, and then you might be left hanging a little bit.</p>\n\n\n\n<p>[00:20:14] <strong>Corey Maass:</strong> And the scenario I&#8217;ve seen more often is a mature product. Meaning your own SaaS app evolves away from what the plugin that you purchased does. So I saw this with a very big company in the WordPress space, who long ago had built their platform on top of EDD, Easy Digital Downloads. But over time had hacked and slashed at it, so that they couldn&#8217;t update it anymore.</p>\n\n\n\n<p>And that&#8217;s just a decision they had to make at some point of whether they were going to keep going with EDD and just lean into the features that EDD had and forego the other features. Or most good, big WordPress plugins are well documented and have hooks so you can add function extra functionality, or figure out how to sort of hack around them, to a point.</p>\n\n\n\n<p>And then, yeah. They had to make the decision to just stop updating it, and there was discussion. Last I heard that they were going to maybe move to something custom altogether. But the idea being, one of my favorite phrases, we made the best decision we could with the information we had at the time, right?</p>\n\n\n\n<p>So starting out early. It solves all your problems. Go for it. And then down the road you can migrate away from it. You can code around it. You could build something custom, what have you. But yes, that is certainly a risk. I mean, it&#8217;s also a problem that a lot of apps have broadly speaking. So it&#8217;s, you know, if you&#8217;ve built an app that uses the Twitter or Facebook API, you&#8217;re putting yourself in their, their hands.</p>\n\n\n\n<p>Or if you are operating system dependent or even, something I&#8217;m seeing right now is, microchip dependent, right? If you build software for MacOS and it only works on Intel and, and they move to M1 or M2. So these are just risks that I think you assess over time.</p>\n\n\n\n<p>But what I like is, the point you keep emphasizing, that this is a, a way to solve the technical problem. What I think that a lot of SaaS founders, small and large, real and imaginary, don&#8217;t take into account and, I struggle with, and most of us struggle with, is that these days the technical lift of building an app often pales in comparison to the marketing.</p>\n\n\n\n<p>We hear about these wonderful, amazing stories, like Instagram selling for whatever it was, 8 billion after two months, and yada, yada, yada. Most SaaS apps fail. And so you, you want to build quickly with a low lift and then spend most of your time, like you said, trying to get it in front of customers, validating the idea, getting feedback from customers about what features they actually want, or now that you&#8217;ve built the features they want, does it actually solve the problem for them?</p>\n\n\n\n<p>All of that is arguably way more important than the actual platform you use. But that&#8217;s what brings me back to WordPress as a platform, is in fact often a great way to get something out the door. Even if it&#8217;s just a form to collect data and then a page builder or a theme of some kind to then show the data back to the user, if that&#8217;s what solves the problem.</p>\n\n\n\n<p>[00:23:36] <strong>Nathan Wrigley:</strong> It&#8217;s interesting because if there&#8217;s a body of people listening to this who are not building SaaS apps on WordPress, and they&#8217;re just building client websites, you&#8217;ve probably encountered that scenario where the client comes and they have incredibly grandiose expectations of what they want the website to do.</p>\n\n\n\n<p>And because you&#8217;ve been building websites for so long, you just know, you have an instinct which says, well, we could build all of that. But how about we just start here? Because I would imagine it&#8217;s quite unlikely that your staff are actually going to start using some kind of intranet solution that we build as WordPress. Or some messaging system that we build in the app. It&#8217;s much more likely that they&#8217;ll continue to use things like Facebook Messenger or WhatsApp or Slack or whatever it may be.</p>\n\n\n\n<p>And so over the years you&#8217;ve become accustomed to figuring out what is plausible, what is likely to work, and I think I feel it&#8217;s the same with SaaS apps. It&#8217;s very easy to come to the table. You&#8217;ve got your blank canvas and you throw everything at it, every idea, every permutation, every possible thing that the app could do, and then decide that&#8217;s what must be built.</p>\n\n\n\n<p>That&#8217;s it. Until that is all done, we&#8217;re not going to launch it. And I think history shows that you have to be much more agile than that. You have to be able to drill it down and say, okay, what&#8217;s the 10, 20, 30% of all of that, that we&#8217;ve decided upon, which is going to get us off the ground? And so that feels like where this goes. If you try to build everything, it&#8217;s probable that you&#8217;ll A run out of money, B run out of time, and nothing will be shipped.</p>\n\n\n\n<p>Whereas in your scenario, offset the uninteresting jobs that probably don&#8217;t need to be tackled because they&#8217;ve already been tackled by plugins or WordPress Core. And just concentrate on the things which are going to benefit your users. And frankly, you don&#8217;t know what is going to benefit your users.</p>\n\n\n\n<p>It&#8217;s always amazing to me when I open up a new SaaS app that I&#8217;ve never use before. And you think, oh, this will be perfect what I need. And you end up on support saying, does it do this? No, I wish it did that. And those companies that succeed tend to be, well in my experience, the ones who listen to their early adopters and quickly pivot their solution to satisfy them.</p>\n\n\n\n<p>[00:25:45] <strong>Corey Maass:</strong> Exactly. There&#8217;s obviously no harm in thinking through what your dream app does, all the features. You make a long, long list. But one of the things that drew me to WordPress plugins, and selling WordPress plugins early on, was a rather cynical observation that I made.</p>\n\n\n\n<p>I was building blogs for customers. I was building e-commerce websites for customers. And instead of writing another article, which is hard and work. Or instead of inserting more products, which is hard and feels like work. A lot of my clients would get in the WordPress plugin repo where all the plugins are free and go, oh, I could use a to-do list plugin and they&#8217;d install it.</p>\n\n\n\n<p>Or, it&#8217;s winter. I should install a plugin that adds snowflakes falling over my theme. And they would waste an unbelievable amount of time on what felt productive and felt free. And I was like, well, if people are people, we are all human, we are all valuable and we are all, don&#8217;t want to do the things that are hard.</p>\n\n\n\n<p>But I see all these people that are spending time just digging through the plugin repo, I&#8217;m going to start building and selling plug-ins, because the discoverability is amazing. And so I think you&#8217;ve touched on that for SaaS as well, which is, we generally shy away from the things that are hard.</p>\n\n\n\n<p>We also tend to skew towards our own genius. What we think is the best idea. Because we thought of it isn&#8217;t necessarily the features, or it isn&#8217;t ecessarily solving the problem that your actual paying customers have. The real strength, and the real challenge, comes more in that side of things. Marketing, sales, talking to customers, getting over your own ego, optimizing your own time, all that kind of stuff.</p>\n\n\n\n<p>[00:27:48] <strong>Nathan Wrigley:</strong> Yeah. It&#8217;s interesting the marketing piece you mentioned. Never ceases to amaze me how much of the overall budget needs not to be sunk into the development of the actual software, but in alerting people to its existence. A significant amount. And it&#8217;s not to be underestimated.</p>\n\n\n\n<p>And obviously if at the beginning you sink a hundred percent of your finances into the code, that&#8217;s great, but I guess you better be a really good word of mouth, somebody that can spread by word of mouth incredibly successfully. Because experience at least tells me that it&#8217;s very hard to gather an audience from a standing start.</p>\n\n\n\n<p>So we&#8217;re a WordPress podcast. We&#8217;re obviously very keen on WordPress, we think it&#8217;s amazing. But I&#8217;m guessing that there must be downsides to this. Let&#8217;s just talk about that for a moment. Any drawbacks to this system that you&#8217;ve encountered over time? Just some quick examples may be that, well, does it scale very well? Does WordPress tend to be doing a lot of things in the background that a leaner, more specifically custom-built solution may get you out the hole of? Just questions around that. Any drawbacks that you would alert people to if they do decide to go down this approach?</p>\n\n\n\n<p>[00:28:59] <strong>Corey Maass:</strong> A few years ago, I was tasked with building a food subscription website. So think Blue Apron or Freshly kind of website, if you&#8217;re familiar with those. And for better or worse was told that I had to use WooCommerce. And so I spun up a WordPress website, installed WooCommerce, got subscriptions going, customized the choose the meals that you want, and then check out. And that all was okay.</p>\n\n\n\n<p>But it turned out that, I think some of this has been changed, because this was a number of years ago but, WooCommerce was storing all of the data in a very WordPressy way, which was fine because it was a known pattern. But was not very optimal. And then for the business, because all of those meals were cooked every morning and then shipped out, all of the charges had to go through at the same time, at like two in the morning. And it turned out that WooCommerce subscriptions was built so that if you signed up for a subscription at 10:30 in the morning, it would renew at 10:30 in the morning. While we needed it to renew at two in the morning so that all of the orders went through, so then the chef knew how many dishes to make, and how many chicken dishes to make or whatever.</p>\n\n\n\n<p>And that&#8217;s the kind of risk that you run into, right? So if you are using a third party piece of software, WordPress, and then with plugins. And you are essentially building it to your, or bending it to your will, so that it&#8217;s doing things that it&#8217;s not necessarily meant to do. You&#8217;re going to run into issues.</p>\n\n\n\n<p>We found that our server didn&#8217;t have enough power to process all of these orders at the same time, because it&#8217;s essentially multiple threads need to be run at the same time. We wound up in that instance sticking with WooCommerce and WordPress for at least a little while longer.</p>\n\n\n\n<p>But switching off of a hosting company that really was most popular for blogs and delivering content and not necessarily running process, CPU power. And moving to a custom AWS set up. And we watched the CPU go from 80% all the time, to 3% all the time. So in that instance, we just needed to throw more metal at it.</p>\n\n\n\n<p>But again, we were definitely using a tool, at least slightly, in ways that it wasn&#8217;t meant to do. I also, during the pandemic, or at the beginning of the pandemic, my wife made the mistake of turning to me and saying, you know, my family plays this game called Mexican Train, in person all the time. Boy, I wish there was an online version. And she should just know better than to put that kind of idea in my head.</p>\n\n\n\n<p>So within a couple of months I had spun up the only interactive online version of Mexican Train, which was great for our family, but it&#8217;s a very popular game in retirement communities. And naturally during the pandemic a lot of people in retirement communities were isolating a lot more. The game became quite popular, because it spread word of mouth. And the first Christmas, I think I built it early in the year, and, and the first Christmas it peaked at like 2,600 concurrent games or something. Which, for me, I had never built anything that needed quite that much power.</p>\n\n\n\n<p>And it did eventually fall over. But initially I&#8217;d built it so that every time somebody played, all the other games, so four people are playing, basically all four games are sitting there pinging the server, looking for updates. That&#8217;s very inefficient because most of those pings don&#8217;t return anything, but the CPU still has to accommodate them. So I wound up switching to a pushing system. So I had to integrate with that. And originally I had built it so that the game itself, so when you&#8217;re signing into mexicantrain.online, that&#8217;s the website, the login screen you&#8217;re seeing is Theme My Login.</p>\n\n\n\n<p>All of the delivery of content, so like when you go to the My Games page and you see all of your games, that&#8217;s just Beaver Builder. And then the actual game I had to build, so it was quite a lift as far as development goes. But that was what that SaaS needed. But I built an app in a JavaScript framework called React that then talks to the server.</p>\n\n\n\n<p>Well, I built the initial version using the WordPress API. So my game talked to WordPress, functionality that was built into WordPress. And the API worked, until it didn&#8217;t. So, in that instance, again, too many people hitting the server too much. Aw, shucks, it was too successful.</p>\n\n\n\n<p>I had to revisit it after a year or two and build a custom API. Now I&#8217;m a developer. I have that luxury, right? But these are things that, I got enough of a version out the door. So, thinking about it from the perspective of a non-developer. I could have set up most of it except for the game itself.</p>\n\n\n\n<p>And the game is sponsored by donations. So I installed GiveWP, which is one of the bigger WordPress donation plugins. And I still used the free version. And so I got most of those sort of basic stuff using third party plugins out of the box. And then if I wasn&#8217;t a developer, I might have had to hire a developer.</p>\n\n\n\n<p>And so yes, I would&#8217;ve had to put some money into it. But they wouldn&#8217;t have had to build everything. And I also could conceivably hire different developers, or I could by using WordPress. So one of the things we haven&#8217;t talked about is because of the popularity of WordPress, you also have a lot more developers to choose from if you&#8217;re going to hire somebody.</p>\n\n\n\n<p>But anyway, if I wasn&#8217;t a developer, I would&#8217;ve had to hire somebody to build the game. And then down the road, presumably I would&#8217;ve proven that the platform was popular, hopefully in the form of donations, which would&#8217;ve been enough money to then hire somebody to rebuild the API, if I couldn&#8217;t have done it myself.</p>\n\n\n\n<p>You know? So there&#8217;s sort of this evolution of, as you&#8217;ve said. Try things, see if it&#8217;s popular, and then maybe hire somebody if you have to, you know, if you&#8217;re going to grow parts of the platform, parts of the app beyond WordPress.</p>\n\n\n\n<p>[00:35:40] <strong>Nathan Wrigley:</strong> It&#8217;s really interesting you mentioning about all of the very large number of WordPress developers. The developers I guess, go into different niches, don&#8217;t they? They might be experts in one field or another. Do you detect that there&#8217;s a lot of people doing this kind of thing? Building SaaS on top of WordPress. Or is it just you shouting into an empty room? What I&#8217;m basically saying is, is there a community, a subset of the WorldPress developer community who, like you, are interested in building SaaS apps on top of WordPress.</p>\n\n\n\n<p>[00:36:10] <strong>Corey Maass:</strong> There is a book called Building Web Apps with WordPress that came out from O&#8217;Reilly. So it&#8217;s popular enough that people are writing books about it. I&#8217;ve given talks on it at a few different WordCamps as far back as I think four or five years ago or more. And I&#8217;ve come across a number of people who are doing it, or are thinking about it or have done it. But it&#8217;s definitely not, and even Mullenweg has talked about it, but it&#8217;s not the most common use case.</p>\n\n\n\n<p>I think in part because people just don&#8217;t necessarily think about SaaS apps separately as much anymore. More and more websites do something. And so if they have functionality, maybe that people are paying for, and users are signing in to use the web app to do something.</p>\n\n\n\n<p>It&#8217;s a SaaS app. But that&#8217;s, again, I think more and more commonly just how people view websites. So it&#8217;s not necessarily something that people are thinking about or searching for. Except for, I think, as you&#8217;ve mentioned a few times, if you&#8217;re looking for no code now means something different. But if you&#8217;re looking for a non-developery way to spin something up quickly using third party software, then it still gets some attention. But to answer your question, no, I&#8217;ve never found a community. I&#8217;ve thought about starting one, but never have. Because I just haven&#8217;t gotten a sense that enough people are talking about it.</p>\n\n\n\n<p>Which is okay. Maybe at some point they will, or, you know, maybe some other better solution will come along and consistently solve the problems. But, right here, right now, I still find WordPress a great option.</p>\n\n\n\n<p>[00:37:57] <strong>Nathan Wrigley:</strong> It&#8217;s really interesting because curiously, there&#8217;s a great deal of overlap with something that&#8217;s going on in my world at the moment in that I have been working with a developer on a SaaS app. I won&#8217;t go into the details, but reached a point where a couple of years ago, the interest in it, from my point of view, I think probably, is best to describe it. It waned a little bit and so it went on the back burner and it&#8217;s never been revived.</p>\n\n\n\n<p>And as a couple of years have gone by, I&#8217;ve decided that, actually wouldn&#8217;t it be nice to revive this? And so with a couple of friends decided that, yeah, let&#8217;s give this another go. But actually, let&#8217;s just begin again, because I&#8217;ve noticed there&#8217;s significant things in what&#8217;s already been built that I would change.</p>\n\n\n\n<p>And guess what we&#8217;ve decided to do? We&#8217;ve decided to do the MVP inside of WordPress. Basically for pretty much all the reasons that you&#8217;ve suggested. We&#8217;re familiar with it. There are sometimes free, sometimes commercially available plugins, which will do a significant amount of the lifting. Will it be exactly what we would like from our roadmap? No. Will it be close enough to get us to measure whether there&#8217;s an audience for this? Yes, I think it will. And so, curious that this is actually playing itself out in my life at this moment.</p>\n\n\n\n<p>[00:39:19] <strong>Corey Maass:</strong> Nice, yeah. Depending on the problems you&#8217;re trying to solve, but I think that&#8217;s like most things, a bit of planning, sit down, design. I encourage everybody to do this. What is the all the bells and whistles version. We nerds are a big fan of what&#8217;s called the 80 20 rule.</p>\n\n\n\n<p>So what&#8217;s the 20% that needs to be solved now, today to prove the idea? And then see what plugins align with that. How they can get you there. Will it solve the problem? Do you need custom development? Are there features that just don&#8217;t have solutions or aren&#8217;t solved by any of the plugins you might want to use.</p>\n\n\n\n<p>And then go from there. See what you can do. The nice thing too about WordPress is you can start locally, which is free. Locally meaning on your computer, not locally in your town, although you can do that too. Most computers using software like Local WP, I&#8217;m a big fan of, and there&#8217;s a few others. Also InstaWP, which lets you spin up instances of WordPress online for free, for, you know, seven days or something, and then pay to keep them, or you can download them, I think, I don&#8217;t know.</p>\n\n\n\n<p>I definitely have been guilty of getting an idea and I needed to illustrate the idea rather than just write the idea down. So I spun up an instance of WordPress real quick. Installed a couple of plugins real quick, and then said, what do I need next? Or what would the next step be? Or, if I was a user, what would I expect to see next? All that cost me was a little bit of time. There&#8217;s kind of that advantage too, where it&#8217;s, you can use it for wire framing means something specific, but conceptually you can use it for wire framing ideas, which I think is crucial. Without it costing you anything.</p>\n\n\n\n<p>[00:41:04] <strong>Nathan Wrigley:</strong> Corey, if people listening to this, if they&#8217;re resonating with it and they&#8217;re thinking actually, do you know what, this is something that I&#8217;ve been doing for a while, or, I&#8217;m curious to get into the community that you said might need to exist. Where would be the best place to get in touch with you?</p>\n\n\n\n<p>[00:41:20] <strong>Corey Maass:</strong> Honestly, the place that I talk about this the most is Twitter. twitter.com/coreymaass, c o r e y m a a s s. Just start a conversation with me. I&#8217;d love to hear people who are interested in this. If this resonated with them, if they&#8217;ve tried it at all. Because again, I&#8217;ve run into people who have done it. I&#8217;ve heard about people doing it. A book exists. So there must be people talking about it somewhere.</p>\n\n\n\n<p>But I think it would be neat to have a community of people, or even just a network of people, helping each other out, solving some of these problems. Hey, does anybody have a good recommendation for a plugin that solves such and such a functional, or a problem that I have. Where should I start? Suggestions for hosting companies. I mean, there&#8217;s, there&#8217;s always information to be shared. And honestly, that&#8217;s one of my favorite things about the WordPress community is that it&#8217;s so open. So many people are talking to each other and willing to help each other. I definitely think there could be more conversation around using WordPress as a SaaS platform.</p>\n\n\n\n<p>[00:42:21] <strong>Nathan Wrigley:</strong> Corey Maass. Thank you for chatting to us on the podcast today.</p>\n\n\n\n<p>[00:42:25] <strong>Corey Maass:</strong> My pleasure.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/coreymaass\">Corey Maass</a>.</p>\n\n\n\n<p>Corey is a full-stack web developer who works with agencies and businesses, large and small. He specialises in advanced WordPress functionality and building products for, and using, WordPress.</p>\n\n\n\n<p>Over the last decade or so, SaaS, or software as a service, apps have become more and more popular. Not only are we using our computers more, but with the rise of smartphones, we’re connected to our services all the time.</p>\n\n\n\n<p>There does not appear to be any corner of life where online platforms don’t have some presence. From email to taxis, fitness to food planning and delivery. You can find it all in a SaaS app somewhere.</p>\n\n\n\n<p>Now that many people are comfortable using SaaS apps, there’s been a deluge of new players coming into the market, but it won’t surprise you to learn that most of them fail to make an impact, and shut up shop.</p>\n\n\n\n<p>Corey is on the podcast today to talk about why he thinks that building a MVP, or minimum viable product, app on top of WordPress is a good way to start your product journey.</p>\n\n\n\n<p>We talk about how WordPress comes bundled with many of the features that apps require, user login, roles, permissions and the REST API. This means that you don’t have to reinvent the wheel for the things that WordPress already does.</p>\n\n\n\n<p>On top of that, the plugin ecosystem which surrounds WordPress might enable you to short circuit the need to build all the features that your service needs. It may be that there’s an existing plugin which does most of what you require, and is ready to go right away.</p>\n\n\n\n<p>Corey talks about how using WordPress in this way might enable you to see if there’s really a market for your app. If there’s not, you’ve used less resources finding that out. If there is, then you might have some revenue to develop the app in other ways.</p>\n\n\n\n<p>If you’ve toyed with the idea of creating a SaaS app in the past, but never quite got there, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://37signals.com/\">37 Signals</a></p>\n\n\n\n<p><a href=\"https://www.joelonsoftware.com/\">Joel Spolsky&#8217;s, Joel on Software</a></p>\n\n\n\n<p><a href=\"https://easydigitaldownloads.com/\">Easy Digital Downloads</a></p>\n\n\n\n<p><a href=\"https://woocommerce.com/\">WooCommerce</a></p>\n\n\n\n<p><a href=\"https://www.advancedcustomfields.com/\">Advanced Custom Fields</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/acf-frontend-form-element/\">ACF Frontend</a></p>\n\n\n\n<p><a href=\"https://www.gravityforms.com/\">Gravity Forms</a></p>\n\n\n\n<p><a href=\"https://www.wpbeaverbuilder.com/\">Beaver Builder</a></p>\n\n\n\n<p><a href=\"https://elementor.com/\">Elementor</a></p>\n\n\n\n<p><a href=\"https://thememylogin.com/\">Theme My Login</a></p>\n\n\n\n<p><a href=\"https://restrictcontentpro.com/\">Restrict Content Pro</a></p>\n\n\n\n<p><a href=\"https://mexicantrain.online/\">Corey&#8217;s Mexican Train website</a></p>\n\n\n\n<p><a href=\"https://givewp.com/\">GiveWP</a></p>\n\n\n\n<p><a href=\"https://www.oreilly.com/library/view/building-web-apps/9781491990070/\">Building Web Apps with WordPress book</a></p>\n\n\n\n<p><a href=\"https://localwp.com/\">Local WP</a></p>\n\n\n\n<p><a href=\"https://instawp.com/\">InstaWP</a></p>\";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:\"Wed, 18 Jan 2023 15:00:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;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:46:\"Do The Woo Community: Looking at Code as Words\";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:28:\"https://dothewoo.io/?p=74188\";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:45:\"https://dothewoo.io/looking-at-code-as-words/\";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:425:\"<p>The hurdle is getting past looking at code and saying, \"Oh, this is code. I can\'t understand it.\" You\'re not looking at zeros and ones, you\'re looking at words you can understand.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/looking-at-code-as-words/\">Looking at Code as Words</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Wed, 18 Jan 2023 11:07:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;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:125:\"WPTavern: Jetpack Revamps Mobile App, WordPress.com Users Must Migrate to Keep Using Stats, Reader, and Notification Features\";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:30:\"https://wptavern.com/?p=141116\";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:133:\"https://wptavern.com/jetpack-revamps-mobile-app-wordpress-com-users-must-migrate-to-keep-using-stats-reader-and-notification-features\";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:6594:\"<p>When Automattic <a href=\"https://wptavern.com/jetpack-launches-new-mobile-app\">launched a mobile app for Jetpack</a> in June 2021, it was targeted mainly at users who were on a paid Jetpack plan, as it enables access to features like backups, restores, and security scanning. Most importantly, the app gave Automattic a more direct path for monetizing Jetpack, without adding more commercial interests into the official WordPress apps. </p>\n\n\n\n<p>This week <a href=\"https://wordpress.com/blog/2023/01/16/say-hello-to-the-new-jetpack-mobile-app/\">Jetpack announced that it has revamped the app</a> and is offering a more compelling reason for those using the free plan to migrate. As part of a longterm effort to <a href=\"https://make.wordpress.org/mobile/2022/07/27/refocusing-the-wordpress-app-on-core-features/\">refocus the official WordPress apps</a>, features that require Automattic&#8217;s products (the Jetpack plugin or a WordPress.com account) in order to use them, will soon be removed. This includes the Stats, Reader, and Notifications features, which have been relocated to the Jetpack app. </p>\n\n\n\n<img />WordPress.com <a href=\"https://wordpress.com/blog/2023/01/16/say-hello-to-the-new-jetpack-mobile-app/\">announcement</a> for the revamped Jetpack app\n\n\n\n<p>WordPress.com users and Jetpack users on the free plan who previously relied on these features will need to switch to the free Jetpack mobile app. All the features that are moving over from the core WordPress app will still be free in the Jetpack app.</p>\n\n\n\n<p>While most self-hosted Jetpack users may easily understand the need for the switch, this transition may be rougher for WordPress.com users who do not understand the history of the mobile apps and see it all as &#8220;WordPress.&#8221; They may not be aware that Automattic’s integrated products have been controversial features in the official WordPress apps for nearly a decade. </p>\n\n\n\n<p>The <a href=\"https://wordpress.com/blog/2023/01/16/say-hello-to-the-new-jetpack-mobile-app/\">announcement</a> on WordPress.com is confusing, as it presents Jetpack as just a new optional app and doesn&#8217;t convey the urgency of migrating if users still want access to stats, notifications, the reader, and any additional paid features. </p>\n\n\n\n<p>The post&#8217;s FAQ section describes the Jetpack app as &#8220;the premium mobile publishing experience for our super-connected world&#8221; and states that &#8220;the Jetpack app is free to download.&#8221; WordPress.com users who commented on the post found the words &#8220;premium&#8221; and &#8220;free to download&#8221; to be suspicious and confusing. They don&#8217;t understand the reason for two apps:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;Do we have to change over? I only want to blog, I’m not technical and I don’t understand why you have done this or how to use it?&#8221;</p>\n</blockquote>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;So is WordPress now called Jetpack?&#8221;</p>\n</blockquote>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;If it ain’t broke, don’t fix it. This move is not in your users’ best interests so why is it being done? This smacks of the recent pricing debacle.&#8221;</p>\n</blockquote>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I’m really disappointed by this decision. Why are you forcing us to use two apps? Your explanation of the differences makes no sense, and sounds like you made a decision for some reason you won’t tell us and you’re just trying to justify it. This is not user-focused at all.&#8221;</p>\n</blockquote>\n\n\n\n<p>Users are also concerned about data loss, as those who are migrating to the newly revamped app are advised to delete the WordPress app after installing the Jetpack app. The announcement states that &#8220;Managing your site across both apps is currently unsupported and may lead to issues like data conflicts.&#8221; </p>\n\n\n\n<p>One user asked if there are premium features in the Jetpack app that will carry additional cost, and if there is any advertising included within the app.</p>\n\n\n\n<p>&#8220;For clarity, the Jetpack app is free to use and doesn’t include in-app advertisements,&#8221; Automattic representative Siobhan Bamber said.</p>\n\n\n\n<p>&#8220;We’re still planning our 2023 roadmap, and it’s possible in-app purchases will be a part of our plans. The driving goal would be to offer features that bring most value to users, and we’re keen to hear any ideas or feedback. Any in-app purchases would be optional, with the currently free features remaining free to use.&#8221;</p>\n\n\n\n<p>In response to those asking about the differences between the two apps, Bamber said there will be a couple more posts on the WordPress.com news blog in the following weeks.</p>\n\n\n\n<p>Users will need to have the latest version of the WordPress app installed in order to automatically migrate their data and settings to the Jetpack app. This includes locally stored content, saved posts, and in-app preferences. The FAQ states that after users download the Jetpack app, they will be “auto-magically” logged in with all their content in place. </p>\n\n\n\n<p>&#8220;One good way to confirm whether your version of the WordPress app supports &#8216;auto migration&#8217; is to tap one of the in-app &#8216;Jetpack powered&#8217; banners,&#8221; Bamber advised users in the comments. &#8220;You’ll find these banners at the bottom of sections including Stats and Reader. If you tap the banner, you’ll only see the &#8216;Switch to the new Jetpack app&#8217; prompt in versions that support migration.&#8221;</p>\n\n\n\n<p>The revamped Jetpack app has been presented to WordPress.com users as a more feature-rich way to publish to their websites, but it also lays the burden of choice on users to try to understand the difference between the two apps and select one for all the sites they manage. Many don&#8217;t want the inconvenience of switching to a new app. Based on the users&#8217; responses, it might have been easier for them to understand that the official WordPress apps are removing all features require the Jetpack plugin or a WordPress.com account &#8211; instead of selling it as a new, shiny publishing experience. </p>\n\n\n\n<p>Migrating to the Jetpack app is the best option if you want to continue using the Stats, Reader, and Notifications features. In order to make it easy for users to choose the best path forward, future posts on WordPress.com should make it crystal clear what features users can expect in each app and when they will need to take action.</p>\";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:\"Wed, 18 Jan 2023 04:57:30 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;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:50:\"HeroPress: Reflecting on My 3 Foundational Pillars\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=5037\";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:152:\"https://heropress.com/essays/reflecting-on-my-3-foundational-pillars/#utm_source=rss&utm_medium=rss&utm_campaign=reflecting-on-my-3-foundational-pillars\";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:9650:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/01/011723-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Everyone deserves to live in a world or operate in a space with Dignity and Mutual Respect.\" />\n<p>I strongly believe that every experience we have up to our most current place in time shapes our identity. With that being said, as we go about living our lives it is not always obvious to see just how those compounding experiences shape us into who we are today. This is what makes all our journeys unique and worth reflecting on, because in our past often lies the tools and budding potential that influences the possibilities in our future.</p>\n\n\n\n<p>With that said, I’d like to share three pillars of my journey that have shaped me as a person and become the foundations of my current work.</p>\n\n\n\n<h2 id=\"h-technology\">Technology</h2>\n\n\n\n<p>I’ve found in one way or another that I have always lived technology-adjacent. When I was a kid my family had a Super Nintendo in the house which I always loved playing Super Mario World on– this device was essentially my first step into computers before we got our first home computer in the house when I was around 6 years old. By age 10, our computer was connected to AOL dial-up, which then allowed me to explore the early internet more deeply– MIRC, Livejournal, AOL Games, Neopets, MySpace… you name it. For the first time my world expanded beyond my immediate home of Rancho Cucamonga, CA, and El Paso, TX and into the interconnected world of the web.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Due to this opportunity of early access to computers, I became proficient in typing and navigating the internet at a very young age. </p>\n</blockquote>\n\n\n\n<p>From what I’ve described so far, one would think that I was on track for a technology-related degree; however, there weren’t any people in my family or immediate network of friends who held a position in tech– so the idea that the computer could become a tool to propel my career didn’t really click until after graduating college.</p>\n\n\n\n<p>A slight detour– I’m a Social-Anthropologist by trade, having graduated from Lewis and Clark College with a Bachelor’s in East Asian Studies and a minor in Japanese. Following my passion for Japan and inter-cultural studies, I moved back to Tokyo after college and it was about one year later when I landed my first job as a Product Manager for a mobile gaming company called Cocone. This was my reintroduction to the idea that I could have a technology-driven career.</p>\n\n\n\n<p>In between working at Cocone and my return to the United States in 2016 I held a couple jobs that were not necessarily reliant on strong technical knowledge such as English Teacher, Executive Assistant, and even working at a karaoke bar. What my time as a Product Manager taught me, however, is that I do have a large thirst for working in the technology space so when I moved back to the States I applied to a Digital Agency called ASA Digital to get me back into that space.</p>\n\n\n\n<p>After a year at ASA Digital being a sort of Jack of all trades on projects that included mobile apps, web apps, websites, MR/ER/VR/AR, I knew that this was the right choice for me. Sometimes when you know you know, and when I moved on from ASA Digital to Automattic I was fully embracing my love for and need to have technology in my life.</p>\n\n\n\n<h2 id=\"h-diversity-equity-inclusive-and-belonging\">Diversity, Equity, Inclusive, and Belonging</h2>\n\n\n\n<p>I haven’t always been aware of what the world now collectively calls DEIB, but since I was little I disliked the idea of injustice and lies. I have also faced adversity in the past due to who I am and what I look like, and it never sits right with me when others are in this kind of predicament as well. Due to this, DEIB practices deeply impacted my values and how I show up to work and with other people.</p>\n\n\n\n<p>It wasn’t until around 2019 that I became more involved in the world of DEIB in an official capacity at Automattic or at the incluu, LLC (a woman-owned and operated consultancy specializing in DEIB-thoughtful product strategy and advisement), and this is when I further developed this lens by participating in webinars on various DEIB topics, taking on leadership roles in the space, and keeping my eyes open to not only injustices that are happening but how they are being responded to.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The principles behind DEIB affect everyone and every aspect of our daily lives in some capacity, and embracing this space more fully not only allowed me to better understand the many systemic practices at play that keep us all from moving forward positively, but it also opened my mind to the real needs of people all over the world.&nbsp;</p>\n</blockquote>\n\n\n\n<p>Everyone deserves to live in a world or operate in a space with dignity and mutual respect.</p>\n\n\n\n<h2 id=\"h-community-building\">Community Building</h2>\n\n\n\n<p>While I can understand the intent around the phrase “don’t mix friend groups”, I was never the type to follow this social role wholeheartedly. There are many times in our lives when we are put in situations where we interact with people we wouldn’t necessarily have engaged with such as school projects, clubs, sports, work, etc., and while it’s not all the time, sometimes a positive reaction can occur and we can meet someone new and interesting through these random groupings.</p>\n\n\n\n<p>I’m not quick to make friends, but when I do create a strong friendship it is because we share values and experiences which serve as the foundation for our relationship despite any other differences. Maybe it’s because of my (still ongoing) gaming days, but I tend to visualize people in the world as a character with a rich background story and something only they can bring to the table.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>It has always brought me joy to bring people together and see how these chain reactions occur. </p>\n</blockquote>\n\n\n\n<p>It could be that by some happenstance one of the friends is recruiting, they share a similar hobby, or come from a similar background. Facilitating safe spaces where folks can develop a sense of community has always been a passion of mine.</p>\n\n\n\n<p>I have had the pleasure of building community in the WordPress community through various outlets like <a href=\"https://blackpresswp.com/\">BlackPress</a>, with the Training Team, and even in Automattic’s Black employee resource group Cocoamattic.</p>\n\n\n\n<h2 id=\"h-the-outcome\">The Outcome</h2>\n\n\n\n<p>Early last year I applied for the Community Education Manager with a basic idea based off of the job description of what I would be doing– fast forwarding to today I have found that the three pillars shared above gave me the tools I need to perform in this role successfully.</p>\n\n\n\n<p>As a Community Education Manager I work to break down perceived barriers for folks who want to contribute to the Make WordPress Training Team’s goals, and work as a close partner with the Training Team Representatives and members to empower them to excel in their leadership, goals, and strategy. I also help shepherd the Faculty Program, and therefore work to enable these folks to fully own and participate in their roles.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When working with our contributors, I focus on building relationships, encouraging engagement, and enabling contributions. </p>\n</blockquote>\n\n\n\n<p>We have contributors from all over the world, so I also take care to be mindful of any language or cultural differences that may be at play and lean in with curiosity to better understand each community’s unique needs.</p>\n\n\n\n<p>When working with our Team Reps, I similarly focus on building relationships, and work with them (not for them) to create an environment where the goals of the team can be realized.&nbsp;</p>\n\n\n\n<p>Lastly, I work with our Faculty Program Members by building relationships and connecting them with work related to their role, and with contributors who can benefit from their expertise and mentorship.</p>\n\n\n\n<p>Can you see how my pillars are directly impacting and influencing the work I currently do?</p>\n\n\n\n<h2 id=\"h-exploring-your-own-foundational-pillars\">Exploring Your Own Foundational Pillars</h2>\n\n\n\n<p>There are probably many articles with thought-provoking exercises that can lead you in your own self-reflection, so I’ll leave you all with just a some questions from me that have worked to get me started:</p>\n\n\n\n<ul>\n<li>What have you been given positive feedback on lately?</li>\n\n\n\n<li>What actions/things bring you the most joy in life?</li>\n\n\n\n<li>What actions/things make you feel motivated?</li>\n\n\n\n<li>When was the last time you found yourself “in the zone”?</li>\n</ul>\n\n\n\n<p>As you go through the questions for yourself don’t discredit or try to change your initial thoughts.</p>\n\n\n\n<p>Using these as a starting point, even if what comes up doesn&#8217;t immediately surface something that could be a pillar, you’ll surely learn or get to acknowledge something about yourself that shapes your character and how you present in the world.</p>\n\n\n\n<p>Take your time with it– the way we walk through life is a long-term journey which is constantly being updated by new experiences along the way.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/reflecting-on-my-3-foundational-pillars/\">Reflecting on My 3 Foundational Pillars</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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, 17 Jan 2023 23:00:08 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Destiny Kanno\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;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:89:\"Do The Woo Community: Accepting Cryptocurrency in a WooCommerce Store with Lauren Dowling\";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:28:\"https://dothewoo.io/?p=74258\";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:53:\"https://dothewoo.io/cryptocurrency-woocommerce-store/\";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:521:\"<p>Lauren Dowling, lead product for Coinbase commerce joins returning guest Dave Lockie from Automattic as the conversation covers accepting cryptocurrency on WooCommerce shops, whether it be for your clients sites or your own.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/cryptocurrency-woocommerce-store/\">Accepting Cryptocurrency in a WooCommerce Store with Lauren Dowling</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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, 17 Jan 2023 11:06:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;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:79:\"WordPress.org blog: WP Briefing: Episode 47: Letter from the Executive Director\";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:53:\"https://wordpress.org/news/?post_type=podcast&p=14175\";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:81:\"https://wordpress.org/news/2023/01/episode-47-letter-from-the-executive-director/\";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:8660:\"<p>On episode forty-seven of the WordPress Briefing podcast, Executive Director Josepha Haden Chomphosy shares her vision and current thinking for the WordPress open source project in 2023. <em>Rather read it? <a href=\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">The full letter is also available</a>.</em></p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br />Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<p><a href=\"http://make.WordPress.org/core\">make.WordPress.org/core</a><br /><a href=\"https://make.wordpress.org/core/6-2/\">Join the 6.2 Release!</a><br /><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the Community Summit!</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14175\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]&nbsp;</strong></p>\n\n\n\n<p>Last month at State of the Word, I shared some opening thoughts about why WordPress. For me, this is an easy question, and the hardest part is always knowing which lens to answer through. Though I always focus on the philosophical parts of the answer, I know that I often speak as an advocate for many types of WordPressers.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00]&nbsp;</strong></p>\n\n\n\n<p>So as we prepare ourselves for the start of a new year, I have a few additional thoughts that I&#8217;d like to share with you, my WordPress community, to take into the year with you.&nbsp;</p>\n\n\n\n<p>Firstly, the Four Freedoms. If you have already listened to State of the Word, you have heard my take on the philosophical side of open source and the freedoms it provides.</p>\n\n\n\n<p>But if you didn&#8217;t, then the TL;DR on that is that open source provides protections and freedoms to creators on the web that I really think should just be a given. But there are a couple of other things about the Four Freedoms, and especially the way that WordPress does this kind of open source-y thing that I think are worth noting as well.</p>\n\n\n\n<p>One of those things is that WordPress entrepreneurs, those who are providing services or designing sites, building applications, they have proven that open source provides an ethical framework for conducting business. No one ever said that you aren&#8217;t allowed to build a business using free and open source software, and I am regularly heartened by the way that successful companies and freelancers make the effort to pay forward what they can.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:02]</strong></p>\n\n\n\n<p>Not always for the sole benefit of WordPress, of course, but often for the general benefit of folks who are also learning how to be entrepreneurs or how to kind of navigate our ecosystem. And the other thing that I love about the Four Freedoms and the way that WordPress does it is that leaders in the WordPress community, no matter where they are leading from, have shown that open source ideals can be applied to the way we work with one another and show up for one another.</p>\n\n\n\n<p>As a community, we tend to approach solution gathering as an us-versus-the-problem exercise, which not only makes our solutions better, it also makes our community stronger.&nbsp;</p>\n\n\n\n<p>As I have witnessed all of these things work together over the years, one thing that is clear to me is this: not only is open source an idea that can change our generation by being an antidote to proprietary systems and the data economy, but open source methodologies represent a process that can change the way we approach our work and our businesses.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:01]&nbsp;</strong></p>\n\n\n\n<p>The second big thing that I want to make sure you all take into the year with you is that we are preparing for the third phase of the Gutenberg project. We are putting our backend developer hats on and working on the APIs that power our workflows. That workflows phase will be complex. A little bit because APIs are dark magic that binds us together, but also because we&#8217;re going to get deep into the core of WordPress with that phase.</p>\n\n\n\n<p>If you want to have impactful work for future users of WordPress, though, this is the phase to get invested in. This phase will focus on the main elements of collaborative user workflows. If that doesn&#8217;t really make sense to you, I totally get it. Think of it this way, this phase will work on built-in real-time collaboration, commenting options in drafts, easier browsing of post revisions, and things like programmable editorial, pre-launch checklists.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00]&nbsp;</strong></p>\n\n\n\n<p>So phases one and two of the Gutenberg project had a very ‘blocks everywhere’ sort of vision. And phase three and, arguably, phase four will have more of a ‘works with the way you work’ vision.</p>\n\n\n\n<p>And my final thought for you all as we head into the year is this, there are a couple of different moments that folks point to as the beginning of the Gutenberg project. Some say it was State of the Word 2013, where Matt dreamed on stage of a true WYSIWYG editor for WordPress. Some say it was State of the Word 2016, where we were all encouraged to learn JavaScript deeply. For a lot of us though, it was at WordCamp Europe in 2018 when the Gutenberg feature plugin first made its way to the repo.</p>\n\n\n\n<p>No matter when you first became aware of Gutenberg, I can confirm that it feels like it&#8217;s been a long time because it has been a long time. But I can also confirm that it takes many pushes to knock over a refrigerator.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]&nbsp;</strong></p>\n\n\n\n<p>For early adopters, both to the creation of Gutenberg as well as its use, hyperfocus on daily tasks makes it really hard to get a concept of scale.</p>\n\n\n\n<p>And so I encourage everyone this year to look out toward the horizon a bit more and up toward our guiding stars a bit more as well. Because we are now, as we ever were, securing opportunity for those who come after us because of the opportunity that was secured for us by those who came before us.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:33]&nbsp;</strong></p>\n\n\n\n<p>That brings us now to our small list of big things. It&#8217;s a very small list, but two pretty big things. The first thing on the list is that the WordPress 6.2 release is on its way. If you would like to get started contributing there, you can wander over to make.WordPress.org/core. You can volunteer to be part of the release squad. You can volunteer your time just as a regular contributor, someone who can test things &#8212; any of that.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>We&#8217;ll put a link in the show notes. And the second thing that I wanted to remind you of is that today is the deadline to submit topics for the Community Summit that&#8217;s coming up in August. That comes up in the middle of August, like the 22nd and 23rd or something like that.&nbsp;</p>\n\n\n\n<p>We&#8217;ll put a link to that in the show notes as well. If you already have chatted with a team rep about some things that you really want to make sure get discussed at the community summit, I think that we can all assume that your team rep has put that in. But if not, it never hurts to give it a second vote by putting a new submission into the form.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\";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:\"Mon, 16 Jan 2023 12:00:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;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:69:\"WordPress.org blog: Letter from WordPress’ Executive Director, 2022\";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=14180\";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:81:\"https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\";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:5901:\"<p>Last month at State of the Word, I shared some opening thoughts about &#8220;Why WordPress.&#8221; For me, this is an easy question, and the hardest part is knowing which lens to answer through. The reasons that a solopreneur will choose WordPress are different than the reasons a corporation would. And while artists and activists may have a similar vision for the world, their motivations change their reasons, too. That&#8217;s why I always focus on the philosophical parts of the answer because I know that I am speaking as an advocate for many types of WordPressers. I have a few other reasons, too, which you may not be aware of as you use our software every day.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why WordPress?</h2>\n\n\n\n<p>Most importantly, the Four Freedoms of Open Source. If you have already listened to State of the Word, you have heard my thoughts on the philosophical side of open source and the freedoms it provides. If you didn’t, then the tl;dr on that is that open source provides protections and freedoms to creators on the web that should be a given. There&#8217;s an extent to which the idea of owning your content and data online is a radical idea. So radical, even, that it is hard for folks to grasp what we mean when we say &#8220;free as in speech, not free as in beer.&#8221; Securing an open web for the future is, I believe, a net win for the world especially when contrasted to the walled gardens and proprietary systems that pit us all against one another with the purpose of gaining more data to sell.</p>\n\n\n\n<p>A second reason is that WordPress entrepreneurs (those providing services, designing sites, and building applications) have proven that open source offers an ethical framework for conducting business. No one ever said that you cannot build a business using free and open source software. And I am regularly heartened by the way successful companies and freelancers make an effort to pay forward what they can. Not always for the sole benefit of WordPress, but often for the general benefit of folks learning how to be an entrepreneur in our ecosystem. Because despite our competitive streaks, at the end of the day, we know that ultimately we are the temporary caretakers of an ecosystem that has unlocked wealth and opportunity for people we may never meet but whose lives are made infinitely better because of us.</p>\n\n\n\n<p>And the final reason is that leaders in the WordPress community (team reps, component maintainers, and community builders) have shown that open source ideals can be applied to how we work with one another. As a community, we tend to approach solution gathering as an “us vs. the problem” exercise, which not only makes our solutions better and our community stronger. And our leaders—working as they are in a cross-cultural, globally-distributed project that guides or supports tens of thousands of people a year—have unparalleled generosity of spirit. Whether they are welcoming newcomers or putting out calls for last-minute volunteers, seeing the way that they collaborate every day gives me hope for our future.</p>\n\n\n\n<p>As I have witnessed these three things work together over the years, one thing is clear to me: not only is open source an idea that can change our generation by being an antidote to proprietary systems and the data economy, open source methodologies represent a process that can change the way we approach our work and our businesses.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress in 2023</h2>\n\n\n\n<p>As we prepare for the third phase of the Gutenberg project, we are putting on our backend developer hats and working on the APIs that power our workflows. Releases during Phase 3 will focus on the main elements of collaborative user workflows. If that doesn’t make sense, think of built-in real-time collaboration, commenting options in drafts, easier browsing of post revisions, and programmatic editorial and pre-launch checklists.</p>\n\n\n\n<p>If Phases 1 and 2 had a &#8220;blocks everywhere&#8221; vision, think of Phase 3 with more of a “works with the way you work” vision.&nbsp;</p>\n\n\n\n<p>In addition to this halfway milestone of starting work on Phase 3, <a rel=\"noreferrer noopener\" href=\"https://wp20.wordpress.net/\" target=\"_blank\">WordPress also hits the milestone of turning 20 years old</a>. I keep thinking back to various milestones we&#8217;ve had (which you can read about in the second version of the Milestones book) and realized that almost my entire experience of full-time contributions to WordPress has been in the Gutenberg era.</p>\n\n\n\n<p><em>I hear some of you already thinking incredulous thoughts so, come with me briefly.</em></p>\n\n\n\n<p>There are a couple of different moments that folks point to as the beginning of the Gutenberg project. Some say it was at State of the Word 2013 when Matt dreamed of &#8220;a true WYSIWYG&#8221; editor for WordPress. Some say it was at State of the Word 2016 where we were encouraged to &#8220;learn Javascript deeply.&#8221; For many of us, it was at WordCamp Europe in 2017 when the Gutenberg demo first made its way on stage.</p>\n\n\n\n<p>No matter when you first became aware of Gutenberg, I can confirm that it feels like a long time because it has been a long time. I can also confirm that it takes many pushes to knock over a refrigerator. For early adopters (both to the creation of Gutenberg and its use), hyper-focus on daily tasks makes it hard to get a concept of scale.</p>\n\n\n\n<p>So I encourage you this year to look out toward the horizon and up toward our guiding stars. We are now, as we ever were, securing the opportunity for those who come after us, because of the opportunity secured by those who came before us.</p>\n\n\n\n<p><em>Rather listen? <a href=\"https://wordpress.org/news/2023/01/episode-47-letter-from-the-executive-director/\">The abbreviated spoken letter is also available.</a> </em></p>\";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:\"Mon, 16 Jan 2023 12:00:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;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:72:\"Do The Woo Community: Finding Team Members to Fit Your Companies Culture\";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:28:\"https://dothewoo.io/?p=74204\";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://dothewoo.io/finding-team-members-to-fit-your-companies-culture/\";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:442:\"<p>Marius Vetrici has built a process to bring in new employees that are drawn to fit his companies values, and to grow with them as a team member.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/finding-team-members-to-fit-your-companies-culture/\">Finding Team Members to Fit Your Companies Culture</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Mon, 16 Jan 2023 10:09:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;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:95:\"Gutenberg Times: Box Shadow, Newsletter Theme, Testing Call 20 and more – Weekend Edition 241\";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://gutenbergtimes.com/?p=23190\";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:100:\"https://gutenbergtimes.com/box-shadow-newsletter-theme-testing-call-20-and-more-weekend-edition-241/\";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:15190:\"<p>Howdy, </p>\n\n\n\n\n\n<p>Last week&#8217;s Live Q &amp; A on Layout features went really well, with numerous participants. The post and the show notes are still in the works. The <a href=\"https://www.youtube.com/watch?v=i-bKR7yjjOU\">recording is available on YouTube</a>, should you want to revisit parts of it or missed it entirely. </p>\n\n\n\n<p>Now that feature freeze for the major WordPress release is only three weeks away, the contributors would appreciate it if you could heed the <a href=\"https://make.wordpress.org/test/2023/01/11/fse-program-testing-call-20-find-your-style/\"><strong>20th call for testing from the FSE Outreach program.</strong></a> You can help find quirks, bugs and annoyances, so they can be fixed before February 7th and during the round of beta version of the release. </p>\n\n\n\n<p>Have a lovely weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v15.0.0-rc.1\"><strong>Gutenberg 15.0 release candidate</strong></a> is available for testing. Sticky positioning, resizable Site editor, updated to the Page List block, modify block style variations from global styles, and a lot more refinements are coming to the Gutenberg plugin</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-78-state-of-the-word-wordpress-6-2-gutenberg-14-8-and-14-9/\">Gutenberg Changelog #78 -State of the Word, WordPress 6.2, Gutenberg 14.8 and 14.9</a> with Birgit Pauli-Haack and special guest Hector Prieto</p>\n</div></div>\n\n\n\n<p>Last April, a group of contributors started working on research on how to best implement an API for to make blocks more interactive. This week, <strong>JuanMa Garrido</strong> shared a progress report: <strong><a href=\"https://make.wordpress.org/core/2023/01/11/update-on-the-work-to-make-building-interactive-blocks-easier/\">Update on the work to make building interactive blocks easier</a>. </strong></p>\n\n\n\n<p>The resources linked in the post are mostly code internals, so they are definitely very technical at this point. With that said, understanding how the new API works, will not be necessary for developers to use this new standard. A standard proposal will be published the next few months. So for now, this is all bit technical and architectural. The work on the underlying framework is shared on <a href=\"https://github.com/WordPress/block-hydration-experiments\">this GitHub Repository</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Munir Kamal</strong>, GutenbergHub, shows you in his latest post <a href=\"https://gutenberghub.com/how-to-find-and-use-block-patterns-in-wordpress/\"><strong>How to Find and Use Block Patterns in WordPress</strong></a>. You learn, how to find patterns in the post and site editor, how to navigate the WordPress Pattern Directory and how to install the patterns via the plugin <a href=\"https://wordpress.org/plugins/extendify/\"><em>Extendify Patterns and Templates</em></a></p>\n\n\n\n<p>If you want to create your own patterns, but don&#8217;t know how to code them, you can use the plugin <strong><a href=\"https://wordpress.org/plugins/blockmeister/\">Blockmeister &#8211; Block Pattern Builder</a></strong>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reports on the <a href=\"https://wptavern.com/lettre-newsletter-theme-now-available-on-wordpress-org\"><strong>Lettre Newsletter Theme Now Available on WordPress.org</strong></a>, It can be used with the newly release newsletter feature in Jetpack plugin or as a stand-along theme. &#8220;The theme puts the focus on the subscription form, which is the most important thing a newsletter landing page can do – make it easy for people to sign up. Beneath the form there is a link to read all the posts, followed by another subscription form. All of these elements in the home page design are blocks, making it easy for them to be removed or rearranged.&#8221; Gooding wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Will Morris</strong> explained the three ways <strong><a href=\"https://torquemag.io/2023/01/table-of-contents-wordpress/\">add a Table of Contents in WordPress</a></strong> in is post for the <em>Torque Magazine</em>. The three ways are: </p>\n\n\n\n<ul>\n<li>Install a plugin</li>\n\n\n\n<li>Use on the Custom Table of Contents blocks</li>\n\n\n\n<li>Create you Table manually in the Block Editor. </li>\n</ul>\n\n\n\n<p>Soon you will be able to use the core Table of Content&#8217;s block once it comes out of the experimental stage. It&#8217;s already available via the Gutenberg plugin. </p>\n\n\n\n<h2 id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>In his post, <strong>Justin Tadlock</strong>, walks you through the<a href=\"https://developer.wordpress.org/news/2023/01/11/a-walk-through-of-layout-classes-in-wordpress-6-1/\"> <strong>layout classes in WordPress 6.1</strong></a>. With the latest release of WordPress, the software has now centralized its layout definitions, created semantic class names, and reduced code duplication on container blocks. &#8220;Originally, this post was intended to be a quick look at the changes to the system for theme authors. However, given the heftiness of the topic, it has evolved into a full overview of the layout framework.&#8221; Tadlock wrote. </p>\n\n\n\n<a href=\"https://developer.wordpress.org/news/2023/01/12/using-the-box-shadow-feature-for-themes/\"><img /></a>\n\n\n\n<p>In his second post published on the Developer Blog, <a href=\"https://developer.wordpress.org/news/2023/01/12/using-the-box-shadow-feature-for-themes/\"><strong>Using the box shadow feature for themes,</strong></a> <strong>Justin Tadlock</strong> took a look at the box shadow support, that what just released in Gutenberg 14.9. As it happens with similar features, the first iteration of box shadow support is only available via code. The interface for the site editor screens are still in the works. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p><strong>Daisy Olsen</strong> held her inaugural live programming session on Twitch this week. <a href=\"https://www.youtube.com/watch?v=JZslURB8tos\"><strong>The recording is now available on YouTube</strong></a>. In this stream, she talked about: </p>\n\n\n\n<ul>\n<li>using LocalWP for local WordPress development, </li>\n\n\n\n<li>the Create Block Theme Plugin, and </li>\n\n\n\n<li>took a look at the code from a couple of existing block themes.</li>\n</ul>\n\n\n\n<p>You need a Twitch account and follow <a href=\"https://www.twitch.tv/daisyonwp\"><strong>DaisyonWP</strong></a> to get notified when she goes live. </p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=JZslURB8tos\"><img /></a>\n\n\n\n<p>In his latest post for <a href=\"https://css-tricks.com/styling-buttons-in-wordpress-block-themes/\"><strong>CSS-Tricks: Styling Buttons in WordPress Block&nbsp;Themes</strong></a>, <strong>Fränk Klein,</strong> takes a detailed look markup of various buttons and how to style them via the theme.json properties. </p>\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/tommcfarlin\">Tom McFarlin</a></strong> continued his series <a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-5/\"><strong>A Backend Engineer Learns to Build Block Editor Blocks with Part 5</strong></a> in which he covers adding color controls to a custom block for the use case, when you want to give the user the option to select the colors for the block themselves. </p>\n\n\n\n<p>McFarlin, recommend the previous articles first as they build on top of each other. So far, he published: </p>\n\n\n\n<ol>\n<li><a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-1/\">Required Tools, Plugin Structure, Dependencies, Block Metadata</a></li>\n\n\n\n<li><a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-2/\">The Backend, The Frontend, Functionality, Styles, a Working Demo</a></li>\n\n\n\n<li><a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-3/\">Block Attributes, Editable Content, Components, Editor Styles</a></li>\n\n\n\n<li><a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-4/\">Saving Data, Styling the Frontend</a></li>\n</ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/phil_sola123\">Phil Sola</a></strong> create a <a href=\"https://github.com/phil-sola/WordPress-Custom-Color-Picker\">Custom Color Picker for WordPress.</a> Sola added some improvements to the existing color picker. It&#8217;s more an experiment rather than a full-fledged solution. His exploration might also be an inspiration for others to start experimenting with WordPress component library. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p>February 4 + 5, 2023<br /><a href=\"https://birmingham.wordcamp.org/\"><strong>WordCamp Birmingham, AL</strong></a></p>\n\n\n\n<p><strong>February 17 – 19, 2023</strong><br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a>&nbsp;</p>\n\n\n\n<p><em><a href=\"https://central.wordcamp.org/schedule/\"><strong>Check the schedule of WordCamp Central</strong></a> of upcoming WordCamps near you. </em></p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>January 17, 2023 – 3pm / 20:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290412094/\"><strong>Patterns, reusable blocks and block locking</strong></a></p>\n\n\n\n<p>January 19th, 2023 &#8211; 10:30 ET / 15:30 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290834241/\"><strong>Live stream: Building an Advanced Query Loop block variation plugin</strong></a> w/ Ryan Welcher <a href=\"https://www.twitch.tv/daisyonwp\">@ryanwelchercodes</a></p>\n\n\n\n<p>January 19, 2023 – 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290363952/\"><strong>Let’s make custom templates in the Site Editor!</strong></a></p>\n\n\n\n<p>January 20, 2023 – 3 am ET / 8:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290363952/\"><strong>Let’s make custom templates in the Site Editor!</strong></a></p>\n\n\n\n<p>January 20, 2023 &#8211; 10:30 am 15:30 UTC <br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/fhqnbtyfccbbc/\">Block Themes and WordPress: Live Stream</a></strong> w/ Daisy Olsen <a href=\"https://www.twitch.tv/daisyonwp\">@daisyonwp</a></p>\n\n\n\n<p>January 23, 2023 &#8211; 10 pm ET / 1 am UTC <br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290412176/\">Patterns, reusable blocks and block locking (APAC time zone)</a></strong></p>\n\n\n\n<p>January 26, 2023 &#8211; 10:30 am ET / 15:30 UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290834152/\"><strong>Live stream: Reviewing developer-focused features in Gutenberg 15.0</strong></a> w/ Ryan Welcher <a href=\"https://www.twitch.tv/daisyonwp\">@ryanwelchercodes</a></p>\n\n\n\n<p>January 31, 2023 – 3pm ET / 20:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290414181/\"><strong>Creating a photography website with the block editor</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <strong>Amit Patel:</strong> Mango Shake Orange Sweet found in WordPress.org/photos</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";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:\"Sat, 14 Jan 2023 22:30: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;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:63:\"WPTavern: WooCommerce 7.3 Introduces New Products Block in Beta\";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:30:\"https://wptavern.com/?p=141097\";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:74:\"https://wptavern.com/woocommerce-7-3-introduces-new-products-block-in-beta\";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:2242:\"<p><a href=\"https://developer.woocommerce.com/2023/01/12/woocommerce-7-3-released/\">WooCommerce 7.3</a> was released this week with the new Products block now in beta. In December 2022, the Products block went into testing in <a href=\"https://wptavern.com/woocommerce-blocks-9-1-0-introduces-products-block-in-beta\">WooCommerce Blocks version 9.1.0</a>. It&#8217;s based on the Query Loop block and is intended to replace all of WooCommerce&#8217;s current product-displaying blocks.</p>\n\n\n\n<p>This first beta version of the Products block allows users to list products based on specific criteria and their layout in the list or grid. </p>\n\n\n\n<img />\n\n\n\n<p>Version 7.3 also introduces three &#8220;commerce-adjacent&#8221; patterns for building WooCommerce store pages. These are patterns that do not tap into WooCommerce store data but allow store owners to customize the images and the links. These patterns were also tested in WooCommerce Blocks 9.1.0. They include an alternating image and text block pattern, a product hero with two columns and two rows, and a &#8220;Just Arrived&#8221; full hero pattern.</p>\n\n\n\n<img />image source: <a href=\"https://developer.woocommerce.com/2023/01/12/woocommerce-7-3-released/\">WooCommerce 7.3 release post</a>\n\n\n\n<p>This release also brings store owners a new <a href=\"https://developer.woocommerce.com/2022/10/11/woocommerce-7-0-released/\">multichannel marketing experience</a> in beta. Under the Marketing menu in the admin, users can now view a list of recommended marketing extensions without leaving the dashboard. These can be installed directly from the Marketing page.</p>\n\n\n\n<img />\n\n\n\n<p>Other notable features in WooCommerce 7.3 include Pinterest and Codisto extensions added to the onboarding wizard, a new warning banner when the tax settings have a conflict, and an improved UI for creating product attributes and uploading product images.</p>\n\n\n\n<p>Check out the release <a href=\"https://developer.woocommerce.com/2023/01/12/woocommerce-7-3-released/\">post</a> to see the template changes and all the new actions and filters available for developers. The full <a href=\"https://github.com/woocommerce/woocommerce/blob/7.3.0/changelog.txt\">7.3 changelog</a> is available on GitHub.</p>\";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:\"Sat, 14 Jan 2023 04:25:34 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;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:64:\"WPTavern: Lettre Newsletter Theme Now Available on 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=141076\";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:75:\"https://wptavern.com/lettre-newsletter-theme-now-available-on-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2595:\"<p>Automattic has published its <a href=\"https://wordpress.org/themes/lettre/\">Lettre theme</a> to WordPress.org. The company <a href=\"https://wptavern.com/wordpress-com-launches-newsletter-product\">launched its newsletter product</a> at the end of December 2022 using Lettre as the default theme. The self-hosted version of this block theme is for those who want to publish a newsletter using Jetpack.</p>\n\n\n\n<img />\n\n\n\n<p>The theme puts the focus on the subscription form, which is the most important thing a newsletter landing page can do &#8211; make it easy for people to sign up. Beneath the form there is a link to read all the posts, followed by another subscription form. All of these elements in the home page design are blocks, making it easy for them to be removed or rearranged.</p>\n\n\n\n<p>Lettre comes with 15 block patterns for building different pages and designs, including about the author(s), a bold color signup, a two-column signup, various designs for the newsletter intro with light and dark background images, newsletter signup with media on the left, newsletter signup with logos for the background, a list of posts, an in-post article promo, three columns of text, and more.</p>\n\n\n\n<img />\n\n\n\n<p>A <a href=\"https://lettredemo.wordpress.com/\">live demo</a> of the theme is available on WordPress.com. The menu items on the demo give a few examples of the different signup patterns in action.</p>\n\n\n\n<p>Lettre is designed to be used with Jetpack&#8217;s Subscription block, which uses WordPress.com&#8217;s infrastructure to manage emails and subscribers. If you like the design but are already using another newsletter service, the Jetpack Subscribe block can be replaced with any other block, including the shortcode block for newsletter services that haven&#8217;t yet made their subscription forms available via a block. Be advised, you may need to write some custom CSS to ensure that the subscribe form matches the original design.</p>\n\n\n\n<p>Lettre is one of the only themes in the WordPress Themes Directory that was made to be a newsletter landing page and certainly the only block theme dedicated to this purpose. Combined with Jetpack&#8217;s subscription feature, this is one of the most seamless ways to distribute a newsletter without all the extra steps of copying the content into a newsletter service&#8217;s editor. Lettre is available for free <a href=\"https://wordpress.org/themes/lettre/\">download from WordPress.org</a>. I wouldn&#8217;t be surprised to see more themes like this pop up now that WordPress.com has launched its newsletter service.</p>\";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:\"Sat, 14 Jan 2023 02:50:40 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;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:97:\"Do The Woo Community: Taking a Deep Dive Into the Current State of Social Media with David Bisset\";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:28:\"https://dothewoo.io/?p=74300\";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:50:\"https://dothewoo.io/current-state-of-social-media/\";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:422:\"<p>David Bisset and I share our current experiences with Twitter, Mastodon, Linked, Tumblr, the Fediverse and open source. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/current-state-of-social-media/\">Taking a Deep Dive Into the Current State of Social Media with David Bisset</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Fri, 13 Jan 2023 10:58:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;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:77:\"WPTavern: New Video Explores Site Building Progress from WordPress 5.9 to 6.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=141039\";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:88:\"https://wptavern.com/new-video-explores-site-building-progress-from-wordpress-5-9-to-6-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3346:\"<p><a href=\"https://wptavern.com/wordpress-5-9-josephine-released-introduces-full-site-editing-and-new-twenty-twenty-two-default-theme\">WordPress 5.9 &#8220;Josephine&#8221;</a> was released in January 2022, but that seems like ages ago when you compare the advances made in site building over the past year. Anne McCarthy, an Automattic-sponsored contributor who heads up the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing Outreach Program</a>, has published a short video that tours the important changes in WordPress over the past few major releases. The video also doubles as a preview of some of the features coming in 6.2.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>If you are using the Gutenberg plugin and have been tracking the relentless progress of the Site Editor, you will notice how limited the design options are in 5.9 and how much more consistent and expansive they are today. In 5.9 users users can only add a Front page template, and the site building interface is disjointed and less polished.</p>\n\n\n\n<p>McCarthy demonstrates how WordPress 6.2 will introduce smoother interactions with browse mode. It will also greatly expand the template options available for users to add and includes a new colorized list view. </p>\n\n\n\n<p>The Navigation block has had a long, rocky journey but seems to be reborn in 6.2. McCarthy showed how much more intuitive it has become with the new experience of editing navigation in the sidebar, and repositioning via drag and drop with live previews.</p>\n\n\n\n<img />\n\n\n\n<p>The instant that Style Variations were introduced in <a href=\"https://wptavern.com/wordpress-6-0-arturo-adds-more-templates-and-patterns-style-switching-and-block-locking-ui\">WordPress 6.0</a>, it seemed they were always with us. Looking back at 5.9 in the video, the Site Editor appears so bare without them. WordPress 6.2 will extend this even further with improved block style previews, a style book, and a new zoomed out view that makes it easy to see changes at a glance.</p>\n\n\n\n<p>Everything coming in 6.2 is converging towards better usability and more design options for site editors. The challenge here is to continue introducing new features without the interface becoming cluttered and chaotic. Many of these features are still being ironed out. For example, McCarthy mentioned that the Edit button is still a work in progress and may soon be relocated to be more prominent in the Site Editor. </p>\n\n\n\n<p>This video gives a quick visual summary of what is being done to wrap up the full-site editing phase of the Gutenberg project before contributors move on to Collaboration. It is worth a watch to see the site building progress that contributors have made in just one year.</p>\n\n\n\n<p>If you want to get involved in making sure all these features in 6.2 are ready for prime time, check out McCarthy&#8217;s latest FSE Testing Call: <a href=\"https://make.wordpress.org/test/category/call-for-testing/\">Find Your Style</a>. It will plunge you into the new features of the Site Editor to perform a few tasks. It&#8217;s essentially a guided opportunity to explore the new interface while contributing back to WordPress, and you will earn a fancy testing contributor badge that will display on your WordPress.org profile.</p>\";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:\"Fri, 13 Jan 2023 03:56:21 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;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:96:\"Post Status: On OpenAI And WordPress With Jannis Thuemmig Of WP-Webooks— Post Status Draft 136\";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:\"https://poststatus.com/?p=146297\";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:104:\"https://poststatus.com/on-openai-and-wordpress-with-jannis-thuemmig-of-wp-webooks-post-status-draft-136/\";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:43263:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Jannis Thuemmig, founder of WP Webhooks, joins Cory Miller to discuss Open AI and WordPress. Jannis is passionate about utilizing the power of technology to increase efficiency. WP Webhooks is exploring the ways Open AI can be used to revolutionize website processes and management. It seems we are only at the tip of the iceberg for what is possible when working with WordPress and Open AI. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">59</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, Jannis Thuemmig, serial entrepreneur and founder of <a href=\"https://wp-webhooks.com/\">WP Webhooks</a>, dives into the world of automation and Open AI with Cory Miller. Together they look at what is currently possible within the world of integration and automation within WordPress. Then they lean into what is unfolding as Open AI finds its way into the mainstream and discuss what this might mean for the WordPress community.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Integrations & Automations to Save Time: </strong>Everyone is in need of some kind of automation. Our main goal is to save time by creating automations wherever there are pain points. Rather than doing things manually, WP Webhooks enables you to automate them within your dashboard.</li>\n\n\n\n<li><strong>Avoiding Automation through Software: </strong>Using software as a service partner means hosting your data on their platforms. Using Webhooks for integration and automation allows you to keep things on your server and within your complete control.</li>\n\n\n\n<li><strong>Possibilities with Open AI Integration: </strong>Webhooks is focused on using Open AI as an advantage to speed up processes by creating integrations between services and generating original content. They are working on finding cool use cases and understanding the actual power of what it makes possible.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"is-layout-flex wp-container-26 wp-block-columns has-theme-palette-8-color has-theme-palette-5-background-color has-text-color has-background\" id=\"WP-Engine\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3 class=\"has-theme-palette-9-color has-text-color\" id=\"sponsor-wpengine\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/wordpress-vip\">WordPress VIP</a></h3>\n\n\n\n<p>Founded in 2006, WordPress VIP is <em>the</em> agile <a href=\"https://wpvip.com/enterprise-content-management-system/\">content platform</a> that empowers marketers to build content both faster and smarter so they can drive more growth. We empower content and development teams with the flexibility and ubiquity of WordPress—the agile CMS that powers more than 40% of the web—while ensuring the security and reliability organizations need to operate at scale</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\">\n<div id=\"WordPress-VIP\" class=\"wp-block-image is-style-default\"><a href=\"https://poststat.us/wordpress-vip\"><img width=\"300\" height=\"132\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/06/WPVIPlogo-1-300x132.webp\" alt=\"WordPress VIP\" class=\"wp-image-99911\" title=\"WordPress VIP\" /></a>WordPress VIP</div>\n</div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://www.linkedin.com/in/thuemmig/?originalSubdomain=de\">Jannis Thuemmig</a></li>\n\n\n\n<li><a href=\"https://wp-webhooks.com/\">WP Webhooks</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://openai.com/\">Open AI</a></li>\n\n\n\n<li><a href=\"https://zapier.com/\">Zapier</a></li>\n\n\n\n<li><a href=\"https://teachable.com/\">Teachable</a></li>\n\n\n\n<li><a href=\"https://wp-webhooks.com/blog/how-to-use-openai-within-wordpress-yoast-seo-example/\">How to Use Open AI within WordPress (Yoast SEO example)</a></li>\n\n\n\n<li><a href=\"https://circle.so/\">Circle</a></li>\n\n\n\n<li><a href=\"https://slack.com/\">Slack</a></li>\n\n\n\n<li><a href=\"https://twitter.com/karimmarucchi\">Karim Marucchi</a></li>\n\n\n\n<li><a href=\"https://crowdfavorite.com/\">Crowd Favorite</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li>Jannis Thuemmig (Founder, <a href=\"https://twitter.com/wp_webhooks\">WP Webhooks</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>GMT20230105-161248_Recording</p>\n\n\n\n<h1>GMT20230105-161248_Recording</h1>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Hey everybody. Welcome back to Post Status Draft. This is another interview and discussion in our Product People series, and I\'ve got someone I\'ve met, let\'s see, last year or the year before Giannis and doing good work, but we were talking about AI and that led to OpenAI and something they\'re doing with WP Webhooks.</p>\n\n\n\n<p>So that\'s what the conversation is gonna be about today. But Giannis, welcome to the draft podcast. Would you tell us a little bit about yourself and your work and WordPress?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Sure, totally. Thanks for having me here. Uh, it\'s always an honor. Uh, my name is Giannis. I\'m from Germany originally, but started traveling a long time ago and since then, I basically work as a digital dumper from anywhere.</p>\n\n\n\n<p>And I would say with a, with a very, very deep focus on web. And specifically in automation. This is where W P Airport comes from. So we are basically focused on connecting different services and WebPress plugging to let them talk to each other and kind of just automate the [00:01:00] system and get rid of the human error and save everyone a little bit of time and money, which is really interesting nowadays.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I, and I love it. Uh, one part I\'ll just sidebar real quick is I know when you say digital notepad, uh, the several times we\'ve had zooms, I\'m like, where are you in the world today, y\'all? It\'s like, . Um, so I, I love that. I love to see the nude, like landscapes you\'re in every time we talk. Um, okay. So WP Webhooks, um, I know you\'ve been, so automation is key.</p>\n\n\n\n<p>It\'s about efficiency, um, like really saving that time. In the processes you\'re doing, um, what, tell me what all does WP Webhooks do?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> So basically it allows you to use a set of redefine integrations to let other services and WebPress plugin specifically talk to each other. So let\'s say there\'s, um, a woo commerce shop, for example, and you have a, a custom programmed plugin that has no integrations [00:02:00] whatsoever.</p>\n\n\n\n<p>You can use our plugin as a middleman to allow sending data in between, and that works with mostly any kind of WebPress plugins as well as external data like, uh, external services, something like Zapier or make or integrated. So the, the basic main goal is to just make them compatible, which they, in a lot of cases, aren\'t from the beginning. Or if they are, they\'re often very limited, which is something we realized as well. So we just want to kind of get that interoperability to WordPress, which is something that was just lacking over the last couple of years.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I, I love that. I know Zapier has used quite a bit uh, obviously we\'ve used it in the past at, at Post Status because of all the external services, and you\'re trying to link these and do some things that certain pieces of software doesn\'t do out of the bat.</p>\n\n\n\n<p>So I, I love the premise of web hooks for sure. Uh, WP Web Hooks, what are you seeing or finding? Customers are gravitating to webhooks [00:03:00] for, like is there specific tasks that stand out that people are using these over and over and over and going, this is what I need. I don\'t want to pay for Zapier or some other alternative, I wanna do something here with my WordPress site.</p>\n\n\n\n<p>What are you seeing from your customers?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> So I\'d say that\'s not a specific use case. There\'s, uh, quite a lot. So everyone, literally, everyone who\'s in the, in the, has a web presence or has an online shop or something related and does something with website. Everyone is in in need of doing some kind of automations.</p>\n\n\n\n<p>Let it be to automatically book orders into your accounting system or synchronize your properties from a property management website with your WebPress website. Or let\'s say you have a Teachable account and you sell online courses and you want to synchronize your students with a WebPress website to give them extra features.</p>\n\n\n\n<p>This is stuff that they are using it for. So basically wherever there\'s a pain point and there\'s some time that just can be avoided by automating it through software. This is something where we are, um, jumping in [00:04:00] and it\'s specifically interesting right now for people that are very critical about privacy because especially in Europe, a lot of people don\'t want to use software as a service partners like Zapier or Integra.</p>\n\n\n\n<p>Because they are hosting their data on other platforms, right? So they have no full control over it, which comes very handy with our plugin because you have your own server, so everything runs on your own server. You are in full control where your data is, what your data does. And this is a very, very critical point that is, uh, always, always well seen at the moment.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, yeah, for sure. I, you went to a subject I didn\'t even think about, which is if you don\'t want your information out there on another service, having it in in WordPress, something you control. I think that\'s a key facet. Before we start talking about, uh, AI and specifically OpenAI, what are you most excited about with webhooks this year?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Ooh, for sure. Bringing that AI space model [00:05:00] web. Because we had so much fun over the last couple of months trying these things out, seeing in which direction it goes. And it\'s just incredibly fun to, to play around with it because the possibilities are really endless. And we are, we are fully about saving time.</p>\n\n\n\n<p>Right? And this is something we can even use to leverage more time out of our daily task, which is really, really good. Okay.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well let\'s roll into that because I think that\'s one of the most, uh, uh, Interesting themes in our community is ai. I\'ve seen a couple tweets saying AI is gonna revolutionize, um, a lot of stuff with a website by the end of 2023.</p>\n\n\n\n<p>I can\'t remember who said that online. And I was like, well, I\'ve been paying attention enough. But talk to me about ai, OpenAI and what you, you see on the horizon for, um, for WordPress particularly, and opportunities and possibilities. . Yeah,</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> so ai uh, specifically in our case with OpenAI, uh, there\'s, uh, a little differentiation.</p>\n\n\n\n<p>So [00:06:00] right now it\'s very much hyped, the G P T three. So the, the kind of chat ai as you can, as you can, uh, think of, which is basically you just type in something and it, it gives you like a very human answer back, which is really, really incredible. And, uh, we specifically talk about the, the OpenAI api, which kind of allows you to.</p>\n\n\n\n<p>Communicate data on a programmatic level, which means you basically don\'t even need to type something yourself, but you can already use a service to let these things run through the web automatically without ever touching this kind of data. And this is, this is just something that that works very well with, with the automation part.</p>\n\n\n\n<p>Right. So we are, we are basically looking into bringing more possibilities that AI through non-static data, and, uh, what I mean by non static data, it\'s probably interesting to, to understand what an AI actually is. So it\'s a pre-trained network, right? It has the data that was feeded to it at some point. And with OpenAI, it\'s made from [00:07:00] mostly 2021.</p>\n\n\n\n<p>So it has no actual new data. If you ask it something like what happened yesterday, for example, it could probably not give you an answer to, you could give it the information if you have it yourself. But it can never give you like the, the news and accurate information. And using things like automation, you can basically bring a whole new word to it because you can kind of give the AI the possibility through response and, uh, requests to send data through automation, uh, validate it somewhere else and send it back to the AI and tell the ai, Hey, look, there\'s new information.</p>\n\n\n\n<p>We can use that, uh, or, or learn about that and, um, send me some more information or summarize me something. So it\'s, it\'s just a very interesting time in, in regards to giving the AI actual information that you can feed it, uh, that is currently not within its its own, um, possibilities.</p>\n\n\n\n<p><strong>Cory Miller:</strong> So you said something there.</p>\n\n\n\n<p>Um, I, I haven\'t even gotten that in depth with OpenAI, but So in [00:08:00] 2021 they fed it a ton of data you\'re saying, and then trained it to be able to, to answer questions and things.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Yeah, exactly. So basically they had a, a huge dataset or couple of datasets for sure about the information that they fitted. And the AI can basically make.</p>\n\n\n\n<p>An answer that is, uh, in a human real reform, and that seems like it is made from a human, but the data that was fed is all from 2021, right? So it is a static data if we, if we want to hear it or not. So if you\'re gonna ask the ai, what is the latest model of iPhone, for example, it\'ll probably tell you something like it\'s the iPhone 13, because I don\'t think it has information about iPhone 14.</p>\n\n\n\n<p>That would be something cool to try, but I guess it must be, uh, outdated information. And with that gap of, of using that, that automation in, in connection with ai, you can kind of close that gap and you can actually feed it real time data and use that data to, to do certain things within the AI [00:09:00] and, uh,</p>\n\n\n\n<p><strong>Cory Miller:</strong> I see, thats a new one.</p>\n\n\n\n<p>Yeah, it does. Um, totally to me, and I\'m asking as a newbie to all of this, um, because I\'ve used it and I\'m like, this is pretty dang fast. And I\'m like, how the heck are they doing that? That makes total sense. And then from the training side, um, the model itself is, I was like, gosh, if this had access to that, and you could just ask it questions like that.</p>\n\n\n\n<p>It\'s the, it\'s the a hundred times better Google. Yeah, because, yeah, it, like, I was, I, I mean I asked what are the strengths and weaknesses of WordPress, for instance, and it came back. Um, but knowing it\'s, it\'s a little bit lag on the data side is interesting to me. Um, but I saw the potential for this to truly.</p>\n\n\n\n<p>Revolutionized some things on the web. Um, so it\'s, it, it\'s been really intriguing and I mean, I asked it all kinds of questions that I was just actually curious about and seeing what, not just from the what, [00:10:00] how the model would work, but the answer. And I was like, this is like a perfectly uh, formatted.</p>\n\n\n\n<p>Informative, um, short essay that I would\'ve gotten in college, you know, so that\'s</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> intriguing. It\'s actually you can, you can write like on demand stories for your kids based on your own characters. Just type in a sentence, say you run a short story and it spits you out a short story that you can read them from going to bed.</p>\n\n\n\n<p>It\'s amazing. It\'s just like incredible.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I\'m gonna have to try that today. I, I continue. This subject fascinates me and I think it\'s something we need to be thinking about and looking at and talking about in WordPress and Post Status, because this new technology coming and then how WordPress is placed in this.</p>\n\n\n\n<p>And for years, I think this is a segway to talk about OpenAI and WordPress specifically. But you know, I\'ve either built sites for people or known a bunch of people that build sites for clients. And you turn on this awesome, it\'s like you turn this car over, you pull this car up to \'em, and [00:11:00] you\'re like, here\'s your car.</p>\n\n\n\n<p>But you gotta drive it with content, with things inside the site, and it\'s such a great vehicle for that. But oftentimes people get hung up on that part of. Oh, I don\'t know what to, I don\'t know how to drive my car. Right? Like these, you know, WordPress sites with the right architecture, the right things can really drive and make a dent.</p>\n\n\n\n<p>That\'s our kind of thing with WordPress is like it\'s magic like that. But you still have to like, Drive it, you have to put gas in it and drive it, uh, with content. So that\'s a compelling angle for me with OpenAI. And I\'ve heard about all these things. Before we segue specifically to the integration you\'ve done too and some possibilities there, what, where do you see all of this and WordPress going?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Like, that\'s a very interesting question. Yeah, yeah. Uh, I think, I think it will be in relay, I mean, it\'s, right now we are specifically in the content age, right? So I, I\'ve seen a lot of people. [00:12:00] Going into the space where they try to create on demand articles using an ai, which is probably a terrible idea just through plagiarism because it\'s very easily detected if you don\'t lose like a rewriter and you use your very own wordings in between.</p>\n\n\n\n<p>So this is something that we will see switching, definitely. But what I see as an advantage in the future with WebPress is that people will use to. We, we learn to use AI for the advantage in the sense of speeding up their process. So it\'s also kind of a, a way of automating things, uh, in the sense that they don\'t need to write their content anymore from scratch, or they don\'t need to write a, think about copywriting that much.</p>\n\n\n\n<p>They just ask the ai, it\'s bit something out. They put it in, maybe adjust it, tweak it in their own way so that it has their very own style. And they probably just make the, the way of, of riding blocks 10 times a hundred times faster than it\'s right now. So we\'ll definitely see like a, a boost in performance and [00:13:00] probably block block posts over the long term.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Well, so that leads into this specific integration you have and the tutorial I, I was looking through before we started. Um, so you saw OpenAI has an api and tell us, tell us about that in WP Web Web Hook.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> So, yeah, we, we basically started, um, after trying a couple of times how OpenAI works to, um, to integrate it with our plugin.</p>\n\n\n\n<p>So we, we usually go for creating integrations for different services and plugins, and, uh, in that case it\'s, it\'s once separately for OpenAI, which makes it compatible with all of the other services and, uh, plugins. We are integrated. And the main goal was just to provide the integration, right? Because it\'s so new, barely anyone understands the actual power of it and what is possible.</p>\n\n\n\n<p>So we, we just kind of created it out of the blue with a thought of, Hey, it would be cool to just have it, you know, let\'s see what, what\'s going to happen. And right now we are basically just [00:14:00] working on finding cool use cases. And, uh, there are definitely a couple, uh, like I\'ve, I\'ve, uh, showed you earlier.</p>\n\n\n\n<p>We already have a blog post on our. That basically describes how you can auto generate method descriptions using OpenAI and Yost seo. So you basically just feed it in the title and it spits your order, perfectly made method description that you can just use or adjust as you want. And these kind of things, they just now come through trial and error basically.</p>\n\n\n\n<p>And, uh, it\'s, it\'s very interesting to see where it goes. And I can see that with these kind of automat. Um, we can also provide what I mentioned earlier, that that possibility of feeding the AI new information that is not available within the AI itself. So because we can make these kind of workflows, um, if that makes sense.</p>\n\n\n\n<p>And this is, uh, this is mostly what we are trying to do right now. We basically just working on, on use cases, see what\'s possible, trying out different things and it\'s a super, super exciting. [00:15:00]</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, absolutely. Because I mean, you talk about this car, you some a a site builder turns the car over and they start to use it.</p>\n\n\n\n<p>But that meta, uh, description is one thing. Like I honestly confess, I never do, you know, but it\'s, it\'s helpful, it\'s vital. And so like that one little use case in the bigger picture of what I can do, I think starts to step us into this and it is really interesting. Um,</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> oh, totally. Yeah. This is, this is literally just the, the tip of the iceberg.</p>\n\n\n\n<p>If you want, you can basically let the AI create a, a full schema, uh, like a shima for your, for your website. So whenever there\'s a blog post, it can write the how-tos and everything in, in kind of adjacent format and, uh, spits your order perfectly well formatted SEO description and, and everything keyboards, the, the, the whole how to, and this is just, it\'s just such a time saver.</p>\n\n\n\n<p>It\'s incredible.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, okay. Do you have a tutorial on that [00:16:00] too? Because that\'s really interesting. Um, , or if you don\'t, we need one. Um, but so you\'re going into OpenAI or chat GPT or whatever, and then you\'re saying you\'re asking a question or something like that, and then it\'s gonna give you back those things.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Yeah, exactly. It\'s just you literally ask it just a humanly written question, something like, give me back adjacent with each of these information. And it spits you out adjacent with each of the information. And Jason, you can always use on a technical level, right? So we can just leverage that out and use it through our plugin to use it in different automations and do different things.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Oh, that\'s super cool. Well, what do you have anything you wanna share about what you\'re doing next with this WP WebHooks?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Um. As a, as a use case, it\'s a, I mean, we, we definitely, for, for now we really try to just work on the OpenAI things mm-hmm. and try to find some cool use cases there. Uh, we had a lot of, um, a lot of actually customers reaching out about the possibilities as well and how exactly it works because the models [00:17:00] and the configuration is a bit complicated if you, if you\'re not fully aware of it.</p>\n\n\n\n<p>But, uh, yeah, we, we just follow the standards and, uh, things should be fairly easy. But yeah, for us, it, it\'s mostly, mostly OpenAI and creating new integrations. That\'s something we\'re, we are hardly focused on at the moment.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I, I really think this is, like you said, the tip of the iceberg that, um, I\'m really intrigued by our WordPress community post at Post Status to go, okay, here\'s this cool technology.</p>\n\n\n\n<p>How do we translate this into practical? Um, uses for the end client, the end user in WordPress. Um, so that, that\'s, that\'s interesting. We\'ll be excited to hear what, what you find in explorer and launch launch next.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Yeah, you should just see the block post, uh, our, our, our block. There will be a couple of more tutorials coming.</p>\n\n\n\n<p>They\'re already in the making, so in the next days we should see someone there.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Perfect. All right. Um, okay. So. You, you [00:18:00] showed me something as like this. I think this is just showing the power of what it could do when we start to get these types of integrations into WordPress. Do you mind showing me the one you were telling me about?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Totally. Yeah. Not a problem. Of course. I\'m just gonna share my screen, probably this one. Yes, so I, I was basically just fooling around the other day on. With our integration, trying to find some new cool ways we can use to, to present the OpenAI integration. And, you know, like, like I mentioned earlier, you can kind of ask the AI to create adjacent format, um, with specific data.</p>\n\n\n\n<p>So Jason is basically just a structured way of presenting data within the web that is something that the, the browser or the, the server can. And in our case, we, we, we wanted to have like, like in here, uh, just a simple field that you can write something and based on whatever you write, it updates the block post of [00:19:00] your choice.</p>\n\n\n\n<p>So in our case, we just created a quick contact form seven form as we have an integration with contact as well. And we connected that with open. To create a so-called Jason and update a block post based on a specific information. So I can just demonstrate it here. You can see I have three block posts available and let\'s just take this one.</p>\n\n\n\n<p>I just need the ID because that\'s the way we wrote it. So we have ID 97, and what I would like to do is, let\'s say I want to update the, the title of this post, right? So I can, I can write something like, Update the post with the id, let\'s say post title</p>\n\n\n\n<p>with ID 97 and change it to, um, this is a new title based on OpenAI. So it\'s, it\'s basically what we read as a, as a human tech, [00:20:00] right. But if I submit that and I let our workflow. The AI basically interprets that and, uh, changes it based on our parameters within, uh, Jason. And when I refresh here and, um, the flow ran, it should display it.</p>\n\n\n\n<p>See if it doesn\'t, no, it doesn\'t. Uh, so the thing is, because it depends what you feed the ai. So the AI basically needs to understand what you do. And, uh, in some, in some cases, that\'s, that\'s the problem with ai. It fits you out text, right? So you try to, you need to, to format. And kind of use the text in a different way so we can see.</p>\n\n\n\n<p>Okay. Just didn\'t follow it. Just what I\'m gonna do is, so to, to just, so the very same example, I just tried to type the similar thing again. Let\'s try it again. So, um, update the post with the ID 87 and change the title to, [00:21:00] um, OpenAI. Something new. Let\'s see now</p>\n\n\n\n<p><strong>Cory Miller:</strong> I always love live demos, . Yeah, I know. When you were showing me before I was like, wow, that\'s super cool.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Yeah, it really depends on the AI, if I, if I do it right or not. Um, but it seems like you see that it\'s not completed. So basically something stopped within the AI and uh, yeah, I would need to, I would need to see what.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, so you were showing, you were showing just now the webhooks, uh, pro dashboard. Do you mind taking us for a spin around the Webhooks Pro dashboard?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Uh, yeah, totally. So it\'s basically like, you know, standard WebPress plugin and stuff. On the site menu we have, uh, our W2 Web Hooks Pro, um, menu item, and basically it\'s, it\'s separated into two main things, which is the automations, the flows, and the web. So there\'s, there\'s kind of a difference in between, because originally we came from the web website, which means it\'s kind of like a [00:22:00] one-way street for information to present.</p>\n\n\n\n<p>Let\'s say you, you update a, a post on your WebPress website and based on that post you can send data into a, a certain direction, like directly and instantly to inform another service about that there\'s a new post. But then we realized that there\'s more of a need to actually automate kind of certain work.</p>\n\n\n\n<p>And then we created something called Flows, which basically allows you to connect the, or create a consecutive order of triggers and actions. So web book triggers and actions to do certain things in a, in a specific flow as we call it. So I just head into it, uh, into one, which is the human posture. This was the example I tried to show you, which, uh, was currently not working out because of something that I need to see. Um, but what we have basically, within the floor. You can see we have a trigger, right? The trigger fires on a contact form seven. Within the settings, we basically selected the form that we created earlier, which is [00:23:00] embedded in, in the site.</p>\n\n\n\n<p>And we don\'t want to send the email as we just want to send the data to OpenAI. And it was tested. We set up some conditionals, um, stuff that\'s not really important for now, but, uh, this is, this is basically what causes the actual workflow to fire, right? So, This specific trigger comes along with all the data that was sent within this form, and we then reuse the data in the other kind of actions here.</p>\n\n\n\n<p>And as you can see, the first action is something, uh, is our OpenAI integration, where we basically sent that information that we had earlier, as you can see here, to OpenAI as a, as a text. And this is, this is what we read. So it basically says, get the posterity and the PostIt from the JSON, uh, in the JSON format.</p>\n\n\n\n<p>This is the sentence, and the sentence basically is a dynamic string that comes from the input that we sent within this form. So it makes more sense if, if we go through it logically while, while building it. But, um, [00:24:00] when you click into a field like this, you will see it shows a dropdown, and inside of the dropdown you will see all of the information that was sent within the trigger, including the question like, change the title of the post idea, ???</p>\n\n\n\n<p>So this is basically what we selected here. And this is kind of more details about the OpenAI stuff. Sure. And yeah, when you, when you continue safe, you can test the action directly within here. That\'s something I can try, um, just as an example to see what comes back. So basically right now I\'m sending a real request with the data that we got earlier.</p>\n\n\n\n<p>And this is basically the response. So we can see, we got some text back from the AI, which looks a bit weird as it\'s text. But within our plugin we have something like a formatter, which allows us to format the data and change into something readable. So I\'m just gonna quickly do that to, to give you a better example of what we get back.</p>\n\n\n\n<p>So as you can see, this is what we get back from the AI or from the formatter, which came originally from [00:25:00] the OpenAI. And this specific information we want to then use in another action to actually update the post. And this is, this is literally everything it does. You can just think it of simple steps that, like we have a trigger.</p>\n\n\n\n<p>The trigger causes, uh, runs whenever the, the specific contact form was sent, then we sent the data to OpenAI. We format it in a certain way, and then we update the post based on whatever data we got back from the OpenAI. Excellent. So, yeah, exactly. This is, this is basically it for that.</p>\n\n\n\n<p><strong>Cory Miller:</strong> What, what are some of the automations.</p>\n\n\n\n<p>Yeah, I, I saw the create the automation. So what are the, some of the things that webhooks can do from the automation side?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Uh, you mean some examples for example? Ah-huh. Yeah. Yeah, yeah. Like I say, you can, you can, for example, connect the different services together. Let\'s, for example, say you have newcomer, right?</p>\n\n\n\n<p>So you can go to the, to the integration [00:26:00] screen. You can install any kinds of integrations that you, you are working. So we have around hundred right now. And let\'s, for example, say you have commerce installed, right? So you can then install commerce once it\'s, once it\'s available on your website and within one of those automation workflows, you can then say, whenever commerce fires, then send the data using, uh, a WebBook, for example, to mm-hmm.</p>\n\n\n\n<p>your bookkeeping system. Or send, send an email using the WordPress integration. So in here I can show you. Click send email, and then you have the possibility to send an email directly from your WebPress to the customer whenever, whenever, uh, an order was created. So it basically, it basically just allows you to do certain things that you would manually do within your dashboard.</p>\n\n\n\n<p>Mm-hmm. ? Yes. In an automated way</p>\n\n\n\n<p><strong>Cory Miller:</strong> There\'s a bunch of those things for the Post Status setup out the way. I\'m like, oh gosh. Yeah.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> I can\'t imagine. Same here.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And, and what are, what are workflows to, uh, or I\'m sorry, it\'s [00:27:00] webhooks. Oh, I thought that\'s a workflow somewhere. I read that wrong. Okay. Yes. So what</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> I can show you, it\'s, it\'s basically separated in two parts.</p>\n\n\n\n<p>It\'s sent data and received data. What it basically means is these are kind of the triggers available, right? So whenever a user created, or when a user was deleted or when a form was submitted, you can send data to a specific url. Let\'s say, for example, I want to send a URL to my website, um, I cannot call it demo, and I, I add my api endpoint here and I edit, and then you can see it here. Which basically means when ev, every time a user gets created, you can send a direct webhook request to this url and you can test it, you can customize it with, with more features, more setups, um, based on your needs. Gotcha. And this is, this is what I mean earlier, like a, a direct connection.</p>\n\n\n\n<p>And the receive data is basically the exact opposite. So instead of sending data out on a specific event, you send data in and to do something specific. So you can, for example, activate a plugin. As you can see, you can call a PHP [00:28:00] function, you can create a comment, a post a user. So we have basically mostly all of the options of WebPress available through, uh, web as well.</p>\n\n\n\n<p>Excellent.</p>\n\n\n\n<p><strong>Cory Miller:</strong> You don\'t have a Slack integration, do you by chance ?</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Um, that\'s the, that\'s the thing. Depends what Slack has as an api. Um, if they truly have an API and if they have an api and it can be integrated with something like an API key or a hero token, it can also be used with our plugin. Um, and that\'s an interesting point.</p>\n\n\n\n<p>That\'s good that you mentioned that we have something like,</p>\n\n\n\n<p><strong>Cory Miller:</strong> um, it\'s a, it\'s a. Post Status specific thing, but I think a lot of membership sites, which is a big trend too. People building membership sites, course sites, you know, a lot of people like us obviously use Slack. Being able to, um, one, this is a nuance and I\'m, uh, sorry for sharing, but this is like create a private group or something like that.</p>\n\n\n\n<p>I\'ve looked in some of the Slack API and. I\'m using us as a [00:29:00] test for a second to say it is a broader thing. I think a lot of membership sites, they\'re using Circle, for instance, maybe they want to use something else. So I, I stopped you though. Keep going.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Oh, no problem. No problem. Um, yeah, but what I, what I mentioned earlier is that, like you say, with, with, uh, slack, we can kind of integrate with any service that allows, like simple API calls or web and uh, we have an integration available that is called Web itself.</p>\n\n\n\n<p>So, When you install one like that, for example, and you go to, let\'s say an automation workflow, I can, I can come within here, add a new action, and you see I have a WebBook endpoint available, which basically allows me to send data or send a request to a specific site. So if you have Slack, you would, you would uh, add your Slack U URL here, for example, right?</p>\n\n\n\n<p>Slack API or something, and then you. Select the method you want to use to send data, and you can send the data and add it here along. [00:30:00] So if there\'s a, a service out there that just follows the standard rep hook or api, um, standards, you can integrate them as well with our plugin. So there\'s not directly, uh, integration necessary. Basically.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Excellent. Well, one thing that\'s intriguing about this is for as long as I\'ve been in WordPress, I, it, it has led the way in truly democratizing publishing, but over the years, you see Facebook, Twitter, what name, whatever default. Closed wall type garden come out. And um, I just did an interview with Mattias who does activity plug plugin for the Fed averse.</p>\n\n\n\n<p>And I was like, the, you, you think about what you\'re doing here with webhooks and then the Fed averse is kind of bringing that power back to the. To the user and saying, okay, fed averse can help. To me, I just see the potential to go, let\'s, let\'s decentralize some of the social [00:31:00] networks. So when a billionaire buys the next thing, or they change their policy at one of these closed set social networks, you\'re, you know, all these people are affected by it.</p>\n\n\n\n<p>And, and taking some of that control. So that\'s where I see FE averse. And then I go, what\'s the power here is. Ground zero for what you\'re doing is your WordPress site, and with things like tools like this, then you can start, I don\'t know, it\'s just helping bridge that gap of power. There\'s so much usability and features that these closed gardens have, but tools like webhooks and potential with the Fed averse is like bringing some of that power back, and I see WordPress truly being in the space to lead and innovate and bring that power back to the users.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Totally. Yeah, I fully agree with you. The, the, an interesting point about that is actually that using our plugin, for example, you can use it kind of as a standalone on WebPress. So if you say you want to make automations, you don\'t necessarily need to use WebPress, but [00:32:00] you can just set up a WebPress environment and install our plugin and you can.</p>\n\n\n\n<p>Automate external services through WebPress. Right? So you can use it kind of as a middleman for yourself without actually using WebPress.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And you still maintain control</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> in a lot of ways you have full control. Yes.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Even if it\'s not a public facing site where you have content on like using that, that\'s the power, that\'s the other side of WordPress.</p>\n\n\n\n<p>Do this has been become this huge power powerhouse of a, you know, a software. I talked to a lot of people on the enterprise and they mentioned. the connections. There\'s a, um, my friend Kareem at Crowd favorite talks about WordPress being the open source hub to connect services. So, like your example there.</p>\n\n\n\n<p>I, I resonate with it cause I just talked to Kareem a couple weeks ago. I love that example. Yeah. Yep. Well, Gianni, anything else you wanna share, um, that you all have going on or you\'re excited about or anything I forgot to.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> Uh, yeah, I\'m excited to make this tutorial work, so I think the next blockbuster [00:33:00] will see is probably about this example.</p>\n\n\n\n<p>Okay. .</p>\n\n\n\n<p><strong>Cory Miller:</strong> I love it. Just to have, I love it. That\'s the beauty of being a part of this community as I get to ask cool, smart people that can do these things and see, see how they go. But I, I\'ll be playing around with open api. OpenAI\'s, API\'s, mouth, um, just cuz I was playing with that and like, wow, this is powerful and I love this kinda stuff and I love there\'s people like you experimenting with it, testing it, and giving users, um, that opportunity to do that.</p>\n\n\n\n<p>Um, so thanks so much today for being on the Post Status draft podcast. Uh, this is under our product People series. I love our innovators in our community like you, and so thanks for joining me today.</p>\n\n\n\n<p><strong>Jannis Thuemmig:</strong> My pleasure, really. So it\'s an honor. Thank you very much as well for inviting me.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";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:\"Thu, 12 Jan 2023 14:44:47 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;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:85:\"WordCamp Central: WordCamp Entebbe: First Wordcamp to happen in Africa in 2023 is on!\";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:39:\"https://central.wordcamp.org/?p=3158482\";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:108:\"https://central.wordcamp.org/news/2023/01/wordcamp-entebbe-first-wordcamp-to-happen-in-africa-in-2023-is-on/\";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:3126:\"<p></p>\n\n\n\n<img src=\"https://entebbe.wordcamp.org/2023/files/2022/07/Wordcamp-Artwork-copy-1024x1024.jpg\" alt=\"\" />\n\n\n\n<p><a href=\"https://entebbe.wordcamp.org/2023/\">WordCamp Entebbe 2023 </a>is set to be a major community event for WordPress developers, website designers, online publishers, students, and teachers to come together and share knowledge and experiences, network with other WordPress users, and gain inspiration for their work. Taking place on Friday, March 10th and Saturday, March 11th at the Uganda Wildlife Education Centre (UWEC) in Entebbe City, this WordCamp will be the first to happen in Africa and is poised to be a memorable event for all attendees.</p>\n\n\n\n<p>The event will feature a range of activities, including beginner&#8217;s training, inspirational talks, showcases, best practices, and the latest trends in WordPress development. In addition, there will be a Women in Tech panel discussion, aimed at inspiring and empowering women-led businesses to thrive in the technology industry. A Teacher&#8217;s Workshop will explore the integration of WordPress in the local education curriculum, providing teachers with the tools and resources they need to introduce WordPress to their students for web design projects and assessments.</p>\n\n\n\n<p>Attendees will also have the opportunity to take a free tour of the <a href=\"http://uwec.ug\">Uganda Wildlife Conservation Education Center</a>, where they can learn about the animals of Uganda and the ecosystems in which they live. The center, which was founded in the 1950s to accommodate confiscated and injured wildlife, has grown considerably in recent years and is considered a premier facility for showcasing wildlife on the African continent.</p>\n\n\n\n<p>Accommodation options are available for those traveling to Entebbe for the first time. Attendees can find a list of hotels and guest houses through booking.com <a href=\"https://bit.ly/entebbehotels\">https://bit.ly/entebbehotels </a>or by contacting the WordCamp team at <a href=\"mailto:entebbe@wordcamp.org\">entebbe@wordcamp.org</a> for more information and guidance. The full schedule of activities will be published soon, and we look forward to welcoming you to WordCamp Entebbe 2023!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Get Involved</strong></h2>\n\n\n\n<p>There are several ways to get involved! Check out the details below:</p>\n\n\n\n<ul>\n<li><strong>Purchase Attendee Tickets:</strong>&nbsp;<a href=\"https://entebbe.wordcamp.org/2023/tickets/\">https://entebbe.wordcamp.org/2023/tickets/</a></li>\n\n\n\n<li><strong>Call for Sponsors:</strong>&nbsp;<a href=\"https://entebbe.wordcamp.org/2023/sponsors/\">https://entebbe.wordcamp.org/2023/sponsors/</a></li>\n\n\n\n<li><strong>Call for Speakers:</strong> <a href=\"https://entebbe.wordcamp.org/2023/call-for-speakers/\">https://entebbe.wordcamp.org/2023/call-for-speakers/</a><br /></li>\n</ul>\n\n\n\n<p><strong> Join the discussion via #WordCampEbbs hashtag on Twitter</strong></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a class=\"twitter-timeline\" href=\"https://twitter.com/WordcampEntebbe?ref_src=twsrc%5Etfw\">Tweets by WordcampEntebbe</a>\n</div>\";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:\"Thu, 12 Jan 2023 11:58:51 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Kasirye Arthur\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;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:104:\"Do The Woo Community: Reflecting on the Past and Embracing the Future for WooCommerce with Paul Maiorana\";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:28:\"https://dothewoo.io/?p=74261\";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:56:\"https://dothewoo.io/2022-2023-woocommerce-paul-maiorana/\";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:442:\"<p>It\'s that time of year again when Paul Maiorana, CEO of WooCommerce, joins us for a review of the year and a looking into 2023.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/2022-2023-woocommerce-paul-maiorana/\">Reflecting on the Past and Embracing the Future for WooCommerce with Paul Maiorana</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Thu, 12 Jan 2023 11:29:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;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:17:\"Matt: Thirty-Nine\";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:22:\"https://ma.tt/?p=75200\";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:34:\"https://ma.tt/2023/01/thirty-nine/\";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:4687:\"<p>The last year of my thirties! <a href=\"https://wp20.wordpress.net/\">WordPress turns twenty this year</a>. <a href=\"https://automattic.com/\">Automattic</a> is now ~2,000 people across 98 countries. There&#8217;s so much that has happened in the past decade yet it feels very much like we&#8217;re on the cusp of something even more exciting.</p>\n\n\n\n<p>This morning started well; I pulled the hammock out of the garage (it had been hiding from the rain) and read for a bit, trying to get my 5-10 minutes of sun in the first 30 minutes <a href=\"https://twitter.com/hubermanlab/status/1481842978117271560?lang=en\">like Huberman suggests</a>.</p>\n\n\n\n<p>Candidly, the last year was a really challenging one for me personally. There were some beautiful moments, and I consider myself the most lucky in my family, friends, and colleagues, yet among that same group there was a lot of loss, existential health challenges, and that weighed heavily on me. It&#8217;s also my last year to get on 40 under 40 lists! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f602.png\" alt=\"😂\" class=\"wp-smiley\" /></p>\n\n\n\n<p>Usually when people ask me what I want for my birthday I don&#8217;t have a good answer, but this year I do! As <a href=\"https://www.sfgate.com/local/article/san-francisco-bay-bridge-lights-17708825.php\">Heather Knight wrote about in the SF Chronicle, the beloved Bay Lights are coming down in March</a>. This has to happen —&nbsp;the vibrations and corrosive environment of the Bay Bridge is taking lights out strand by strand. Fortunately it&#8217;s now been a decade since the lights first went up, and there&#8217;s much better technology both for the lights and how they&#8217;re mounted and attached to the suspension cables. Finally, the lights were not visible from Treasure Island or the East Bay before, but this new version 3.0 will be, which is why the artist behind the lights, <a href=\"http://villareal.net/\">Leo Villereal</a>, is calling it Bay Lights 360.</p>\n\n\n\n<img />\n\n\n\n<p>Like the <a href=\"https://en.wikipedia.org/wiki/Foundation_series\">Foundation series</a>, we can&#8217;t stop the coming period of darkness from happening, but if we raise $11M we can bring the lights back. If we raise it soon we can shorten the time they&#8217;re down to just a few months, so I&#8217;m working with the 501c3 non-profit <a href=\"https://illuminate.org/\">Illuminate</a> to help fundraise. The idea is to find ten people or organizations to put one million each, and raise the final million in a broader crowdfunding campaign, to re-light the Bay Bridge and give an incredible gift to the people from every walk of life that see the bridge, and hopefully have their spirits lifted by the art. I&#8217;ve heard 25 million people see the Bay Lights every year.</p>\n\n\n\n<p>It&#8217;s a lot to raise, but every little bit helps so <a href=\"https://illuminate.org/baylights360/\">please donate here</a>, and if you are interested to do a larger gift please get in touch. I&#8217;m committing a million dollars to the fundraise, and myself, Illuminate director Ben Davis, and the artist <a href=\"http://villareal.net/\">Leo Villereal</a> are happy to personally connect with anyone considering a larger donation.</p>\n\n\n\n<p>Because of some family health reasons I&#8217;m back in lockdown, so going to try and throw an online party tonight in the &#8220;Matterverse.&#8221; We&#8217;re going to party like it&#8217;s late 2020. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /></p>\n\n\n\n<p>All birthday posts: <a href=\"https://ma.tt/2003/01/bday/\">19</a>, <a href=\"https://ma.tt/2004/01/so-im-20/\">20</a>, <a href=\"https://ma.tt/2005/01/hot-barely-legal-matt/\">21</a>, <a href=\"https://ma.tt/2006/01/matt-22/\">22</a>, <a href=\"https://ma.tt/2007/01/twenty-three/\">23</a>, <a href=\"https://ma.tt/2008/01/twenty-four/\">24</a>, <a href=\"https://ma.tt/2009/01/twenty-five/\">25</a>, <a href=\"https://ma.tt/2010/01/twenty-six/\">26</a>, <a href=\"https://ma.tt/2011/01/twenty-seven/\">27</a>, <a href=\"https://ma.tt/2012/01/twenty-eight/\">28</a>, <a href=\"https://ma.tt/2013/01/twenty-nine/\">29</a>, <a href=\"https://ma.tt/2014/01/matt-3-0/\">30</a>, <a href=\"https://ma.tt/2015/01/thirty-one/\">31</a>, <a href=\"https://ma.tt/2016/01/thirty-two/\">32</a>, <a href=\"https://ma.tt/2017/01/thirty-three/\">33</a>, <a href=\"https://ma.tt/2018/01/thirty-four/\">34</a>, <a href=\"https://ma.tt/2019/01/thirty-five/\">35</a>, <a href=\"https://ma.tt/2020/01/thirty-six/\">36</a>, <a href=\"https://ma.tt/2021/01/thirty-seven/\">37</a>, <a href=\"https://ma.tt/2022/01/thirty-eight/\">38</a>, <a href=\"https://ma.tt/2023/01/thirty-nine/\">39</a>.</p>\";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:\"Thu, 12 Jan 2023 04:37:53 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;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:82:\"WPTavern: Automattic Launches Blaze Ad Network for Jetpack and WordPress.com Sites\";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:30:\"https://wptavern.com/?p=140985\";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:93:\"https://wptavern.com/automattic-launches-blaze-ad-network-for-jetpack-and-wordpress-com-sites\";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:5113:\"<p>Automattic is <a href=\"https://wordpress.com/blog/2023/01/11/promote-your-posts-on-wordpress-com/\">bringing Tumblr&#8217;s Blaze ad tool to WordPress sites</a> with its launch today on WordPress.com and Jetpack. Blaze made its debut in April 2022, to the delight of Tumblr users who will gladly shell out cash to get people to look at their cat or <a href=\"https://www.reddit.com/r/CuratedTumblr/comments/yu1l2g/you_know_i_had_to_do_it_to_em_it_being_ruthless/\">promote a game they made</a>. It&#8217;s an affordable way to attract new followers or just send out something funny into the universe, starting at $5/day.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Note To all small Twitch streamers. Tumblr Blaze is the best advertising tool out there. It has an embedding feature allowing you to embed streams. I went from 20 to 100+ live viewers rn! <a href=\"https://t.co/aolZduCTEe\">pic.twitter.com/aolZduCTEe</a></p>&mdash; Ian Miles Cheong\'s Prime Minister (@MToph91) <a href=\"https://twitter.com/MToph91/status/1610290440946999303?ref_src=twsrc%5Etfw\">January 3, 2023</a></blockquote>\n</div>\n\n\n\n<p>WordPress.com users can now to go to&nbsp;<strong><a href=\"http://wordpress.com/advertising\">wordpress.com/advertising</a></strong>, select a site, and promote content with Blaze. Jetpack users have access to the ad network inside the WordPress.com dashboard.</p>\n\n\n\n<img />\n\n\n\n<p>After selecting a post, users are taken to the design wizard where they can add an image, title, a snippet, and a destination URL. The URL can be the post or page or it can direct visitors to the main website.</p>\n\n\n\n<p>When Blaze first launched on Tumblr there was no way to target the promoted content &#8211; it just displayed to random users. Now there are a few more options. When promoting content from WordPress.com or a Jetpack-enabled site, users can narrow the audience by device: mobile, desktop, or all devices, select from a few main geographic areas (continents) or serve it everywhere. There is also a dropdown with topics of interest, but they are fairly general, e.g. Arts &amp; Entertainment, Automotive, Business, Education.</p>\n\n\n\n<img />\n\n\n\n<p>After selecting the audience, users can set the budget for the campaign, starting at $5 with a max daily budget of $50. With a minimum of $5/day for a week users can expect an estimated 5,900 &#8211; 8,000 impressions. For $25/day, users can expect 29,700 &#8211; 40,200, and up to 59,500 &#8211; 80,500 for $50/day. Site owners can monitor the success of their ads in the Campaigns tab.</p>\n\n\n\n<p>Content sponsored by Blaze will be promoted across WordPress.com sites and Tumblr pages, an audience that accounts for an estimated 13.5 billion impressions per month. </p>\n\n\n\n<p>Blazing has become somewhat of an art in the short time it has been available on Tumblr. It will be interesting to see how ads originating from WordPress.com and Jetpack go over with the Tumblr audience.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">There\'s a whole code of ethics around Blaze on Tumblr basically if you use it to do anything other than shitpost people hate you, you can also buy Tumblr merch and buy fake verification (which isn\'t seen as a serious thing, it\'s just a way to support tumblr)</p>&mdash; New Year New Simisear Fan <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f400.png\" alt=\"🐀\" class=\"wp-smiley\" /> (@LakeUncalming) <a href=\"https://twitter.com/LakeUncalming/status/1612677568741646342?ref_src=twsrc%5Etfw\">January 10, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"tumblr-post\"><a href=\"https://www.tumblr.com/madmadammims/700822694806044672\">https://www.tumblr.com/madmadammims/700822694806044672</a></div>\n</div>\n\n\n\n<p>Creating advertising content that works across the disparate audiences between WordPress and Tumblr-powered pages may be a challenge for some site owners. Tumblr users can only <a href=\"https://help.tumblr.com/hc/en-us/articles/5298854249367-Tumblr-Blaze-FAQ\">target audiences by location</a> for blazed posts. It&#8217;s possible that WordPress&#8217; additional targeting options can help funnel the ads to sites where they will be most well-received, but the announcement says ads will be promoted across WordPress.com and Tumblr.</p>\n\n\n\n<p>Blaze campaigns require approval to be in compliance with Automattic&#8217;s <a rel=\"noreferrer noopener\" href=\"https://automattic.com/advertising-policy/\" target=\"_blank\">Advertising Policy</a> before being published. They are currently moderated in approximately 30 minutes but this may change in the future as more users try out Blaze. </p>\n\n\n\n<p>Automattic is treading new ground in creating its own ad network that any user across Tumblr and WordPress can tap into. It&#8217;s a strategic move to extend access to the world of WordPress, given that it&#8217;s such a large audience, and it will be interesting to see how the company improves the targeting options to meet the challenges of serving both audiences.</p>\";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:\"Wed, 11 Jan 2023 22:52:36 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;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:107:\"Post Status: Improving 5ftF Contributor Journey • Building Interactive Blocks • Layout Classes • WP20\";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:\"https://poststatus.com/?p=146399\";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:106:\"https://poststatus.com/improving-5ftf-contributor-journey-building-interactive-blocks-layout-classes-wp20/\";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:16911:\"<h2 id=\"h-this-week-at-wordpress-org-january-9-2023\">This Week at WordPress.org (January 9, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Share your feedback about how to improve the Five for the Future contributor journey. Check out work underway on how to make interactive blocks easier to build, and take a walkthrough of layout classes in WordPress 6.1. It\'s time to start planning; how will you celebrate WordPress\' 20th birthday? </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_adc852-65\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-fe_code\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Improvements: Five for the Future, Interactive Blocks, and Layout Classes</h2><p class=\"kt-blocks-info-box-text\">5&#x20e3; <a href=\"https://make.wordpress.org/project/2023/01/09/request-for-feedback-how-can-we-improve-the-five-for-the-future-contributor-journey/\">Request for Feedback: How can we Improve the Five for the Future Contributor Journey?</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f3a8.png\" alt=\"👩🏻‍🎨\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2023/01/11/fse-program-testing-call-20-find-your-style/\">FSE Program Testing Call #20: Find Your Style</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3d7.png\" alt=\"🏗\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/01/11/update-on-the-work-to-make-building-interactive-blocks-easier/\">Update on the work to make building interactive blocks easier</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4f0.png\" alt=\"📰\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/news/2023/01/11/a-walk-through-of-layout-classes-in-wordpress-6-1/\">A walk-through of layout classes in WordPress 6.1</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/01/wordpress-is-turning-20-lets-celebrate/\">WordPress is Turning 20: Let’s Celebrate!</a><br /><br /></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/01/wordpress-is-turning-20-lets-celebrate/\">WordPress is Turning 20: Let’s Celebrate!</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-35 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/01/11/community-team-training-using-learn-wordpress-at-your-wordpress-meetup/\">Community Team Training: Using Learn WordPress at your WordPress Meetup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/01/04/community-team-meeting-agenda-for-5-january-2023/\">Community Team Meeting Agenda for 5 January, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/11/update-on-the-work-to-make-building-interactive-blocks-easier/\">Update on the work to make building interactive blocks easier</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/10/a-week-in-core-january-9-2022/\">A Week in Core – January 9, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/09/fields-api-kick-off-chat-summary-january-5th-2023/\">Fields API Kick-off Chat Summary: January 5th, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/06/core-editor-improvement-advancing-the-site-editor-experience/\">Core Editor Improvement: Advancing the Site Editor experience</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">What’s new in Gutenberg 14.9? (4 January)</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/10/editor-chat-agenda-11-january-2023/\">Editor Chat Agenda: 11 January 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/10/editor-chat-summary-wednesday-4-january-2023/\">Editor chat summary: Wednesday, 4 January 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/09/dev-chat-agenda-january-11-2023/\">Dev Chat agenda, January 11, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/08/dev-chat-summary-january-4-2023/\">Dev Chat summary, January 4, 2023</a></li>\n</ul>\n\n\n\n<h3 id=\"h-developer-blog\">Developer Blog</h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/01/11/a-walk-through-of-layout-classes-in-wordpress-6-1/\">A walk-through of layout classes in WordPress 6.1</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/01/10/documentation-team-discussion-on-the-2023-community-summit-call-for-submissions/\">Documentation Team Discussion on the 2023 Community Summit Call for Submissions</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/01/07/there-is-work-in-progress-in-helphub-documentation/\">There is work in progress in HelpHub (Documentation)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/01/04/agenda-for-docs-team-bi-weekly-january-10-2023/\">Agenda for Docs Team Bi-Weekly January 10, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/09/documentation-team-update-january-9-2023/\">Documentation Team Update – January 9, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2022/12/28/2022-recap/\">WordPress Hosting Team 2022 recap</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/01/10/2023-marketing-team-new-meeting-time-and-new-team-reps/\">2023 Marketing Team: new meeting time and new team reps</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2022/12/22/two-factor-auth-progress-for-wordpress-org/\">Two-Factor Auth progress for WordPress.org</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/01/10/community-meeting-recap-10-january-2023/\">Community Meeting Recap (10 January 2023)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/10/performance-team-meeting-summary-10-january-2023/\">Performance Chat Summary: 10 January 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/01/10/weekly-polyglots-chat-jan-11-2023-0700-utc/\">Weekly Polyglots Chat – Jan. 11, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2022/12/21/plugin-guideline-update-community-code-of-conduct/\">Plugin Guideline Update: Community Code of Conduct</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">Plugins/themes categorization</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/10/plugin-review-team-9-jan-2023/\">Plugin Review Team – 9 Jan 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/01/09/request-for-feedback-how-can-we-improve-the-five-for-the-future-contributor-journey/\">Request for Feedback: How can we Improve the Five for the Future Contributor Journey?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2022/12/21/announcement-new-wordpress-incident-response-team/\">Announcement: New WordPress Incident Response Team</a></li>\n</ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/01/11/fse-program-testing-call-20-find-your-style/\">FSE Program Testing Call #20: Find Your Style</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/01/04/proposal-to-update-test-handbook-homepage/\">Proposal to Update Test Handbook Homepage</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/09/test-team-update-9-january-2023/\">Test Team Update: 9 January 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/01/09/themes-team-meeting-agenda-for-january-10-2023/\">Themes team meeting agenda for January 10, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/01/10/themes-team-update-january-10-2023/\">Themes team update January 10, 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/01/09/meeting-agenda-for-january-10-2022/\">Meeting Agenda for January 10, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=create-block-theme-%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3%E3%81%A7%E8%87%AA%E5%88%86%E3%81%AE%E3%83%96%E3%83%AD%E3%83%83%E3%82%AF%E3%83%86%E3%83%BC%E3%83%9E%E3%82%92%E4%BD%9C%E3%82%8D-2\">Create Block Theme プラグインで自分のブロックテーマを作ろう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=create-block-theme-%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3%E3%81%A7%E8%87%AA%E5%88%86%E3%81%AE%E3%83%96%E3%83%AD%E3%83%83%E3%82%AF%E3%83%86%E3%83%BC%E3%83%9E%E3%82%92%E4%BD%9C%E3%82%8D%E3%81%86\">Create Block Theme プラグインで自分のブロックテーマを作ろう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=images-on-the-web-past-present-and-future\">Images on the web — past present and future</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep9-woocommerce-settings-and-faq-bangla-2\">EP9: WooCommerce Settings and FAQ | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep8-introduction-to-products-various-types-of-product-bangla-2\">EP8: Introduction to Products (Various types of Product) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep7-introduction-to-woocommerce-installation-checkout-flow-bangla-2\">EP7: Introduction to WooCommerce (Installation, Checkout flow) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=live-stream-building-an-advanced-query-loop-block-variation-plugin\">Live stream: Building an Advanced Query Loop block variation plugin</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=live-stream-reviewing-developer-focused-features-in-gutenberg-15-0\">Live stream: Reviewing developer-focused features in Gutenberg 15.0</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=live-stream-reviewing-developer-focused-features-in-gutenberg-14-9\">Live stream: Reviewing developer-focused features in Gutenberg 14.9</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=block-themes-and-wordpress-live-stream-4\">Block Themes and WordPress: Live Stream</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=block-themes-and-wordpress-live-stream-3\">Block Themes and WordPress: Live Stream</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=block-themes-and-wordpress-live-stream-2\">Block Themes and WordPress: Live Stream</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep8-introduction-to-products-various-types-of-product-bangla\">EP8: Introduction to Products (Various types of Product) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep9-woocommerce-settings-and-faq-bangla\">EP9: WooCommerce Settings and FAQ | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep7-introduction-to-woocommerce-installation-checkout-flow-bangla\">EP7: Introduction to WooCommerce (Installation, Checkout flow) | Bangla</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/tools-site-health/\">Tools: Site Health</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/introduction-to-theme-json/\">Introduction to theme.json</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://www.php.net/ChangeLog-8.php#8.2.1\">PHP 8.2.1 Changelog</a></li>\n\n\n\n<li><a href=\"https://getcomposer.org/changelog/2.5.1\">Composer 2.5.1 Changelog</a></li>\n\n\n\n<li><a href=\"https://github.com/npm/cli/compare/v9.1.3...v9.2.0\">NPM 9.2.0 Changelog</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";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:\"Wed, 11 Jan 2023 18:08:54 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;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:59:\"WPTavern: ClassicPress Community Votes to Re-Fork WordPress\";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:30:\"https://wptavern.com/?p=140878\";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:70:\"https://wptavern.com/classicpress-community-votes-to-re-fork-wordpress\";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:3772:\"<p>In December 2022, the ClassicPress community <a href=\"https://wptavern.com/classicpress-at-a-crossroads-directors-consider-re-forking-wordpress\">voted on whether to re-fork WordPress</a> or continue on with the project as-is. As WordPress continues to evolve, ClassicPress fell behind in pursuit of PHP 8+ compatibility. The fork is based on WordPress 4.9 and users are increasingly limited in what plugins will work with the five-year-old codebase. </p>\n\n\n\n<p>In a <a href=\"https://forums.classicpress.net/t/the-future-of-classicpress-discussion/4480/31\">discussion</a> limited to ClassicPress core contributors, Viktor Nagornyy, one of the project’s directors, announced the results of the vote: <strong>&#8220;The option to re-fork has 20 votes while continue-as-is has 18.&#8221; </strong>Nagornyy summarized previous discussions and suggested an approach that would be more realistic for the project&#8217;s limited contributors:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>ClassicPress can’t be WordPress without Gutenberg, but it also can’t be its own CMS with a small core team at this time. There are simply not enough developers to make progress without backporting code from WP to move away from WP.</p>\n\n\n\n<p>An almost even split in the poll suggests the best option might be a hybrid one, find a compromise solution that will satisfy both sides.</p>\n\n\n\n<p>With a small core team, we have to find ways to be more efficient, to get more done with less. The only way to do that is to leverage all the work that’s done by WP contributors. As the core team grows, we can always explore the possibility of splitting away from WP but at this point in time, it’s simply not feasible.</p>\n</blockquote>\n\n\n\n<p>Some participants in the previous discussion saw re-forking as postponing the inevitable, kicking the can down the road until the next re-fork, but it is the only option if users want to retain compatibility with the rest of the WordPress ecosystem.</p>\n\n\n\n<p>&#8220;If you read recent threads, you find out that the community expects plugin compatibility with WordPress… another reason for the re-fork option,&#8221; ClassicPress core committer Álvaro Franz said.</p>\n\n\n\n<p>Franz, who is also the author of the WP-CMS fork based on WordPress 6.0, previously <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/46\">said</a> he would be unwilling to help with a continuation of the current version based on WordPress 4.9.</p>\n\n\n\n<p>&#8220;It [ClassicPress] doesn’t have to be a competition (and it never could compete with WordPress anyways), but it can be a leaner version, for people who are already disabling Gutenberg via plugins, for developers who want a different approach to the way they develop their projects (closer to &#8216;the classic&#8217; experience, but yet… modern!),&#8221; Franz <a href=\"https://wptavern.com/classicpress-at-a-crossroads-directors-consider-re-forking-wordpress#comment-435736\">said</a>.</p>\n\n\n\n<p>&#8220;Eventually, it won’t make sense to run a fresh copy of WordPress to then go and install a plugin that &#8216;disables&#8217; half of it. What’s the point? Why not have a version that covers that specific use case?&#8221;</p>\n\n\n\n<p>As part of Nagornyy&#8217;s proposed hybrid approach, he suggested the project retain some changes that were introduced in ClassicPress in v1.x, such as the privacy-oriented changes (anonymizing data CP sends to APIs), the news widget, and ensure that all API endpoints use ClassicPress APIs as in v1.x.</p>\n\n\n\n<p>The discussion continues around how to proceed with the fork. ClassicPress contributors are leaning towards using Franz&#8217;s WP-CMS fork based on WordPress 6.0 but have not finalized the details yet.</p>\";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:\"Wed, 11 Jan 2023 15:10:57 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;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:63:\"WPTavern: #58 – Lax Mariappan on How Headless WordPress Works\";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:48:\"https://wptavern.com/?post_type=podcast&p=140972\";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:77:\"https://wptavern.com/podcast/58-lax-mariappan-on-how-headless-wordpress-works\";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:56075:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox has a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how Headless WordPress works.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players. If you have a topic that you&#8217;d like us to feature on the podcast, well, I&#8217;m very keen to hear from you, and hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Lax Mariappan. Lax is a web developer based in the Philippines. He&#8217;s an open source enthusiast and lover of all things WordPress. Lax has been tinkering with websites since high school. But it all changed when he discovered WordPress in 2010. Lax currently works as a backend engineer at WebDevStudios.</p>\n\n\n\n<p>We talked today about Headless WordPress, and it&#8217;s a complex topic. Headless is the concept of decoupling the WordPress admin from the front end of the site. WordPress will continue to work as expected, but the presentation layer will be done by a different technology. React Gatsby and Remix being some popular choices.</p>\n\n\n\n<p>This implementation of WordPress is complex, requires technical knowledge above and beyond that needed for a more typical WordPress install. But it has its benefits.</p>\n\n\n\n<p>Lax talks through all of this in great detail. How keeping on top of all the additional dependencies Headless WordPress requires can be time consuming. How it can create difficulties for content editors who don&#8217;t always get to see what their work will actually look like in real time. Why this approach to WordPress can take more time and resources during the build.</p>\n\n\n\n<p>Lex explains how these problems typically crop up, and how it&#8217;s possible to plan ahead and build in solutions for all the problems that you might encounter.</p>\n\n\n\n<p>If you&#8217;ve ever thought about going headless with WordPress, then the podcast today is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast. Where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Lax Mariappan.</p>\n\n\n\n<p>I am joined on the podcast today by Lax Mariappan. Hello Lax.</p>\n\n\n\n<p>[00:03:30] <strong>Lax Mariappan:</strong> Hello, Nathan.</p>\n\n\n\n<p>[00:03:30] <strong>Nathan Wrigley:</strong> Very nice to have you with us on the show today. I have to commend you for your staying power, because Lax and I have tried to record this episode a couple of times and he&#8217;s been incredibly, incredibly thoughtful about getting his, all of his equipment and everything working. So thank you, first of all, I would like to express my gratitude for you staying the course.</p>\n\n\n\n<p>But before we get into the podcast, Lax, I wonder if you wouldn&#8217;t mind spending a moment just introduce yourself. Tell us who you are, where you are, who you work for, how long you&#8217;ve been using WordPress, all of those kind of things.</p>\n\n\n\n<p>[00:04:06] <strong>Lax Mariappan:</strong> Thank you. It&#8217;s good to be on WP Tavern, it&#8217;s one of my favorite publications, and also the favorite podcast. So I&#8217;m Lax, Lax Mariappan. I&#8217;m from India, and also I&#8217;m from Philippines. So I would say I live in both countries, and I use WordPress since my school days, like 2009. So I was looking for a platform to build a website for an event or something, and then I found out Blogger versus WordPress, and I liked WordPress more even that time.</p>\n\n\n\n<p>So since then, I&#8217;m using WordPress almost every day. And my first job I got started working as a PHP developer, I would say, and then fully focused on WordPress. And I wrote my first plugin in 2011. It&#8217;s a very simple one. It&#8217;s now kind of obsolete because Facebook changed it a lot. So I wrote a plugin for something to fetch Facebook feed. So, and then my journey goes on. Right now, I work as a backend engineer at WebDevStudios. So where I get a chance to learn and work more with headless CMS every day almost.</p>\n\n\n\n<p>[00:05:09] <strong>Nathan Wrigley:</strong> Your work at WebDevStudios, I don&#8217;t know a great deal about the company, but my impression of the company is that you work with, how should we describe it? Enterprise clients. You&#8217;re dealing with fairly large projects. I would imagine sizable budgets. Those kind of things, right?</p>\n\n\n\n<p>[00:05:27] <strong>Lax Mariappan:</strong> Yeah, yes. Enterprise level.</p>\n\n\n\n<p>[00:05:28] <strong>Nathan Wrigley:</strong> So when we decided we were going to have this conversation, Lax introduced the subject to me of headless WordPress. Now this is a word which I imagine some of you have heard before. Maybe some of you have never heard the word before. Perhaps there&#8217;s a subset of you which have experimented with it, but I&#8217;m expecting that the majority of WordPress users have not.</p>\n\n\n\n<p>So, first of all Lax, would you mind giving us a very, in depth I suppose is the right word. Give us an analysis of what headless WordPress is because I&#8217;m sure many people think they know what it is, but perhaps they don&#8217;t.</p>\n\n\n\n<p>[00:06:06] <strong>Lax Mariappan:</strong> So headless, or decoupled CMS, so first we all know content management system, right? So WordPress, we are using WordPress now as a content management system. It started out as a blogging platform. We used it mainly for blogging. And then WordPress introduced custom post types, taxonomies and all that sort of stuff.</p>\n\n\n\n<p>So we are now using WordPress to build simple to complex websites. Forums. Some people use it for their colleges, universities as a social media platform, and some of them use it for a job board and everything, right? So we have plugin for everything and we can customize it and we use it.</p>\n\n\n\n<p>So when it comes to the traditional CMS, we call that as monolithic. I hope I&#8217;m not using too much jargon here. Monolithic in the sense it has everything into it. So for example, if you go to a website, the header, footer, the sidebar, and the content that you see and the forms and everything that comes from the same CMS itself. So it is going to be, let&#8217;s say, in the case of WordPress, it&#8217;s built mostly with PHP and JavaScript.</p>\n\n\n\n<p>So everything is going to be PHP template with a bit of JavaScript and CSS to it. But when you say on the contrast, headless CMS, it means, so you can consider that as a, I would not say person. Maybe something like, you can imagine something that doesn&#8217;t have a head. So in the sense the body is the same, head is different.</p>\n\n\n\n<p>So you can imagine that as, you are going to use the same admin panel and you are going to have the same WordPress features. You can add the content, you can add menus, you can edit anything, you can add users, all that stuff. But when I view the website, so it&#8217;s not going to be your theme. So it&#8217;s not the typical way of how WordPress gets rendered.</p>\n\n\n\n<p>So instead we will be decoupling it. So that is WordPress admin will stay on another site. It can be on a subdomain or a sub folder, but the front end is going to be a different platform. So it&#8217;s going to be hosted in a, mostly a JavaScript based stuff. So you can use either React based frameworks like React itself or Gatsby, Next.js or Remix, or anything that you like.</p>\n\n\n\n<p>And also you can either go in another route as well. So you can make it like a fully static website, or you can render it on every time as a server side rendering as well. So every call will go to the server and renders.</p>\n\n\n\n<p>Okay, so now we can call that a small intro about headless. You may already know this one. It became a buzzword a couple of years ago, right? But now everyone wants to go as headless. I see that company goes headless, or my competitor goes headless. So I want to go that way. But, unpopular opinion. Maybe you might hear some other people say that too. Headless is not for everyone, or I would say not for every use case.</p>\n\n\n\n<p>It depends on how much content that you publish. What are your goals and what you want to achieve. So headless is good, it&#8217;s performant, it&#8217;s fast, secure, and it gives you more freedom and flexibility, especially in terms of performance it&#8217;s really good. But I would say it&#8217;s not the something like you should go headless. It&#8217;s not the answer.</p>\n\n\n\n<p>[00:09:10] <strong>Nathan Wrigley:</strong> So essentially you&#8217;re saying that there are scenarios where this is desirable, but there&#8217;s going to be other scenarios where WordPress, in the traditional sense of the word. The regular WordPress that you download, perhaps use a hosting company and it&#8217;s all driven by PHP. The normal way of doing WordPress. That might be the best solution for lots of people.</p>\n\n\n\n<p>Okay, so we&#8217;ve got our WordPress website, which we can interact with, and then the content that comes out of that website is pushed to something else. And probably we&#8217;ll get into what the options are there. But let&#8217;s take the use case of a company which comes to you and says, okay, we&#8217;ve heard this buzzword. We think that we want to go headless.</p>\n\n\n\n<p>What are the benefits of going headless? Let&#8217;s forget about all the problems that might be associated with it. Can we just iterate through the things that you will gain if you manage to pull off a headless WordPress website. Now, I know there&#8217;s going to be all sorts of different scenarios there, but maybe just pick out the low hanging fruit. Some of the things which you believe are really beneficial.</p>\n\n\n\n<p>[00:10:17] <strong>Lax Mariappan:</strong> Yeah. The first and foremost, or the popular one, is the performance. So WordPress uses PHP templates. We will do everything with PHP and Javascript and also a little bit of caching to render our traditional CMS like traditional pages. If you use a normal WordPress installation with a theme. So that&#8217;s how it&#8217;s get rendered.</p>\n\n\n\n<p>So there you can see it depends on the hosting company as well, and also how much plugins that you use and how you configured them. So that affects the performance of a site. But when it comes to headless everything is going to be bundled, and there will be how a normal JavaScript based application gets rendered.</p>\n\n\n\n<p>So it&#8217;s going to be a modern web application where you have control over, for example, if your page doesn&#8217;t use certain CSS classes, those CSS will not get loaded for that page. So I would say the assets that are loaded, it will be less. And the images will be more optimized. In either case, like in traditional too you can optimize images, but it&#8217;s like the performance is the first one, I would say.</p>\n\n\n\n<p>It&#8217;s going to be both developers will love it and also the site owners, and also, let&#8217;s say marketers, Everyone will like the performance aspect of it. And in terms of headless, I would say developers will like it, especially in terms of, so you can repurpose the content. So if you are having a CMS, WordPress as a headless CMS, you can use that same endpoint, get the data and display it in a different formats quickly.</p>\n\n\n\n<p>Other than a WordPress theme. So for example, if you&#8217;re using a WordPress theme, you have to create multiple templates. So this is a template for mobile, and this is something that, for example, if you want to use it for a landing page, you may have to do some small or extra changes. But when it comes to headless, you can just customize it in a way that you want to.</p>\n\n\n\n<p>For example, I want to have a landing page. I don&#8217;t want certain stuff to be there. So you can turn on, off certain components, that&#8217;s it. So it&#8217;s like you can render the blocks and render the content faster. So developers and designers will like it. And also, in terms of the security, that&#8217;s where I&#8217;m more interested in cybersecurity especially. When people say WordPress sites are not secure, that triggers me actually. Yeah, I do get angry.</p>\n\n\n\n<p>So it&#8217;s like, you don&#8217;t have to worry about that. So you don&#8217;t have to worry about changing your login page url. Adding captcha to your login form, all that stuff. Because that URL is going to be safe and secure. No one knows where you are hosted your CMS.</p>\n\n\n\n<p>[00:12:49] <strong>Nathan Wrigley:</strong> Can I just interrupt there? So could you explain that, because I imagine there&#8217;s a bunch of people scratching their head at this point. Because normally, let&#8217;s say you have a website, it&#8217;s example.com. You&#8217;re going to go to example.com/wp-admin, and there is your login page. But there&#8217;s something in between here. I&#8217;m not sure that we explained that quite. So just explain why the login is secure. Explain where it is and why it&#8217;s not normal WordPress.</p>\n\n\n\n<p>[00:13:19] <strong>Lax Mariappan:</strong> Yeah, so I mean, normal WebPress is also secure but people can guess it, right? Say example.com/wp-admin, so they know. They can see from the source code and the page source, they can see oh, this looks like a WordPress site. And then they can guess the admin url. So slash wp-admin, it&#8217;ll redirect them to the login page, right.</p>\n\n\n\n<p>But when it comes to headless, the example.com will be hosted somewhere, and the front end that you see will be different. So for example, let&#8217;s say CMS is your WordPress installation, all WP. So you can call that like wp.example.com. So that&#8217;s where your WordPress stays in. But when you go to the example.com, that&#8217;s your front end, so that&#8217;s just JavaScript and html. So it&#8217;s like, if somebody wants to hack your site or somebody wants to, just guess what will be the admin url. So they cannot.</p>\n\n\n\n<p>[00:14:10] <strong>Nathan Wrigley:</strong> It&#8217;s a difficult concept to understand if you haven&#8217;t encountered this before. But what you&#8217;ve got basically is a WordPress website, which is the container for the content, but it isn&#8217;t the website and we&#8217;re not used to that in traditional WordPress. You go to example.com/ wp-admin, get redirected, log in, do all the things, and click publish, and as soon as you click publish, it will be present on the website. That&#8217;s not the way that this is working because the WordPress website is completely decoupled from the thing which is presenting it to the world, right?</p>\n\n\n\n<p>[00:14:48] <strong>Lax Mariappan:</strong> Yeah. Yeah. Completely decoupled.</p>\n\n\n\n<p>[00:14:50] <strong>Nathan Wrigley:</strong> So given that, there&#8217;s no connection between, okay, here&#8217;s my website at example.com and where I might log in. And because of that there isn&#8217;t the capability to just guess the login page and then bruteforce an attack and so on. So in terms of security, it offers that benefit. The thing which people are most worried about, somebody getting your admin password going in and spoiling your site. That&#8217;s highly unlikely because they simply won&#8217;t know where to look.</p>\n\n\n\n<p>[00:15:23] <strong>Lax Mariappan:</strong> Yeah. And also, so for example certain normal pages like comments, so that&#8217;s where we get a lot of spam, right? So comments will go to comments.php. When you submit a form without any data, or maybe if it&#8217;s spam data, it just goes there, right? But when it comes to headless, we will be using some extra customization for the comments and everything.</p>\n\n\n\n<p>So it&#8217;s not going to be the data will store as comments in the database, and it&#8217;ll be, you can view them as comments in the admin panel. But when you are viewing it in the site, so you are reading a blog post, you have a comment form, so that form is HTML and JavaScript. So that&#8217;s not how a typical, a normal WordPress form, normal comments form.</p>\n\n\n\n<p>So that&#8217;s where you will get less spam as well. So you don&#8217;t have to worry about that too. Like people submitting spam data and also any other form. So that&#8217;s another thing. And you don&#8217;t have to worry about any other security related stuff, because it&#8217;s just static.</p>\n\n\n\n<p>So people cannot do anything or manipulate data. So it&#8217;s going to be just HTML stuff. Whatever they can do is just view the data. So I would say in the headless, so if you are viewing some pages or we are in a archive page and post archive, news archive, any archive page or any other page that does the data and fetches the data from the database, all that stuff.</p>\n\n\n\n<p>So all that stuff will be protected routes. So people cannot easily guess. Sometimes you might encounter database related attacks, right. So you may hear cross site scripting attack or any other stuff like, somebody trying to get data either they pull your data or they want to insert some other data to the database. That&#8217;s not the case.</p>\n\n\n\n<p>Everything is going to be static, like just html, and it&#8217;s only read only. So people are not going to input any data. And the input will be just maybe a comments form, contact us form, something like that. And that will be handled. It depends on what form provider you are using, or how you configure it, but still it&#8217;s more secure that way.</p>\n\n\n\n<p>[00:17:25] <strong>Nathan Wrigley:</strong> So just to reiterate the point one more time, just in case anybody hasn&#8217;t been paying attention. We have our WordPress website. It is used by the developers, by the content creators, by the editors. They do their normal work inside of WordPress, but the thing which is being viewed on the front end by the population at large is completely separate.</p>\n\n\n\n<p>You&#8217;re just sucking the data out of WordPress and putting it into whatever you like. The security&#8217;s fairly obvious, you&#8217;ve explained that really well. The performance, obviously, if all that you are showing is static html, essentially. That&#8217;s going to load really, really quickly. Nothing needs to be built at the time that the page is viewed and so on and so forth. It&#8217;s already been created.</p>\n\n\n\n<p>This all sounds amazing and of course that raises the question, why aren&#8217;t we all doing it? And you have given us, in the show notes you&#8217;ve given me, three different things which we perhaps should talk about, and some of them, you explained the problem and then we&#8217;ll get to the solution.</p>\n\n\n\n<p>So the first one that you talk about is dependency hell, you&#8217;ve described it as. And, I&#8217;m guessing that having a headless site is not straightforward. We&#8217;re very used in WordPress to, novices can install WordPress incredibly quickly. You basically upload a zip file and unpack it and connect it to a database, and these days, you know, you go to a hosting company and not even that. You just click a button and, wow, there&#8217;s your WordPress website 30 seconds later.</p>\n\n\n\n<p>I&#8217;m guessing that this is not the case for headless. There must be all sorts of complex layers of things going on in the background, and you say that in many cases it can become very difficult. Dependency hell. So describe the problem of all the dependencies.</p>\n\n\n\n<p>[00:19:13] <strong>Lax Mariappan:</strong> So when you have a WordPress installation, we will be installing plugins, right? You might be, if you are using WordPress for a while, you are already aware of the jQuery migrate plugin. All that stuff. So WordPress uses jQuery even now. So jQuery is a dependency that WordPress requires. WordPress depends on jQuery in admin panel, and also on the front end.</p>\n\n\n\n<p>So if you want to get rid of jQuery, it&#8217;s kind of, WordPress may not be the same, if you want to eliminate that. Because WordPress depends on it. So it&#8217;s something like, let&#8217;s say you cannot say that as a oxygen, but it&#8217;s something that we all need it. So we need that to survive. So WordPress needs jQuery to work normally.</p>\n\n\n\n<p>So similar case, when you are building a headless site, you will be requiring a lot of frameworks, libraries, and also packages. So for example, if I&#8217;m going to choose Next.js as my front end platform, front end framework. So Next.js is built with React. If I want to use Next.js, I may want to use some other Next.js related libraries.</p>\n\n\n\n<p>So it is something like if you are on Android, you may want to add extra apps on your phone. If you are an iPhone, you&#8217;ll be adding some more extra apps to extend, right? It&#8217;s the same case. Similar to plugins. Instead of that plugins, we will be adding packages. So that packages helps the developers to add extra features that we need.</p>\n\n\n\n<p>So the problem here comes in is, everything gets stacked in and one will be dependent on another. So, for example, if someone is installing a package like for SEO, and maybe that package will require something else. And let&#8217;s say if Nathan is maintaining SEO package and I installed it, and for example, for whatever reason, Nathan becomes a musician and he doesn&#8217;t, he is not interested in SEO anymore.</p>\n\n\n\n<p>So he may not be more active in maintaining that dependency, maintaining that plugin or that package. So what happens is I&#8217;ll be waiting for him to fix the bug or some errors. Or I will waiting for him to upgrade to the lightest version. But it&#8217;s not the case, right? So, my Next.js package will be waiting for Nathan, so it&#8217;s like I&#8217;m depending on him, but he&#8217;s not available. So in that case, I have to go and do that work as well. So that adds to our development timeline.</p>\n\n\n\n<p>And then, so this is just one package and one scenario. So this happens with multiple packages and stuff. And this is not just Node or NPM packages. It also happens to WordPress stuff as well. So, for example, let&#8217;s say we have a popular forms plugin, or we have a popular slider or any other plugin.</p>\n\n\n\n<p>So you will install that plugin and you want that plugin to work with headless. So how we are using headless, it&#8217;s the data is stored in the WordPress, and we want to get the data through either Rest API. It&#8217;s a method that we, you know, you go to a url, you ask the WordPress, hey, give me this data and it&#8217;s going to give. Or you&#8217;ll be using GraphQL. It&#8217;s the same. You go to an endpoint and you&#8217;re going to say, hey, I&#8217;m looking for this post. I want five posts from this date. So it&#8217;s going to give that data as well.</p>\n\n\n\n<p>So either you use Rest API or GraphQL. The problem is a plugin that you are using, your popular forms plugin, your popular slider, or any other plugin that you&#8217;re using. LMS plugin, E-commerce plugin or any plugin, like a payment gateway. So you have a plugin and you want to use it with headless. So that plugin should work with the Rest API or Graph QL. So if that doesn&#8217;t work, if that doesn&#8217;t give you the flexibility, and then you are still stuck there.</p>\n\n\n\n<p>Because you cannot go and create everything on your own, right? So we cannot reinvent all the wheels. We don&#8217;t have time to create everything from scratch. So that&#8217;s where it&#8217;s like that becomes a bottleneck. So you are like, hey, I found the plugin. I started working on it. It works up to this mark, but it&#8217;s not a hundred percent. So it&#8217;s like it does its job 80%. Now I have to go fill in that 20%. It adds to the budget, it adds to the development timeline. So that&#8217;s the dependency hell.</p>\n\n\n\n<p>[00:23:15] <strong>Nathan Wrigley:</strong> Yeah. So in the case of all of the technology, which is in the background if you like, which we haven&#8217;t really talked about too much, but like you said, the things which you are requiring from third party developers. There&#8217;s a dependency there, and it&#8217;s very similar to the dependency that you may have on plugins, you know, you want them to be updated and so on, but you are adding extra dependencies. And of course, the more dependencies you&#8217;ve got, the more costly, time consuming it is.</p>\n\n\n\n<p>I&#8217;m guessing that most of the things that you are depending on, in addition to WordPress and you described what a few of those were, you could, I suppose, do some due diligence and figure out which projects have been well maintained, updated frequently, and so on. And I guess in the open source world, much of the dependencies that you&#8217;re using will be open sourced, so you could fork them. But again, you are creating probably a large amount of work for yourself and your team.</p>\n\n\n\n<p>[00:24:13] <strong>Lax Mariappan:</strong> Yeah that&#8217;s true. Well said. So it&#8217;s like, since it is open source, it&#8217;s good. Like lot of reviewers. We have a lot of eyes on the code, and you can fork it. You have the freedom to do whatever you want. But still you are looking for a solution and that becomes a problem. You have to fix that as well. And that adds to the, another dependency, another dependency. It becomes a cycle that you cannot escape sometimes.</p>\n\n\n\n<p>[00:24:36] <strong>Nathan Wrigley:</strong> I guess this is a bit like a seesaw. You know, on the one hand you described all of the benefits, performance, security, and so on, of headless. And then on the other side is, is all of the things that we are now describing. You know, the dependencies and so on. You&#8217;ve got to weigh up at the beginning of the project whether one thing is worth all of the time and effort that may be required to do it.</p>\n\n\n\n<p>And I&#8217;m guessing in many cases, certainly at the enterprise level, the answer&#8217;s going to be yes, because the budget is there, we can put enough bodies to work to make all of this happen, and if we need to fork things, there&#8217;s enough people on the team that can do that and maintain the project, which has fallen into disuse. But for a little project the seasaw may tip heavily against something like headless just because of the things that you&#8217;ve described there.</p>\n\n\n\n<p>Okay. So that was our first thing, dependency hell. The second thing that you wanted to talk about was the fact that in the WordPress world, especially in the last five or six years or so, we are really used to what you see is what you get, WYSIWYG. You save something in WordPress, you publish something and you have almost a hundred percent certainty of what it&#8217;s going to look like. The backend looks like the front end, especially with things like page builders and so on. But you say that that&#8217;s not always the case with headless solutions. Why is that?</p>\n\n\n\n<p>[00:25:55] <strong>Lax Mariappan:</strong> We will be creating custom blocks. So, either there are a popular way of building now custom blocks is with ACF. So you all might be aware of and using it, even though you are not a programmer, you might be using it, right? So ACF is easy to install and create some custom fields. So you can use ACF to block, to build blocks for the site.</p>\n\n\n\n<p>So those blocks can be used or you can build your own custom blocks. You can use any block starters like, frameworks that are available now. Or you can just follow our, WordPress comes with packages that you can on build command, so you can just build your block in a matter of seconds.</p>\n\n\n\n<p>But still, all this stuff. So for example, if you are having custom blocks, I&#8217;m not talking about just normal blocks, like where you add a paragraph or image or something very simple. That is easy to build and that&#8217;s easy to see. That&#8217;s different. But I&#8217;m here talking about something complex.</p>\n\n\n\n<p>So for example, you can imagine that as an Elementor widget or, some other items that it comes with the page builders. So, let&#8217;s say a slider, maybe tabs, accordions, all that stuff, right? So that can be added through the blocks itself. But you cannot preview them, because when you add them in the admin panel and we add them in the content. Those content gets, you know, you can choose like, oh, this is the tab title, this is the content.</p>\n\n\n\n<p>And you can keep adding the content, but you don&#8217;t know how it&#8217;s going to render in the front end. But let&#8217;s say if you are using some, there are a lot of free blocks and also even premium blocks available. So if you are using a block to build them, and then using the normal WordPress installation. Or you can use WordPress with the full site editing, the modern themes, or the hybrid themes, like old plus full site editing themes.</p>\n\n\n\n<p>Still they both work well. Like you can preview, oh, okay, this is the tab I added this content. I can&#8217;t view this one. But when it comes to ACF blocks or other certain custom built blocks, you cannot preview them.</p>\n\n\n\n<p>So when a editor or a user adds content, they may get lost. So I have a slider. I want to add three, four images to it. I may get lost. Oh, what&#8217;s the third image? What I have added there, and how it looks? Is the images correct? Is the text rendered properly or should I reduce any title or text or anything, right? So all this stuff becomes a little tricky. And also sometimes it becomes a pain for the content writers, content editors, and also the site owners.</p>\n\n\n\n<p>[00:28:24] <strong>Nathan Wrigley:</strong> So in the normal, traditional WordPress, let&#8217;s say we&#8217;re creating a page, we add a page, and we use whatever tool it is that we want to use for that. We add in some blocks. We are perhaps using Elementor, whatever it may be. And we click publish and then we are able to immediately view that because WordPress is working in the traditional sense of the word. The page gets pushed through the templating engine and it&#8217;s rendered with its template and we can see it right away.</p>\n\n\n\n<p>But because that&#8217;s not happening here. And the mechanism for rendering that page is entirely different. You can&#8217;t necessarily view it immediately. Have I kind of encapsulated that? What you are doing in the backend, because it&#8217;s decoupled with the presentation layer on the front end, you can&#8217;t necessarily always see it?</p>\n\n\n\n<p>[00:29:16] <strong>Lax Mariappan:</strong> Yeah, so that&#8217;s the challenge. So the solution here is to customize the way you built. So for example, we can give them a preview button so they can preview what are the slides, and how they look. And they can see that immediately in the editor itself. Like when they are adding content in the block editor, they can see it.</p>\n\n\n\n<p>And also the other way is to have a button, a preview button. So that will preview before the content gets published. So, you can change the workflow. So if somebody hits, instead of publish, you can have like a preview button or keep it as a draft. So that way it&#8217;s like nothing goes to the front end without your approval or preview, right? So you have to preview it and see, oh, make sure everything looks correct, and then you can say, hey, I want to publish it. Yes, confirm, publish it, and then it goes to the frontend.</p>\n\n\n\n<p>[00:30:04] <strong>Nathan Wrigley:</strong> That&#8217;s fascinating. That&#8217;s really ingenious. So, because we can&#8217;t necessarily see it on the frontend, you and your team have built a custom preview system. So on a block by block basis, you can see what that block will look like when it&#8217;s rendered. So in the example of your slider, presumably where we&#8217;ve got three or four fields. We&#8217;ve uploaded maybe some text, we&#8217;ve uploaded an image, and it&#8217;s just a bunch of fields. Normally we&#8217;d click publish and we&#8217;d go to the page and preview the page and we&#8217;d see it right away. But in your scenario, you are going to hit a button inside the block to show what that block and that block alone will look like. Have I understood that?</p>\n\n\n\n<p>[00:30:48] <strong>Lax Mariappan:</strong> Yeah, that&#8217;s what we did. Because the users, they are used to the traditional WordPress. And especially that was with classic editor, I mean the old editor. So if you insert an image, they can see it&#8217;s an image. And if you insert something, you can see. And we are all used to the page builder era, right? So if you add a accordion, you can see how the accordion is going to look.</p>\n\n\n\n<p>But when it comes to headless, all this stuff is going to differ. So, the tabs, accordions, sliders, and also anything else, any other custom stuff that we built, we added a preview button, and when you click on the preview, you can see that right away.</p>\n\n\n\n<p>Then you can make sure like, oh, the colors are correct, the image is correct, and everything renders properly. Because sometimes if you are not looking at the content and adding content, you might miss some data, right? So you might have missed a small setting that says full width, or you know, boxed. So then you feel like, oh, why this looks so awful. Oh, I&#8217;ve missed this full width button. So that&#8217;s how the preview button works.</p>\n\n\n\n<p>[00:31:49] <strong>Nathan Wrigley:</strong> So if I&#8217;m looking at the block and it&#8217;s a, let&#8217;s stick with the slider just for the sake of it, and I&#8217;ve uploaded my images and whatever fields were required and I click the preview. Does it literally happen inside that block? Or is this some kind of modal which pops up and shows things? Or is it, is it literally taking over the block itself?</p>\n\n\n\n<p>[00:32:09] <strong>Lax Mariappan:</strong> Ah, it&#8217;ll be within the block. Like it will replace, so for example, if you have a block and you are adding some content to it, and when you click on the preview, it&#8217;ll replace where you are adding the content, right? It&#8217;ll replace the form. Form of the block where you are saying like, hey, this is the title, this is the subheading, this is the description. Instead of that, it&#8217;ll just render the titles, heading and description.</p>\n\n\n\n<p>[00:32:32] <strong>Nathan Wrigley:</strong> Right, and then you toggle that off again once you&#8217;re, once you&#8217;re happy. So, ah, that&#8217;s really interesting. So the workflow there is really very different. And I&#8217;m presuming that after a period of time, the people who are editing, creating this content, that just becomes part of the process? They just understand that, okay, rather than viewing the whole page or whatever it may be, post whatever, I&#8217;m just viewing this little bit, and I&#8217;ve done it several times now and I&#8217;m confident that if it looks right inside the block preview, then I can click publish, wait for everything to happen, and hopefully that page will go live. And, it&#8217;s just a different workflow that you have to get used to. But once you&#8217;ve done it several times, it&#8217;s, familiar and normal.</p>\n\n\n\n<p>[00:33:14] <strong>Lax Mariappan:</strong> Yeah, it becomes part of the workflow. And also, like we discussed earlier, your site will be like, CMS.example.com. And the front end will be on example.com. Sorry, every time you have to go to example.com/about, example.com slash contact us. Instead of that we will have a preview button. So, you can preview each block and you, if you, or feel like, hey, I want to see how the whole page looks like, you can click that preview, and that will take you, or that will show you immediately, oh, this is how the front end, like example.com/the page will look like.</p>\n\n\n\n<p>[00:33:45] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s a good point. We&#8217;re so used to the preview button being connected to the URL in question, because it&#8217;s being rendered by WordPress. You click the preview page button or whatever it may be, and it takes you to the correct place. In this case, there&#8217;s no connection between what the URL will be and where you currently are, so yeah, that&#8217;s fascinating.</p>\n\n\n\n<p>Just as a bit of an aside. We haven&#8217;t got into this, but I think it would be a good topic to discuss for a couple of minutes. If WordPress is separated from the presentation layer, this sort of headless notion. How often does the website get regenerated, if you know what I mean? So for example, if we click publish in our headless WordPress website, what is typical there? Are you going to generate the page immediately and store it as static html? Or do some clients have different expectations there? You know, for example, if you are a, a site which needs to publish things regularly, perhaps you need that capability.</p>\n\n\n\n<p>I click publish. I want that page to be live within a matter of moments. Or it may be that you&#8217;ve got a website where it doesn&#8217;t really matter if the pages are not built, I don&#8217;t know, three hours, six hours a day, whatever it may be. Do different clients have different expectations there?</p>\n\n\n\n<p>[00:34:56] <strong>Lax Mariappan:</strong> Yeah, that depends on how the publication frequency is. If you want to publish immediately, we can do. If you are okay with publishing the changes after two, three hours, still we can do. So it&#8217;s about how you want to set, how you want to build the things.</p>\n\n\n\n<p>So here, few things to consider. You can go with static, fully static website. That&#8217;s just static and only when a page gets updated. So for example, you have a hundred page. All of them are static and those pages will not be regenerated. So if you change just the about page and only that 99 pages will remain the same. Only that about page will get regenerated again. You can go that route.</p>\n\n\n\n<p>And also you can go with, every time in the page gets rendered, you can go server side rendering. So every time that&#8217;s new, so you can go that route as well. So that depends on how you want to render the data and everything has pros and cons. The normal way is like how Next.Js does now. Because it is like, keep everything static and if you want to render something, you can still regenerate the specific page.</p>\n\n\n\n<p>So this way it&#8217;s like you don&#8217;t have to build everything all the time. So you can build what has changed in the WordPress. You can see that in the headless frontend. And also you don&#8217;t have to wait for it. So, for example, if I go make some change and click update and you can see that immediately.</p>\n\n\n\n<p>[00:36:21] <strong>Nathan Wrigley:</strong> Really interesting, because there is no exact way of doing this is there? You can just build it in whichever way you think is most beneficial, or whatever the client needs. You know, if, if it&#8217;s a newspaper website where, really I need to click publish, and within a few moments I need that page to be live because the content that we&#8217;re creating is tremendously important to be fresh and new and so on. But it may be that, yeah, you don&#8217;t have that expectation and you&#8217;re quite happy to have it work in a different way and publish on a, a much less frequent basis. I can&#8217;t really imagine a scenario where anybody would say no, I&#8217;d rather it was published less frequently, but maybe there are scenarios where that&#8217;s beneficial. I don&#8217;t know.</p>\n\n\n\n<p>Okay, and the last point that you wanted to talk about was, the whole conversation has proven to be really interesting, but it&#8217;s pretty clear that there&#8217;s a lot more work involved in this kind of website. And so your first point was about the fact that the dependencies, lots of dependencies. Your second point that was that you don&#8217;t always get to see what you see is what you get in operation. And the third one is basically the amount of time it takes, the amount of resources it takes. You&#8217;ve described this as headless asks for more. Tell us about that.</p>\n\n\n\n<p>[00:37:34] <strong>Lax Mariappan:</strong> Yeah, so when it comes to creating a normal WordPress, like a standard WordPress theme. So what you do is like, you start with your prototyping tool. Like it can be Figma, Adobe XD or anything. So you have your design ready, right? You are creating mock-ups, discuss with the client, and then create a mock-up and then find the variations, all that stuff. And you are settling in, hey, this is my design. And now I&#8217;m going to create the theme.</p>\n\n\n\n<p>So, I want to create this many templates. I want to create this many menus, all that stuff. When it comes to traditional stuff, it&#8217;s like, you don&#8217;t have to consider too many things. So it&#8217;s kind of straightforward process and like designers and developers can, the engineers can work hand in hand. And it&#8217;s, you can follow Agile like, build stuff, reiterate and just deliver it.</p>\n\n\n\n<p>So that&#8217;s how that works. But when it comes to headless, so you have to consider a lot of things. I would say the first thing is the knowledge or, you know, expertise. With WebDev Studios, we are, I would say kind of one of pioneers and also experts in WordPress plus headless stuff. So we have launched, it&#8217;s a open source like we have Next.js starter template. So if you want to try out Next.js a headless frontend for your WebPress site, you can just take a look at WDS Next.js starter. It&#8217;s free and it&#8217;s in GitHub, so you can just start using it.</p>\n\n\n\n<p>So, expertise comes one, like whether you should be, have sound knowledge in that. So you can go and fix stuff. You know what you are doing and you know what to expect and all that stuff. But this requires something like, for example, I am a backend engineer. I have limited React knowledge. I&#8217;m now catching up with React, Next.js, all that stuff. But I would, I would not say I&#8217;m an expert at it. I build stuff, I still use Next.js every day, but it&#8217;s like, I won&#8217;t say I&#8217;m an expert at it.</p>\n\n\n\n<p>So expertise is one. So your team should have sound knowledge in the framework or anything that you do. Or even if you don&#8217;t have sound knowledge, let&#8217;s say if you are doing something like, something very new, like Remix got released only one or two years ago, right?</p>\n\n\n\n<p>So if you want to go use Remix, You should be an expert in React and you should play around with React. So that&#8217;s the time. So my point is like time, it asks for expertise and it asks for time. So when it comes to just normal WordPress theme, probably you might finish the theme, let&#8217;s say, in a few weeks, or at least a few days even sometimes. With page builders finish it in few days or few weeks, right?</p>\n\n\n\n<p>But maybe if you are building it from scratch and you are doing a lot of customization, it may take a while. But when it comes to headless, may take even longer. So more expertise, more time, and all this adds up to more budget.</p>\n\n\n\n<p>This may sound like, oh, well should I do all this stuff? It&#8217;s kind of worth it. So you don&#8217;t have to, for example, if you have your, the front end components ready you may be having your storybook, like where you want to see how the button should look like, how the elements, how the panels are. Let&#8217;s say how each component will look like and how they render, all that stuff, right? So when you have all these parts ready, you can go from, for example, today I&#8217;m using Next.js, sooner I can move to something else, like I can use Remix. Or I can use something else that&#8217;s going to be hot in the market in future.</p>\n\n\n\n<p>But when it comes to the typical WordPress, you are going to change everything from scratch. So if you want to add a new theme, so maybe if you want to change the look and feel, that&#8217;s different. So everything has pros and cons, but the short answer is the headless CMS ask for more.</p>\n\n\n\n<p>[00:41:13] <strong>Nathan Wrigley:</strong> Yeah. It does sound like not only do you need more time to develop all of this for the reasons you&#8217;ve just described. It&#8217;s more complicated, so it takes more time. There&#8217;s more moving parts, shall we say. And it may also be that you need to spend some of that time not just building the thing, but learning how all of this hangs together, because there&#8217;s an awful lot going on in the backend here. And if you don&#8217;t have expertise in that, presumably things could go pretty wrong.</p>\n\n\n\n<p>With that just before we end. You&#8217;ve obviously decided at WebDevStudios that this is an approach. I don&#8217;t know if you build the majority of your sites in this way or subset or a proportion of them, not sure. But, typically what is the amount of time longer it would take to get a website out? Let&#8217;s say, for example, that if you were just going to use WordPress as is a normal WordPress website, and you built an exact same website, but did it headless. And let&#8217;s imagine a site with, I don&#8217;t know, several different custom post types.</p>\n\n\n\n<p>It&#8217;s got hundreds of pages. I&#8217;m just kind of making up something off the top of my head. But typically, you know, does it take twice as long, three times as long, 50% longer? What, what are we looking at?</p>\n\n\n\n<p>[00:42:28] <strong>Lax Mariappan:</strong> I&#8217;m going to answer just like other engineers do. It depends. But it&#8217;s like, I would say it takes a long, maybe you can say, maybe you can say double, but it should not take more than double or something. So that&#8217;s where I would say start with more of research. So you should not change frameworks or libraries in between. Like once you started as React, go with React. And if your team is, they are very comfortable and they&#8217;re knowledgeable in React, use that. If you are going to use Vue.js or Astro or any other framework. When you start with something and you can go with it.</p>\n\n\n\n<p>So, it is a matter of discovering what the client needs and where the goals meet. How we can achieve it. And once we are very clear on that, you can start developing. And during the development phase itself, we can see what are the possible, you know, the bottlenecks or what causes the issue, what could be a problem, and we can figure out other different approaches and solutions.</p>\n\n\n\n<p>So, for example, you don&#8217;t have to let&#8217;s say, PayPal is not the only payment provider right now, right? The payment gateway. So we are using so many different stuff and they do the payment integration quickly. But before those days, let&#8217;s say 10, 15 years ago that case was different, so now we have more options.</p>\n\n\n\n<p>So similarly, you don&#8217;t have to create a form and you don&#8217;t have to wait for someone to, the third party or some other open source in a package or something to be ready. So either you can build something on your own if you have time and budget, or you can fork something and then you can adjust to it.</p>\n\n\n\n<p>Or the other way is, I would say you can go with some existing third party or SaaS or any other solution, which is just already there and you can see how you can use it with WordPress. So these are the stuff that can reduce your development time.</p>\n\n\n\n<p>So when you say if you are, I don&#8217;t know exact hours or something, let&#8217;s say a thousand hours. So if you say a thousand hours for a normal WebPress installation, so headless may take a little longer, 1,500 or 2000 or anything. But it depends on what the client wants and what framework you choose and your expertise, like, I mean, the whole team&#8217;s expertise. And also how well we plan, organize, and go.</p>\n\n\n\n<p>So sometimes it&#8217;s like just the client takes so long to respond, or sometimes it&#8217;s just like, even the client is clueless or what&#8217;s happening. So that adds up to some stuff. And I would like to also highlight, when you hear all this stuff, somebody listening is, they will be scratching their head like, so headless is yay or nay.</p>\n\n\n\n<p>So, recently, I cannot say the client name and stuff, but I would say, how we figured this out and how it is kind of helpful. So we had to publish more than 20 websites. That&#8217;s for a single client. And all of them are different, and all of them are headless, but that&#8217;s for a single parent company.</p>\n\n\n\n<p>So what happened is, we had the architecture ready, right? So we, we know what happens when you publish. We have everything ready. I mean, the back end and the front end ready. So things become more easier that way. The development time is actually just for one site and then other sites, it&#8217;s just like, it was fast.</p>\n\n\n\n<p>But we had enough configuration and enough options we given to the client. So every site is not going to look exactly the same. They have their own customizations. But still it&#8217;s like amount of development time is the same or is actually less when you compare to traditional. But it depends. It depends on what&#8217;s the use case? How, what you are trying to build and everything.</p>\n\n\n\n<p>[00:45:52] <strong>Nathan Wrigley:</strong> Yeah, it really does sound, there were so many good perspectives at the beginning where, you mentioned performance and so on where this is definitely going to be worth it. I guess if the client is willing and the budget is available and the expertise is there, then this sounds like an incredible option. Steep learning curve probably, but a lot of benefits on the backside of that.</p>\n\n\n\n<p>Lax, just before we round it up, if somebody has been thinking about playing with headless and they&#8217;ve listened to this and they think, okay, I&#8217;d like to take that a bit further. Couple of things, firstly, where can they get in touch with you? But also have you got any guidance about resources that they may find useful?</p>\n\n\n\n<p>So that could be a website or a book or whatever it may be. So let&#8217;s start off with resources and then we&#8217;ll turn to you to finish it off. So what resources do you recommend to learn about headless in general?</p>\n\n\n\n<p>[00:46:49] <strong>Lax Mariappan:</strong> In general it&#8217;s like you can start with WP Engine has their own blog. They have stuff about headless WordPress and they also have some of packages and stuff they maintain. They have Atlas. It&#8217;s a platform they are planning to go full fledged on headless stuff. And also you can read about GraphQL, WP GraphQL. Their team is more active and they share a ton of stuff on how to customize and maintain stuff with headless.</p>\n\n\n\n<p>And also you can, like a shameless plug. So I&#8217;d also highlight about our WebDevStudios blog. So you can see a lot of headless related articles, tips, and tricks. If you want to play around like, you know, you don&#8217;t have to spend something to test it out. So you can go with a lot of free starter templates.</p>\n\n\n\n<p>So we have, WDS has like WebDevStudios has a starter template. We have Next.js starter. So that&#8217;s a headless thing. All you need is your WordPress, and then you can install that on a locally in your laptop or machine, and then you can just test it out, how it looks, compare the performance and everything.</p>\n\n\n\n<p>And also, like other developers and writers have their own stuff. Like Colby Fayock is a popular WordPress developer. He has his own Next.js starter. So you can just simply Google WordPress headless starter, and you can find a lot of starter templates. If you are a developer, go this route or if you are a, you know, site owner or you are just hobbyist, you want to just try or understand a little bit more?</p>\n\n\n\n<p>You can still do that reading the resources, right? You can actually check our blog as well. WebDevStudios blog. We have, I would say a couple of headless related stuff. That&#8217;s one of the popular article last year. Why headless WordPress is trending. So you can see why it is trending, what to expect. You can read more details in that blog.</p>\n\n\n\n<p>[00:48:40] <strong>Nathan Wrigley:</strong> Thank you very much. And then finally, just to finish this off. Where could people get in touch with you? Are you available on social media? Maybe an email address? Whatever you&#8217;re comfortable with sharing.</p>\n\n\n\n<p>[00:48:50] <strong>Lax Mariappan:</strong> Sure. You can find me on, you know, Lax Mariappan. I&#8217;m on all the social media like Twitter, Instagram, Facebook, and everywhere you can find me. So you can reach out to me as an email as well, laxman.0903@gmail.com. Anywhere like GitHub everywhere is the same. Luckily I got my name on all the social media, so you can find it.</p>\n\n\n\n<p>[00:49:10] <strong>Nathan Wrigley:</strong> Lax Mariappan, thank you so much for chatting to me today. I really appreciate.</p>\n\n\n\n<p>[00:49:16] <strong>Lax Mariappan:</strong> Thanks Nathan. It&#8217;s been great. So I&#8217;ve been listening to WP Tavern Podcast for a while. Especially, I like to catch up with what&#8217;s going on. The new stuff with WordPress. So it&#8217;s good to be on the show,</p>\n\n\n\n<p>[00:49:28] <strong>Nathan Wrigley:</strong> Well, you are most welcome. It&#8217;s been a really interesting and informative episode. Cheers.</p>\n\n\n\n<p>[00:49:34] <strong>Lax Mariappan:</strong> Cheers. Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today, we have <a href=\"https://mobile.twitter.com/laxmariappan/\">Lax Mariappan</a>.</p>\n\n\n\n<p>Lax is a web developer based in the Philippines. He’s an Open Source enthusiast, and lover of all things WordPress. Lax has been tinkering with websites since high school, but it all changed when he discovered WordPress in 2010. Lax currently works as a Backend Engineer at <a href=\"https://webdevstudios.com/\">WebDevStudios</a>.</p>\n\n\n\n<p>We talk today about Headless WordPress, and it’s a complex topic. Headless is the concept of decoupling the WordPress admin from the frontend of the site. WordPress will continue to work as expected, but the presentation layer will be done by a different technology. React, Gatsby and Remix being some popular choices.</p>\n\n\n\n<p>This implementation of WordPress is complex, requiring technical knowledge above and beyond that needed for a more typical WordPress install, but it has its benefits.</p>\n\n\n\n<p>Lax talks through all of this in great detail. How keeping on top of all the additional dependencies Headless WordPress requires can be time consuming. How it can create difficulties for content editors who don’t always get to see what their work will actually look like in real time. Why this approach to WordPress can take more time and resources during the build.</p>\n\n\n\n<p>Lax explains how these problems typically crop up, and how it’s possible to plan ahead and build in solutions for all the problems that you might encounter.</p>\n\n\n\n<p>If you’ve ever thought about going Headless with WordPress, then the podcast today is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://reactjs.org/\">React Library</a></p>\n\n\n\n<p><a href=\"https://www.gatsbyjs.com/\">Gatsby</a></p>\n\n\n\n<p><a href=\"https://remix.run/\">Remix</a></p>\n\n\n\n<p><a href=\"https://webdevstudios.github.io/nextjs-wordpress-starter/\">WebDevStudio Next.js WordPress Starter</a></p>\n\n\n\n<p><a href=\"https://graphql.org/\">GraphQL</a></p>\n\n\n\n<p><a href=\"https://www.wpgraphql.com/\">WPGraphQL</a></p>\n\n\n\n<p><a href=\"https://webdevstudios.com/blog/\">WebDevStudio Blog</a></p>\n\n\n\n<p><a href=\"https://www.colbyfayock.com/\">Colby Fayock&#8217;s website</a></p>\";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:\"Wed, 11 Jan 2023 15:00:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;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:71:\"Do The Woo Community: 95% of Websites Have an Issue with Color Contrast\";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:28:\"https://dothewoo.io/?p=74180\";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:35:\"https://dothewoo.io/color-contrast/\";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:379:\"<p>Even just by getting your color contrast right, which is very easy, anyone can do it. You just use a contrast checker.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/color-contrast/\">95% of Websites Have an Issue with Color Contrast</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Wed, 11 Jan 2023 10:43:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;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:86:\"WPTavern: WordPress Performance Team Working Towards Unbundling Performance Lab Plugin\";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:30:\"https://wptavern.com/?p=140668\";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:97:\"https://wptavern.com/wordpress-performance-team-working-towards-unbundling-performance-lab-plugin\";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:4476:\"<p>WordPress&#8217; Performance Team met this week with the express purpose of responding to Matt Mullenweg&#8217;s recent request to stop adding functionality to the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> plugin which could otherwise work as a standalone plugin.</p>\n\n\n\n<p>At the end of December 2022, the Performance Team published instructions for <a href=\"https://make.wordpress.org/core/2022/12/20/help-us-test-the-sqlite-implementation/\">how to test the new SQLite implementation</a>, which was bundled into the Performance Lab plugin as a module. Mullenweg commented on the post, indicating he saw the SQLite functionality as better suited to becoming a standalone community plugin:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Can we please make this its own community&nbsp;plugin, hopefully to become a canonical one, and stop putting additional things like this into Performance Lab — it feels like we’re stuffing things into PL unnecessarily.</p>\n\n\n\n<p>In mid-October I have requested that we stop this unnecessary bundling before with&nbsp;<a href=\"https://profiles.wordpress.org/tweetythierry/\">@tweetythierry</a>&nbsp;around WebP, which was put into Performance Lab, so it is disappointing that another large function like SQLite was bundled into Performance Lab plugin.</p>\n</blockquote>\n\n\n\n<p>In an effort to galvanize a base of testers for upcoming performance features, the Performance Team has leaned towards bundling new performance-related functionality into the plugin. Although they are already developed as self-contained modules so they can be easily extracted as individual plugins, the concern is that their visibility would be greatly reduced. The Performance Lab plugin has more than 30,000 active installs. Any standalone plugin would take time to build up to a user base, whereas functionality added to Performance Lab has an instant audience.</p>\n\n\n\n<p>&#8220;Agreed that there are definitely valid use cases for stand alone plugins, remaining mindful of some of the advantages of a single hub plugin such as development/maintenance, adoption, promotion, developer onboarding/contribution etc. which the Performance Lab facilitates well today as a central performance focus community hub plugin,&#8221; Performance Team contributor Thierry Muller <a href=\"https://make.wordpress.org/core/2022/12/20/help-us-test-the-sqlite-implementation/#comment-44231\">said</a> in response to the unbundling request.</p>\n\n\n\n<p>Muller outlined three different options contributors discussed in <a href=\"https://make.wordpress.org/core/2023/01/10/performance-team-meeting-summary-10-january-2023/\">this week&#8217;s Performance Team meeting</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<ul>\n<li>Option 1: Keep PL as is, but additionally&nbsp;deploy&nbsp;modules as individual plugins</li>\n\n\n\n<li>Option 2: Make PL a “wrapper” focused on central infrastructure and recommendation of individual plugins</li>\n\n\n\n<li>Option 3: Deprecate PL completely in favor of individual plugins</li>\n</ul>\n</blockquote>\n\n\n\n<p>Option 3 seems to be the least attractive to those who participated in this week&#8217;s discussion, as it introduces more hurdles for discoverability. Performance Team contributor Felix Arntz noted that one benefit of option 1 is the plugin would continue to work as-is for the 30K people who currently have it installed and that option 2 &#8220;would require a complex migration that users likely would not understand.&#8221;</p>\n\n\n\n<p>WordPress developer Jonny Harris suggested that having each functionality in its own plugin helps with testing but also asked what defines a module.</p>\n\n\n\n<p>&#8220;Would the current Site Health checks all be together, for example?&#8221; Harris asked. &#8220;SQLite and WebP are clearly their own modules, but what about smaller things?&#8221;</p>\n\n\n\n<p>Arntz suggested contributors continue the discussion regarding the scope of how the current modules could be distributed as plugins. He suggested every module could become its own plugin where some modules become standalone plugins and others would be grouped together into a few &#8220;topic specific&#8221; plugins. </p>\n\n\n\n<p>Contributors are discussing the different approaches in more detail on a GitHub issue and will be <a href=\"https://github.com/WordPress/performance/issues/618#issuecomment-1377598692\">voting on the best approach</a>. The vote will be open until Friday, January 20, 2023. </p>\";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:\"Wed, 11 Jan 2023 03:34:14 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;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:49:\"HeroPress: Why small can be just the right choice\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=5014\";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:150:\"https://heropress.com/essays/why-small-can-be-just-the-right-choice/#utm_source=rss&utm_medium=rss&utm_campaign=why-small-can-be-just-the-right-choice\";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:7334:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/01/011023-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress has impacted where we live, who our friends are and which destinations we like to visit.\" />\nHere is Ellen reading her own story aloud.\n\n\n\n<p>I feel honoured to write an essay for HeroPress. While thinking about what I should write about, I wanted to make sure it will be helpful to others.</p>\n\n\n\n<p>Of course, everyone&#8217;s goals are different. My partner Manuel and I started to create WordPress products, because we saw the opportunity to build a small business and keep it a business we both felt comfortable to work in over the years. And that&#8217;s what we did. We love to travel and searched for a way to live the nomad lifestyle long before the term was even a thing. We travelled and worked on our blog and themes. And don&#8217;t get me wrong, it was not easy in the beginning. We had to build an audience first, so we wrote blog posts about everything we learned while keeping financially afloat with small client projects. We put endless hours of work into our blog, before even dreaming of one day earning income just with our themes. But we loved every minute of it. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>We worked from Thailand, Sri Lanka and New Zealand, and we felt creative and free. </p>\n</blockquote>\n\n\n\n<p>We went to WordCamps and creative conferences along the way and met so many new people with similar values and goals.</p>\n\n\n\n<p>Having these experiences formed our way of thinking about the way we wanted to work moving forward. The benefits of being a small team of two seemed so obvious to us. We could make decisions fast and react to new trends without asking anyone for permission. As long as we built something others liked, we would always be ok. So that&#8217;s what we focused on. We built one theme after the other and loved the creative freedom this work gave us. The positive feedback and listening to the stories our customers shared on how our themes helped them reach their goals kept us going.</p>\n\n\n\n<h2 id=\"h-living-abroad\">Living abroad</h2>\n\n\n\n<p>As we could work remotely from any location. We didn&#8217;t need an office or a local team. Keeping our business so flexible allowed us to move from Germany to New Zealand in 2015. After about two years working towards it, we were able to apply for a business visa and eventually for permanent residency four years later. Living away from family is never easy, but the opportunity to live in another country surely teaches us so many valuable lessons we would never want to miss. It&#8217;s a true gift, all made possible by our small WordPress business.</p>\n\n\n\n<h2 id=\"h-reacting-to-changes\">Reacting to changes</h2>\n\n\n\n<p>Fast-forward to 2018 and the WordCamp Tokyo, where we first got the chance to dig deeper into the Gutenberg project during contributor day. We knew changes were coming, and we needed to react with our business. Even before, we felt that building one theme after the other felt a bit tiresome and not like the most effective way for WordPress users to build their site design. We were never convinced by the page builder solutions, as it just seemed too bloated and untrue to WordPress core to bring a wow effect to us. We love to keep things flexible and minimal, and adding an entire framework on top of WordPress never felt like a great idea to us.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>So here comes this Gutenberg thing, a promise to a more flexible, component based way of creating designs for WordPress. </p>\n</blockquote>\n\n\n\n<p>We felt like this is meant to be for us. So once home from the WordCamp we started to build blocks and explore how this new WordPress would work. We did not realize back then how big these changes would become and how much it would impact our work and our business.</p>\n\n\n\n<p>But it felt good to build something new and to try to find a better solution to offer for our theme customers. We struggled to gain footage for quite some time, as there were just so many new technical things to figure out and so much was unclear. But we still never doubted that we are on the right track, as with every new release the opportunities seem to get better and more stable.</p>\n\n\n\n<p>And just now we are just about to relaunch our business websites with a brand-new block theme that is solely built with our blocks, WooCommerce blocks and WordPress core blocks. It finally feels like all the work comes together and themes and the Gutenberg project are ready to be merged into one and released for production.</p>\n\n\n\n<h2 id=\"h-opportunity-to-pivot\">Opportunity to pivot</h2>\n\n\n\n<p>During all these changes, we had the time to think about the future of our WordPress business and what we want our road ahead to look like. Many others around us have sold their independent businesses or took a job at one of the big WordPress businesses. I feel like it&#8217;s also a natural path of WordPress and all of us growing up.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>For us, we feel like we are just getting started again, finally having found a way to have fun creating for WordPress again. </p>\n</blockquote>\n\n\n\n<p>Building one of our last classic themes, we felt like we had lost the fun in designing for WordPress. We felt like themes were stuck, being either too inflexible and or way too bloated to be any good. It felt like we were trying to build, squeeze out a solution into a product that technically was never meant to be this way.</p>\n\n\n\n<p>Block themes, the site editor, patterns, and blocks come as a chance for us to do it better. It&#8217;s a big shift and a difficult project to pull off, for sure. WordPress is used by so many people in so many ways. But block themes make WordPress lighter, and they don&#8217;t stand in the way of other add-ons as much as classic themes felt they were. It&#8217;s amazing how we can take all the components apart and mix and match them together. There are still missing pieces, but we are getting there.</p>\n\n\n\n<p>For us, we are taking this shift that we are sort of making together with WordPress, as an opportunity to make things better. We always felt like we wanted to offer more support and help to our customers. But we never found the time. So with our upcoming relaunch, we are taking the chance to change that. We will offer new services and are exploring more ways to offer our customers what they actually need. It feels like a breath of fresh air to us, and we haven’t had so much fun with WordPress in a long time.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>It&#8217;s funny, who would have thought that a piece of software can impact your life in such a big way. </p>\n</blockquote>\n\n\n\n<p>WordPress has impacted where we live, who our friends are and which destinations we like to visit. We feel more open-minded because of WordPress, we believe in the power of open source projects and we believe that a group of people from all over the world can build something meaningful together.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/why-small-can-be-just-the-right-choice/\">Why small can be just the right choice</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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:\"Wed, 11 Jan 2023 01:15:33 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ellen Bauer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;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:63:\"WordPress.org blog: WordPress is Turning 20: Let’s Celebrate!\";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=14155\";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:74:\"https://wordpress.org/news/2023/01/wordpress-is-turning-20-lets-celebrate/\";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:1474:\"<p>2023 marks the 20th year of WordPress. Where would we all be without WordPress? Just think of that! While many technologies, software stacks, and fashion trends have come and gone throughout the past two decades, WordPress has thrived. This is due to the fantastic work and contributions of the WordPress community, comprised of thousands of contributors; and millions of users who have embraced the <a href=\"https://wordpress.org/about/\">four freedoms of WordPress</a> and the mission to democratize publishing.</p>\n\n\n\n<p>Let’s celebrate!</p>\n\n\n\n<p>Throughout the beginning of 2023, leading up to the official anniversary date of WordPress’s launch (May 27, 2003), a number of different events will celebrate this important milestone, reflect on the journey, and look toward the future.</p>\n\n\n\n<p>Please join in!</p>\n\n\n\n<p>Over the next few months, be sure to check WordPress’s official social media accounts along with the <a href=\"https://wp20.wordpress.net/\">official anniversary website</a> for updates on how you can be involved in this exciting celebration by contributing content, collecting cool anniversary swag, and much more. </p>\n\n\n\n<p>Use the hashtag <strong>#WP20</strong> on social media so the community can follow along.</p>\n\n\n\n<p>If you have something planned to celebrate that you would like to be considered for inclusion on the official website, please <a href=\"https://forms.gle/my1yknAJYZ4jFLb79\">use this form to share the details</a>.</p>\";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, 10 Jan 2023 21:38:49 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;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:88:\"Do The Woo Community: WooCommerce, Payments and Crypto with Keala Gaines and Dave Lockie\";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:28:\"https://dothewoo.io/?p=74249\";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:52:\"https://dothewoo.io/woocommerce-payments-and-crypto/\";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:416:\"<p>Keala Gaines from WooCommerce and Dave Lockie from Automattic chat about the relationship between WooCommerce and Crypto.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woocommerce-payments-and-crypto/\">WooCommerce, Payments and Crypto with Keala Gaines and Dave Lockie</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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, 10 Jan 2023 10:11:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;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:85:\"WPTavern: Gutenberg Times to Host Webinar on How to Use New WordPress Layout Features\";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:30:\"https://wptavern.com/?p=140874\";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:96:\"https://wptavern.com/gutenberg-times-to-host-webinar-on-how-to-use-new-wordpress-layout-features\";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:4790:\"<p><a href=\"https://gutenbergtimes.com/\">Gutenberg Times</a> will be hosting a live Q&amp;A webinar titled &#8220;Layout, Layout, Layout&#8221; on January 11, 2023, at 05:00 PM in <a href=\"javascript:;\">Eastern Time (US and Canada)</a> via Zoom. This event is open to WordPress users of all experience levels who are interested to learn more about how to use WordPress&#8217; layout features when building sites with blocks. </p>\n\n\n\n<p>Host Birgit Pauli-Haack will be joined by WordPress veterans Isabel Brison, Andrew Serong, and Justin Tadlock. Brison will be demonstrating different layout scenarios during the presentation, and attendees will be able to participate with questions. </p>\n\n\n\n<p>Any user who has attempted to layout a design in WordPress has likely tried out container blocks that offer layout settings. These blocks include Columns, the Cover block, and the generic Group block.</p>\n\n\n\n<p>The event will cover how to manipulate layouts by defining the width of post content, arranging blocks horizontally or vertically, right or left aligned, and inside container blocks. </p>\n\n\n\n<p>&#8220;In terms of block styling, Layout is a complex feature because it affects child blocks in ways that go beyond CSS inheritance,&#8221; Pauli-Haack said. </p>\n\n\n\n<p>WordPress 6.1 introduced more layout controls and flexibility in the block editor, but Pauli-Haack said the <a href=\"https://make.wordpress.org/core/2022/10/10/updated-editor-layout-support-in-6-1-after-refactor/\">dev note on updated layout support</a> was written more for developers.</p>\n\n\n\n<p>&#8220;Feedback from users through the FSE program and other connections revealed that handling the layout settings for container blocks is not particularly intuitive and takes some trial and error to find the right combination,&#8221; she said. &#8220;The Live Q &amp; A will bring a better understanding to users and #nocode site builders.&#8221;</p>\n\n\n\n<p>When Pauli-Haack started the Live Q &amp; A&#8217;s in 2018, she routinely brought in guests who were building the block editor, with the intention of having users meet them and discuss features like full-site editing, block themes, case studies, and discuss challenges. </p>\n\n\n\n<p>&#8220;Since then, quite a few initiatives of the official WordPress project have come to life,&#8221; she said. &#8220;There is the highly successful Full Site Editing outreach program, spearheaded by Anne McCarthy, who now holds regular Hallway Hangouts with community members and contributors.&#8221; </p>\n\n\n\n<p>People are also learning the ins and outs of site editing through the efforts of the training team, which began creating courses and lesson plans and hosting workshops on Meetup.com in 2021. These are also recorded and uploaded to WordPress.tv and YouTube. WordPress.org also <a href=\"https://wptavern.com/wordpress-launches-developer-blog-in-beta\">launched a blog for developers</a> in November 2022. With all these new learning opportunities, Pauli-Haack is changing the focus for her live events.</p>\n\n\n\n<p>&#8220;For the Gutenberg Times Live Q &amp; As, I am now looking at topics and discussions about more complex concepts, more case studies, and technology on the cutting edge,&#8221; she said. Most recently, the show <a href=\"https://gutenbergtimes.com/live-q-a-block-first-approach-at-pew-research-center/\">featured the developers and digital strategies of the Pew Research Center</a>, a high profile site that was built with a block-first approach.</p>\n\n\n\n<p>&#8220;We are also in planning phase to hold a Live Q &amp; A with the developers of GiveWP who are using Gutenberg as a framework to build the next generation of their popular donations plugin with the components and scripts that Gutenberg uses, but outside the post or site editor,&#8221; Pauli-Haack said.</p>\n\n\n\n<p>She also has another Live Q &amp; A planned with the WordPress VIP design team that works on design systems for companies that need a streamlined way to stay within their design standards. Pauli-Haack intends to talk with them about a plugin they created that lets designers automatically create a website&#8217;s theme.json file with all the styling pulled directly from Figma designs.</p>\n\n\n\n<p>The upcoming Layouts webinar is free but attendees need to <a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">register</a> to get the zoom link. An archive of all the <a href=\"https://gutenbergtimes.com/live-q-a-archive/\">past Live Q &amp; A events</a> is available on the Gutenberg Times website. The best way to stay informed about future events is to <a href=\"https://gutenbergtimes.com/subscribe/\">subscribe</a> to Gutenberg Times&#8217; Weekend Edition, as subscribers get an early invitation for the next Live Q &amp; A&#8217;s.</p>\";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, 10 Jan 2023 03:37:42 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;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:23:\"Matt: State of the Word\";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:22:\"https://ma.tt/?p=75018\";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:42:\"https://ma.tt/2023/01/state-of-the-word-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:365:\"<p>A few weeks ago, but what feels like a lifetime ago, I was in New York City with a few dozen extra special people from around the WordPress world. Alongside <a href=\"https://josepha.blog/\">Josepha</a> and the community we presented this review of how WordPress did in 2022, and vision for what&#8217;s coming:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";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:\"Mon, 09 Jan 2023 23:25:18 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;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:85:\"Post Status: Support Inclusion in Tech with Winstina Hughes — Post Status Draft 136\";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:\"https://poststatus.com/?p=146189\";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://poststatus.com/support-inclusion-in-tech-with-winstina-hughes-post-status-draft-136/\";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:52731:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In this episode, <a href=\"https://twitter.com/planningwrite?lang=en\">Winstina Hughes</a> joins Cory Miller to talk about the  <a href=\"https://supportinclusionintech.com/\">Support Inclusion in Tech</a> project created to champion diversity, equity, and inclusion in the WordPress community by providing assistance to WordCamp speakers for travel and hotels. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">59</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p><a href=\"https://twitter.com/planningwrite?lang=en\">Winstina Hughes</a>&nbsp; is a long-term community member and organizer within WordPress. She joins Cory Miller to discuss <a href=\"https://supportinclusionintech.com/\">Support Inclusion in Tech</a>, an effort to increase representation of minority and underrepresented speakers at WordCamp by providing needed financial support. This offers everyone in the WordPress community the chance to share their expertise and contribute resources so everyone has the opportunity to engage.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Creativity is our common bond. </strong>WordPress is the playground where we all came to tinker and build for fun or business. It is the software magic where we discover what new things we can do each day, how to make ideas become reality, and how we might leverage what we learn to create a better world.</li>\n\n\n\n<li><strong>Ripple effect of inclusion: </strong>When you provide the ability for a large group of people to participate, travel, and network, the impact extends beyond the WordPress community to create the bigger changes we want to see in the world. This is our community magic.</li>\n\n\n\n<li><strong>Fifth Freedom in WordPress</strong>: We are all familiar with The Four Freedoms of WordPress. This is the 5th &#8211; full participation. Removing the financial barrier will bring us closer to the reality of being a truly inclusive community.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-42 wp-block-columns sponsor has-theme-palette-8-background-color has-background\" id=\"Gravity-Forms\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Episode Partner: <a href=\"https://poststat.us/gravity\">Gravity Forms</a></h3>\n\n\n\n<p><strong><a href=\"https://poststat.us/gravity\">Gravity Forms</a></strong> is a powerful form builder for WordPress and the #1 choice for businesses and web professionals across the globe. Its vast array of features, intuitive drag-and-drop form editor, and extensive ecosystem of add-ons, ensure customers can design beautiful, intelligent, and accessible forms for any project requirement.</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\"><div class=\"wp-block-image cloudways-logo\">\n<a href=\"https://poststat.us/gravity\"><img width=\"392\" height=\"299\" src=\"https://cdn.poststatus.com/wp-content/uploads/2021/07/gravity-forms-logo-stacked.png\" alt=\"Gravity Forms\" class=\"wp-image-88956\" title=\"Cloudways Logo\" /></a><a href=\"https://poststat.us/gravity\">Gravity Forms</a></div></div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://supportinclusionintech.com/\">SUPPORT INCLUSION IN TECH</a></li>\n\n\n\n<li><a href=\"https://twitter.com/sbruner\">Steve Bruner</a> </li>\n\n\n\n<li><a href=\"https://twitter.com/kcristiano\">Kevin Cristiano</a> </li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/\">WordCamp </a></li>\n\n\n\n<li><a href=\"https://twitter.com/WPNYC\">WPNYC</a></li>\n\n\n\n<li><a href=\"https://www.wordprowiz.com/\">WordPro </a></li>\n\n\n\n<li><a href=\"https://www.sustainablejersey.com/\">Sustainable New Jersey</a> </li>\n\n\n\n<li><a href=\"https://buddypress.org/\">BuddyPress</a> </li>\n\n\n\n<li><a href=\"https://www.godaddy.com/\">GoDaddy </a></li>\n\n\n\n<li><a href=\"https://yoast.com/\">Yoast</a> </li>\n\n\n\n<li><a href=\"https://masterwp.com/\">Master WP</a> </li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/planningwrite?lang=en\">Winstina Hughes</a> </li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Welcome to back to Post Status draft. I\'m with a good friend of mine when Winstina hughes. I met with Winstina a couple years ago in the post status community. We\'ve got to meet in person, talk numerous times, and, um, I\'m excited about what we\'re gonna be talking about here. Um, she\'s got a new, a project called support inclusion in tech.com and we\'re gonna dive into that today.</p>\n\n\n\n<p>But, uh, hi, Winstina. Hi. And pumped to finally have you on,</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> I\'m excited to be with you.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Could you tell us what you do in WordPress?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Okay. Um, What do I do in WordPress? every time I speak with, you know, every time I have one of these, um, you know, opportunities to speak with someone in the community, I end up like re repeating the question.</p>\n\n\n\n<p>Um, cuz it really helps me. I am a community member, um, and I\'m also, you know, a, an organizer, um, a meetup organizer and a board camp organizer. I started, um, going to [00:01:00] meetups in New York City and I transitioned into, Speaking, um, at Word Camp, New York City, and then I was invited to become a meetup organizer.</p>\n\n\n\n<p>And so, um, my, you know, my participation in the community was, um, you know, like in the early, um, you know, 2010s. And then around 2015, 2016, um, I started, you know, speaking at, at New York City, and then I became an organizer. I meet up organizer. In 2018, I led my first word camp and my only word, camp , hundred twenties, um, a budget of 120,000, a team of 18.</p>\n\n\n\n<p>Uh, it was an amazing experience. They were wonderful people and it was. Really tiring .</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. You know, over the years, Winstina, I\'ve had so many dear friends that have been Word Camp organizers and really I go, oh my God, I love you so much because of what you\'re doing for the community. But I also go, I hope you [00:02:00] still like word this afterwards because it\'s a such a labor of love that I think, um, so often we don\'t really give the credit and thanks to the people, That do this voluntarily.</p>\n\n\n\n<p>Yeah, like you\'re talking about all the stuff you\'re done. So anyway, I wanna say thank you because I\'ve said it so many times to dear friends over the years going, thank you for what you\'re doing. I\'ve always shied away from it because it\'s so much work and I see all the passion and energy that you and other organizers have and I\'m really thankful cuz I think that is so critical to the entire community to have these, and now we\'re talking in 2022.</p>\n\n\n\n<p>But we hear WordCamps are back. You and I got to see each other in San Diego at Word Camp US. Yes, yes, yes. So</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> anyway, so Word, word camp Us. I was a co-organizer for Word Camp US this year. Um, and so yeah, you\'re right. Like we had a chance to teach other again there, and that was like, yay. That was awesome.</p>\n\n\n\n<p><strong>Cory Miller:</strong> It was, yeah.[00:03:00]</p>\n\n\n\n<p>Yeah. A absolutely. Well, okay, so what drew you to, okay, how did you start with WordPress? Were you using WordPress for, uh, your own website, somebody else\'s website? How\'d you get started with the actual software?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> So I started with WordPress in 2006, 2007. Um, I had a college course that was . Yeah, I, I had a college course.</p>\n\n\n\n<p>Um, and our professor required us to add, um, you know, the work that we\'d done, uh, into a wordpress.com blog. Um, it was a geographic information systems class. And, uh, we were looking at public health data at the census block level. Um, and so we were actually, you know, looking to see. You know, where, um, there were instances of like, um, I don\'t wanna say disease, but you know, like different illnesses.</p>\n\n\n\n<p>And so what what\'s really interesting is that you can, that schools get access to that data and you can actually like, You can [00:04:00] essentially imagine, and I don\'t wanna go too far deep into it, but imagine you have like, you know, Google Maps, right? And like when you have Google Maps open, you can do street view.</p>\n\n\n\n<p>So Google Maps lets you like go from that whole, um, like that map into like street view where you jump in as a person. So, uh, this data essentially took you away from just the geographic element, um, and the typography and like really. The census, you know, track level, like essentially, um, you know, looking at neighborhoods and, you know, the instances of disease in those neighborhoods.</p>\n\n\n\n<p>And so he, you know, he gave that to us as our final assignment. Um, you know, we did some like, uh, some heat mapping to show where there were greater concentrations of a particular type of illness, , right. Um, or, um, you know, disease or, you know, Uh, I\'m not exactly sure like what, what we [00:05:00] were calling it, but that\'s what our assignment was.</p>\n\n\n\n<p>And, uh, he asked us to, you know, take like a picture of the map and to post it in wordpress.com and that\'s how it all started with that , with that assignment. Um, so we were you.</p>\n\n\n\n<p><strong>Cory Miller:</strong> We were using WordPress at the same time. That\'s the same year I started with WordPress when you started. I did not know you went that, that far back with WordPress.</p>\n\n\n\n<p>So I love that. Uh, yeah, I do. Thank you. And then you said like in 2010 you started actually, uh, getting involved with community events. And this is relevant to us talking about support, inclusion and tech. So what drew you to start participating in volunteering and contributing to WordPress?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> So I went to New York City Meetups, um, and, uh, WordPress, New York City, uh, is the one that\'s in closest proximity to where I lived.</p>\n\n\n\n<p>I could just take the train in. Um, and it was, it was great. Like I, I really felt, um, that the community there was, was [00:06:00] open, like the organizers were open and, and they were welcoming. Um, Dana, rendy, uh, those were organizers at the time, Steve Bruner, who was an organizer. Was he is the organizer, , he started it and he\'s, he\'s kept it, you know, um, really like strong, like, since its inception.</p>\n\n\n\n<p>Um, and so like just going to these events and meeting these, these like wonderful generous people, these kind people, um, you know, meeting Kevin Cre, Christiana there as well. Um, and you know, just that environ. Was what led me to continue attending events. Um, and they really encouraged me to submit a talk to speak at New York City, um, ward Camp, New York City.</p>\n\n\n\n<p>And I submitted a talk to speak there and, you know, since that time I\'ve been more engaged in. Event organizing component, [00:07:00] um, or part of the community. So it moved beyond just, you know, um, Like learning, you know, to use Word Pro, you know, building sites and breaking them, uh, the best, right? Yeah. Like, that\'s the best way.</p>\n\n\n\n<p>That\'s the only way you can really learn. I mean, I, I started, you know, with different hosting plans, I\'ve had like four or five, like I have multiple domains. Like I think when you\'re in our space, you got a chance to really create. And, um, and that\'s what I was able to do and what I\'m able to continue doing, and.</p>\n\n\n\n<p>Now moved from just creating and building with WordPress to assisting with supporting, you know, our community through events like meetups and, uh, word camp organizing and supporting inclusion in tech is, is an extension of, um, of this work, this contribution that I\'ve been doing. It, it, it pieces together so many different elements that I\'ve come to, like I\'ve come to see and I\'ve come to understand [00:08:00] and. It\'s, it\'s a solution that I propose to, um, some current challenges that, um, I\'ve heard being expressed. Yeah,</p>\n\n\n\n<p><strong>Cory Miller:</strong> I, uh, I wanna scroll back for a second and say that when you\'re talking about create, I sometimes it, for as long as you and I have been in WordPress sometimes forget that magic of being able to create something on the web or in the, in the world.</p>\n\n\n\n<p>See this cool tool called WordPress, so I appreciate that. I think that\'s what we rally around in the WordPress community and particularly to post status is helping build tools and projects and things on top of this magical thing we call WordPress. So that was a, when you said create, I was like, it\'s just little tingle of magic came up of that\'s, that\'s why we, I think that\'s our common bond in</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> WordPress.</p>\n\n\n\n<p>I agree. I agree. And I think that, uh, when we create as community members, um, and not necessarily [00:09:00] just as. Business owners or, or, um, you know, those who are providing like services. That\'s a component of creating. But, you know, in the middle of doing all that, I think, you know, I mean, I like to sit down and just literally play and see, you know, what could I do with it today?</p>\n\n\n\n<p>and, um, I entered a com competition, um, held by Sustainable New Jersey, um, right around the time I completed graduate school. And there were municipalities that were seeking, um, solutions for challenges that they had. And there was the city of East Orange and they wanted like a marketplace, um, and a place for their planning department to, you know, add their documents and also something for their green team.</p>\n\n\n\n<p>And when I saw this, I was like, I could use WordPress and e-commerce. So I created like a WooCommerce marketplace for them to sell, you know, for residents that would sell their products and services. And I demoed it. Um, and then I also had a website and also a Buddy press site. Um, and the buddy press site would be for their green team members.</p>\n\n\n\n<p>And I think that [00:10:00] like, when, when we create with WordPress, like we\'re able to like see like, you know, These asks and really apply like our knowledge of what we know the c m s can do and then provide a solution. And the city was actually really happy with the solution. Um, and I made it to the finals of the competition.</p>\n\n\n\n<p>Um, but there was another, uh, but there were other teams that that won it. Um, but it was, it was really exciting to show what WordPress, you know, software and what WooCommerce can. Uh, that\'s the</p>\n\n\n\n<p><strong>Cory Miller:</strong> dream. Um, that, that\'s so awesome. Thank you for sharing that backstory. As much as we\'ve talked and stuff, I haven\'t got the chance to ask those questions and, um, it\'s a good reminder for me about, you know, I think if you go long enough in the community, you start to, well, I, I\'ll say I start to.</p>\n\n\n\n<p>Forget some of these nuances, [00:11:00] like being able to go, here\'s a project idea, this could be done in WordPress, you know? And that the tools are mostly freely available. Yes. And you can start and build something online.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Exactly. Yeah. You just, you know, download . Yeah. Yeah. Well, yeah.</p>\n\n\n\n<p><strong>Cory Miller:</strong> So that leads me to support inclusion and tech. And you mentioned you saw a problem or problems and challenges in our community that you wanted to help make some a solution to toward it that became support, inclusion and tech. But can you talk about that a little bit? Cause I know my, my understanding and you continue to help me expand my understanding of all this is it\'s not just one particular country with DEI, it\'s a global thing. But could you talk a little bit about the problems and challenges that you saw in the space.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Absolutely. Um, absolutely. So I, you know, really wanna, like, I wanna hold true to like, um, to how [00:12:00] I, um, shared it on my website. Um, but really the backstory is that. There was a conversation that erupted on Twitter, um, about the need for more diversity on Word Camp, um, organizing teams. And this started, uh, due to, um, you know, uh, some, some thoughts that were expressed about Word Camp Europe, uh, where WordCamp Europe\'s organizing team, um, not being.</p>\n\n\n\n<p>Very reflective, um, of, you know, more ethnicities or a wider range of them. Um, it was a really difficult conversation that was happening. And my take on it really is that it\'s not where camp you\'re specific, right? Like, I mean, let\'s, you know, let\'s really step back and think about the fact that, you know, there\'s so many ethnicities around the world that have a ch [00:13:00] like it\'s really.</p>\n\n\n\n<p>When you\'re in the minority as a group, Really up to the group that\'s in the majority to weave you into those experiences and those opportunities. Um, and when that doesn\'t happen, then you have groups that don\'t have an opportunity to be, to participate and to be involved and, you know, support inclusion and tech.</p>\n\n\n\n<p>I mean, considering this was a conversation about word camps and our participation in them. Support, inclusion and tech really seeks to assist us in solving the challenge of, um, not having as much, you know, ethnic or, um, or just diverse representation within the Word camp experience. It doesn\'t seek to, you know, um, it doesn\'t, it doesn\'t seek, you know, to like solve, um, Like these, you know, the world that we [00:14:00] live in.</p>\n\n\n\n<p>And it doesn\'t seek to solve like, um, you know, diversity and inclusion outside of the WordPress space. Um, but I believe that in, in providing these, um, these opportunities within our community, since we\'re so large, that the ripple effects can extend well beyond the WordPress community. I believe that when you, Absolut.</p>\n\n\n\n<p>When you provide such a large group of people, the ability to, um, to participate in work camps, um, the ability to travel to them, the ability to network to them with, when you attend, um, the ability to like, you know, seek, um, you know, out more relationships, friendships, professional relationships. Then there\'s this ripple that extends outside of our community and I think.</p>\n\n\n\n<p>That level of empowerment can extend outside of WordPress and those ripples can assist us in diversity inclusion beyond, [00:15:00] um, you know, our, our involvement in WordPress. But you know, this, this particular solution is intended to solve the challenge that I saw, you know, um, being expressed, you know, within our community.</p>\n\n\n\n<p>And so the thought is really, Since, you know, since there\'s a take on it. And there\'s, it\'s a, I mean, it\'s an, it\'s an honest one, right? We don\'t see enough people of color. We don\'t see, um, enough, you know, people of, um, other minority groups, um, you know, uh, from other parts of the world. Um, You know, we are seeing an equal, more equal balance of, um, men and women.</p>\n\n\n\n<p>Uh, you know, but when it extends beyond that into like, you know, more representation in terms of like, you know, a wide range of religions, which ties to ethnicity often. Um, and when you\'re looking at representation in terms of those of us who, um, have like neuro [00:16:00] diversion, you know, um, you know, like, uh, characteristics and those of us who, um, you know, who we choose to love, , you know, the what society, um, you know, asks of us , right?</p>\n\n\n\n<p>Like, and um, and when we choose to hold true to that or when we\'re dealing with the physical limitations, um, that, you know, that we were born with or when we\'re in minority. Groups, you know, that have a harder time, you know, uh, receiving opportunities, um, to participate and to increase, you know, their reach and even, um, you know, the professional opportunities that are available to them.</p>\n\n\n\n<p>You know, like this. What can we do to, um, to really like solve. To solve that. Mm-hmm. And I thought, what could I do within our community Yep. To, you know, to integrate, you know, like all of those of us who are, um, Either, you know, disadvantaged [00:17:00] or not as represented into WordPress programming and support, inclusion and tech, um, seeks to, you know, take away that financial barrier, which I believe is really what, you know, can limit our participation.</p>\n\n\n\n<p>We want to participate, we want to speak, but if we can\'t afford to speak , right? I mean, if we can\'t afford to travel to the conference and if we can\'t afford a place to stay at the conference, um, then. Like, why would we even think to apply to speak at the conference? Right? Like,</p>\n\n\n\n<p><strong>Cory Miller:</strong> yeah. That\'s, that\'s really beautiful, Winston, because, um, there\'s a couple of takeaways I, I got from this.</p>\n\n\n\n<p>Number one is, I, I\'ve always believed, um, at least in my world, that WordPress has been. The, an inclusive place, ever growing inclusive community. That\'s like a mirror to my world, the way I want my physical world here in Oklahoma to be. And I have [00:18:00] so much learned from our community leadership, uh, over the years, um, that there\'s a cons.</p>\n\n\n\n<p>Consistent push and drive from the entire community and the leadership to be truly diverse, truly inclusive in all those words. And I, I learn a lot from this. Um, so the mirror I, and I do think WordPress is, our community is so powerful cuz we\'re distributed all over the world. So if we make change in our community, in our WordPress, That should be, that should be reflected.</p>\n\n\n\n<p>And I think that\'s another, we talked about the software magic. This is the community magic. Exactly. Uh, the other thing is, I, I love and I respect because I try to take too much on that, you said, Hey, here\'s something I\'m passionate about, being an organizer, being at these community events, how special and valuable they are to you and other people instead.</p>\n\n\n\n<p>I\'m gonna make this dent first. Yeah. Like, I\'m gonna, I\'m gonna take on this aspect first. You. Beautifully and clearly [00:19:00] shared. This is the thing I\'m trying to take on in this bigger, bigger, um, change that you wanna see. We wanna see in the world. Thank you. Okay, so we\'ve got this now we\'ve got a website. Um, you\'ve got a website up to kind of share this.</p>\n\n\n\n<p>Now. Take me through, if you would, I am, pretend for a second you\'re talking to someone that is in an underrepresented, uh, in, in tech. Of, um, situation. Mm-hmm. , how\'s the process to, to get on the, Hey, I want to go to these WordCamps. I want to speak, but I do need some assistance. What does that process look like for, for support inclusion and tech?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> So support, inclusion and tech. Um, also weaves into other initiatives in order to, to assist our speakers. Um, and so when you\'re accepted, support inclusion tech, it become, moves into the position to, to assist you once you\'re accepted into [00:20:00] Word Camp. Um, as soon as you get that, you know, acceptance, you know, go to https://supportinclusionintech.com/.</p>\n\n\n\n<p>Um, and you\'re simply just, you know, gonna put in the word camp that you were accepted in. And then there are two components, um, in addition that they\'re suggested , right? Like you\'re encouraged to do this. Um, you know, uh, we\'re in the community of consent and so, um, you have, you know, um, You\'re gonna give, you know, the consent to be included in these other initiatives, um, you\'re not gonna be forced into it.</p>\n\n\n\n<p>Uh, there\'s underrepresented in tech and there\'s also the WordPress diversity, speaker channel. Um, both of those, uh, are ways of. Further supporting diversity and inclusion and representation within the WordPress space and creating, you know, um, you know, successful opportunities for us to, um, to, you know, to put together great speaker applications and then to also, um, you know, move beyond just submitting [00:21:00] them. Um, but to being accepted.</p>\n\n\n\n<p>The, the ask is that, you know, once you\'ve been accepted to camp and you\'re starting the process of, you know, receiving funding through supporting inclusion and tech, that you also participate in those other two initiatives as well. Um, because you know, in the process of doing that, it\'s further supporting the work that we\'re doing in the WordPress community. Exactly as you said, Corey, that, you know, the word WordPress leadership already has been putting in, um, you know, the work to, you know, to assist us in resolving the challenges that face society as a whole. And so there are initiatives that currently exist and those two in particular, I think.</p>\n\n\n\n<p>You know, are ways that we can continue to support underrepresented minority groups in the WordPress community. Um, and so in the process of, you know, uh, applying for the funding, uh, you\'re encouraged to, you know, to list yourself on underrepresented tech to join the, um, the, the diversity speaker channel [00:22:00] on make WordPress.</p>\n\n\n\n<p>Um, and then once you\'ve just put on, put that information in and you\'ve identified the type of support that you\'re seeking, um, you just like, and it starts from there. Like I start, um, you know, pairing you with, you know, with a partner that you know can, can step in and provide, you know, the funding for you.</p>\n\n\n\n<p>And so, you know, they\'re gonna cover your travel and they\'re gonna cover your hotel. Um, and that way in order for you to participate, you\'re not going to be paying anything really that you know, out of pocket. For that participation, um, in that WordCamp. And that\'s really the goal. Um, the goal is to remove the financial barrier to your participation.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, that\'s fantastic. By the way, I wanted to sidebar for a second and say underrepresented in tech, uh, by Allie and Michelle Frechette. If, if you\'re listening to this and, uh, you also as a be becoming a member of underrepresented in tech, get a free [00:23:00] uh, professional membership at post status?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Yes. Yes. I started, I and let\'s not also forget too, that like there are other opportunities as well as Post Status has been, um, you know, looking into as ways of increasing, you know, diversity and representation within the Post Status community. Um, so underrepresented tech and that membership, and I know that there\'s some other ways that you\'re working on it too, Corey.</p>\n\n\n\n<p>Um, you know, I think, I think when we can pull all our efforts together. We have a stronger community. Um, and you are, you know, you\'re, you\'re offering that and then supporting inclusion and tech, you know, encouraging, you know, speakers to, to register and to participate in those two other programs. Strengthen all our efforts. Yes. Um, and, and that\'s, you know, that\'s the process of it. And so once you\'ve submitted, you know, your. once you submitted that form, you know, just letting me know, like the speaker registration that you\'re seeking, the [00:24:00] support. Um, you\'re also gonna complete the blind directory listing and that blind directory really.</p>\n\n\n\n<p>That Blind directory listing has the word camp that you\'ll be speaking at. Um, and it has the type of support that you\'re seeking, whether it\'s just beach travel or hotel, or both, and that\'s it. Um, no one in the community, um, you know, needs to know who you are. They don\'t need to know what your need is. Um, they don\'t need to know where you come from.</p>\n\n\n\n<p>And they don\'t need to know what makes you underrepresented and what makes you a diverse speaker. Uh, it\'s simply a way for, um, for companies that are considering sponsoring to see that the need does exist. And it\'s also a way for our community to see that the need does exist, um, and that we do have members that are seeking the support.</p>\n\n\n\n<p>Um, that, that blind directory listing is, is just a way, you know, for our community to see that, um, that our need is there. Um, yeah, and it\'s also a way of, um, uh, [00:25:00] keeping everyone up to date on the work that\'s happening.</p>\n\n\n\n<p><strong>Cory Miller:</strong> So I know we\'ll have two asks. The first ask is if, um, you need assistance, want assistance to go to a WordCamp to be sure to go to supportinclusionintech.com?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Yes. Once you\'ve been accepted, go to supportinclusionintech.com. Complete the form for speaker registration, and you\'ll, um, you\'ll be paired currently, um, with four companies, uh, that, um, that have partnered to work on this.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That comes to our second ask. Yeah, that\'s right. Okay. So tell me how, um, now this is very relevant for post status because we\'re a bunch of professional and business members in our community.</p>\n\n\n\n<p>So the second ask is, we need someone, one, participants, people that need and want assistance go and speak at Word Camps. And the second part of this is the sponsors and partners. Can you tell me a little bit more, more about that and [00:26:00] how that.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Okay, so starting off, partners are sponsors, , um, partners are the first, um, you know, companies that expressed an interest in supporting this project.</p>\n\n\n\n<p>Um, you know, this initiative. Uh, and so like that is my way of thanking you, um, by, you know, by acknowledging. that you came into this, um, wholehearted and opened armed. And so thank you to the four companies, um, that have done this, uh, that have stepped forward to say that they will support. Um, you know, it was really exciting once the call went out, um, from Word Camp US that they were seeking, uh, support for underrepresented.</p>\n\n\n\n<p>Speakers. It was really exciting because Master wp, um, stepped in at that time, you know, to say that they thought that this was a great project. And, you know, they\'re the fourth company they joined, um, GoDaddy, Post Status, and Yoast, um, you know, the original three that said that, you know, that they would love to support this initiative.</p>\n\n\n\n<p>And so, um, now we have, [00:27:00] we have four of them and there are also several companies as well that are providing in-kind donations. Um, and, you know, they\'re doing so, makes it possible for support, inclusion and tech, um, you know, to, to function, right? Because like, you have the website and then there are all these different like plugins that make it functional and make it possible, you know, for, um, for, for it to run and function the way that we need to.</p>\n\n\n\n<p>Um, so if your company that wants to. Sponsor speakers, you know, you just have to go to the site. Um, there is a section there for you to register your support, um, your register, your desire to support. It\'ll ask you, um, you know, to provide, you know, like a contact. Um, it\'ll ask you the type of, uh, How you want to provide this support.</p>\n\n\n\n<p>Um, would you prefer to reimburse speakers for their expenses or are you, um, ready and, you know, willing and able to pay for their, um, their travel and their hotel in advance of their trip? [00:28:00] Um, so, you know, once you\'ve identified your contact, you know, your contact is the type of support that you want to provide, you know, then, you know, we\'ll have an opportunity, I\'ll have an opportunity, you know, to really. Sit down with you and for us to have a conversation about like, you know what would be your process, you know, what would make it easy or for you to be a part of this initiative? Um, this isn\'t a cookie cutter means of support for, for companies, because you\'re all different.</p>\n\n\n\n<p>Um, how GoDaddy, you know, is providing support is different from how Post Status is providing support is different from how Yoss is providing support. And it\'s different from, you know, how, um, Master WP is and, uh, When I started this, and I, you know, I, and I wrote on my blog, like, really this proposal on https://winstinahughes.com/.</p>\n\n\n\n<p>I went into it, um, you know, with the understanding, personal understanding is that it\'s gonna [00:29:00] take a couple years to understand the needs of our community and the ways, you know, companies and our ecosystem can support these needs. And in the last six months, Exactly what I, you know, anticipated, um, is what I\'ve been able to, you know, to, to see.</p>\n\n\n\n<p>And, you know, currently, um, there have been three, you know, requests, um, for, you know, to participate, you know, um, for funding, for support, for camps and, um, two unique, you know, individuals have, have made those requests. Um, and you know, so right now it\'s a question of. You know, like assisting them, you know, with the process of how, you know, our four partners, you know, can support them in that way.</p>\n\n\n\n<p>Um, and I think that answers part of your question. Um, the second part of the question is like, so how is this financial component gonna work? Right? [00:30:00] Like, are companies giving me money? No, you\'re not , like, I\'m not receiving, you know, um, any of the money. Is the financial support that you\'re providing. Um, instead it\'s looking at your company\'s processes, um, you know, your, your financial processes, your accounting processes for you to, you know, step back and think like, how could we as a company provide this level of support?</p>\n\n\n\n<p>Um, you know, it could be that you already have an existing program. Yoast already has a diversity fund. Um, and so Yoast partnering with me is a way of, um, you know, kind of bringing the need that exists to them as well. Um, and so therefore they\'re able to like further serve the community, um, you know, through those who are expressing an interest through support inclusion and tech.</p>\n\n\n\n<p>Um, the way Post Status, you know, is seeking the support speakers too, is different from Yoast. Um, and, you know, uh, [00:31:00] Yoast has a budget, um, and.</p>\n\n\n\n<p>Has their own system and their own ways of support. Um, and so they also have a budget and then Master wp, they also have a budget. And so once that budget has been met, then you know the partners essentially gray out for that year. Um, and they become active the next year. Um, and so. , that is a way of making this sustainable.</p>\n\n\n\n<p>You know, you, you pledge how much you can support, um, speakers financially, and once that has been met, then your, I mean, your capacity for the year is, is, is met. And then next year, once you\'ve reallocated your budget, or not re reallocated, but once you\'ve defined, you know, your budget, um, for the year, then you would go, you know, back into the process of supporting [00:32:00] speaker.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And I wanted to say from personal experience here, that there\'s many way, there\'s, there\'s creative ways to support these speakers, uh, to go, you know, uh, you, you talked about hotel and flights. Yeah. And, um, I, I wanna, I wanted to say that one standard to say this is not an unapproachable. Opportunity to support d uh, diversity inclusion in tech.</p>\n\n\n\n<p>Um, this is very manageable for most members at Post Status, by the way. So, you know, flight costs, uh, depending on where it is in the world. Um, I think the first question you asked me was, what\'s your budget? Yeah. And that\'s a great way. So as you come in and click sponsor, just be thinking of these things with when st for how you can.</p>\n\n\n\n<p>Help support this amazing project. Um, and that there\'s creative ways to do that. And I, I think Winstina, most members, business members at Post Status can make a meaningful contribution in this way [00:33:00] through this, your project here. And I love the fact also, I know we talked about this too, you wanted to be real careful.</p>\n\n\n\n<p>You wanna say you want the support to go to the person as best as possible. A lot of nonprofits have overhead. You have graciously generated your time and your talent to this project, and I, I, I love the way you\'ve done it too, even though I go, gosh, Winston, I love that you have this passion. Um, but thank you so much for this.</p>\n\n\n\n<p>But I know you give of your own time. For this particular project, but as you talk to Ena, if you\'re listening to this now, there\'s creative options and ENA is so good at helping you, helping understand where you\'re at, and then pair it with people that need assistance.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Thank you. Yes, and that is, that is the goal.</p>\n\n\n\n<p>In terms of my contribution to the WordPress community, burnout is so real and because of the fact that I work full-time outside of the WordPress space, the WordPress ecosystem, um, I\'m really [00:34:00] cognizant of the fact that I need to perform well. And at a high level , right? Uhhuh , um, at work, you know, and in my personal life.</p>\n\n\n\n<p>And WordPress fits into, um, you know, into that. And so I\'ve been able to contribute in different capacities since I was in college and. Graduate school, first attending in college, um, or post-college in graduate school, moving into speaking and organizing, um, and now working, you know, professionally maintaining, you know, organizing as a meetup organizer and a WordCamp organizer, and understanding that this can really lead to burnout.</p>\n\n\n\n<p>You know, um, my ultimate decision is, you know, that for the next two years, I\'m not gonna be a WordCamp speaker, and I\'m also not gonna be a. Organizer, you know, this, these are the ways that I can, you know, I can continue to contribute. I can contribute through support, inclusion and tech. Um, you know, but really pair, pair down all the other ways that I could burn out.</p>\n\n\n\n<p>[00:35:00] And so by maintaining, Being a New York City meetup organizer and hosting at least a minimum of six meet meetups a year, and, um, really pivoting and concentrating my energy towards support, inclusion and tech. I can sustainably contribute to the community. And so this is a perfect opportunity to really share with you, um, that, you know, I want to meet with every speaker.</p>\n\n\n\n<p>You know, that expresses the interest for support. So as you submit your, you know, your speaker registration and you join the directory listing, I will, um, you know, I\'ll ask to meet with you, for us to have a conversation, for me to understand your needs and to share. what it is I understand and I\'ve learned over time, and also how our partners seek to support.</p>\n\n\n\n<p>So we\'ll have that conversation. It\'s gonna be on the weekend. I hope you graciously incorporate that into your schedule. Um, because, you know, I, I work during the week, [00:36:00] um, and so, you know, we\'ll meet once. Uh, hopefully within a week or two of your registering as soon as possible. Especially it\'s, it\'s, it\'s ideal, uh, not ideal.</p>\n\n\n\n<p>It\'s encouraged to register as soon as possible, um, because the closer you get to your ward camp, you\'re gonna. Most likely, um, be reimbursed if you apply much sooner, like a, like two or three months in advance. You know, there are companies that will be able to, you know, cover your, your, your costs, um, of participation in advance of your trip.</p>\n\n\n\n<p>If you are reaching out like three to two. You know, to the time of, of your support that the time that you need, then you\'re looking at being reimbursed for your expenses. And so like, you know, that\'s, that\'s something to, to keep in mind when it comes to registering, you know, for this is that companies will be able to assist you with removing this.</p>\n\n\n\n<p>It just might be [00:37:00] later. When your need is expressed closer to the time that you\'re speaking that it\'s more, it\'ll be a reimbursement instead. Um, and so that\'s something to keep in mind, the timing in which you submit your interest, and also the fact that, um, you know, that we\'ll be meeting on a weekend. Um, there\'s this speaker that just registered and he wanted to meet with me.</p>\n\n\n\n<p>Um, On Christmas, he\'s in another part of the world. I mean, you know, like, so yeah. Um, and so I just, you know, I just like, I think when, and I had a con, you know, I just like responded and let him know that it\'s, it\'s Christmas for me. I\'m, you know, I\'m a Christian and I\'m so celebrating my holiday today. Um, you know, and, you know, like, uh, let\'s, let\'s meet next week.</p>\n\n\n\n<p>Um, so, you know, uh, we\'ll have like, you know, we\'ll have these conversations and we\'ll, we\'ll see. And you know how. Um, you know, how you and I can, can have that conversation and [00:38:00] meet and how your need can be met. And I\'ll also meet with, you know, companies that wanna sponsor as well. And I wanna tell you, I want you to tell me what\'s realistic for you.</p>\n\n\n\n<p>Um, I want just, just to, just to give you a sense of how some of the companies are. In fact, um, you have, uh, of the four partner. You have one partner who seeks to provide support, um, you know, within the us. Um, as of our last conversation, you know, the desire is to support minority speakers, um, specifically people of color, um, specifically, you know, black Americans, um, to improve or those of black descent to improve, um, their numbers.</p>\n\n\n\n<p>WordCamps in the US. Um, our last conversation was, you know, this is the direction that they wanna go. This is the greatest impact that they think that they can achieve. Um, and [00:39:00] I\'m, I\'m so glad that I get to listen to what everyone. Hopes to do, you know? Um, because it gives me a sense too that our community is really thinking through, like, this is how we\'re gonna solve it, right?</p>\n\n\n\n<p>Like, this is how we\'re gonna make the dent that we wanna see. So this company already knows this is how we\'re gonna make the dent that we wanna see. And there, there. Process too, is that they\'re just gonna give you a blanket amount of money and they\'re not gonna micromanage how it is you spend it. Um, they just simply ask, you know, that you, not simply, the requirement is that you put it towards your WordCamp experience and that\'s where they are with it.</p>\n\n\n\n<p>Um, there\'s, you know, another company host of course, has an established diversity fund and they have processes already in place for the support. And so you\'re simply gonna go through the existing process that, um, Yoast has established and they have a generous fund. Um, and their support, um, is something [00:40:00] that they\'ve been offering the support for a long time, and they\'re very, um, they\'re really respected , you know, for that effort.</p>\n\n\n\n<p>And, um, I\'ve had an opportunity to like, you know, to speak with someone who has been a part of their support in the past or received it and they speak so highly of, of Yoast um, and that\'s, you know, Yoast has already thought it through and they\'ve already walked through. You know, Corey and I, you and I have spoken about, you know, the budget, you know, that you\'re, that post status is set aside and, and you\'ve already shared.</p>\n\n\n\n<p>You know, what is the need? Like, we\'re not micromanaging, right? Like, let us know what type of support that you need, and we\'re just gonna provide that to you. Um, and so like you\'re, you are already thinking about like, how can we make this happen? Like, you know, if you need to, you know, it\'s a flight, you know, wherever it is.</p>\n\n\n\n<p>It doesn\'t have to be domestic, right? Like, it doesn\'t have to be in the us it could be anywhere in the world. Um, and, and that\'s, you know, that\'s like, [00:41:00] Post Status is thinking, and then GoDaddy is currently working through their process. Um, and I do believe that because of the fact that they have teams around the world that GoDaddy\'s reach will also be of, um, I think GoDaddy\'s reach will also extend beyond like the domestic, you know, like within the US and they\'ll be able to provide support as well toward camps.</p>\n\n\n\n<p>you know, around the world. I\'m anticipating it\'s possible that, um, GoDaddy\'s like impact could, you know, be especially strong with, um, Uh, WordCamps, like Word Camp Asia or Word Camp US or Word Camp Europe. Um, you know, because they\'ll have team members there and when they have team members there that can help facilitate and smooth the process over for, for those that they\'re going to be supporting, but they\'re working through their processes to make this established as well.</p>\n\n\n\n<p>And so I think [00:42:00] that, you know, just by me sharing that, you can tell that, you know, each of, you know, my partners are, are working within. Um, you know, like their business processes and their financial processes and also their vision for impact. Um, and I think that\'s really important.</p>\n\n\n\n<p><strong>Cory Miller:</strong> So to recap, here\'s what I\'ve heard.</p>\n\n\n\n<p>So support inclusion and tech.com is the bridge between those that want have the desire to share their exper experience and expertise at word camps, but need some financial assistance to get their flights and hotel. That\'s what f support inclusion and tech.com does. Second, as a participant, as someone.</p>\n\n\n\n<p>Um, if you first need to apply and get, uh, approved to speak at work camp, then come to support inclusion and tech.com and, um, sign up, have a conversation.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Mm-hmm. , once you\'ve been approved.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Have a conversation with we, Tina. [00:43:00] And then third, the third recap is our ask for, um, well buzzer asked in our community.</p>\n\n\n\n<p>Uh, if you\'re looking to speak to Word Camp, go to support inclu or go apply, get approved, come to support inclusion in tech. And then second for those businesses out there. You know, you have a heart, you wanna support this. That\'s our community. That\'s who WordPress is. Uh, go to support inclusion and tech.</p>\n\n\n\n<p>Click on the sponsor link and have a conversation with ena. Think about your budget. Think about what you wanna do, uh, when Cena is so creative in helping just make these connections happen so you can really make a difference in our community. Did I get it all right?</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> You did. You did get it right And, okay.</p>\n\n\n\n<p>And I think that support inclusion tech also. It goes through vetting process as well to confirm that those who are seeking assistance, you know, to participate actually have been accepted. And that\'s why, that\'s why the steps are what they are. Um, partners aren\'t gonna [00:44:00] question, oh, is this need real? You know, that vetting is gonna happen in advance.</p>\n\n\n\n<p>So when you receive a speaker interest, You know that this is someone who has been accepted a Word camp, and they understand the process and they\'re working within, you know, your, your policies and your procedures, um, in order for them to participate. So it removes all those questions. Um, you know, so that and that, yeah, that\'s a part of it.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, Winston, my friend, thank you so much for this important work, uh, holding the banner up. I know this takes a lot of time. I know you\'ve got a full-time gig. I know you\'ve got a life</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> more,</p>\n\n\n\n<p><strong>Cory Miller:</strong> um, But I so much appreciate you post. I just appreciate you, our members do for doing this vitally important work and making a difference in our world that can, like we said, can be a reflection in all these thousands of communities we go out to, to say, how can I be more inclusive?</p>\n\n\n\n<p>[00:45:00] How can I make sure everybody is represented as at least an opportunity to be represented? So I really appreciate you, <strong>Winstina</strong>, and your work and also just ringing the bell with me and teaching me and sharing, um, how we can make, make that difference. So I appreciate. Thanks for being. I\'m thanks for being on.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Sorry. No, no. I mean, I absolutely, like, this gives me life and it makes me wanna show up in the world, you know, different and energy. I wanna exercise more like , you know, like this is, this is, this is really in a lot of ways just like giving me energy to contribute. And so, um, to like, just to be able to like, work with you, you\'re, you\'re, you know, I\'m, I think you\'re awesome</p>\n\n\n\n<p>You know that, ditto. You\'re, you have a beautiful family. You know, like your energy is like, you have such great energy and so just a chance to work with you and like the amazing people that I\'ve had a chance to, it, it just, it gives me life and it makes me want to live more, you know? So like, let\'s, let\'s [00:46:00] see what we can do to continue to support our community so that the four freedoms, you know, I think that it\'s, , it\'s creating a fifth freedom, which is, you know, for all of us to be able to participate in a truly inclusive, um, community.</p>\n\n\n\n<p>And, you know, that speaks a lot to what the co-founders of WordPress. I think, um, you know, what, what they created and, and where they want, um, what their vision is and, you know, from their vision where we\'re, um, going and or how we\'re evolving as a community. I mean, to have 40% plus of a reach on the.</p>\n\n\n\n<p>There\'s so many people around the world that are impacted by this project, you know? So, um, yeah, I love</p>\n\n\n\n<p><strong>Cory Miller:</strong> that. Let\'s, let\'s add the fifth Freedom. I love that win. Coined by Win, and I love that leadership vision for our community. We need it. Thank you. Thank you, ma\'am. You have a good rest of your year and we\'ll see you in the next year.</p>\n\n\n\n<p>For everybody listening, thanks for listening. Tune in, go to support inclusion in [00:47:00] tech.com, and also Winstina Hughes is in our post Slack community. So you can go at Wednesday and you can ping her and, um, get the conversation started there. So thank you, Eena.</p>\n\n\n\n<p><strong>Winstina Hughes:</strong> Thank you. Thank you, Brent.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";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:\"Mon, 09 Jan 2023 19:17:12 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;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:59:\"Do The Woo Community: Do the Woo is Headed to WordCamp Asia\";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:28:\"https://dothewoo.io/?p=74283\";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:58:\"https://dothewoo.io/do-the-woo-is-headed-to-wordcamp-asia/\";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:373:\"<p>We are looking forward to attending WordCamp Asia and also are proud to be a media partner this year.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/do-the-woo-is-headed-to-wordcamp-asia/\">Do the Woo is Headed to WordCamp Asia</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Mon, 09 Jan 2023 10:19:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;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:99:\"Gutenberg Times: Gutenberg Changelog #78 -State of the Word, WordPress 6.2, Gutenberg 14.8 and 14.9\";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:53:\"https://gutenbergtimes.com/?post_type=podcast&p=23141\";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:114:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-78-state-of-the-word-wordpress-6-2-gutenberg-14-8-and-14-9/\";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:41325:\"<p>Birgit Pauli-Haack and Hector Prieto talked State of the Word, Gutenberg releases 14.8 and 14.9, WordPress 6.2 and beyond.&nbsp;</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2>State of the Word</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/12/30/matt-mullenweg-state-of-the-word-2022/\">Matt Mullenweg’s State of the Word</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">State of the Word 2022: A Celebration of the Four Freedoms of Open Source</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\">Episode 45:<strong> </strong>State of the Word Reflections</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/design-system-bridge-to-wordpress-fonts-management-playground-and-more-weekend-edition-239/#1-state-of-the-word\">GT 239: State of the Word</a></li>\n\n\n\n<li><a href=\"https://www.pewresearch.org/\">Pew Research Center</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/live-q-a-block-first-approach-at-pew-research-center/\">Live Q &amp; A: Block-First Approach at Pew Research Center</a></li>\n</ul>\n\n\n\n<h2>Gutenberg Times Live Q &amp; A </h2>\n\n\n\n<p><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Gutenberg Times Live Q &amp; A: January 11th at 5 pm ET / 22:00 UTC Layout, Layout, Layout.</a></p>\n\n\n\n<p><a href=\"https://asia.wordcamp.org/2023/session/layout-layout-layout/\">Isabel Brison’s talk at WordCamp Asia</a></p>\n\n\n\n<h2>WordPress and Gutenberg Releases</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/27/wordpress-6-2-planning-schedule-proposal/\">WordPress 6.2 Planning Schedule Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">What’s new in Gutenberg 14.8? (21 December)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-14-8-overhauls-site-editor-interface-adds-style-book\">Gutenberg 14.8 Overhauls Site Editor Interface, Adds Style Book</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">What’s new in Gutenberg 14.9? (4 January)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-14-9s-new-magic-push-block-changes-to-global-styles\">Gutenberg 14.9’s New Magic: Push Block Changes to Global Styles</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p> </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to the 78th episode of the Gutenberg Changelog podcast. In this first episode of 2023, I wish all our listeners a wonderful, happy, prosperous and healthy new year. In today&#8217;s episode, we will talk about Gutenberg releases 14.8, 14.9, WordPress 6.2 and beyond. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate, a full-time contributor to WordPress Open Source project. My guest today is Hector Prieto, full-time contributor on the WordPress Core team, coordinating multiple WordPress and Gutenberg releases. And it&#8217;s a great pleasure to finally have you on the show, Hector. Having a conversation about Gutenberg and WordPress with you is a wonderful way for me to start this new year. Happy New Year, feliz año nuevo, Hector. How are you today?</p>\n\n\n\n<p><em>Hector Prieto</em>: Happy New Year. Hi, Birgit. I&#8217;m excited to join you on the podcast. It&#8217;s my pleasure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, the pleasure is really all mine. Where are you right now? Did you have a great holiday break?</p>\n\n\n\n<p><em>Hector Prieto</em>: I&#8217;m currently in Alicante in Spain, very close to the Mediterranean Sea. And today we have a lovely sunny winter day with nearly 20 degrees Celsius. I had a few days to recharge and spend time with the family. What about you, did you enjoy your holidays?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Well, that&#8217;s some warm weather there in Alicante. I would love to have that. But here in Florida it&#8217;s balmy, too. It&#8217;s about 27 degrees, so we are in the air conditioning right now. Yes, my husband and I, we spent the week in Mexico City between Christmas and New Year&#8217;s. We saw some great art, powerful murals from the &#8217;50s and &#8217;70s and &#8217;60s. And we had fantastic food and a fabulous New Year&#8217;s event. It was great, at a restaurant over the roofs of Mexico City, so we really liked it.</p>\n\n\n\n<p><em>Hector Prieto</em>: Wow, sounds really nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Well, Hector, as you are the first time on the show, maybe you can share briefly with our listeners your WordPress origin story. When did you come across WordPress the first time and what do you work on now?</p>\n\n\n\n<p><em>Hector Prieto</em>: Well, my first time working with WordPress was around 2015 when I worked at the startup agency building sites. However, it wasn&#8217;t until 2020 that I first moved into the contributor space, and here we are. I am currently sponsored by Automattic to work full-time in Core in project management-related duties and supporting the development of WordPress.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s wonderful. Well, thank you. So 2015, that&#8217;s just about two years before Gutenberg was introduced into the community. Did you, at your agency, have Gutenberg on the radar already, or did you heed the call to learn JavaScript deeply?</p>\n\n\n\n<p><em>Hector Prieto</em>: It wasn&#8217;t until 2018 that we started using Gutenberg for the first time, when it was first released in 5.0.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Then the time between learning about WordPress and then starting contributing, that&#8217;s about five years. That&#8217;s pretty much the time that it took me to really embrace the contributing on WordPress, but I started at the Community Project in 2014.&nbsp;</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>All right, so there are a few announcements that were happening since the last podcast episode. If you haven&#8217;t watched it yet, the recording of Matt Mullenweg&#8217;s State of the Word is available on WordPress TV. The transcript and answers to the questions that didn&#8217;t make it into the recording can be read on the follow-up post, State of the Word Reflections. Josepha Haden Chomphosy kicked off the State of the Word with a reminder on the four freedoms of WordPress, that you are free to run the program, you&#8217;re free to study and change the code, you&#8217;re free to distribute your code and also redistribute WordPress.</p>\n\n\n\n<p>She also recorded a separate WP briefing with her reflections in episode 45, State of the Word Reflections in which she highlights, among other things, learn WordPress, that 12,000 students actually went through the courses and the workshops already since the inception. And she also highlighted the WordPress Playground, which is a tool to run WordPress in the browser. You don&#8217;t need a server, you don&#8217;t need a database. You can run it in the browser and test plugins and themes. I think that changes how we approach some of the discovery for WordPress. We talked about it on the show here as well, but it&#8217;s definitely something that will have so many ramifications in the WordPress space later on when it&#8217;s still very raw and very not production ready. It&#8217;s just an idea that has already a proof of concept. And then the recap posts from the community are linked in the Gutenberg Weekend Edition 239 from December 17th, and you can check it out from there.</p>\n\n\n\n<p>I also have a side note that the Pew Research Center received a shoutout for the politology quiz that they built with blocks and had one million people already taking it. Seth Rubenstein is the lead developer and was a guest on a Gutenberg Times Live Q&amp;A last year. And he gave a great demonstration about their team&#8217;s work with the block editor, so as they went for the Gutenberg first approach building the website. The recording is available on the Gutenberg Times YouTube channel, and also we have a post here on the Gutenberg Times website as well. So as always, all these links are in the show notes of the 78th episode. So Hector, do you have any comments on this? What is your most exciting topic from the State of the Word? You had a few takeaways?</p>\n\n\n\n<p><em>Hector Prieto</em>: Yeah, there were a handful of them. I would actually highlight everything, starting with WordPress Playground. It&#8217;s such amazing technology and it&#8217;s going to open so many doors. But if I had to pick something, maybe for me because it is the thing I&#8217;m the closest to, it was a great recap about the progress WordPress made in the site editing front during the last year, to the point nowadays we can create themes directly in the editor just with blocks and patterns. This brings us very close to wrapping phase two and starting exploration around phase three in 2023. So it&#8217;s great to see that all these progress.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, you&#8217;re right, you&#8217;re right. And it&#8217;s been such a long journey as well. I look back at some of the history on the Gutenberg Times and the Gutenberg podcasts, and we first started talking about full-site editing in January of 2020. That was even pre-pandemic, and we had quite a few developers on our live Q&amp;A talking about the first concepts about that. So now, three years later, it&#8217;s almost finished and it&#8217;s really cool. There are still some things to be done, but I am really excited about the start of phase three of collaboration and I have been constantly trying to unify all the various tools and methods and interfaces to streamline my workflow to produce content for the web. And if I don&#8217;t have to use multiple tools to collaborate with people, I will have arrived on internet nirvana. Yeah, it&#8217;s a high calling of course, but yeah, we are all in a space where we could maybe make it happen. So I&#8217;m really excited about that.</p>\n\n\n\n<p><em>Hector Prieto</em>: Yeah. Also, it&#8217;s worth noting that even when we move to phase three and we can call a wrap on phase two, phase two will not be fully finished because there&#8217;s always going to be things to do related to site editing improvements, new tools. So I can see contributors working in new features for phase three and also iterating on phase two items. Another big takeaway for me during State of the Word was seeing how much Gutenberg itself has matured. And it&#8217;s now been used in more projects such as Tumblr, bbPress, and even in some mobile apps like Day One. Also, let&#8217;s not forget how WordCamps have made a comeback after COVID hit and stopped all the in-person events. And we went from one single WordCamp in 2021 to up to 22 in the last year, in 2022. That&#8217;s amazing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s a nice iteration of the numbers. 22 WordCamps in &#8217;22.</p>\n\n\n\n<p><em>Hector Prieto</em>: Exactly. Especially since the community is what makes WordPress what it is, it&#8217;s the most important part of WordPress. So that&#8217;s really good to see.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely. Having the first WordPress in-person event in WordCamp Europe, I realized how much I missed interacting with everybody else in the community and seeing new faces and interacting with old friends. I looked up the number of WordCamps that were done in 2019, in-person WordCamps, and there were 148, or 145, something like that. So there is quite a bit of time to go between 22 to 142 or something like that.</p>\n\n\n\n<p>But it&#8217;s coming back especially because all those WordPress meetups, the local meetups, are all coming back as well. I think there was a note in the State of the Word that out of the 500, 260 have already come back to in-person events. And we know that WordPress meetups are actually the prerequisite to actually have local WordCamp organizers together to organize a WordCamp. So yeah, it&#8217;s all coming back and I&#8217;m glad that it&#8217;s coming back because of the connection that you have in the community. Yeah.</p>\n\n\n\n<p><em>Hector Prieto</em>: As I mentioned earlier, I came to the contributing space in 2020. It was during the pandemic, so actually my first WordCamp was the only WordCamp in 2021. And my second WordCamp was for computer ware in last year. So it was really nice and refreshing for me to meet all the other contributors. It is something special, for sure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely, yeah. It was great to meet you, Hector, although we had so many meetings with people on Zoom. Yeah.</p>\n\n\n\n<p><em>Hector Prieto</em>: Fun times.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Hector Prieto</em>: Well, circling back to State of the Word, I would also like to point out that, last but not least, it&#8217;s really cool to see how Openverse has grown since joined WordPress about a year and a half ago. And I&#8217;m super excited to see that coming, Openverse integration in WordPress that will allow users to directly search and add images from Openverse into their WordPress site without leaving the editor at all. That&#8217;s super cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s super cool. And I think it would also be really cool to have that also go back to if somebody uploads an image to WordPress and checks the check mark, also put it into Openverse. I think that part would really make it to a 360 kind of integration. I also love that there&#8217;s not only for images, but there is a lot of audio already uploaded to the Openverse that you can use on podcasts or on videos, and add free without having to think about royalties and buying for it and all that. Yeah, so free to the community.</p>\n\n\n\n<p><em>Hector Prieto</em>: There&#8217;s so many possibilities there. The future is exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s really exciting. And I&#8217;m glad that it&#8217;s all happening in conjunction with WordPress. The same with the WordPress photos library, where people can just upload their photos and have it be it in the public domain and make it available to the broader community. It&#8217;s really cool.</p>\n\n\n\n<p><em>Hector Prieto</em>: Yeah.</p>\n\n\n\n<h3><strong>WordPress 6.2</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So between Christmas and New Year&#8217;s, Hector, you published the release schedule proposal for 6.2. I think it was something we were all waiting for. Kind of, okay, how do we plan first quarter when we don&#8217;t know when the release is coming? So you provided. So if the release team concurs, what&#8217;s the plan? When will we see the first Beta?</p>\n\n\n\n<p><em>Hector Prieto</em>: If the proposed plan is approved, the first Beta release will be on February 7th, which is 10 days before the first of our WordCamp Asia takes place.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. In the planning schedule, you also have a call for contributors to volunteer for the release squad. So if you, dear listeners, are inclined to take part in it and you already have a little experience in contributing, throw your hat in the ring by commenting on the release post on the scheduled proposal post. And also throw your hat in the ring also means for those who English is their second language, also means raise your hand, you want to volunteer to be part of it, and then the release team is coming together. When do you expect that you will have a final plan?</p>\n\n\n\n<p><em>Hector Prieto</em>: The call for volunteers is open as we speak. Considering the end of the year vacation people are taking, contributors taking, I think we won&#8217;t have anything until end of next week or the following one. We&#8217;re leaving some extra time for people to come back from the holidays and chime in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Okay. Yeah, so there are only two more Gutenberg releases before the feature freeze, if I calculate that correctly. We better get started in reviewing all the great new features that are coming in, in a more consolidated way.</p>\n\n\n\n<p><em>Hector Prieto</em>: Definitely. I encourage all of our listeners to start testing and giving feedback. It&#8217;s always super helpful. Also, compared to the past releases, the proposed 6.2 schedule both include a fourth Beta release compared to the previous three ones to leave some extra buffer time between WordCamp Asia and release candidate one, which will be on March 7th for a final release on March 28th.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, okay. Yeah, so contributor day at WordCamp Asia is definitely going to be part of it and that is really cool to have. Maybe we need to organize some tables that do some testing there. I don&#8217;t know how far the work of Asia contributor day team is about that, but having that plan definitely gives us all focus on that contributor day. All right, cool. So to repeat that, final release could be March 28th, so that&#8217;s about three months from today. And we will have a 6.2 release, provided everything works out as we anticipate now.</p>\n\n\n\n<p>And I have a reminder for our listeners now for next week. The Gutenberg Times Live Q&amp;A, Layout, Layout Layout will be happening on January 11th at 5:00 PM Eastern. That&#8217;s 22:00 UTC. And in this show, Isabel Brison, Andrew Serong, Justin Tadlock and I will discuss the opportunities and challenges for all the layout features for site builders. And we will be available for questions and answer them.</p>\n\n\n\n<p>And Isabel Brison will also give us a demo of the various layout scenarios to use. She has, with Andrew, been instrumental in building all the features into the site editor and the blocks, and it&#8217;s going to be a very interesting show. It&#8217;s also going to be a little preview on Isabel Brison&#8217;s talk at WordCamp Asia in February 2023. So join us, link us in the show notes, and don&#8217;t forget you need to register there and to be&#8230; We will have a recording, of course, with the show notes and as well as a transcript, but it&#8217;s always good to have your questions answered live by the experts on the panel, and we have some great experts there.&nbsp;</p>\n\n\n\n<h3><strong>What’s Released</strong></h3>\n\n\n\n<p>So, that brings us to the latest Gutenberg releases. First, there&#8217;s Gutenberg 14.8. That was released in December 12th. Ryan Welcher was release lead and it had 167 PRs merged by 42 contributors, five of which were first contributors. So welcome to the project, first contributors. So Hector, what&#8217;s the most significant enhancement in this release?</p>\n\n\n\n<p><em>Hector Prieto</em>: Well, Gutenberg 14.8, so several changes to the site editor user interface, and introduce something I&#8217;m super excited about, which is browse mode. Thanks to this first iteration of browse mode, users can switch between editing and browsing modes in the site editor, making it much easier to navigate through templates and template parts or even add new ones through the sidebar. It&#8217;s a feature that has been long awaited and it&#8217;s finally here and I&#8217;m super excited.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it helps you with where you land when you click on the site editor. You are now not landing into editing your homepage and so now you have a better entrance into the site editor. And I really like that because it gets you better settled into what you&#8217;re going to do.</p>\n\n\n\n<p><em>Hector Prieto</em>: It makes for a nicer onboarding and it&#8217;s less dangerous, let&#8217;s say, because it&#8217;s much more difficult to break your design just as soon as you land on the site editor.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, totally. So the navigation block also had some enhancements, especially with the migration from the old menu. So if you have a location primary, it will now fall back to the navigation menu from the classic menu. That is really helpful on the transition. There are other fallback updates made that it also uses the most recently created menu from the classic theme when you start migrating to a block theme.</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>So that is definitely a good help for transitioning from a classic theme to a block theme. But also it kind of decreases the mental load that you don&#8217;t have to recreate all your menus when you switch out the theme, which is something that was sometimes really critical in the classic menu, in the classic theme space, where everybody had different menu locations. And so I don&#8217;t think that it&#8217;s completely solved yet, but this is definitely a first step.</p>\n\n\n\n<p><em>Hector Prieto</em>: Yes, it&#8217;s a step on the right direction. We all know building menus is one of the most challenging aspects of building your site. And contributors are making a huge step for making the menu building process much easier.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Yeah. There&#8217;s also one that came with 14.8 that is for the query block. The parent block is they removed the color block support just because it was always clashing up against the other blocks that are in the query block for the post template for the title and the excerpt. You could kind of get lost in which color did we do, and where do we do that? So removing it from the wrapper query block is definitely a good choice because it removes some of that confusion of where colors are actually set.</p>\n\n\n\n<p><em>Hector Prieto</em>: Exactly. Contributors have seen a few inconsistencies when adding the color to the wrapper query block, between the title, between the navigation links. So now the colors block supports are all in the inner blocks and there&#8217;s no space for confusion.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So what else do we see there? Yeah, I think that was it on the 14.8 release, on the highlights. There are certainly the sidebar tabs for the navigation blocks. There is great work on the experimentation that happened. So right now we have five areas of experimentation in the Gutenberg plugin and there is only two more freeze, two more releases to get them out of experimentation into the production of the Gutenberg plugin. One of them is the sidebar for the navigation block. The other one is the separated settings tab in the sidebar that separates the styles from the features. And then the others, I don&#8217;t recall right now. Hang on, I&#8217;m going to check them out. I just had it there and then I closed my browser because, I don&#8217;t know, sometimes I just randomly close browser tabs, which is a really good way to confuse myself.</p>\n\n\n\n<p><em>Hector Prieto</em>: The type interface is making good progress and it&#8217;s something we would likely see out of experimental very soon.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, yeah. And then is the global styles for custom CSS is actually in&#8230; We all wait for that, but it&#8217;s now in the experimental stage and need to be switched on through experiments menu item on the Gutenberg plugin. And then the other one is the color randomizer utility that lets you mix the current color palette randomly and change it out. That&#8217;s kind of a funky way of handling your website to do a randomized color palette, but it certainly is a proof of concept of something bigger. Was there anything else in the 14.8 you want to mention, Hector?</p>\n\n\n\n<p><em>Hector Prieto</em>: Well, there are a few other main highlights that you might have seen, our listeners might have seen in the release post. One of them is super interesting, which is the custom CSS rules for your site. There&#8217;s now a tiny CSS text field where you can add your custom CSS directly in the editor. As we all know, with great power comes responsibility. So it&#8217;s nice that you can add a custom CSS directly in the editor, but let&#8217;s not overuse the important.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s definitely a way to&#8230; But that was before, so site editors or site users or site owners who used the custom CSS piece found that that was the missing piece to actually sign on to the full site editing, because they couldn&#8217;t do those very fast changes like changing a font size somewhere or changing a space somewhere or change the color of a border very easily by just using the developer tools, identifying the marker, the selector, and then just change the color in a custom CSS. Yeah, it opens up the capabilities for that.</p>\n\n\n\n<p>You need definitely have file editing capabilities on the server and that sometimes was not available to anybody. But those who used it, they really missed it in the file site editing, in the site editing features, so that is really a good thing. And there is also a&#8230; It&#8217;s not yet released and it&#8217;s not merged yet in, but I know that Carolina Nymark is actually working on custom CSS for single blocks. And I think that&#8217;s also a good way to, in the paradigm of getting atomic design going, that that&#8217;s probably a better approach than having custom CSS being pulled in for every site page or page with the custom CSS. Rather do it per block.</p>\n\n\n\n<p>Either way, it&#8217;s kind of a interesting feature that people want to have some control or at least go back to that what they are used to do and figure out how they can change it. Well, that definitely was a changelog of 14.8. I don&#8217;t think we&#8217;ve forgotten anything. I think we, in the release post by Ryan, it was a reorganized&#8230;. Oh, the style book is definitely something that was in 4.8. We haven&#8217;t talked about it. So do you want to talk about it, what that does?</p>\n\n\n\n<p><em>Hector Prieto</em>: Oh yeah, definitely. The style book is a super cool new feature, which is extension of the style site editor. The style book in a nutshell gives you an overview of all the available blocks you have in a single place so that you can easily browse all the blocks you have available and play with their design.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: When Gutenberg first came out, there were quite a few initiatives where you could have a unit test for blocks, where I think Rich Tabor actually had a plugin and I also worked with some of our clients back then when that we had a list of all the blocks in a page and then looked at it, how the theme works with it. And that was kind of a block unit testing in design. And with the additional features that come with site editing, it was a hard time to figure out what is a change in color on the paragraph block will have additional ramification throughout the site, or when you change style variations.</p>\n\n\n\n<p>So I&#8217;m really glad that the style book, that&#8217;s a menu item in the site editor. You can go there and then see all the blocks that you have. And you get an access to the style variations of your theme so you can select them and then see how the blocks change. And that is so powerful that you don&#8217;t have this save and surprise effect anymore. You really look at it and say, &#8220;Oh yeah, I like it.&#8221; And you also see where the style variations may not be entirely working for your site because there are some things that are left out. So this is so powerful for the experience with the block editor.</p>\n\n\n\n<p><em>Hector Prieto</em>: For our listeners to picture it in their mind, it&#8217;s like having a page with demo content with all the blocks. You have it registered either core blocks or third party blocks. So as soon as you install it, applying that provides blocks, all these third party blocks will appear in the style book. And you will be able to see all of them together, play with the global styles, play with the accelerations, and see how they affect all these first party and third party blocks in a single place as if you have demo content page but automatically generated for you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So it really offsets the need for these block unit testings and it&#8217;s very, very powerful. Yeah, I so agree. I think we&#8217;ve got it all now. Let&#8217;s move on to the next release, which was 14.9. And it has at the time of this recording not been released, but it will come out any hour now. For those who use the Gutenberg plugin on their sites, it&#8217;s the first Gutenberg release for 2023. 132 PRs by 46 contributors. Again, five new contributors in there. Congrats for your merge of your PR, and welcome to the project. Thank you so much for your contributions, for all of them.</p>\n\n\n\n<p><em>Hector Prieto</em>: It&#8217;s refreshing to see all these new contributors, even in these more maintenance oriented releases that happen during holidays. So congratulations to you all, and welcome.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: What are the highlights? What did you see, or what&#8217;s in the release?</p>\n\n\n\n<p><em>Hector Prieto</em>: There are a few changes. They&#8217;re mostly iterative, building on top of past features and enhancements. One of them, one very cool, is a new push to global styles button that appears in the cyber blocks, which allows users to, once they edit the blocks&#8217; style and they like it and they say, &#8220;Hey, I like this how this is looking or how this image is looking. I would like all my image blocks to look like this.&#8221; It allows them to push those styles to global styles so that they automatically affect all the blocks of that type.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. And that&#8217;s also why it&#8217;s good to have this style book handy so you can actually see if you made a mistake or something like that and said, &#8220;Oh no, I didn&#8217;t consider this, so let&#8217;s do one more time.&#8221; Yeah. So that&#8217;s a great feature. Yeah, absolutely.</p>\n\n\n\n<p><em>Hector Prieto</em>: Also, for those who like building patterns, now when registering patterns, there&#8217;s a new property that allows you to specify in which template a pattern makes sense. Let&#8217;s suppose, for example, we are building a 404 pattern. Previously it would be released everywhere, so it would appear everywhere in all kinds of templates. Now you can limit it to only appear on a 404 template, so it doesn&#8217;t bring noise to other templates where it doesn&#8217;t make sense. So this is going to improve pattern discoverability in general as patterns.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And it also improves separation of concerns. As you said, it will not show up on every page where even if it&#8217;s not suitable for the pattern. But it also themes can then, or plugin can now create custom post types and that all, and just make those patterns available for certain custom post types. I think that is definitely a missing piece that has now been added to it. Excellent. Yeah, I&#8217;m really excited about that.</p>\n\n\n\n<p><em>Hector Prieto</em>: Yes, there&#8217;s a minor update following up on Gutenberg 14.5. So we are thinking, we&#8217;re looking at two months ago, three months ago, when the list view and the document outline were merged in a single panel. We have seen there are a few improvements that can be made in the design. So now, for example, the word count has been moved to the top of the outline for more clarity.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, there was some confusion. Where is it now? Yeah. And then you didn&#8217;t see it at first because when you hit on update, you post and then the little notification ball totally covered that piece. So it took a while till that goes away so you see the word count and the time to read and also the block count. There were a few pieces missing. I don&#8217;t know why they&#8217;re missing, but they probably don&#8217;t seem to be very important for content creators to see. And the outline, having the other one on the list here in one it definitely makes sense to have that.</p>\n\n\n\n<p>So if you haven&#8217;t seen that yet, it was in Gutenberg 14.5. It will come to 6.2, so checking it out through the Gutenberg plugin is definitely worth trying, worth a look so your site owners or the clients are prepared to find it in a different space. What I&#8217;m also very excited about is that there is now an option to import widgets from the sidebars into template parts. And that is in the whole idea of transitioning from a classic theme to block themes or make a site be better prepared to move to a site, to full site editing block theme. This is definitely a step forward. Any additional thoughts on that?</p>\n\n\n\n<p><em>Hector Prieto</em>: Oh yeah, absolutely. This is a very important milestone towards block adoption because it allows users to migrate from classic widgets to native blocks. It&#8217;s worth noting that it doesn&#8217;t work on template focus mode yet, it&#8217;s only available for the block inspector. But this is definitely a step on the right direction to increase block adoption.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent, yeah. And George Mamadashvili, who heads&#8230; That&#8217;s his PR. He also has a nice video on how he demonstrates how it&#8217;s going to work. So I hear quite a few people celebrating this piece to make the transition over. Another one is, this is minor thing, but the configurable settings for the fluid typography in the theme JSONs now has a minimum font size, so it can be anchored on the smallest font size. So the fluidity then can increase the font size on a bigger screen. There was a hard coded value of 14 pixels before, with no way to change. And now you can have the minimum font size, like 16 pixels or 18 pixels depending on your site needs. That&#8217;s a minor thing, but I think it is something that quite a few designers were missing.</p>\n\n\n\n<p><em>Hector Prieto</em>: Yes, absolutely. It&#8217;s a minor improvement, but we&#8217;ve seen lots of these minor improvements in the last, I don&#8217;t know, four or five Gutenberg releases building on top of free typography. And when you look at them altogether combined, you can see huge improvements on how the feature is becoming more and more powerful by the day.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely, absolutely. I think that was at 14 point&#8230; No, one thing is still really important from the release and that is the adding shadow presets support for the theme JSON. So you can do box shadows on your blocks or wrapper blocks, and that is now available for designers of themes. There is no user interface for that yet. But as we said repeatedly here on the podcast, things will be…</p>\n\n\n\n<p><em>Hector Prieto</em>: It will come.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hmm?</p>\n\n\n\n<p><em>Hector Prieto</em>: It will come.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: But it&#8217;s important to make it work for the theme developers first. Before you have all the added implementation for site owners that want to change it, you first need to know how it&#8217;s actually working so you can see where the pieces are that need to be surfaced in a user interface. So there is a new setting object called shadow, and then you can add different palettes to it for natural and crisp and sharp and soft shadows. And the PR has quite a few information about how that&#8217;s implemented. It gives you quite a few use cases on how you can do the shadow boxes for the buttons, for cover block, for menu block. If you have a sticky menu, then you can put a little shadow underneath it to see the difference between the page and the menu. So there are quite a few design use cases to try that out.</p>\n\n\n\n<p><em>Hector Prieto</em>: I&#8217;m curious to see what designers come up with thanks to this new setting. I can see lots of 3D buttons and shadow buttons and all these cool things.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You could even do the outlines of the shadows, kind of, if you have an outline&#8230; Yeah, there are some great designs out there right now. So, from the changelog we are on, anything else that you wanted to talk about here that we missed? I know that Tonya Mark has updated the tracking issue for the web fonts API. And what&#8217;s merged in this release is the change of architecture to use the Core&#8217;s dependencies API with the web fonts API. And there&#8217;s a call for testing out there, or it will be out there, and making sure that how you use it. She has an update where she asked how you can help. And that is if you have an idea about naming the API, should it be webfonts, or web fonts, two words, or just the fonts API, which I tend to be the fonts API, but there is a renaming before everything gets into the Core that we&#8217;ll be name things right.</p>\n\n\n\n<p>And then the other one is a call to test the new architecture and share feedback on your testing reports and using the web fonts API. I&#8217;m not quite sure how the planning is because it seems to be still blocked furthermore through additional architectural work. Hector, do you think that that will come with 6.2, or is it now a little late for 6.2?</p>\n\n\n\n<p><em>Hector Prieto</em>: Well, Tony and the other contributors are making their best to have this feature land in 6.2, so I&#8217;m pretty positive it can make it in 6.2. And the best way to ensure it can land in that version is to help with testing and with feedback. That will help unlock the architecture redesign and the renaming and everything that&#8217;s currently being discussed right now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Okay. Yeah, if you all are contributing to things, dear listeners, help getting that over the finish line. It definitely needs some testing. So I think that&#8217;s the end of talking about Gutenberg 14.9. We&#8217;re coming also up on the hour, so I think we can go to closing things. Are there anything that you want to point out that are on the roadmap for 6.2 that you want to have our listeners know? And if not, how can the listeners get in contact with you, where to best meet you online?</p>\n\n\n\n<p><em>Hector Prieto</em>: Well, you can reach out to me in WordPress Slack. Handle is Prieto. I guess it will be written in the show notes. So please feel free to ping me there or in GitHub or in Track. I&#8217;m using the handle everywhere, so that&#8217;s easy. I would just like to circle back to the 6.2 planning and reminding everyone the call for volunteers is open. So if you&#8217;re interested in participating in the squad, you are more than welcome. We will assist you if it&#8217;s your first time. If you&#8217;re an assistant contributor, you are also welcome and we can learn from you. So everybody&#8217;s welcome, that&#8217;s the long story short.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And the only thing that I want to remind you is about the next week&#8217;s Gutenberg Live Q&amp;A with Isabel Brison, Andrew Serong and Justin Tadlock on Layout, Layout, Layout. January 11th at 5:00 PM Eastern and 20:22 UTC. That&#8217;s 10:00 PM on UTC. And as always, the show notes will be published on gutenbergtimes.com/podcast. This is episode 78. And if you have questions and suggestions or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. So thank you so much, Hector, for joining me here for the first Changelog podcast in 2023 to spend the time on preparation as well as in the show. Thank you all for listening and goodbye and again, Happy New Year.</p>\n\n\n\n<p><em>Hector Prieto</em>: Thank you for having me and see you soon. Happy New Year, everybody.</p>\";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:\"Sat, 07 Jan 2023 19:14:10 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;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:121:\"Gutenberg Times: 209 Block Themes, Query Block Variations, Forms with Blocks, Block Art and more – Weekend Edition #240\";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://gutenbergtimes.com/?p=23042\";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:124:\"https://gutenbergtimes.com/209-block-themes-query-block-variations-forms-with-blocks-block-art-and-more-weekend-edition-240/\";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:27679:\"<p>Howdy, </p>\n\n\n\n<p>Tomorrow is the 5-year anniversary of Gutenberg Times. It feels like I just started yesterday to be fascinated by the possibilities of the block editor. For many people, it actually was just yesterday that they dipped their toes into the world of the new thing. Not you of course. You have been a wonderful subscriber and reader for a while now, and I am infinitely grateful for your support. Thank you! </p>\n\n\n\n<p><strong>Welcome to all new subscribers this year. So glad you are here. </strong></p>\n\n\n\n<p>Let&#8217;s dive into the sixth year together, and learn what will be next for the block editor and what other people make with it and for it. The ecosystem seems to keep expanding quite a bit with the block editor. </p>\n\n\n\n<p>Wishing you and yours a fabulous 2023. May you be prosperous, happy, and healthy! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: Reminder: Hope to see you next week at the Gutenberg Times Live Q &amp; A. <a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Get your seats now for January 11, 2023, at 5pm / ET 22:00 UTC</a></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-ne\">From the WordPress Developer Blog</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-plugin-releases\">Gutenberg plugin releases</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#4-making-block-art\">Making Block Art </a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-form-plugins-working-with-blocks\">Form Plugins working with Blocks</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Hector Prieto</strong> published the <a href=\"https://make.wordpress.org/core/2022/12/27/wordpress-6-2-planning-schedule-proposal/\"><strong>WordPress 6.2 Planning Schedule Proposal</strong></a>, and it&#8217;s also a call for volunteers for the release squad. The 6.2 release squad will then decide on the final release schedule. For now, Feature Freeze and Beta 1 would be on February 7th, 2023. Tthere are four Beta releases planned before release candidate 1 will be available on March 7th, and a final release on March 28th, 2023. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Reminder: January 10, 2023, at 9:30 ET / 14:30 UTC: <a href=\"https://make.wordpress.org/core/2022/12/16/hallway-hangout-performance-considerations-for-block-themes/\"><strong>Hallway Hangout: Performance Considerations for Block Themes</strong></a> <strong>Anne McCarthy</strong> wrote: &#8220;At a high level, we’ll go through general intros (what each person does/focuses on), current work underway to address performance, what work is being done specifically for block themes, and general open Q&amp;A. Hallway hangouts are meant to be casual and collaborative so come prepared with a kind, curious mind along with any questions or items you want to demo/discuss.&#8221; </p>\n\n\n\n<h3 id=\"1-ne\">From the WordPress Developer Blog</h3>\n\n\n\n<p><strong>Justin Tadlock</strong> published a tutorial for <a href=\"https://developer.wordpress.org/news/2022/12/20/building-a-book-review-grid-with-a-query-loop-block-variation/\"><strong>building a book review grid with a Query Loop block variation</strong></a>. WordPress 6.1 introduced an extension to the Query Loop block, which allows plugin developers to filter existing functionality in core WordPress rather than building custom blocks to query posts. This tutorial shows how to build a WordPress plugin that display a list of book review posts including <code>post_meta` </code>data, using a block variation for the Query Loop and set up rendering it on the front end. </p>\n\n\n\n<p><strong>Nick Diego</strong> <a href=\"https://twitter.com/nickmdiego/status/1611377046785081345\">tweeted</a>: I always knew the Query Loop block was incredibly powerful, but I had never explored integrating post metadata into custom block variations! Learn how in this fantastic article by <a href=\"https://twitter.com/justintadlock\">@justintadlock</a> on the new WordPress Developer Blog.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Micheal Burridge</strong> composed a Roundup post to review <a href=\"https://developer.wordpress.org/news/2022/12/28/2022-the-block-developers-year-in-review/\"><strong>2022 from a block developer&#8217;s perspective</strong></a> in is post. You&#8217;ll find a select list of resources, to get started or to catch up on the development from the last 12 months, via the Make Blog, WordPress TV and the Learn WordPress site. </p>\n\n\n\n<h3 id=\"2-gutenberg-plugin-releases\">Gutenberg plugin releases</h3>\n\n\n\n<p><strong>Gutenberg 14.8 </strong>was released on December 22, 2022, and release lead <strong>Ryan Welcher</strong> highlighted in his post <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\"><strong>What’s new in Gutenberg 14.8? (21 December)</strong></a></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/#new-reorganized-site-editor-interface\">A new, reorganized Site Editor interface</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/#introduce-the-stylebook\">Introducing the Style Book</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/#Add-custom-CSS-rules-for-your-site\">Add custom CSS rules for your site</a></li>\n</ul>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the release as well via the WPTavern: <a href=\"https://wptavern.com/gutenberg-14-8-overhauls-site-editor-interface-adds-style-book\"><strong>Gutenberg 14.8 Overhauls Site Editor Interface, Adds Style Book</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Gutenberg 14.9 i</strong>s the first release of 2023, and release lead Justin Tadlock pointed out a few new features in his post <strong><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">What’s new in Gutenberg 14.9? (4 January)</a></strong>: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#push-block-changes-to-global-styles\">Push block changes to Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#typography-support-for-page-list-block\">Typography support for Page List block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#import-sidebar-widgets-to-template-parts\">Import sidebar widgets to template parts</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#shadow-presets-minimum-fluid-font-size\">theme.json support: Shadow presets and minimum fluid font size</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/#other-notable-highlights\">Other notable highlights</a></li>\n</ul>\n\n\n\n<p>On the WPTavern, <strong>Sarah Gooding</strong> took the version for spin and reported on the new magic: <a href=\"https://wptavern.com/gutenberg-14-9s-new-magic-push-block-changes-to-global-styles\"><strong>Gutenberg 14.9’s New Magic: Push Block Changes to Global Styles</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the upcoming <strong>Gutenberg Changelog episode 78</strong>, <strong>Hector Prieto</strong> was my guest. He is a full-time core contributor and coordinator of multi-release WordPress and Gutenberg releases. We discussed Gutenberg 14.8 and 14.9 as well as 6.2 release schedule proposal and other topics. The episode will hit your favorite podcast app over the weekend. </p>\n\n\n\n<img />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-78-state-of-the-word-wordpress-6-2-gutenberg-14-8-and-14-9/\">Gutenberg Changelog #78 -State of the Word, WordPress 6.2, Gutenberg 14.8 and 14.9</a> with Birgit Pauli-Haack and special guest Hector Prieto</p>\n</div></div>\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> wrote about <a href=\"https://wptavern.com/block-protocol-announces-new-wordpress-plugin-coming-in-2023\"><strong>Block Protocol Announces New WordPress Plugin Coming in 2023</strong></a> It will allow users to embed interactive blocks that are compatible with Gutenberg, and will include blocks for drawing, GitHub pull request overview, timer, calculation, and more. The plugin will also include new blocks powered by OpenAI DALL-E and GPT . </p>\n\n\n\n<p>The <a href=\"https://blockprotocol.org/\"><em>Block Protocol</em></a> project is open source and designed to be an open protocol, and WordPress hopes to integrate more with it in the future. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the latest WPTavern Jukebox podcast episode, <strong>Damon Cook</strong>, developer advocate at WPEngine, discussed with Nathan Wrigley the <a href=\"https://wptavern.com/podcast/57-damon-cook-on-the-future-of-website-styling-in-wordpress\">f<strong>uture of website styling in WordPress</strong></a>. Wrigley wrote in the introduction: &#8221; Block-based themes are revolutionizing website styling. You’re going to be able to change any aspect of your website from the UI that you’re familiar with. The hope is that it’ll make styling more accessible to a wider audience.</p>\n\n\n\n<p>Damon talks about the fact that we’re in a period of flux right now. The documentation and tooling needed to work with website styles is maturing, but is by no means complete.&#8221; </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Torsten Landsiedel</strong> scratched his personal itch and built the plugin Ignore block name in search, after finding that the WordPress built-in search included in the findings posts where the search keywords are in the HTML comments of blocks, and with that skews, the search result less relevant. It&#8217;s particular helpful when your blog is about working with the block editor or about content creation with WordPress. Landsiedel feels that the block editor makes the shortcomings of the built-in search feature worse because blocks contain full words, and not just HTML tags. It&#8217;s been a <a href=\"https://github.com/WordPress/gutenberg/issues/3739\">long-standing issue</a>, that this plugin now solves. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://wordpress.org/themes/tags/full-site-editing/\"><strong>209 Block Themes </strong></a>are now available in the WordPress repository with new submissions by <a href=\"https://wordpress.org/themes/author/themeisle/\">Themeisle</a>, <a href=\"https://wordpress.org/themes/author/sparklewpthemes/\">sparklewpthemes</a>, <a href=\"https://wordpress.org/themes/author/olivethemes/\">olivethemes</a>, <a href=\"https://wordpress.org/themes/author/deothemes/\">deothemes</a>, <a href=\"https://wordpress.org/themes/author/sonalsinha21/\">sonalsinha21</a>, <a href=\"https://wordpress.org/themes/author/blockify/\">Blockify</a>, <a href=\"https://wordpress.org/themes/author/hamidxazad/\">hamidxazad</a>, <a href=\"https://wordpress.org/themes/author/wpzoom/\">WPZOOM</a>. </p>\n\n\n\n<a href=\"https://wordpress.org/themes/tags/full-site-editing/\"><img /></a>\n\n\n\n<p><strong>Ana Segota</strong> of <em>Anariel Design</em> also <a href=\"https://twitter.com/Ana_Segota/status/1608903485956947968\">announced</a> <a href=\"https://anarieldesign.com/themes/yuna/\"><strong>Yuna, a block theme for Nonprofits</strong></a> that comes with 100+ Design Patterns, you can add to your page with a simple drag and drop. Use built-in options to arrange and style them any way you want. It also includes built-in styles for the popular GiveWP donations plugin and is also ready to house your ecommerce store. </p>\n\n\n\n<h3 id=\"4-making-block-art\">Making Block Art </h3>\n\n\n\n<p>Curious about some art behind Matt Mullenweg during State of the Word? Below are those pieces designed for the&nbsp;<a href=\"https://block-museum.com/\">Museum of Block Art</a>&nbsp;which represent the creativity that Gutenberg blocks inspire. Be sure to stop by and experience the museum’s&nbsp;<a href=\"https://block-museum.com/interact/\">digital interactive exhibit</a>.</p>\n\n\n\n<p>You can see </p>\n\n\n\n<ul>\n<li><a href=\"https://block-museum.com/2022/06/03/circular-rainbow/\"><strong>Circular rainbow</strong></a> by Chuck Grimmett&nbsp;</li>\n\n\n\n<li><a href=\"https://block-museum.com/2022/03/01/splitting/\"><strong>Splitting</strong></a> by Anne McCarthy</li>\n\n\n\n<li><a href=\"https://block-museum.com/2022/02/02/its-me/\"><strong>It’s me</strong></a> by Nick Hamze</li>\n\n\n\n<li><a href=\"https://block-museum.com/2022/01/19/futuro-1/\"><strong>Futuro 1</strong></a> by Javier Arce</li>\n\n\n\n<li><a href=\"https://block-museum.com/2022/01/11/019/\"><strong>019</strong></a> by Tammy Lister</li>\n</ul>\n\n\n\n<img />\n\n\n\n<p><strong>Anne McCarthy</strong>, instigator and curator of the Museum of Block Art, wrote an insightful blog post about how she approached making art with the Block Editor. Take a look <a href=\"https://nomad.blog/2022/12/26/behind-the-scenes-of-creating-art-with-wordpress/\"><strong>Behind the scenes of creating art with WordPress</strong></a>. </p>\n\n\n\n<p><strong>Chuck Grimmett</strong> has more examples of <a href=\"https://cagrimmett.com/wp-block-art/\"><strong>WP Block Art</strong></a> on his blog. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rich Tabor</strong>&nbsp;and&nbsp;<strong>Courtney Portnoy</strong>&nbsp;discussed&nbsp;<a href=\"https://wordpress.tv/2022/11/18/the-creative-side-of-blocks-vol-3/\"><strong>The creative side of blocks</strong></a>&nbsp;on WordPressTV. Rich Tabor walks the viewers through one of his block art creations. It’s quite inspiring to watch Tabor’s exploratory creative process using the block editor. I learned quite a few things about the power of the various color features: gradient, nested group blocks, and how to replace the theme’s primary and secondary colors for the whole site. You’ll also get an introduction to the&nbsp;<a href=\"https://block-museum.com/\">Museum of Block Art</a>, where Rich and other block artists showcase their creations. <em>(also mentioned in GT 239)</em></p>\n\n\n\n<h3 id=\"5-form-plugins-working-with-blocks\">Form Plugins working with Blocks</h3>\n\n\n\n<p>Two plugins emerged that take advantage of the block editor and its components and scripts so site owners and builders can use them to create forms. </p>\n\n\n\n<p><strong>Munir Kamal</strong>, created a block integration for the popular CF7 Forms. It&#8217;s aptly names <a href=\"https://wordpress.org/plugins/cf7-blocks/\"><strong>CF Blocks</strong></a> and available in the WordPress repository. He wrote in the description: &#8220;With CF7 Blocks, you can easily create and customize contact forms within the familiar block editor interface. No more fiddling with short codes or HTML – just drag and drop blocks to build your forms exactly how you want them.&#8221; Sounds spectacular, doesn&#8217;t it? </p>\n\n\n\n<p>In here article <a href=\"https://wptavern.com/new-cf7-blocks-plugin-brings-blocks-to-contact-form-7\"><strong>New CF7 Blocks Plugin Brings Blocks to Contact Form 7</strong></a>, Sarah Gooding, took a more in-depth look and shares her findings. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On <a href=\"https://twitter.com/jrtashjian/status/1610761741025087521\">Twitter</a>, <a href=\"https://twitter.com/jrtashjian\"><strong>JR Tashjian</strong></a> developer at GoDaddy, <strong>introduced </strong><a href=\"https://omniform.io/\"><strong>OmniForm</strong>,</a> the next-generation Form Builder for your website. Sign up for early access now and be among the first to try it. The plan is to make the plugin available in the WordPress plugin directory at the end of January, with early access provided to users the week prior. Tashjian continues: &#8220;OmniForm embraces the block editor to the fullest extent and unlike any solution right now. The block editor is the future of editing in WordPress and building any kind of form will be no different from creating a post or page.&#8221; Tall order. Looking forward to doing some testing, too. </p>\n\n\n\n<h2 id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> has a new video up on YouTube: <a href=\"https://www.youtube.com/watch?v=e2bFOZ7O-Po\"><strong>Building a site with WordPress 5.9 vs. WordPress 6.2 (in progress features)</strong></a> &#8211; To better show what&#8217;s changed with the Site Editor from when it was first introduced in WordPress 5.9, this video goes through both a demo of the original state and a brief look at what&#8217;s in place today and what&#8217;s to come, especially as 6.2 looks to wrap up much of the work around site editing/phase 2 of Gutenberg. Keep in mind that WordPress 6.2 is not out yet and much of what&#8217;s being shown is very much a work in progress with big opportunities to provide feedback along the way. Either way, I hope you enjoy taking a peak back and a look forward. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p>In this video tutorial, <strong>Jonathan Bossenger</strong> gives you an <strong><a href=\"https://wordpress.tv/2023/01/06/introduction-to-theme-json/\" target=\"_blank\" rel=\"noreferrer noopener\">Introduction to theme.json</a>.</strong> You will learn how the theme.js file works, and how you can control these settings and styles.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Daisy Olsen</strong> started a new Live Stream schedule and will show off Block Themes in WordPress every Friday at 10:30 am ET / 15:30 UTC on Twitch. </p>\n\n\n\n<p>The inaugural show took place Friday, January 6th, 2023 with the topic: <a href=\"https://www.twitch.tv/videos/1699386540\"><strong>Building a Block Theme</strong></a>. It&#8217;s a great opportunity to follow along with Daisy and ask questions along the way. </p>\n\n\n\n<a href=\"https://www.twitch.tv/daisyonwp\"><img /></a>\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Munir Kamal </strong>takes you on a journey of <a href=\"https://gutenberghub.com/from-wordpress-to-the-world-intro-to-the-standalone-gutenberg-block-editor/\"><strong>From WordPress to the World: Intro to the Standalone Gutenberg Block Editor</strong></a>. In his new plugin, Kamal made the journey and found a few challenges along the way, overcame them and new put it all together for others to follow. Using the app <a href=\"https://github.com/Automattic/isolated-block-editor\"><strong>&#8216;Isolated block editor</strong></a>, from the public repo, maintained by Automattic. Matt Mullenweg in the State of the Word emphasized that the block editor is also used outside of WordPress, with Tumblr, Day One app and with bbPress instance.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The team working on <strong>GiveWP</strong> went on a similar route on the revamp of the highly popular donation plugin. Post Status recently posted an article about that: <a href=\"https://poststatus.com/the-future-of-givewp-and-the-block-editor/\"><strong>The Future of GiveWP and the Block Editor</strong></a></p>\n\n\n\n<p>GiveWP will hold a Town hall event about the new version on January 25th, 2023 at 10am PT / 18:00 UTC – in case someone is interested.&nbsp;<a href=\"https://href.li/?https://givewp.com/town-hall-givewp-design-mode-and-whats-next-for-3-0/?\"><strong>Learn more Town Hall: GiveWP Design Mode and What’s Next for 3.0</strong></a></p>\n\n\n\n<p><br /><strong>Kyle Johnson</strong>, JavaScript developer at GiveWP will present his talk: <a href=\"https://birmingham.wordcamp.org/2023/session/using-gutenberg-as-a-development-foundation-not-just-a-block-builder/\"><strong>Using Gutenberg as a Development Foundation, Not Just a Block Builder</strong></a> at WordCamp Birmingham on February 4th, 2023. As far as we know, the talks will be recorded, but not livestreamed. So, they will show up on WordPress TV in the weeks after the WordCamp. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Mohammed Noufal of Hubspot wrote about <a href=\"https://blog.hubspot.com/website/custom-blocks-wordpress\"><strong>How to Create Custom Blocks in WordPress</strong></a>, providing answers to the questions: why use a custom block, how to make Custom Block Templates and how to use custom blocks on your site. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong>&#8216;s last section of his series: <em>Let’s code: developing blocks without React!&nbsp;</em> is now also available on WordPress TV. <a href=\"https://wordpress.tv/2023/01/04/lets-code-developing-blocks-without-react-review/\"><strong>Let’s code: developing blocks without React! –&nbsp;Review</strong></a>. If you followed along over the past few weeks, you would have learned to build a small WordPress block using plain (vanilla) JavaScript. In this session, we will review everything we’ve learned so far, by rebuilding the entire block from scratch.</p>\n\n\n\n<p>The other editions for the series are in order of broadcast/</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/12/02/lets-code-developing-blocks-without-react-controls/\">Controls</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/25/lets-code-developing-blocks-without-react-part-2-take-2/\">Attributes and&nbsp;RichText</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/18/lets-code-developing-blocks-without-react-all-about-attributes/\">All about Attributes</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/11/lets-code-developing-blocks-without-react-part-1/\">Block&nbsp;Basics</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/12/lets-code-developing-blocks-without-react-block-supports/\" target=\"_blank\" rel=\"noreferrer noopener\">Block Supports</a>&nbsp;</li>\n</ul>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p><strong>January 10, 2023 &#8211; 9:30 ET / 14:30 UTC </strong><br /><a href=\"https://make.wordpress.org/core/2022/12/16/hallway-hangout-performance-considerations-for-block-themes/\"><strong>Hallway Hangout: Performance Considerations for Block Themes</strong></a> with Anne McCarthy</p>\n\n\n\n<p><strong>January 11, 2023 – 5 pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Gutenberg Times Live Q &amp; A: Layout, layout, layout</a></strong><br />Panel discussion with Isabel Brison, Andrew Serong, Justin Tadlock and Birgit Pauli-Haack</p>\n\n\n\n<p>February 4 + 5, 2023 <br /><a href=\"https://birmingham.wordcamp.org/\"><strong>WordCamp Birmingham, AL</strong></a><br /></p>\n\n\n\n<p><strong>February 17 – 19, 2023</strong><br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a>&nbsp;</p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>January 17, 2023 &#8211; 3pm / 20:00 UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290412094/\"><strong>Patterns, reusable blocks and block locking</strong></a></p>\n\n\n\n<p>January 19, 2023 – 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290363952/\"><strong>Let’s make custom templates in the Site Editor!</strong></a></p>\n\n\n\n<p>January 31, 2023 &#8211; 3pm ET / 20:00 UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290414181/\"><strong>Creating a photography website with the block editor</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image:</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";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:\"Sat, 07 Jan 2023 14:25:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;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:103:\"WPTavern: WordCamp Europe 2023 Speaker Applications Open, Organizers Call for More Interactive Sessions\";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:30:\"https://wptavern.com/?p=140881\";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:113:\"https://wptavern.com/wordcamp-europe-2023-speaker-applications-open-organizers-call-for-more-interactive-sessions\";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:2184:\"<img />\n\n\n\n<p>WordCamp Europe 2023 is being hosted in Athens this year with two conference days scheduled for June 9 and 10. The first day&#8217;s theme is &#8220;WordPress Now&#8221; (Everything that can be currently achieved with WordPress) and the second day is &#8220;WordPress Tomorrow.&#8221;</p>\n\n\n\n<p>Organizers have opened the <a href=\"https://europe.wordcamp.org/2023/call-for-speakers/\">call for speakers</a> and are especially interested in scheduling talks that &#8220;empower people to feel more comfortable using WordPress.&#8221; They are soliciting new voices this year with fresh perspectives.</p>\n\n\n\n<p>After reviewing attendee feedback from the previous year, organizers have identified more than three dozen requested topics across the development, business, community, and design categories. These include many more development topics, such as security, CI/CD, headless CMS, ReactJS for PHP Developers / Building Blocks, and more. Attendees are also eager to hear about content monetization, recurring revenue, GDPR compliance, brand identity, and designing for accessibility, to list a few examples.</p>\n\n\n\n<p>Presentation formats will include traditional talks, hands-on workshops, expert panels, and lightning talks. Organizers are encouraging speakers to add activities to sessions that will get the audience involved and avoid the afternoon slump. They cited a few examples, including a WordCamp in the Czech Republic where a security researcher installed a Wi-Fi honeypot in the venue and demonstrated how dangerous public wi-fi is when logging into a WordPress site that doesn&#8217;t have SSL. </p>\n\n\n\n<p>WCEU has launched a <a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2023/?page_id=2755\" target=\"_blank\">Speaker’s support program</a> to help fund selected speakers with financial barriers to attending. Organizers arrange for speakers and the sponsoring companies to connect but are not involved in selecting who receives the funds.</p>\n\n\n\n<p>The call for speakers will close the first week of February and applicants will receive a response by the second week of March. Speakers will be announced in the second week of April.</p>\";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:\"Sat, 07 Jan 2023 03:18:41 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;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:125:\"WPTavern: BuddyPress 11.0.0 Adds Filter for Improved JS and CSS Asset Loading, WebP Support, and New Ways to Fetch Activities\";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:30:\"https://wptavern.com/?p=140854\";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:134:\"https://wptavern.com/buddypress-11-0-0-adds-filter-for-improved-js-and-css-asset-loading-webp-support-and-new-ways-to-fetch-activities\";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:3436:\"<p><a href=\"https://buddypress.org/2023/01/buddypress-11-0-0-la-scala/\">BuddyPress 11.0.0</a> is now available thanks to the efforts of 34 contributors. The release is named “La Scala” in honor of a pizza restaurant located in Issy-Les-Moulineaux, a Paris suburb.</p>\n\n\n\n<p>Version 11.0.0 introduces a few important changes. BuddyPress has <a href=\"https://wptavern.com/buddypress-11-0-0-to-limit-javascript-and-css-asset-loading-to-community-pages-using-a-filter\">improved the way it loads its JavaScript and CSS assets</a> with the addition of <a href=\"https://bpdevel.wordpress.com/2022/11/21/buddypress-will-soon-only-load-its-javascript-and-style-assets-into-the-community-area-of-your-site/\">a new filter</a> so that they are now only loaded on community pages. Previously, the plugin would load them indiscriminately on every page, a leftover from how they were loaded in the first Template Pack (BP Legacy). This change is being rolled out progressively, so users who want to take advantage of this improvement will need to add the filter to their <a href=\"https://codex.buddypress.org/themes/bp-custom-php/\">bp-custom.php</a> file.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>add_filter( ‘bp_enqueue_assets_in_bp_pages_only’, ‘__return_true’ );</p>\n</blockquote>\n\n\n\n<p>BP 11.0.0 also enables the use of use <a href=\"https://bpdevel.wordpress.com/2022/11/24/webp-support-is-arriving-in-buddypress-11-0-0/\">.webp</a> images for profile and cover images, after a user requested it in a negative review. This feature requires WordPress 5.8 or newer. </p>\n\n\n\n<p>This release introduces the ability to <a href=\"https://bpdevel.wordpress.com/2022/12/01/bp-11-fetch-activities-for-or-excluding-a-group-of-users/\">fetch activities for or excluding a group of users</a>. For example, developers can now write code to fetch activities for a select few users based on user ID or block updates from some annoying users by excluding their user IDs. </p>\n\n\n\n<p>&#8220;This change is simple but powerful!&#8221; BuddyPress core developer Dan Cavins said. &#8220;For instance, you could create custom interest activity streams, or build a mute feature to let your members take a break from other, too-chatty users!&#8221;</p>\n\n\n\n<p>Version 11.0.0 also gives developers the ability to build custom xProfile loops <a href=\"https://bpdevel.wordpress.com/2022/12/06/bp-11-bp_has_profile-now-accepts-an-array-of-profile-group-ids/\">including a specific set of profile field groups</a>.</p>\n\n\n\n<p>BuddyPress 10.0.0 introduced an add-ons section in the plugin administration screen for users to easily test plugins or blocks maintained by the BuddyPress development team and hosted on WordPress.org. BP lead developer Mathieu Viet said the team will soon be publishing a Community Media Attachments add-on and a block-based Activity Post Form that will &#8220;standardize the way to extend activity updates with richer and more engaging content.&#8221; These feature plugins are part of what Viet anticipates will be &#8220;a transitional year for BuddyPress&#8221; and may be published to the add-ons section independent of a major release. </p>\n\n\n\n<p>BuddyPress users should watch for updates to the add-ons section and check out the full list of changes in <a href=\"https://codex.buddypress.org/releases/version-11-0-0/\">11.0.0 in the BuddyPress codex</a>. Updating to the latest version will require WordPress 5.7 or later.</p>\";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:\"Fri, 06 Jan 2023 22:33:59 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;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:62:\"Do The Woo Community: A New YouTube Channel and WooBits Format\";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:28:\"https://dothewoo.io/?p=74228\";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:55:\"https://dothewoo.io/new-youtube-channel-woobits-format/\";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:414:\"<p>WooBits now featuring guest hosts for a one-off chance to share their insights and perspectives on various topics. Plus a new YouTube channel.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/new-youtube-channel-woobits-format/\">A New YouTube Channel and WooBits Format</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";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:\"Fri, 06 Jan 2023 10:54:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;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:51:\"WPTavern: Awesome Motive Acquires Duplicator Plugin\";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:30:\"https://wptavern.com/?p=140830\";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:62:\"https://wptavern.com/awesome-motive-acquires-duplicator-plugin\";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:2164:\"<p>Awesome Motive&#8217;s <a href=\"https://www.wpbeginner.com/wordpress-plugins/\">product suite</a> of nearly 20 commercial plugins has expanded to include a backup plugin. The company <a href=\"https://www.wpbeginner.com/news/welcome-duplicator-to-the-wpbeginner-family-of-products/\">announced</a> its acquisition of <a href=\"https://wordpress.org/plugins/duplicator/\">Duplicator</a> today, a 12-year-old freemium product with more than 1.5 million users. </p>\n\n\n\n<p>In addition to the backup utility, the plugin enables users to migrate, copy, move, or clone a site from one location to another. Commercial licenses range from $49/year to $299.50/year.</p>\n\n\n\n<p>Snapcreek co-founders Bob Riley and Cory Lamle, creators of Duplicator, will be moving on to pursue other endeavors but the rest of the team will continue to work on the product at Awesome Motive led by <a href=\"https://johndturner.com/\">John Turner</a>. </p>\n\n\n\n<p>This is the first WordPress business acquisition of 2023, and it&#8217;s a major one as 1.5 million users are changing hands to rely on a new company. Users can expect <a href=\"https://twitter.com/syedbalkhi/status/1611100494839316480\">no pricing changes</a> but some have already <a href=\"https://twitter.com/wpeditorial/status/1611027326795681794\">expressed</a> <a href=\"https://twitter.com/karks88/status/1610991832749539328\">concern</a> about having to put up with Awesome Motive&#8217;s trademark aggressive marketing that litters the WordPress admin with ads and upsells. </p>\n\n\n\n<p>In the co-founders&#8217; <a href=\"https://snapcreek.com/blog/news/duplicator-is-joining-the-awesome-motive-family/\">farewell post</a>, they assured users that Awesome Motive will continue working on their prior roadmap.</p>\n\n\n\n<p>&#8220;We have shared our extensive feature wishlist, and we know that with Awesome Motive’s resources and experience that wishlist will become a reality much faster,&#8221; Riley said.</p>\n\n\n\n<p>&#8220;As we pass the baton, Cory and I want to say thank you to everyone who has supported us on this journey. We are extremely grateful to be able to play a small part in the amazing WordPress ecosystem.&#8221;</p>\";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:\"Fri, 06 Jan 2023 02:48:43 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;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:75:\"WPTavern: Gutenberg 14.9’s New Magic: Push Block Changes to Global Styles\";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:30:\"https://wptavern.com/?p=140717\";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:82:\"https://wptavern.com/gutenberg-14-9s-new-magic-push-block-changes-to-global-styles\";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:3405:\"<p><a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">Gutenberg 14.9</a> was released this week with a powerful new feature for site editing that allows users to push individual block changes to Global Styles. </p>\n\n\n\n<p>When WordPress makes it this easy for users to design their own sites, there&#8217;s always the lingering concern &#8211; will the tools inadvertently be used to make sites that are wild and wacky à la GeoCities? For example, if a user makes a change to a Heading block on the Page template, that doesn&#8217;t get automatically enabled for headings on other templates, which could potentially create an inconsistent design across the website. </p>\n\n\n\n<p>The new &#8220;Push changes to Global Styles&#8221; button allows users to apply that same change to all blocks of that type. In the example below, the H1 heading has been updated to have a lime green background with red text. Under the Advanced panel in block settings, a new button appears for pushing changes to Global Styles. </p>\n\n\n\n<img />\n\n\n\n<p>It&#8217;s important to note that the feature only works inside the Site Editor. Users writing posts and pages will not have the ability to push changes to Global Styles. The new button gives users a quick way to update blocks across the site without having to manually edit every template or figure out the right CSS to apply. </p>\n\n\n\n<p>Other important changes in 14.9 include <a href=\"https://github.com/WordPress/gutenberg/pull/43316\">typography support for the Page List block</a>, a new option to <a href=\"https://github.com/WordPress/gutenberg/pull/45509\">import sidebar widgets into a template part</a> when switching from a classic theme, and word count/time to read meta info has been <a href=\"https://github.com/WordPress/gutenberg/pull/46648\">moved to the top of the outline</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">New Features for Theme Authors</h2>\n\n\n\n<p>Gutenberg 14.9 introduces support for shadow presets in theme.json, with two bundled default presets (Natural and Sharp). Theme authors can <a href=\"https://github.com/WordPress/gutenberg/pull/46813\">see how it&#8217;s done</a> and create&nbsp;custom box-shadow presets, or wait for an <a href=\"https://github.com/WordPress/developer-blog-content/issues/51\">upcoming tutorial</a> on the topic. The 14.9 release post includes a screenshot of how this feature might be implemented:</p>\n\n\n\n<img />\n\n\n\n<p>Theme authors now have the ability to <a href=\"https://github.com/WordPress/gutenberg/pull/42489\">set the minimum font size for fluid typography in theme.json</a>. It is currently hard coded to 14px by default, which may not work for all designs.</p>\n\n\n\n<p>Another new tool for theme developers is the ability to register patterns for specific templates, which would restrict where they appear. This was added via <a href=\"https://github.com/WordPress/gutenberg/pull/45814\">a new templateType property</a> in the patterns registration API. Theme developers can restrict patterns to only show up for the templates where they make sense, such as 404, single-post, single-product, and category templates, for example.</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">14.9 release post</a> to see all the bug fixes and enhancements to the editor, accessibility, performance, tooling, and more. </p>\";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:\"Thu, 05 Jan 2023 22:20:46 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 21 Jan 2023 12:39:59 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Sat, 21 Jan 2023 12:30:32 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(458,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1674348003','no'),(459,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1674304803','no'),(460,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1674348004','no'),(461,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/01/the-month-in-wordpress-december-2022/\'>The Month in WordPress – December 2022</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/01/letter-from-wordpress-executive-director-2022/\'>Letter from WordPress’ Executive Director, 2022</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-community-team-proposes-adopting-github-for-improved-collaboration\'>WPTavern: WordPress Community Team Proposes Adopting GitHub to Improve Collaboration</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-15-0-introduces-sticky-position-block-support-adds-paste-styles-option\'>WPTavern: Gutenberg 15.0 Introduces “Sticky” Position Block Support, Adds “Paste Styles” Option</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/launching-a-wordpress-product-in-public-session-1/\'>Post Status: Launching a WordPress Product in Public: Session 1</a></li></ul></div>','no'),(464,'_transient_timeout_kirki_remote_url_contents','1674909698','no'),(465,'_transient_kirki_remote_url_contents','a:2:{s:32:\"ca4a1da630f3d633f978f047e36889fb\";s:2886:\"/* latin-ext */\n@font-face {\n font-family: \'Lato\';\n font-style: italic;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxsAUi-sNiXg7eU0.woff) format(\'woff\');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \'Lato\';\n font-style: italic;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxsAXC-sNiXg7Q.woff) format(\'woff\');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n font-family: \'Lato\';\n font-style: italic;\n font-weight: 700;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wq_FQfrx9897sxZ.woff) format(\'woff\');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \'Lato\';\n font-style: italic;\n font-weight: 700;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wq_Gwfrx9897g.woff) format(\'woff\');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n font-family: \'Lato\';\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff) format(\'woff\');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \'Lato\';\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWCWtFCc.woff) format(\'woff\');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n font-family: \'Lato\';\n font-style: normal;\n font-weight: 700;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff) format(\'woff\');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \'Lato\';\n font-style: normal;\n font-weight: 700;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff) format(\'woff\');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";s:32:\"a223e9861ba19648f0aca76ed185259f\";s:2886:\"/* latin-ext */\n@font-face {\n font-family: \'Lato\';\n font-style: italic;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxsAUi-sNiXg7eU0.woff) format(\'woff\');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \'Lato\';\n font-style: italic;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxsAXC-sNiXg7Q.woff) format(\'woff\');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n font-family: \'Lato\';\n font-style: italic;\n font-weight: 700;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wq_FQfrx9897sxZ.woff) format(\'woff\');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \'Lato\';\n font-style: italic;\n font-weight: 700;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wq_Gwfrx9897g.woff) format(\'woff\');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n font-family: \'Lato\';\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjxAwWCWtFCfQ7A.woff) format(\'woff\');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \'Lato\';\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWCWtFCc.woff) format(\'woff\');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n font-family: \'Lato\';\n font-style: normal;\n font-weight: 700;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwaPHw3q5d0N7w.woff) format(\'woff\');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \'Lato\';\n font-style: normal;\n font-weight: 700;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwiPHw3q5d0.woff) format(\'woff\');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";}','no'),(466,'_transient_timeout_powerkit_instagram_data_b6716cd823ea5219581ecc6c2adb5a99','1674348099','no');
INSERT INTO `wp_options` VALUES (467,'_transient_powerkit_instagram_data_b6716cd823ea5219581ecc6c2adb5a99','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:13:{s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:2:\"br\";s:18:\"accept-ch-lifetime\";s:7:\"4838400\";s:9:\"accept-ch\";s:27:\"sec-ch-prefers-color-scheme\";s:19:\"reporting-endpoints\";s:0:\"\";s:26:\"cross-origin-opener-policy\";s:24:\"same-origin-allow-popups\";s:25:\"strict-transport-security\";s:16:\"max-age=15552000\";s:12:\"content-type\";s:26:\"text/html; charset=\"utf-8\"\";s:10:\"x-fb-debug\";s:88:\"i6lK02kjFTUH4j1T+IDjQ0vPTR7GBv58Z2UxBBF1f7s6RQLzGpuqHPN15HltDMrOYcZgloC7HjJxCdYIYBPshQ==\";s:4:\"date\";s:29:\"Sat, 21 Jan 2023 12:41:35 GMT\";s:8:\"priority\";s:5:\"u=3,i\";s:12:\"x-fb-trip-id\";s:10:\"1679558926\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}}s:4:\"body\";s:513301:\"<!DOCTYPE html><html class=\"_9dls\" style=\"background-color: rgb(var(--ig-secondary-background))\" lang=\"en\" dir=\"ltr\"><head><link data-default-icon=\"https://static.cdninstagram.com/rsrc.php/v3/yb/r/lswP1OF1o6P.png\" rel=\"icon\" sizes=\"192x192\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yb/r/lswP1OF1o6P.png\" /><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/yv/r/BTPhT6yIYfq.ico\" rel=\"shortcut icon\" type=\"image/x-icon\" href=\"https://static.cdninstagram.com/rsrc.php/yv/r/BTPhT6yIYfq.ico\" /><meta name=\"color-scheme\" content=\"light\" /><style nonce=\"7DXsYBtw\">:root,.__ig-light-mode{--fds-black:#000000;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0, 0.5);--fds-black-alpha-60:rgba(0, 0, 0, 0.6);--fds-black-alpha-80:rgba(0, 0, 0, 0.8);--fds-blue-05:#ECF3FF;--fds-blue-30:#AAC9FF;--fds-blue-40:#77A7FF;--fds-blue-60:#1877F2;--fds-blue-70:#2851A3;--fds-blue-80:#1D3C78;--fds-button-text:#444950;--fds-comment-background:#F2F3F5;--fds-dark-mode-gray-35:#CCCCCC;--fds-dark-mode-gray-50:#828282;--fds-dark-mode-gray-70:#4A4A4A;--fds-dark-mode-gray-80:#373737;--fds-dark-mode-gray-90:#282828;--fds-dark-mode-gray-100:#1C1C1C;--fds-gray-00:#F5F6F7;--fds-gray-05:#F2F3F5;--fds-gray-10:#EBEDF0;--fds-gray-20:#DADDE1;--fds-gray-25:#CCD0D5;--fds-gray-30:#BEC3C9;--fds-gray-45:#8D949E;--fds-gray-70:#606770;--fds-gray-80:#444950;--fds-gray-90:#303338;--fds-gray-100:#1C1E21;--fds-green-55:#00A400;--fds-highlight:#3578E5;--fds-highlight-cell-background:#ECF3FF;--fds-primary-icon:#1C1E21;--fds-primary-text:#1C1E21;--fds-red-55:#FA383E;--fds-soft:cubic-bezier(.08,.52,.52,1);--fds-spectrum-aluminum-tint-70:#E4F0F6;--fds-spectrum-blue-gray-tint-70:#CFD1D5;--fds-spectrum-cherry:#F35369;--fds-spectrum-cherry-tint-70:#FBCCD2;--fds-spectrum-grape-tint-70:#DDD5F0;--fds-spectrum-grape-tint-90:#F4F1FA;--fds-spectrum-lemon-dark-1:#F5C33B;--fds-spectrum-lemon-tint-70:#FEF2D1;--fds-spectrum-lime:#A3CE71;--fds-spectrum-lime-tint-70:#E4F0D5;--fds-spectrum-orange-tint-70:#FCDEC5;--fds-spectrum-orange-tint-90:#FEF4EC;--fds-spectrum-seafoam-tint-70:#CAEEF9;--fds-spectrum-slate-dark-2:#89A1AC;--fds-spectrum-slate-tint-70:#EAEFF2;--fds-spectrum-teal:#6BCEBB;--fds-spectrum-teal-dark-1:#4DBBA6;--fds-spectrum-teal-dark-2:#31A38D;--fds-spectrum-teal-tint-70:#D2F0EA;--fds-spectrum-teal-tint-90:#F0FAF8;--fds-spectrum-tomato:#FB724B;--fds-spectrum-tomato-tint-30:#F38E7B;--fds-spectrum-tomato-tint-90:#FDEFED;--fds-strong:cubic-bezier(.12,.8,.32,1);--fds-white:#FFFFFF;--fds-white-alpha-05:rgba(255, 255, 255, 0.05);--fds-white-alpha-10:rgba(255, 255, 255, 0.1);--fds-white-alpha-20:rgba(255, 255, 255, 0.2);--fds-white-alpha-30:rgba(255, 255, 255, 0.3);--fds-white-alpha-40:rgba(255, 255, 255, 0.4);--fds-white-alpha-50:rgba(255, 255, 255, 0.5);--fds-white-alpha-60:rgba(255, 255, 255, 0.6);--fds-white-alpha-80:rgba(255, 255, 255, 0.8);--fds-yellow-20:#FFBA00;--accent:#0095F6;--always-white:#FFFFFF;--always-black:black;--always-dark-gradient:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));--always-dark-overlay:rgba(0, 0, 0, 0.4);--always-light-overlay:rgba(255, 255, 255, 0.4);--always-gray-40:#65676B;--always-gray-75:#BCC0C4;--always-gray-95:#F0F2F5;--attachment-footer-background:#F0F2F5;--background-deemphasized:#F0F2F5;--base-blue:#1877F2;--base-cherry:#F3425F;--base-grape:#9360F7;--base-lemon:#F7B928;--base-lime:#45BD62;--base-pink:#FF66BF;--base-seafoam:#54C7EC;--base-teal:#2ABBA7;--base-tomato:#FB724B;--blue-link:#00376B;--border-focused:#65676B;--card-background:#FFFFFF;--card-background-flat:#F7F8FA;--comment-background:#F0F2F5;--comment-footer-background:#F6F9FA;--dataviz-primary-1:rgb(48,200,180);--disabled-button-background:rgba(0, 149, 246, 0.3);--disabled-button-text:#FFFFFF;--disabled-icon:#BCC0C4;--disabled-text:#BCC0C4;--divider:#DBDBDB;--event-date:#F3425F;--fb-wordmark:#1877F2;--filter-accent:invert(39%) sepia(57%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(147.75%) hue-rotate(202deg) brightness(97%) contrast(96%);--filter-always-white:invert(100%);--filter-disabled-icon:invert(80%) sepia(6%) saturate(200%) saturate(120%) hue-rotate(173deg) brightness(98%) contrast(89%);--filter-placeholder-icon:invert(59%) sepia(11%) saturate(200%) saturate(135%) hue-rotate(176deg) brightness(96%) contrast(94%);--filter-primary-icon:invert(8%) sepia(10%) saturate(200%) saturate(200%) saturate(166%) hue-rotate(177deg) brightness(104%) contrast(91%);--filter-secondary-icon:invert(39%) sepia(21%) saturate(200%) saturate(109.5%) hue-rotate(174deg) brightness(94%) contrast(86%);--filter-warning-icon:invert(77%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(128%) hue-rotate(359deg) brightness(102%) contrast(107%);--filter-blue-link-icon:invert(30%) sepia(98%) saturate(200%) saturate(200%) saturate(200%) saturate(166.5%) hue-rotate(192deg) brightness(91%) contrast(101%);--filter-positive:invert(37%) sepia(61%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(115%) hue-rotate(91deg) brightness(97%) contrast(105%);--filter-negative:invert(25%) sepia(33%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(110%) hue-rotate(345deg) brightness(132%) contrast(96%);--glimmer-spinner-icon:#65676B;--hero-banner-background:#FFFFFF;--hosted-view-selected-state:rgba(45, 136, 255, 0.1);--highlight-bg:#E7F3FF;--hover-overlay:rgba(0, 0, 0, 0.05);--list-cell-chevron:#65676B;--media-hover:rgba(68, 73, 80, 0.15);--media-inner-border:rgba(0, 0, 0, 0.1);--media-outer-border:#FFFFFF;--media-pressed:rgba(68, 73, 80, 0.35);--messenger-card-background:#FFFFFF;--messenger-reply-background:#F0F2F5;--overlay-alpha-80:rgba(0, 0, 0, 0.65);--overlay-on-media:rgba(0, 0, 0, 0.6);--nav-bar-background:#FFFFFF;--nav-bar-background-gradient:linear-gradient(to top, #FFFFFF, rgba(255,255,255.9), rgba(255,255,255,.7), rgba(255,255,255,.4), rgba(255,255,255,0));--nav-bar-background-gradient-wash:linear-gradient(to top, #F0F2F5, rgba(240,242,245.9), rgba(240,242,245,.7), rgba(240,242,245,.4), rgba(240,242,245,0));--negative:hsl(350, 87%, 55%);--negative-background:hsl(350, 87%, 55%, 20%);--new-notification-background:#E7F3FF;--non-media-pressed:rgba(68, 73, 80, 0.15);--non-media-pressed-on-dark:rgba(255, 255, 255, 0.3);--notification-badge:#e41e3f;--placeholder-icon:#65676B;--placeholder-image:rgb(164, 167, 171);--placeholder-text:#65676B;--placeholder-text-on-media:rgba(255, 255, 255, 0.5);--popover-background:#FFFFFF;--positive:#31A24C;--positive-background:#DEEFE1;--press-overlay:rgba(0, 0, 0, 0.10);--primary-button-background:#0095F6;--primary-button-icon:#FFFFFF;--primary-button-pressed:#77A7FF;--primary-button-text:#FFFFFF;--primary-deemphasized-button-background:rgba(0, 149, 246, 0.1);--primary-deemphasized-button-pressed:rgba(0, 149, 246, 0.05);--primary-deemphasized-button-pressed-overlay:rgba(0, 149, 246, 0.15);--primary-deemphasized-button-text:#0095F6;--primary-icon:#262626;--primary-text:#262626;--primary-text-on-media:#FFFFFF;--primary-web-focus-indicator:#D24294;--progress-ring-neutral-background:rgba(0, 0, 0, 0.2);--progress-ring-neutral-foreground:#000000;--progress-ring-on-media-background:rgba(255, 255, 255, 0.2);--progress-ring-on-media-foreground:#FFFFFF;--progress-ring-blue-background:rgba(24, 119, 242, 0.2);--progress-ring-blue-foreground:hsl(214, 89%, 52%);--progress-ring-disabled-background:rgba(190,195,201, 0.2);--progress-ring-disabled-foreground:#BEC3C9;--rating-star-active:#EB660D;--scroll-thumb:#BCC0C4;--scroll-shadow:0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(0, 0, 0, 0.1) inset;--secondary-button-background:transparent;--secondary-button-background-floating:#ffffff;--secondary-button-background-on-dark:rgba(0, 0, 0, 0.4);--secondary-button-pressed:rgba(0, 0, 0, 0.05);--secondary-button-stroke:transparent;--secondary-button-text:#0095F6;--secondary-icon:#8E8E8E;--secondary-text:#8E8E8E;--secondary-text-on-media:rgba(255, 255, 255, 0.9);--section-header-text:#4B4C4F;--shadow-1:rgba(0, 0, 0, 0.1);--shadow-2:rgba(0, 0, 0, 0.2);--shadow-5:rgba(0, 0, 0, 0.5);--shadow-8:rgba(0, 0, 0, 0.8);--shadow-inset:rgba(255, 255, 255, 0.5);--shadow-elevated:0px 5px 12px rgba(52, 72, 84, 0.2);--shadow-persistent:0px 0px 12px rgba(52, 72, 84, 0.05);--shadow-primary:0px 5px 12px rgba(52, 72, 84, 0.2);--surface-background:#FFFFFF;--switch-active:hsl(214, 89%, 52%);--text-highlight:rgba(24, 119, 242, 0.2);--text-input-background:#FFFFFF;--toast-background:#FFFFFF;--toast-text:#1C2B33;--toast-text-link:#216FDB;--toggle-active-background:#E7F3FF;--toggle-active-icon:rgb(24, 119, 242);--toggle-active-text:rgb(24, 119, 242);--toggle-button-active-background:#E7F3FF;--wash:#FAFAFA;--web-wash:#FAFAFA;--warning:hsl(40, 89%, 52%);--fb-logo-color:#2D88FF;--dialog-anchor-vertical-padding:56px;--header-height:0px;--global-panel-width:0px;--global-panel-width-expanded:0px;--alert-banner-corner-radius:8px;--button-corner-radius:4px;--button-corner-radius-medium:10px;--button-corner-radius-large:12px;--button-height-large:40px;--button-height-medium:36px;--button-padding-horizontal-large:16px;--button-padding-horizontal-medium:16px;--button-icon-padding-large:16px;--button-icon-padding-medium:16px;--button-inner-icon-spacing-large:3px;--button-inner-icon-spacing-medium:3px;--blueprint-button-height-medium:40px;--blueprint-button-height-large:48px;--card-corner-radius:4px;--card-box-shadow:0 12px 28px 0 var(--shadow-2), 0 2px 4px 0 var(--shadow-1);--card-padding-vertical:20px;--chip-corner-radius:6px;--dialog-corner-radius:8px;--glimmer-corner-radius:8px;--image-corner-radius:4px;--input-corner-radius:4px;--nav-list-cell-corner-radius:8px;--list-cell-corner-radius:8px;--list-cell-min-height:52px;--list-cell-padding-vertical:20px;--list-cell-padding-vertical-with-addon:14px;--nav-list-cell-min-height:0px;--nav-list-cell-padding-vertical:16px;--nav-list-cell-padding-vertical-with-addon:16px;--text-input-multi-padding-between-text-scrollbar:20px;--text-input-multi-padding-scrollbar:16px;--toast-corner-radius:4px;--text-input-caption-margin-top:10px;--text-input-label-top:22px;--text-input-min-height:64px;--text-input-padding-vertical:12px;--fds-animation-enter-exit-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-enter-exit-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-swap-shuffle-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-swap-shuffle-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-move-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-move-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-passive-move-in:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-passive-move-out:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-quick-move-in:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-quick-move-out:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-fade-in:cubic-bezier(0, 0, 1, 1);--fds-animation-fade-out:cubic-bezier(0, 0, 1, 1);--fds-duration-extra-extra-short-in:100ms;--fds-duration-extra-extra-short-out:100ms;--fds-duration-extra-short-in:200ms;--fds-duration-extra-short-out:150ms;--fds-duration-short-in:280ms;--fds-duration-short-out:200ms;--fds-duration-medium-in:400ms;--fds-duration-medium-out:350ms;--fds-duration-long-in:500ms;--fds-duration-long-out:350ms;--fds-duration-extra-long-in:1000ms;--fds-duration-extra-long-out:1000ms;--fds-duration-none:0ms;--fds-fast:200ms;--fds-slow:400ms;--font-family-apple:system-ui, -apple-system, BlinkMacSystemFont, \'.SFNSText-Regular\', sans-serif;--font-family-code:ui-monospace, Menlo, Consolas, Monaco, monospace;--font-family-default:Helvetica, Arial, sans-serif;--font-family-segoe:Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;--body-font-family:Placeholder Font;--body-font-size:0.9375rem;--body-font-weight:400;--body-line-height:1.3333;--body-emphasized-font-family:Placeholder Font;--body-emphasized-font-size:0.9375rem;--body-emphasized-font-weight:600;--body-emphasized-line-height:1.3333;--headline1-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline1-font-size:1.75rem;--headline1-font-weight:700;--headline1-line-height:1.2143;--headline2-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline2-font-size:1.5rem;--headline2-font-weight:700;--headline2-line-height:1.25;--headline3-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline3-font-size:1.0625rem;--headline3-font-weight:700;--headline3-line-height:1.2941;--meta-font-family:Placeholder Font;--meta-font-size:0.8125rem;--meta-font-weight:400;--meta-line-height:1.3846;--meta-emphasized-font-family:Placeholder Font;--meta-emphasized-font-size:0.8125rem;--meta-emphasized-font-weight:600;--meta-emphasized-line-height:1.3846;--primary-label-font-family:Optimistic Display Medium, system-ui, sans-serif;--primary-label-font-size:1.0625rem;--primary-label-font-weight:500;--primary-label-line-height:1.2941;--secondary-label-font-family:Placeholder Font;--secondary-label-font-size:0.9375rem;--secondary-label-font-weight:500;--secondary-label-line-height:1.3333;--text-input-field-font-family:Placeholder Font;--text-input-field-font-size:1rem;--text-input-field-font-weight:500;--text-input-field-line-height:1.2941;--text-input-label-font-family:Placeholder Font;--text-input-label-font-size:17px;--text-input-label-font-size-scale-multiplier:0.75;--text-input-label-font-weight:400;--text-input-label-line-height:1.2941;--dataviz-primary-2:rgb(134,218,255);--dataviz-primary-3:rgb(95,170,255);--dataviz-secondary-1:rgb(118,62,230);--dataviz-secondary-2:rgb(147,96,247);--dataviz-secondary-3:rgb(219,26,139);--dataviz-supplementary-1:rgb(255,122,105);--dataviz-supplementary-2:rgb(241,168,23);--dataviz-supplementary-3:rgb(49,162,76);--dataviz-supplementary-4:rgb(50,52,54);--base-unit:4px;--blue-0:#f5fbff;--blue-2:#b3dbff;--blue-4:#47afff;--blue-5:#0095f6;--blue-6:#0074cc;--blue-7:#0057a3;--blue-8:#00376b;--blue-9:#002952;--breakpoint-medium-width:1536px;--breakpoint-small-width:1024px;--challenge-width:460px;--clr-separator:#efefef;--clr_red_dark_30:#af2634;--creation-header-height:43px;--creation-min-padding-x:32px;--creation-modal-max-height:898px;--creation-modal-min-height:391px;--creation-padding-x:64px;--creation-padding-y:112px;--creation-settings-width:340px;--cyan-5:#27c4f5;--desktop-center-feed-min-width-breakpoint:1500px;--desktop-grid-item-margin:28px;--desktop-in-feed-story-item-height:208px;--desktop-in-feed-story-item-width:116px;--desktop-nav-height:60px;--desktop-skinny-nav-height:60px;--direct-attachment-image-grid-item-size:78px;--direct-attachment-story-height:150px;--direct-attachment-story-large-height:256px;--direct-attachment-story-large-width:164px;--direct-attachment-story-width:84px;--direct-message-max-width:236px;--fb-connect-blue:#4f67b0;--fb-signup-page-profile-pic-size:88px;--feed-sidebar-padding:32px;--feed-sidebar-width:319px;--feed-width:470px;--font-family-system:-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;--font-weight-system-bold:700;--font-weight-system-extra-bold:800;--font-weight-system-extra-light:200;--font-weight-system-light:300;--font-weight-system-medium:500;--font-weight-system-regular:400;--font-weight-system-semibold:600;--footer-width-wide:1150px;--gradient-lavender:#d300c5;--gradient-orange:#ff7a00;--gradient-pink:#ff0169;--gradient-purple:#7638fa;--gradient-yellow:#ffd600;--green-4:#78de45;--green-5:#58c322;--green-6:#37a600;--grey-0:#f5f5f5;--grey-1:#efefef;--grey-2:#dbdbdb;--grey-3:#c7c7c7;--grey-4:#a8a8a8;--grey-5:#8e8e8e;--grey-6:#737373;--grey-7:#555555;--grey-8:#363636;--grey-9:#262626;--ig-badge:255, 48, 64;--ig-close-friends-refreshed:28, 209, 79;--ig-disabled-action-text:169, 219, 255;--ig-error-or-destructive:237, 73, 86;--ig-facebook-blue:53, 121, 234;--ig-full-screen-background:54, 54, 54;--ig-live-badge:255, 1, 105;--ig-primary-button:0, 149, 246;--ig-primary-button-hover:24, 119, 242;--ig-secondary-button-background:239, 239, 239;--ig-secondary-button-hover:219, 219, 219;--ig-secondary-button-focused:224, 241, 255;--ig-tertiary-button-background:255, 255, 255;--ig-tertiary-button-border:219, 219, 219;--ig-tertiary-button-hover:245, 245, 245;--ig-tertiary-button-text:38, 38, 38;--ig-subscribers-only:118, 56, 250;--ig-success:88, 195, 34;--ig-text-on-color:255, 255, 255;--ig-text-on-media:255, 255, 255;--in-feed-story-item-height:240px;--in-feed-story-item-width:135px;--in-feed-story-item-padding:12px;--input-border-radius:6px;--large-layout-min:1500px;--like-animation-duration:1000ms;--live-video-border-radius:4px;--live-video-right-col-width:336px;--media-content-card-width:350px;--media-content-card-width-small:300px;--media-info:335px;--medium-layout-max:1499px;--medium-layout-min:1080px;--medium-screen-max:875px;--medium-screen-min:736px;--mobile-grid-item-margin:2px;--mobile-nav-height:45px;--modal-backdrop-dark:rgba(0, 0, 0, 0.85);--modal-backdrop-default:rgba(0, 0, 0, 0.65);--modal-border-radius:12px;--modal-padding:16px;--modal-z-index:100;--nav-narrow-width:72px;--nav-medium-width:244px;--nav-wide-width:335px;--nav-bottom-screen-max:767px;--nav-narrow-screen-min:768px;--nav-medium-screen-min:1264px;--nav-wide-screen-min:1920px;--orange-5:#fd8d32;--photo:600px;--pink-5:#d10869;--post-step-indicator:168, 168, 168;--purple-5:#a307ba;--red-4:#ff6874;--red-5:#ed4956;--red-6:#c62330;--red-7:#a70311;--reels-large-screen-min:1366px;--refinement-section-height:50px;--revamp-nav-bottom-toolbar-height:50px;--revamp-feed-card-max-height:758px;--revamp-feed-card-min-height:615px;--revamp-feed-card-min-width:710px;--revamp-feed-card-media-min-width:390px;--revamp-feed-card-details-section-width:320px;--revamp-feed-card-details-section-width-xl:340px;--revamp-feed-horizontal-padding-small-screen:24px;--revamp-feed-horizontal-padding-large-screen:32px;--revamp-feed-vertical-padding:32px;--right-rail-width:300px;--scrollable-content-header-height-large:56px;--scrollable-content-header-height-med:49px;--scrollable-content-header-height:44px;--search-box-height:40px;--search-modal-height-expanded:450px;--search-modal-height:362px;--search-modal-top-offset:12px;--search-result-height:50px;--search-result-inline-top-offset:60px;--search-result-list-width:375px;--site-width-narrow:600px;--site-width-wide:935px;--small-layout-max:1079px;--small-layout-min:800px;--small-screen-max:735px;--small-screen-min:414px;--story-progressbar-update-tick:0.1s;--story-swap-animation-duration:350ms;--system-10-font-size:10px;--system-10-line-height:12px;--system-11-font-size:11px;--system-11-line-height:13px;--system-12-font-size:12px;--system-12-line-height:16px;--system-14-font-size:14px;--system-14-line-height:18px;--system-16-font-size:16px;--system-16-line-height:24px;--system-18-font-size:18px;--system-18-line-height:24px;--system-20-font-size:20px;--system-20-line-height:25px;--system-22-font-size:22px;--system-22-line-height:26px;--system-24-font-size:24px;--system-24-line-height:27px;--system-26-font-size:26px;--system-26-line-height:28px;--system-28-font-size:28px;--system-28-line-height:32px;--system-30-font-size:30px;--system-30-line-height:36px;--system-32-font-size:32px;--system-32-line-height:40px;--web-always-black:0, 0, 0;--web-always-white:255, 255, 255;--web-overlay-on-media:38, 38, 38;--web-secondary-action:224, 241, 255;--yellow-5:#fdcb5c;--challenge-link:54,54,54;--docpen-lightgrey:243,243,243;--ig-banner-background:255,255,255;--ig-elevated-background:255,255,255;--ig-elevated-separator:219,219,219;--ig-focus-stroke:168,168,168;--ig-highlight-background:239,239,239;--ig-link:0,55,107;--ig-primary-background:255,255,255;--ig-primary-text:38,38,38;--ig-secondary-background:250,250,250;--ig-secondary-button:38,38,38;--ig-secondary-text:142, 142, 142;--ig-separator:219,219,219;--ig-stroke:219,219,219;--ig-temporary-highlight:245,251,255;--ig-tertiary-text:199,199,199;--post-separator:239,239,239;--tos-box-shadow:0,0,0;}.__ig-dark-mode{--fds-black:black;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0, 0.5);--fds-black-alpha-60:rgba(0, 0, 0, 0.6);--fds-black-alpha-80:rgba(0, 0, 0, 0.8);--fds-blue-05:black;--fds-blue-30:black;--fds-blue-40:black;--fds-blue-60:black;--fds-blue-70:black;--fds-blue-80:black;--fds-button-text:black;--fds-comment-background:black;--fds-dark-mode-gray-35:black;--fds-dark-mode-gray-50:black;--fds-dark-mode-gray-70:black;--fds-dark-mode-gray-80:black;--fds-dark-mode-gray-90:black;--fds-dark-mode-gray-100:black;--fds-gray-00:black;--fds-gray-05:black;--fds-gray-10:black;--fds-gray-20:black;--fds-gray-25:black;--fds-gray-30:black;--fds-gray-45:black;--fds-gray-70:black;--fds-gray-80:black;--fds-gray-90:black;--fds-gray-100:black;--fds-green-55:black;--fds-highlight:black;--fds-highlight-cell-background:black;--fds-primary-icon:white;--fds-primary-text:white;--fds-red-55:black;--fds-soft:cubic-bezier(.08,.52,.52,1);--fds-spectrum-aluminum-tint-70:black;--fds-spectrum-blue-gray-tint-70:black;--fds-spectrum-cherry:black;--fds-spectrum-cherry-tint-70:black;--fds-spectrum-grape-tint-70:black;--fds-spectrum-grape-tint-90:black;--fds-spectrum-lemon-dark-1:black;--fds-spectrum-lemon-tint-70:black;--fds-spectrum-lime:black;--fds-spectrum-lime-tint-70:black;--fds-spectrum-orange-tint-70:black;--fds-spectrum-orange-tint-90:black;--fds-spectrum-seafoam-tint-70:black;--fds-spectrum-slate-dark-2:black;--fds-spectrum-slate-tint-70:black;--fds-spectrum-teal:black;--fds-spectrum-teal-dark-1:black;--fds-spectrum-teal-dark-2:black;--fds-spectrum-teal-tint-70:black;--fds-spectrum-teal-tint-90:black;--fds-spectrum-tomato:black;--fds-spectrum-tomato-tint-30:black;--fds-spectrum-tomato-tint-90:black;--fds-strong:cubic-bezier(.12,.8,.32,1);--fds-white:black;--fds-white-alpha-05:rgba(255, 255, 255, 0.05);--fds-white-alpha-10:rgba(255, 255, 255, 0.1);--fds-white-alpha-20:rgba(255, 255, 255, 0.2);--fds-white-alpha-30:rgba(255, 255, 255, 0.3);--fds-white-alpha-40:rgba(255, 255, 255, 0.4);--fds-white-alpha-50:rgba(255, 255, 255, 0.5);--fds-white-alpha-60:rgba(255, 255, 255, 0.6);--fds-white-alpha-80:rgba(255, 255, 255, 0.8);--fds-yellow-20:black;--accent:#0095F6;--always-white:white;--always-black:black;--always-dark-gradient:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));--always-dark-overlay:rgba(0, 0, 0, 0.4);--always-light-overlay:rgba(255, 255, 255, 0.4);--always-gray-40:#65676B;--always-gray-75:#BCC0C4;--always-gray-95:#F0F2F5;--attachment-footer-background:rgba(255,255,255,0.1);--background-deemphasized:rgba(255,255,255,0.1);--base-blue:#1877F2;--base-cherry:#F3425F;--base-grape:#9360F7;--base-lemon:#F7B928;--base-lime:#45BD62;--base-pink:#FF66BF;--base-seafoam:#54C7EC;--base-teal:#2ABBA7;--base-tomato:#FB724B;--blue-link:#00376B;--border-focused:#8A8D91;--card-background:#242526;--card-background-flat:#323436;--comment-background:#3A3B3C;--comment-footer-background:#4E4F50;--dataviz-primary-1:rgb(48,200,180);--disabled-button-background:rgba(255, 255, 255, 0.2);--disabled-button-text:rgba(255, 255, 255, 0.3);--disabled-icon:rgba(255, 255, 255, 0.3);--disabled-text:rgba(255, 255, 255, 0.3);--divider:#3E4042;--event-date:#F3425F;--fb-wordmark:#FFFFFF;--filter-accent:invert(40%) sepia(52%) saturate(200%) saturate(200%) saturate(200%) saturate(189%) hue-rotate(191deg) brightness(103%) contrast(102%);--filter-always-white:invert(100%);--filter-disabled-icon:invert(100%) opacity(30%);--filter-placeholder-icon:invert(59%) sepia(11%) saturate(200%) saturate(135%) hue-rotate(176deg) brightness(96%) contrast(94%);--filter-primary-icon:invert(89%) sepia(6%) hue-rotate(185deg);--filter-secondary-icon:invert(62%) sepia(98%) saturate(12%) hue-rotate(175deg) brightness(90%) contrast(96%);--filter-warning-icon:invert(77%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(128%) hue-rotate(359deg) brightness(102%) contrast(107%);--filter-blue-link-icon:invert(73%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(103.25%) hue-rotate(189deg) brightness(101%) contrast(101%);--filter-positive:invert(37%) sepia(61%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(115%) hue-rotate(91deg) brightness(97%) contrast(105%);--filter-negative:invert(25%) sepia(33%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(110%) hue-rotate(345deg) brightness(132%) contrast(96%);--glimmer-spinner-icon:white;--hero-banner-background:#E85D07;--hosted-view-selected-state:rgba(45, 136, 255, 0.1);--highlight-bg:rgba(24, 119, 242, .31);--hover-overlay:rgba(255, 255, 255, 0.1);--list-cell-chevron:#B0B3B8;--media-hover:rgba(68, 73, 80, 0.15);--media-inner-border:rgba(255, 255, 255, 0.05);--media-outer-border:#33363A;--media-pressed:rgba(68, 73, 80, 0.35);--messenger-card-background:#242526;--messenger-reply-background:#18191A;--overlay-alpha-80:rgba(0, 0, 0, 0.65);--overlay-on-media:rgba(0, 0, 0, 0.6);--nav-bar-background:#242526;--nav-bar-background-gradient:linear-gradient(to top, #242526, rgba(36,37,38,.9), rgba(36,37,38,.7), rgba(36,37,38,.4), rgba(36,37,38,0));--nav-bar-background-gradient-wash:linear-gradient(to top, #18191A, rgba(24,25,26,.9), rgba(24,25,26,.7), rgba(24,25,26,.4), rgba(24,25,26,0));--negative:hsl(350, 87%, 55%);--negative-background:hsl(350, 87%, 55%, 20%);--new-notification-background:#E7F3FF;--non-media-pressed:rgba(68, 73, 80, 0.15);--non-media-pressed-on-dark:rgba(255, 255, 255, 0.3);--notification-badge:#e41e3f;--placeholder-icon:#8A8D91;--placeholder-image:rgb(164, 167, 171);--placeholder-text:#8A8D91;--placeholder-text-on-media:rgba(255, 255, 255, 0.5);--popover-background:#3E4042;--positive:#31A24C;--positive-background:#1F3520;--press-overlay:rgba(255, 255, 255, 0.1);--primary-button-background:#0095F6;--primary-button-icon:#FFFFFF;--primary-button-pressed:#77A7FF;--primary-button-text:#FFFFFF;--primary-deemphasized-button-background:rgba(45, 136, 255, 0.2);--primary-deemphasized-button-pressed:rgba(24, 119, 242, 0.2);--primary-deemphasized-button-pressed-overlay:rgba(25, 110, 255, 0.15);--primary-deemphasized-button-text:#2D88FF;--primary-icon:#E4E6EB;--primary-text:#E4E6EB;--primary-text-on-media:white;--primary-web-focus-indicator:#D24294;--progress-ring-neutral-background:rgba(255, 255, 255, 0.2);--progress-ring-neutral-foreground:#ffffff;--progress-ring-on-media-background:rgba(255, 255, 255, 0.2);--progress-ring-on-media-foreground:#FFFFFF;--progress-ring-blue-background:rgba(45, 136, 255, 0.2);--progress-ring-blue-foreground:hsl(214, 100%, 59%);--progress-ring-disabled-background:rgba(122,125,130, 0.2);--progress-ring-disabled-foreground:#7A7D82;--rating-star-active:#FF9831;--scroll-thumb:rgba(255, 255, 255, 0.3);--scroll-shadow:0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(255, 255, 255, 0.05) inset;--secondary-button-background:rgba(255,255,255,.1);--secondary-button-background-floating:#4B4C4F;--secondary-button-background-on-dark:rgba(255, 255, 255, 0.4);--secondary-button-pressed:rgba(0, 0, 0, 0.05);--secondary-button-stroke:transparent;--secondary-button-text:#E4E6EB;--secondary-icon:#B0B3B8;--secondary-text:#B0B3B8;--secondary-text-on-media:rgba(255, 255, 255, 0.9);--section-header-text:#BCC0C4;--shadow-1:rgba(0, 0, 0, 0.1);--shadow-2:rgba(0, 0, 0, 0.2);--shadow-5:rgba(0, 0, 0, 0.5);--shadow-8:rgba(0, 0, 0, 0.8);--shadow-inset:rgba(255, 255, 255, 0.05);--shadow-elevated:0px 5px 12px rgba(28, 43, 51, 0.6);--shadow-persistent:0px 0px 12px rgba(28, 43, 51, 0.6);--shadow-primary:0px 0px 12px rgba(28, 43, 51, 0.1);--surface-background:#242526;--switch-active:hsl(214, 100%, 59%);--text-highlight:rgba(24, 119, 242, 0.45);--text-input-background:#242526;--toast-background:#242526;--toast-text:#FFFFFF;--toast-text-link:#4599FF;--toggle-active-background:rgb(45, 136, 255);--toggle-active-icon:#FFFFFF;--toggle-active-text:#FFFFFF;--toggle-button-active-background:#E6F2FF;--wash:#3E4042;--web-wash:#18191A;--warning:hsl(40, 89%, 52%);--fb-logo-color:#2D88FF;--dialog-anchor-vertical-padding:56px;--header-height:0px;--global-panel-width:0px;--global-panel-width-expanded:0px;--alert-banner-corner-radius:8px;--button-corner-radius:4px;--button-corner-radius-medium:10px;--button-corner-radius-large:12px;--button-height-large:40px;--button-height-medium:36px;--button-padding-horizontal-large:16px;--button-padding-horizontal-medium:16px;--button-icon-padding-large:16px;--button-icon-padding-medium:16px;--button-inner-icon-spacing-large:3px;--button-inner-icon-spacing-medium:3px;--blueprint-button-height-medium:40px;--blueprint-button-height-large:48px;--card-corner-radius:4px;--card-box-shadow:0 12px 28px 0 var(--shadow-2), 0 2px 4px 0 var(--shadow-1);--card-padding-vertical:20px;--chip-corner-radius:6px;--dialog-corner-radius:8px;--glimmer-corner-radius:8px;--image-corner-radius:4px;--input-corner-radius:4px;--nav-list-cell-corner-radius:8px;--list-cell-corner-radius:8px;--list-cell-min-height:52px;--list-cell-padding-vertical:20px;--list-cell-padding-vertical-with-addon:14px;--nav-list-cell-min-height:0px;--nav-list-cell-padding-vertical:16px;--nav-list-cell-padding-vertical-with-addon:16px;--text-input-multi-padding-between-text-scrollbar:20px;--text-input-multi-padding-scrollbar:16px;--toast-corner-radius:4px;--text-input-caption-margin-top:10px;--text-input-label-top:22px;--text-input-min-height:64px;--text-input-padding-vertical:12px;--fds-animation-enter-exit-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-enter-exit-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-swap-shuffle-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-swap-shuffle-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-move-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-move-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-passive-move-in:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-passive-move-out:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-quick-move-in:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-quick-move-out:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-fade-in:cubic-bezier(0, 0, 1, 1);--fds-animation-fade-out:cubic-bezier(0, 0, 1, 1);--fds-duration-extra-extra-short-in:100ms;--fds-duration-extra-extra-short-out:100ms;--fds-duration-extra-short-in:200ms;--fds-duration-extra-short-out:150ms;--fds-duration-short-in:280ms;--fds-duration-short-out:200ms;--fds-duration-medium-in:400ms;--fds-duration-medium-out:350ms;--fds-duration-long-in:500ms;--fds-duration-long-out:350ms;--fds-duration-extra-long-in:1000ms;--fds-duration-extra-long-out:1000ms;--fds-duration-none:0ms;--fds-fast:200ms;--fds-slow:400ms;--font-family-apple:system-ui, -apple-system, BlinkMacSystemFont, \'.SFNSText-Regular\', sans-serif;--font-family-code:ui-monospace, Menlo, Consolas, Monaco, monospace;--font-family-default:Helvetica, Arial, sans-serif;--font-family-segoe:Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;--body-font-family:Placeholder Font;--body-font-size:0.9375rem;--body-font-weight:400;--body-line-height:1.3333;--body-emphasized-font-family:Placeholder Font;--body-emphasized-font-size:0.9375rem;--body-emphasized-font-weight:600;--body-emphasized-line-height:1.3333;--headline1-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline1-font-size:1.75rem;--headline1-font-weight:700;--headline1-line-height:1.2143;--headline2-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline2-font-size:1.5rem;--headline2-font-weight:700;--headline2-line-height:1.25;--headline3-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline3-font-size:1.0625rem;--headline3-font-weight:700;--headline3-line-height:1.2941;--meta-font-family:Placeholder Font;--meta-font-size:0.8125rem;--meta-font-weight:400;--meta-line-height:1.3846;--meta-emphasized-font-family:Placeholder Font;--meta-emphasized-font-size:0.8125rem;--meta-emphasized-font-weight:600;--meta-emphasized-line-height:1.3846;--primary-label-font-family:Optimistic Display Medium, system-ui, sans-serif;--primary-label-font-size:1.0625rem;--primary-label-font-weight:500;--primary-label-line-height:1.2941;--secondary-label-font-family:Placeholder Font;--secondary-label-font-size:0.9375rem;--secondary-label-font-weight:500;--secondary-label-line-height:1.3333;--text-input-field-font-family:Placeholder Font;--text-input-field-font-size:1rem;--text-input-field-font-weight:500;--text-input-field-line-height:1.2941;--text-input-label-font-family:Placeholder Font;--text-input-label-font-size:17px;--text-input-label-font-size-scale-multiplier:0.75;--text-input-label-font-weight:400;--text-input-label-line-height:1.2941;--dataviz-primary-2:rgb(134,218,255);--dataviz-primary-3:rgb(95,170,255);--dataviz-secondary-1:rgb(129,77,231);--dataviz-secondary-2:rgb(168,124,255);--dataviz-secondary-3:rgb(219,26,139);--dataviz-supplementary-1:rgb(255,122,105);--dataviz-supplementary-2:rgb(241,168,23);--dataviz-supplementary-3:rgb(49,162,76);--dataviz-supplementary-4:rgb(228,230,235);--base-unit:4px;--blue-0:#f5fbff;--blue-2:#b3dbff;--blue-4:#47afff;--blue-5:#0095f6;--blue-6:#0074cc;--blue-7:#0057a3;--blue-8:#00376b;--blue-9:#002952;--breakpoint-medium-width:1536px;--breakpoint-small-width:1024px;--challenge-width:460px;--clr-separator:#efefef;--clr_red_dark_30:#af2634;--creation-header-height:43px;--creation-min-padding-x:32px;--creation-modal-max-height:898px;--creation-modal-min-height:391px;--creation-padding-x:64px;--creation-padding-y:112px;--creation-settings-width:340px;--cyan-5:#27c4f5;--desktop-center-feed-min-width-breakpoint:1500px;--desktop-grid-item-margin:28px;--desktop-in-feed-story-item-height:208px;--desktop-in-feed-story-item-width:116px;--desktop-nav-height:60px;--desktop-skinny-nav-height:60px;--direct-attachment-image-grid-item-size:78px;--direct-attachment-story-height:150px;--direct-attachment-story-large-height:256px;--direct-attachment-story-large-width:164px;--direct-attachment-story-width:84px;--direct-message-max-width:236px;--fb-connect-blue:#4f67b0;--fb-signup-page-profile-pic-size:88px;--feed-sidebar-padding:32px;--feed-sidebar-width:319px;--feed-width:470px;--font-family-system:-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;--font-weight-system-bold:700;--font-weight-system-extra-bold:800;--font-weight-system-extra-light:200;--font-weight-system-light:300;--font-weight-system-medium:500;--font-weight-system-regular:400;--font-weight-system-semibold:600;--footer-width-wide:1150px;--gradient-lavender:#d300c5;--gradient-orange:#ff7a00;--gradient-pink:#ff0169;--gradient-purple:#7638fa;--gradient-yellow:#ffd600;--green-4:#78de45;--green-5:#58c322;--green-6:#37a600;--grey-0:#f5f5f5;--grey-1:#efefef;--grey-2:#dbdbdb;--grey-3:#c7c7c7;--grey-4:#a8a8a8;--grey-5:#8e8e8e;--grey-6:#737373;--grey-7:#555555;--grey-8:#363636;--grey-9:#262626;--ig-badge:255, 48, 64;--ig-close-friends-refreshed:28, 209, 79;--ig-disabled-action-text:169, 219, 255;--ig-error-or-destructive:237, 73, 86;--ig-facebook-blue:53, 121, 234;--ig-full-screen-background:54, 54, 54;--ig-live-badge:255, 1, 105;--ig-primary-button:0, 149, 246;--ig-primary-button-hover:24, 119, 242;--ig-secondary-button-background:239, 239, 239;--ig-secondary-button-hover:219, 219, 219;--ig-secondary-button-focused:224, 241, 255;--ig-tertiary-button-background:255, 255, 255;--ig-tertiary-button-border:219, 219, 219;--ig-tertiary-button-hover:245, 245, 245;--ig-tertiary-button-text:38, 38, 38;--ig-subscribers-only:118, 56, 250;--ig-success:88, 195, 34;--ig-text-on-color:255, 255, 255;--ig-text-on-media:255, 255, 255;--in-feed-story-item-height:240px;--in-feed-story-item-width:135px;--in-feed-story-item-padding:12px;--input-border-radius:6px;--large-layout-min:1500px;--like-animation-duration:1000ms;--live-video-border-radius:4px;--live-video-right-col-width:336px;--media-content-card-width:350px;--media-content-card-width-small:300px;--media-info:335px;--medium-layout-max:1499px;--medium-layout-min:1080px;--medium-screen-max:875px;--medium-screen-min:736px;--mobile-grid-item-margin:2px;--mobile-nav-height:45px;--modal-backdrop-dark:rgba(0, 0, 0, 0.85);--modal-backdrop-default:rgba(0, 0, 0, 0.65);--modal-border-radius:12px;--modal-padding:16px;--modal-z-index:100;--nav-narrow-width:72px;--nav-medium-width:244px;--nav-wide-width:335px;--nav-bottom-screen-max:767px;--nav-narrow-screen-min:768px;--nav-medium-screen-min:1264px;--nav-wide-screen-min:1920px;--orange-5:#fd8d32;--photo:600px;--pink-5:#d10869;--post-step-indicator:168, 168, 168;--purple-5:#a307ba;--red-4:#ff6874;--red-5:#ed4956;--red-6:#c62330;--red-7:#a70311;--reels-large-screen-min:1366px;--refinement-section-height:50px;--revamp-nav-bottom-toolbar-height:50px;--revamp-feed-card-max-height:758px;--revamp-feed-card-min-height:615px;--revamp-feed-card-min-width:710px;--revamp-feed-card-media-min-width:390px;--revamp-feed-card-details-section-width:320px;--revamp-feed-card-details-section-width-xl:340px;--revamp-feed-horizontal-padding-small-screen:24px;--revamp-feed-horizontal-padding-large-screen:32px;--revamp-feed-vertical-padding:32px;--right-rail-width:300px;--scrollable-content-header-height-large:56px;--scrollable-content-header-height-med:49px;--scrollable-content-header-height:44px;--search-box-height:40px;--search-modal-height-expanded:450px;--search-modal-height:362px;--search-modal-top-offset:12px;--search-result-height:50px;--search-result-inline-top-offset:60px;--search-result-list-width:375px;--site-width-narrow:600px;--site-width-wide:935px;--small-layout-max:1079px;--small-layout-min:800px;--small-screen-max:735px;--small-screen-min:414px;--story-progressbar-update-tick:0.1s;--story-swap-animation-duration:350ms;--system-10-font-size:10px;--system-10-line-height:12px;--system-11-font-size:11px;--system-11-line-height:13px;--system-12-font-size:12px;--system-12-line-height:16px;--system-14-font-size:14px;--system-14-line-height:18px;--system-16-font-size:16px;--system-16-line-height:24px;--system-18-font-size:18px;--system-18-line-height:24px;--system-20-font-size:20px;--system-20-line-height:25px;--system-22-font-size:22px;--system-22-line-height:26px;--system-24-font-size:24px;--system-24-line-height:27px;--system-26-font-size:26px;--system-26-line-height:28px;--system-28-font-size:28px;--system-28-line-height:32px;--system-30-font-size:30px;--system-30-line-height:36px;--system-32-font-size:32px;--system-32-line-height:40px;--web-always-black:0, 0, 0;--web-always-white:255, 255, 255;--web-overlay-on-media:38, 38, 38;--web-secondary-action:224, 241, 255;--yellow-5:#fdcb5c;--challenge-link:219,219,219;--docpen-lightgrey:38,38,38;--ig-banner-background:38,38,38;--ig-elevated-background:38,38,38;--ig-elevated-separator:54,54,54;--ig-focus-stroke:85,85,85;--ig-highlight-background:38,38,38;--ig-link:224,241,255;--ig-primary-background:0,0,0;--ig-primary-text:250,250,250;--ig-secondary-background:18,18,18;--ig-secondary-button:250,250,250;--ig-secondary-text:168, 168, 168;--ig-separator:38,38,38;--ig-stroke:85,85,85;--ig-temporary-highlight:0,149,246;--ig-tertiary-text:115,115,115;--post-separator:38,38,38;--tos-box-shadow:255,255,255;}</style><style nonce=\"7DXsYBtw\"></style><script nonce=\"7DXsYBtw\">__DEV__=0;function envFlush(a){function b(b){for(var c in a)b[c]=a[c]}window.requireLazy?window.requireLazy([\"Env\"],b):(window.Env=window.Env||{},b(window.Env))}envFlush({\"useTrustedTypes\":false,\"isTrustedTypesReportOnly\":false,\"enableDefaultTrustedTypesPolicy\":true,\"defaultTrustedTypesPolicyName\":\"igwww-alite-site\",\"ig_server_override\":\"\",\"compat_iframe_token\":null});__annotator=function(f){return f};__d_stub=[];__d=function(id,deps,factory,special){__d_stub.push([id,deps,factory,special]);};__rl_stub=[];requireLazy=function(){__rl_stub.push(arguments)};now_inl=(function(){var p=window.performance;return p&&p.now&&p.timing&&p.timing.navigationStart?function(){return p.now()+p.timing.navigationStart}:function(){return new Date().getTime()};})();_btldr={};qpl_inl=(function(){var data={};return function(i,n,t){if(!i)return data;if(!data[i])data[i]={};data[i][n]=t||now_inl();}})();qpl_tag=(function(){var data=[];return function(t){if(!t)return data;data.push(t);}})();(function(a){function b(b){if(!window.openDatabase)return;b.I_AM_INCOGNITO_AND_I_REALLY_NEED_WEBSQL=function(a,b,c,d){return window.openDatabase(a,b,c,d)};window.openDatabase=function(){throw new Error()}}b(a)})(this);\"use strict\";window.__SSRInit=function(a){var b=function(){},c={total:0},d=!1,e=null,f=!1,g=[\"success_status\",\"ROOT\",\"eid\"].filter(function(b){return!a[b]});g.length>0&&j(\"Error receiving SSRData: missing keys \"+g.toString());var h=document.getElementById(a.eid),i=[];h?a.gks.mwp_ssr_enabled?u(h):l():j(\"Error locating root element: \"+a.eid);function j(a){if(k())return;d=!0;eventEmitter.emitOnce(\"FIRSTPAYLOADINJECTED\",!1);v(a,\"ERROR\")}function k(){return!!e&&e.status===\"ERROR\"||d}function l(){j(a.disabled_status)}function m(b){window.qpl_inl(a.cavalry_get_lid,b)}function n(a){p(a)||j(\"Checks for useMatchViewport failed\")}function o(b){if(k())return;var c=b[0];if(!c){j(\"Empty SSR payload received\");return}i.push.apply(i,b);r(b);b=c.fizzRootId;var d=c.payloadType,e=c.status;if(b===null||!d||e!==a.success_status){if(e===a.disabled_status||e===a.bad_preloaders_status||e===a.unknown_boundaries_status){l();return}j(\"Error processing SSR payload \"+(c.id||\"Global\")+\": \"+e);return}d===\"FIRST\"?(s(b||\"\"),f=!0):d===\"LAST\"&&(f||s(b||\"\"),m(\"ssr_injected\"),m(\"ssr_inline_injector_ready\"),v(\"\",\"INJECTED\"))}function p(a){return!window.matchMedia?!1:a.every(function(a){var b=a.dimension,c=a.numPixels,d=a.operation;a=a.result;d=q(d,b,c);return window.matchMedia(d).matches===a})}function q(a,b,c){return\"(\"+a+\"-\"+b+\": \"+c+\"px)\"}function r(a){a.forEach(function(a){m(\"ssr_received_\"+(a.id||\"global_failure\"))})}function s(b){while(h==null?void 0:h.firstChild)(h==null?void 0:h.lastChild)&&h.removeChild(h==null?void 0:h.lastChild);b=document.getElementById(b);if(h&&b){var c=b.childNodes;while(c.length){var d=c[0],e=d.nodeType===Node.ELEMENT_NODE?d.dataset:null;if(e!=null&&(e.rxi!=null||e.rri!=null||e.rci!=null||e.rsi!=null)&&d.nodeName.toLowerCase()===\"template\"){(e=document.body)==null?void 0:e.appendChild(d)}else h==null?void 0:h.appendChild(d)}b.remove()}a.gks.comet_ssr_wait_for_dev||t()}function t(){eventEmitter.emitOnce(\"FIRSTPAYLOADINJECTED\",!0)}function u(a){a.style.display=\"none\"}function v(d,f){window.__onSSRPayload=b,window.__onSSRViewportGuessValidation=b,a.gks.comet_ssr_wait_for_dev||t(),e={clickEvents:c,msg:d,processedPayloads:i,status:f,unbindListeners:b},eventEmitter.emitOnce(\"ALLPAYLOADSINJECTED\",e)}window.__isReactFizzContext=!0;window.__onSSRPayload=o;window.__SSREventEmitter=eventEmitter;window.__invalidateSSR=j;window.__logSSRQPL=m;window.__onSSRViewportGuessValidation=n;window.__shouldIgnoreSSRStaticId=a.should_ignore_static_id;a.gks.comet_ssr_wait_for_dev&&(window.__comet_ssr_continue=function(){t()});typeof window.requireLazy===\"function\"&&window.requireLazy([\"ReactDOMComet\"],function(a){m(\"ssr_reactdom_ready\")})};var eventEmitter={emit:function(a,b){eventEmitter.events[a]&&eventEmitter.events[a].map(function(a){return a&&typeof a===\"function\"&&a(b)}),eventEmitter.eventsEmitted[a]={args:b}},emitOnce:function(a,b){a in eventEmitter.eventsEmitted||eventEmitter.emit(a,b)},events:{},eventsEmitted:{},on:function(a,b){var c=eventEmitter.eventsEmitted[a];if(c){b&&typeof b===\"function\"&&b(c.args);return}!eventEmitter.events[a]?eventEmitter.events[a]=[b]:eventEmitter.events[a].push(b)}};</script><script>qpl_inl(\"7191084768081846440\",\"htmlStart\");</script>\n<script type=\"application/json\" data-content-len=\"82\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"htmlStart\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"htmlStart\",52);</script>\n<script type=\"application/json\" data-content-len=\"92\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"htmlStart\",52]]]}</script>\n<title>Instagram</title>\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"bxData\":{\"1160057\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y7\\/r\\/s_LXY1yMsCT.svg\"},\"1160058\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yN\\/r\\/MnQWcWb6SrY.svg\"},\"1160060\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y5\\/r\\/Mszq4yIBziR.svg\"},\"1160061\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yu\\/r\\/Ddk-AuWE7VS.svg\"},\"6339\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y4\\/r\\/wsw1pPOceFo.mp4\"},\"6019\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/ym\\/r\\/uVpL7VtNVaZ.svg\"},\"6381\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yV\\/r\\/d2iYGdGZRSp.svg\"}},\"clpData\":{\"1744178\":{\"r\":1,\"s\":1},\"1836368\":{\"r\":1,\"s\":1},\"1838142\":{\"r\":1,\"s\":1},\"1791\":{\"r\":1},\"3949\":{\"r\":1},\"3950\":{\"r\":1},\"1801\":{\"r\":1,\"s\":1},\"1802\":{\"r\":1,\"s\":1},\"2514\":{\"r\":1,\"s\":1},\"3707\":{\"r\":1,\"s\":1},\"3719\":{\"r\":1,\"s\":1},\"1743656\":{\"r\":1,\"s\":1},\"1744234\":{\"r\":1},\"1744251\":{\"r\":100,\"s\":1},\"1744552\":{\"r\":10000,\"s\":1},\"1814852\":{\"r\":1,\"s\":1},\"1829320\":{\"r\":1,\"s\":1},\"1829321\":{\"r\":1,\"s\":1},\"1837559\":{\"r\":1,\"s\":1},\"1743690\":{\"r\":1,\"s\":1},\"1843988\":{\"r\":1,\"s\":1},\"3255\":{\"r\":1,\"s\":1},\"3257\":{\"r\":1,\"s\":1},\"3258\":{\"r\":1,\"s\":1}},\"gkxData\":{\"2644\":{\"result\":true,\"hash\":\"AT7mI6K8vTz0G2gqpaY\"},\"4796\":{\"result\":false,\"hash\":\"AT7JKBdiRaGFqZ88gyI\"},\"4813\":{\"result\":true,\"hash\":\"AT4zaM5H_8ZI6H51YAg\"},\"4845\":{\"result\":false,\"hash\":\"AT6-8cuRKcjFa5sIiyk\"},\"4875\":{\"result\":true,\"hash\":\"AT5AG1zOFgrramfXbS0\"},\"4876\":{\"result\":false,\"hash\":\"AT7cmpbRk0Dldi5ByL0\"},\"4877\":{\"result\":true,\"hash\":\"AT5wj393VxTj6wfmVmg\"},\"4878\":{\"result\":true,\"hash\":\"AT74ERqdGcPDXpMb7Zk\"},\"4879\":{\"result\":true,\"hash\":\"AT6AjtS5NIA02L6sfd8\"},\"4880\":{\"result\":true,\"hash\":\"AT6R9leZJM8MgClxOkM\"},\"4882\":{\"result\":true,\"hash\":\"AT5vlOTujqD_jUh08vE\"},\"4884\":{\"result\":false,\"hash\":\"AT7mcUh9w-SGaS9YZ4k\"},\"4923\":{\"result\":false,\"hash\":\"AT7GCq770dmAOAKCUBY\"},\"4931\":{\"result\":false,\"hash\":\"AT6b_gSTxvg1HJMVgS4\"},\"4932\":{\"result\":false,\"hash\":\"AT63ZfOTmA-AgnQ2hnM\"},\"4942\":{\"result\":false,\"hash\":\"AT6vxnt_djcMW8SQA1Q\"},\"4946\":{\"result\":false,\"hash\":\"AT50Gg5yts-BmFrdGVw\"},\"4950\":{\"result\":true,\"hash\":\"AT7EhmBWKm11fsotUCA\"},\"4951\":{\"result\":true,\"hash\":\"AT6fL3tAjP3geUI2-3Y\"},\"4954\":{\"result\":false,\"hash\":\"AT74fI-Ee9aScI8hA1M\"},\"4955\":{\"result\":false,\"hash\":\"AT4Ze_o5uVratxr2Rs4\"},\"4956\":{\"result\":false,\"hash\":\"AT6I_8AWh5srRaciM4M\"},\"4957\":{\"result\":false,\"hash\":\"AT7g0zmn8Cwbwp_5zoM\"},\"5207\":{\"result\":false,\"hash\":\"AT73ouJpUXGI2U-T5bU\"},\"5284\":{\"result\":true,\"hash\":\"AT4_oeZCyvBeJCQ6unA\"},\"1397\":{\"result\":false,\"hash\":\"AT4keGCEVCr_Dt41iOE\"},\"1405\":{\"result\":true,\"hash\":\"AT6JmwhMEw9Z9JM-tis\"},\"1407\":{\"result\":true,\"hash\":\"AT580PbjBSL9srk9uQE\"},\"2179\":{\"result\":true,\"hash\":\"AT5LDXs7IpycvWv3b9w\"},\"2638\":{\"result\":true,\"hash\":\"AT6h30Fyo1GLSOJ6Hco\"},\"2645\":{\"result\":false,\"hash\":\"AT6JcCzTcHgDIElHc-s\"},\"2652\":{\"result\":false,\"hash\":\"AT5y-3A6LTipALn1TYc\"},\"2677\":{\"result\":false,\"hash\":\"AT4uB5a6eJ1PzGnwoLE\"},\"3359\":{\"result\":true,\"hash\":\"AT7CTrEkPHjnp7PERmg\"},\"4779\":{\"result\":false,\"hash\":\"AT73sz8ZxFnpaT_SLF8\"},\"4815\":{\"result\":false,\"hash\":\"AT7jwZaquWirnJ5hcjk\"},\"4824\":{\"result\":true,\"hash\":\"AT63XkdVPHzi7R2HI2k\"},\"4846\":{\"result\":true,\"hash\":\"AT5ZRgQH8tD_lYX0Cqc\"},\"4860\":{\"result\":true,\"hash\":\"AT7_JZm4qmZFnyt4mHc\"},\"4868\":{\"result\":false,\"hash\":\"AT5lOt3U1CPcve7N4wI\"},\"4869\":{\"result\":true,\"hash\":\"AT4zpSsNwJyA3fAm9Jg\"},\"4871\":{\"result\":true,\"hash\":\"AT7xq9nantMspv3yP9Q\"},\"4885\":{\"result\":false,\"hash\":\"AT6Scis3t-QrqdQgTX4\"},\"4903\":{\"result\":false,\"hash\":\"AT7rihaWP14WHO-E-nc\"},\"4911\":{\"result\":true,\"hash\":\"AT6zHevjrn8t5OOuy3Q\"},\"4948\":{\"result\":false,\"hash\":\"AT6gVHtPuQBd_0kr5IM\"},\"4958\":{\"result\":true,\"hash\":\"AT7xIi4TsNUu5r7yc9A\"},\"4959\":{\"result\":true,\"hash\":\"AT7vrCtcejFxS7KJL6k\"},\"4960\":{\"result\":false,\"hash\":\"AT62tJ9oyfxSfEjszSA\"},\"4974\":{\"result\":true,\"hash\":\"AT6t4EbirBETU7BIaho\"},\"4977\":{\"result\":false,\"hash\":\"AT5S9_tzgpD4nyajcoA\"},\"5016\":{\"result\":true,\"hash\":\"AT5AbYrMvy8aHBiOEX4\"},\"7251\":{\"result\":true,\"hash\":\"AT6m28fp1IRRRbh1ZJo\"},\"2262\":{\"result\":true,\"hash\":\"AT7m1lpTcig1NOC2iKQ\"},\"3472\":{\"result\":false,\"hash\":\"AT45yZhwPzVLLzf1ymM\"},\"4904\":{\"result\":false,\"hash\":\"AT7rOlF7veVioclvyF4\"},\"4905\":{\"result\":false,\"hash\":\"AT6Ho94zve9DYrTqKmQ\"},\"4912\":{\"result\":false,\"hash\":\"AT6Cu6qnyU9nPQisuFo\"},\"4915\":{\"result\":false,\"hash\":\"AT4Buika8WvVKOXSEZo\"},\"4916\":{\"result\":false,\"hash\":\"AT5pUaLkBqG1KoiPuzg\"},\"4937\":{\"result\":true,\"hash\":\"AT721QPuIPyzp34tdIQ\"},\"5978\":{\"result\":false,\"hash\":\"AT6R0t7E9kYf7qwTnaY\"},\"4849\":{\"result\":false,\"hash\":\"AT7944xa7OdHpsOGw2E\"},\"4913\":{\"result\":false,\"hash\":\"AT6xzKFxL1Ghnuofr_w\"},\"5048\":{\"result\":false,\"hash\":\"AT5Kd2Kd0lgxI8MniYU\"},\"5051\":{\"result\":false,\"hash\":\"AT4vzKlaIxUNA6P4QhM\"},\"4780\":{\"result\":true,\"hash\":\"AT4j8PcaI_nN4JEOJMg\"},\"4927\":{\"result\":false,\"hash\":\"AT7hw9ACzgZsI4RBBHc\"},\"5305\":{\"result\":false,\"hash\":\"AT4MXTtvziNH7yMx4KY\"},\"4848\":{\"result\":false,\"hash\":\"AT4t3usnrmzV4AaLddY\"},\"4933\":{\"result\":false,\"hash\":\"AT4_1XEfpO_YDy2KdD8\"},\"7212\":{\"result\":false,\"hash\":\"AT6rY56rKjwdhwaG2RA\"},\"4857\":{\"result\":false,\"hash\":\"AT5XW0mFWfSFiIfam-E\"},\"5541\":{\"result\":true,\"hash\":\"AT70V-Q_zfEykznOKFk\"},\"708253\":{\"result\":true,\"hash\":\"AT5n4hBL3YTMnQWtozI\"},\"996940\":{\"result\":false,\"hash\":\"AT7opYuEGy3sjG1aTsg\"},\"1099893\":{\"result\":false,\"hash\":\"AT5kly2LSZV_DKGRSGE\"},\"1224637\":{\"result\":false,\"hash\":\"AT7JRluWxuwDm3XzPKQ\"},\"1263340\":{\"result\":false,\"hash\":\"AT5bwizWgDaFQudmRdA\"},\"443\":{\"result\":true,\"hash\":\"AT4h1HaIxHYZn6IYw-8\"},\"1426\":{\"result\":false,\"hash\":\"AT4rfyyNv13TbBZ8j7Q\"},\"1465\":{\"result\":true,\"hash\":\"AT7xYfmgiZ3heiVqMOg\"},\"1475\":{\"result\":false,\"hash\":\"AT7kEzfGQyTYdZJbFbQ\"},\"2755\":{\"result\":true,\"hash\":\"AT5UMQkR8ly2W4m1FUU\"},\"2772\":{\"result\":false,\"hash\":\"AT5Eu244WIce7iwqxLk\"},\"3752\":{\"result\":false,\"hash\":\"AT6eS5UTkkMp_xbPSFc\"},\"3831\":{\"result\":false,\"hash\":\"AT4W23lQ0XxAZniMqsQ\"},\"4075\":{\"result\":false,\"hash\":\"AT4_ZQi0sTjSt-Rx6JI\"},\"4166\":{\"result\":false,\"hash\":\"AT7yrb5QuQ92736u4MM\"},\"4180\":{\"result\":false,\"hash\":\"AT6ZBPDX_t1nVduVoKE\"},\"4638\":{\"result\":false,\"hash\":\"AT5RMJE1yJSepmApf4E\"},\"4639\":{\"result\":false,\"hash\":\"AT6fuwnCZ25Hjx2lQN4\"},\"5173\":{\"result\":true,\"hash\":\"AT719vu1BCC8wvN0SHw\"},\"6196\":{\"result\":false,\"hash\":\"AT79LaB9hNdhYgx4a6w\"},\"6751\":{\"result\":false,\"hash\":\"AT4_Q5AqWq6jnR2COqc\"},\"6830\":{\"result\":false,\"hash\":\"AT6WoYIwb5Y6x569QBk\"},\"7126\":{\"result\":false,\"hash\":\"AT6zxeBPQBB-VYg0o9Y\"},\"8126\":{\"result\":false,\"hash\":\"AT4U7qG06p9sF6u8DUA\"},\"676837\":{\"result\":false,\"hash\":\"AT4N8wBZA8ctCdHwKq4\"},\"678680\":{\"result\":false,\"hash\":\"AT4Y-6Ul9ZZckQZnzBM\"},\"1018547\":{\"result\":false,\"hash\":\"AT5OYJhHTg1FexdZhCk\"},\"1167394\":{\"result\":false,\"hash\":\"AT7BpN-tlUPwbIIFFOE\"},\"1217157\":{\"result\":false,\"hash\":\"AT6B7YmllOsArnK6hd0\"},\"1407308\":{\"result\":false,\"hash\":\"AT6g20u7kv9f37jOlQ0\"},\"1501502\":{\"result\":false,\"hash\":\"AT7iuJThg2U6GkqTQuQ\"},\"1554827\":{\"result\":false,\"hash\":\"AT7zueGLhGo0cT5xJsE\"},\"1738486\":{\"result\":false,\"hash\":\"AT4cX37oQco6DwhUrY8\"},\"1778371\":{\"result\":false,\"hash\":\"AT6HtWXGEXFDQ5JjkBc\"},\"1902022\":{\"result\":false,\"hash\":\"AT7WD_stYlEMqW8c6Iw\"},\"1912204\":{\"result\":false,\"hash\":\"AT72FnwJF9IKaIf-yn4\"},\"1914427\":{\"result\":false,\"hash\":\"AT7r7RL9lwTjh6wxXrE\"},\"451\":{\"result\":false,\"hash\":\"AT4ag1FobPr8nMWrYkM\"},\"986\":{\"result\":false,\"hash\":\"AT5-Af8bmYxtGf1lCHE\"},\"1459\":{\"result\":false,\"hash\":\"AT60sF8lwSNwCEwZz44\"},\"1705\":{\"result\":false,\"hash\":\"AT45JGOqDPcAMbr3giY\"},\"2116\":{\"result\":false,\"hash\":\"AT7vcO-xd-_PhMpSXNA\"},\"2460\":{\"result\":false,\"hash\":\"AT7ffZvWU_0qVGTWSLg\"},\"2979\":{\"result\":true,\"hash\":\"AT52_r3YZvW6Gxvh63Q\"},\"3446\":{\"result\":false,\"hash\":\"AT5Jr6UXVhj3ffyy0YQ\"},\"5383\":{\"result\":false,\"hash\":\"AT6qiZkZUP-oosQ1dbM\"},\"5403\":{\"result\":false,\"hash\":\"AT5zCIAplAr2jSMZYF4\"},\"5945\":{\"result\":false,\"hash\":\"AT75NnnIUkzdzhWf6PY\"},\"7566\":{\"result\":false,\"hash\":\"AT6zeouo_ZVHZdMOUJ8\"},\"7670\":{\"result\":true,\"hash\":\"AT7dQ8VUCWdRClRGWow\"},\"7761\":{\"result\":false,\"hash\":\"AT6LA2nzmCK672tuSoY\"},\"7762\":{\"result\":false,\"hash\":\"AT4u0kGjAskdaKROawQ\"},\"1070695\":{\"result\":false,\"hash\":\"AT711tHzdMfRy3F3s-Y\"},\"1616314\":{\"result\":false,\"hash\":\"AT6Zl4nWIeZ_AYDrO28\"},\"1642984\":{\"result\":false,\"hash\":\"AT71oE1xc4ID8xb49uw\"},\"1690028\":{\"result\":false,\"hash\":\"AT7vV-7CyHNNfGJoSt0\"},\"1703328\":{\"result\":true,\"hash\":\"AT49L03pP2X9HmsnxoU\"},\"1721477\":{\"result\":true,\"hash\":\"AT70IfYeUvLOKY5Yr8E\"},\"1861546\":{\"result\":true,\"hash\":\"AT7TDKkMR4gPryZg-BY\"},\"1863055\":{\"result\":false,\"hash\":\"AT7ONu9dmdwXlowbMfE\"},\"1902661\":{\"result\":true,\"hash\":\"AT48eoL9MpGKmdHLLRs\"},\"1934926\":{\"result\":false,\"hash\":\"AT46kKhfIFLWq906GyY\"},\"157\":{\"result\":true,\"hash\":\"AT4iLFeITcgQsXY_KHQ\"},\"227\":{\"result\":true,\"hash\":\"AT5yXnJxXfkiddJSkYI\"},\"229\":{\"result\":true,\"hash\":\"AT6ACjjf9sN9o2h--dw\"},\"231\":{\"result\":true,\"hash\":\"AT5RtBjo7qezdTuhVCM\"},\"233\":{\"result\":true,\"hash\":\"AT7HvkjZGXZeuumhE28\"},\"235\":{\"result\":true,\"hash\":\"AT4gizq47dTbAJ5jQak\"},\"265\":{\"result\":true,\"hash\":\"AT5gL3y76QX973hpgoM\"},\"680\":{\"result\":true,\"hash\":\"AT4j6gtWFSIkh2pHPnw\"},\"751\":{\"result\":false,\"hash\":\"AT7TXp0TTlIecYKJORw\"},\"1292\":{\"result\":true,\"hash\":\"AT6KRRnA6-Re_k9KHKk\"},\"1365\":{\"result\":true,\"hash\":\"AT4nD_Goixr7-KaJjYA\"},\"1485\":{\"result\":false,\"hash\":\"AT4WNLTpxBYFwessFuQ\"},\"1682\":{\"result\":true,\"hash\":\"AT4jNPAkujFdMYkDY-I\"},\"1813\":{\"result\":false,\"hash\":\"AT4X9tsJ0F2VTaGTQ1A\"},\"1937\":{\"result\":true,\"hash\":\"AT4Z51p0HN014AEPKlM\"},\"2030\":{\"result\":true,\"hash\":\"AT77OC0fYHb5VHYBxZc\"},\"2254\":{\"result\":true,\"hash\":\"AT4NaskuQ6OBD3qCmpc\"},\"2448\":{\"result\":true,\"hash\":\"AT7EwlgtPzpIx-1QMDA\"},\"2458\":{\"result\":true,\"hash\":\"AT5Dy7G1iL0c6SKnpT0\"},\"2581\":{\"result\":false,\"hash\":\"AT4iw_6E9ISmVfQLwK0\"},\"2878\":{\"result\":false,\"hash\":\"AT60M6erIws33tuMoY0\"},\"2891\":{\"result\":true,\"hash\":\"AT4zXmx2THniTTphpR0\"},\"2914\":{\"result\":false,\"hash\":\"AT5lCo9g877PS-Mti4c\"},\"2918\":{\"result\":true,\"hash\":\"AT4ga0oGMpCrx7tjn-w\"},\"3140\":{\"result\":false,\"hash\":\"AT5-c9fjLEKqfwwAwB4\"},\"3400\":{\"result\":false,\"hash\":\"AT5LV5sAIJng7-zcNxs\"},\"3587\":{\"result\":true,\"hash\":\"AT77w5IYSPt6bAQqv1M\"},\"3598\":{\"result\":false,\"hash\":\"AT4R-V-zd8OVuUkTQeM\"},\"3621\":{\"result\":false,\"hash\":\"AT77rRhVv9YO-zVZOo8\"},\"3644\":{\"result\":false,\"hash\":\"AT7MMG5fbtaxY0c2v5s\"},\"3662\":{\"result\":false,\"hash\":\"AT425nnr7oiZH9yMDgI\"},\"3663\":{\"result\":false,\"hash\":\"AT5L-vX64jrJbYFhenI\"},\"3799\":{\"result\":true,\"hash\":\"AT7faoER21EJi6FSYQ0\"},\"3849\":{\"result\":false,\"hash\":\"AT7ORu3G5CIVsH-JXB0\"},\"4096\":{\"result\":true,\"hash\":\"AT7lTOdcZzbiGpSliuQ\"},\"4138\":{\"result\":false,\"hash\":\"AT6AOrFOG4QbAvJehzQ\"},\"5205\":{\"result\":false,\"hash\":\"AT4tOojq3gzI7IFZZVQ\"},\"5509\":{\"result\":true,\"hash\":\"AT4bcT4-bwXgcPCdMKo\"},\"5564\":{\"result\":false,\"hash\":\"AT6p7zxz4X9cAT6CaPs\"},\"5574\":{\"result\":false,\"hash\":\"AT7t8_-pqYHCqFfTu70\"},\"5735\":{\"result\":false,\"hash\":\"AT55xkQWRLxMd5Tjk0I\"},\"6098\":{\"result\":false,\"hash\":\"AT66f_Ky9tZPqwuh7UQ\"},\"7849\":{\"result\":false,\"hash\":\"AT7m5s5gN6uIZK_JhY4\"},\"894204\":{\"result\":false,\"hash\":\"AT7MWh7MKvvrwCN_bA4\"},\"938288\":{\"result\":false,\"hash\":\"AT60802ujA6R5kZSIRA\"},\"947903\":{\"result\":true,\"hash\":\"AT5C_9W30waBxHKUdyk\"},\"976093\":{\"result\":true,\"hash\":\"AT6Tnn67lHNTT5CpsLc\"},\"1133447\":{\"result\":false,\"hash\":\"AT6gnU9itzgx89tyWpM\"},\"1151941\":{\"result\":false,\"hash\":\"AT4VtFw2xNGXhISyxqM\"},\"1163255\":{\"result\":false,\"hash\":\"AT4p5wUSMH_kRx_dgio\"},\"1243442\":{\"result\":false,\"hash\":\"AT6H-KKvL_2kq8U29eM\"},\"1249968\":{\"result\":false,\"hash\":\"AT5AlPmWHlKvEcrjExs\"},\"1250838\":{\"result\":false,\"hash\":\"AT7z1NkFlLfUKocWCt4\"},\"1299319\":{\"result\":false,\"hash\":\"AT7zRIpVRWl8hiUYLoc\"},\"1352928\":{\"result\":false,\"hash\":\"AT7bJwS1VNOxBUhslGM\"},\"1382775\":{\"result\":false,\"hash\":\"AT7D5sd_gmE2NRtmKhY\"},\"1383502\":{\"result\":false,\"hash\":\"AT51zMR8DxFUUVJ89uk\"},\"1388683\":{\"result\":false,\"hash\":\"AT63PwzAsKGj12Q6vdQ\"},\"1470120\":{\"result\":false,\"hash\":\"AT7hoNhuKStHslT513s\"},\"1564135\":{\"result\":true,\"hash\":\"AT7iTOcLJuIIpIfCmuo\"},\"1613919\":{\"result\":false,\"hash\":\"AT7bXvwviv8GGfF3BGw\"},\"1621604\":{\"result\":false,\"hash\":\"AT50POWWzLfBx_Vm2h0\"},\"1626006\":{\"result\":true,\"hash\":\"AT4_TZlW-MUS84RE4dE\"},\"1657807\":{\"result\":true,\"hash\":\"AT5GneaEpFhH-amrY0w\"},\"1661552\":{\"result\":false,\"hash\":\"AT5w2VaBMxRPfMyWalY\"},\"1707273\":{\"result\":false,\"hash\":\"AT5oTb36da_qc9QIBIY\"},\"1723588\":{\"result\":false,\"hash\":\"AT485K2jwU-S2ruRjIY\"},\"1806005\":{\"result\":false,\"hash\":\"AT4tOLFFU6SFy7iTdnU\"},\"1809663\":{\"result\":false,\"hash\":\"AT7aaCUO35jSxYX-twg\"},\"1842356\":{\"result\":true,\"hash\":\"AT7H5I-MCN88RbrZzgU\"},\"1872325\":{\"result\":false,\"hash\":\"AT4WDV07rUK5enGi6gM\"},\"1969466\":{\"result\":true,\"hash\":\"AT5pb0-O1YUbvm8nvrA\"},\"4240\":{\"result\":false,\"hash\":\"AT6WMihLvltJm0UjQts\"},\"1787898\":{\"result\":true,\"hash\":\"AT5WGsLz9GCUYq8UG1U\"},\"1924645\":{\"result\":false,\"hash\":\"AT7xqjINkJcipyjZ_Hc\"},\"437\":{\"result\":false,\"hash\":\"AT5Wtli8NHvdh5idyxw\"},\"2654\":{\"result\":false,\"hash\":\"AT6t4lweBphRM2rXShQ\"},\"6017\":{\"result\":false,\"hash\":\"AT6VK36mN-p0kfQg8Ms\"},\"950768\":{\"result\":false,\"hash\":\"AT434vVJ93bUu52yP6k\"},\"1293035\":{\"result\":false,\"hash\":\"AT6f-b10jzF6b9M9R1I\"},\"1537962\":{\"result\":false,\"hash\":\"AT6YWgGMjb0fUWs1WEo\"},\"4309\":{\"result\":false,\"hash\":\"AT4gPlTz1LN9a-kueb0\"},\"6364\":{\"result\":false,\"hash\":\"AT6-IPpgGUVfvP6-e34\"},\"4139\":{\"result\":false,\"hash\":\"AT4LbxUvoUGPs9scU24\"},\"7997\":{\"result\":true,\"hash\":\"AT6K4DRNH52GDaFqICY\"},\"4034\":{\"result\":false,\"hash\":\"AT5mbn3qxCu0rIpMJR8\"},\"517\":{\"result\":false,\"hash\":\"AT6nhZGTa49R4qYbXAM\"},\"1703425\":{\"result\":false,\"hash\":\"AT5M5FNRBAvWiZomQh8\"},\"1427308\":{\"result\":false,\"hash\":\"AT4N7BzUkGfi0OG1ibE\"},\"2257\":{\"result\":false,\"hash\":\"AT5Mac_Q9jALVGtdm0A\"},\"6862\":{\"result\":false,\"hash\":\"AT68ofpcSp7CAzMdd9M\"},\"1291023\":{\"result\":false,\"hash\":\"AT519LseIG1nwq3oRkg\"},\"1399218\":{\"result\":true,\"hash\":\"AT6guCW1eyIkOV1E31E\"},\"1401060\":{\"result\":true,\"hash\":\"AT5aetN5Gb3reIXVIgo\"},\"1596063\":{\"result\":false,\"hash\":\"AT7JHuDWtaOqRuBUQx0\"},\"1722014\":{\"result\":false,\"hash\":\"AT6_M5gpc6RLrHjcgW8\"},\"1778302\":{\"result\":false,\"hash\":\"AT65fisZhmc2X92EYXw\"},\"1840809\":{\"result\":false,\"hash\":\"AT5nYctoTsr7alRin0k\"},\"1848749\":{\"result\":false,\"hash\":\"AT5GsH9Kb-3W-taZ0M4\"}},\"ixData\":{\"303380\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yr\\/r\\/28x0bk6AFyo.png\",\"width\":96,\"height\":96},\"701592\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-173px -72px\",\"sz\":\"auto\"},\"702721\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-120px -246px\",\"sz\":\"auto\"},\"897949\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-180px -208px\",\"sz\":\"auto\"},\"1739808\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-177px -84px\",\"sz\":\"auto\"},\"162687\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/G_yyNuxdk-F.png\",\"width\":192,\"height\":96},\"162985\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yN\\/r\\/vYZ-cWnQBuU.png\",\"width\":90,\"height\":72},\"162986\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/dRVgh4McYBM.png\",\"width\":90,\"height\":72},\"162987\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yT\\/r\\/DtjqdeBieqM.png\",\"width\":90,\"height\":72},\"162988\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/r\\/p5l9c5zF5rO.png\",\"width\":90,\"height\":72},\"162991\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/S4AiHXvyZbY.png\",\"width\":90,\"height\":72},\"162992\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/hjlUOCeAPgV.png\",\"width\":90,\"height\":72},\"162994\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/LlAAxsz8baJ.png\",\"width\":142,\"height\":35},\"162995\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/V4xamCor5vc.png\",\"width\":160,\"height\":30},\"162996\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ye\\/r\\/kYahnENm9WA.png\",\"width\":90,\"height\":72},\"162997\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/_iW8nyl4elS.png\",\"width\":90,\"height\":72},\"162998\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yE\\/r\\/aQN-NK__goD.png\",\"width\":56,\"height\":56},\"162999\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/SNf2dNNPCMW.png\",\"width\":90,\"height\":72},\"163000\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/nBMTFjFGPyY.png\",\"width\":90,\"height\":72},\"478232\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":16,\"h\":16,\"p\":\"-34px -229px\",\"sz\":\"auto\"},\"478233\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"0 -166px\",\"sz\":\"auto\"},\"502062\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-126px -124px\",\"sz\":\"auto\"},\"512647\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-167px -99px\",\"sz\":\"auto\"},\"514454\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-21px -124px\",\"sz\":\"auto\"},\"222729\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/KfWslvUGSoF.png\",\"width\":76,\"height\":76},\"222730\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/qkRylMqLXNE.png\",\"width\":175,\"height\":51},\"222731\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/_iOF0aB8dD5.png\",\"width\":175,\"height\":51},\"478231\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":12,\"h\":12,\"p\":\"-138px -84px\",\"sz\":\"auto\"}},\"qexData\":{\"290\":{\"r\":null},\"468\":{\"r\":null},\"495\":{\"r\":null},\"501\":{\"r\":null},\"606\":{\"r\":false},\"756\":{\"r\":false},\"1838\":{\"r\":false},\"1841\":{\"r\":true},\"89\":{\"r\":5},\"446\":{\"r\":false},\"556\":{\"r\":null},\"953\":{\"r\":true},\"958\":{\"r\":false},\"959\":{\"r\":false},\"961\":{\"r\":false},\"1013\":{\"r\":true},\"1220\":{\"r\":false},\"1244\":{\"r\":false},\"1247\":{\"r\":false},\"1953\":{\"r\":false},\"554\":{\"r\":null},\"695\":{\"r\":false},\"260\":{\"r\":\"default\"},\"281\":{\"r\":false},\"1339\":{\"r\":null},\"450\":{\"r\":true,\"l\":\"J{\\\"u\\\":\\\"ig_web_reels_video_merge_v2\\\",\\\"t\\\":\\\"ig_django\\\",\\\"gks\\\":[],\\\"qe\\\":null}\"},\"877\":{\"r\":false},\"723\":{\"r\":null},\"6\":{\"r\":null},\"177\":{\"r\":null},\"230\":{\"r\":null},\"534\":{\"r\":null},\"590\":{\"r\":null},\"719\":{\"r\":null},\"20\":{\"r\":null},\"32\":{\"r\":null},\"49\":{\"r\":null},\"181\":{\"r\":null},\"239\":{\"r\":false},\"240\":{\"r\":0},\"246\":{\"r\":null},\"258\":{\"r\":null},\"410\":{\"r\":null},\"415\":{\"r\":null},\"645\":{\"r\":null},\"720\":{\"r\":null},\"768\":{\"r\":null},\"806\":{\"r\":null},\"858\":{\"r\":null},\"932\":{\"r\":null},\"954\":{\"r\":null},\"956\":{\"r\":false},\"957\":{\"r\":false},\"966\":{\"r\":null},\"976\":{\"r\":null},\"1020\":{\"r\":null},\"1022\":{\"r\":null},\"1028\":{\"r\":null},\"1034\":{\"r\":null},\"1164\":{\"r\":null},\"1242\":{\"r\":false},\"1322\":{\"r\":null},\"1637\":{\"r\":null},\"1638\":{\"r\":null},\"1639\":{\"r\":null},\"1640\":{\"r\":null},\"1641\":{\"r\":null},\"1642\":{\"r\":null},\"1643\":{\"r\":null},\"1644\":{\"r\":null},\"1645\":{\"r\":null},\"1646\":{\"r\":null},\"1647\":{\"r\":null},\"2085\":{\"r\":null},\"2086\":{\"r\":null},\"2087\":{\"r\":null},\"2088\":{\"r\":null},\"2089\":{\"r\":null},\"2090\":{\"r\":null},\"2091\":{\"r\":null},\"2092\":{\"r\":null},\"83\":{\"r\":null},\"193\":{\"r\":null},\"388\":{\"r\":null},\"664\":{\"r\":null},\"752\":{\"r\":null},\"644\":{\"r\":null},\"647\":{\"r\":null},\"124\":{\"r\":null},\"429\":{\"r\":null},\"1375\":{\"r\":null},\"445\":{\"r\":null}},\"qplData\":{\"21\":{\"r\":1},\"192\":{\"r\":2000},\"1597\":{\"r\":1},\"5270\":{\"r\":1},\"6287\":{\"r\":1},\"6915\":{\"r\":1},\"8327\":{\"r\":1},\"334\":{\"r\":2000},\"955\":{\"r\":6},\"1217\":{\"r\":1},\"1360\":{\"r\":100},\"1411\":{\"r\":10000},\"2172\":{},\"2401\":{},\"2410\":{\"r\":1},\"3796\":{\"r\":6},\"5252\":{\"r\":6},\"6204\":{\"r\":1},\"6310\":{\"r\":1},\"6702\":{\"r\":1},\"13076\":{\"r\":6},\"152\":{\"r\":10},\"4342\":{}},\"justknobxData\":{\"48\":{\"r\":false},\"84\":{\"r\":true},\"87\":{\"r\":true},\"144\":{\"r\":true},\"379\":{\"r\":true},\"380\":{\"r\":true},\"450\":{\"r\":true},\"643\":{\"r\":true},\"71\":{\"r\":false},\"76\":{\"r\":false},\"77\":{\"r\":true},\"80\":{\"r\":true},\"83\":{\"r\":true},\"138\":{\"r\":false},\"306\":{\"r\":true},\"341\":{\"r\":false},\"356\":{\"r\":true},\"494\":{\"r\":true},\"589\":{\"r\":true},\"624\":{\"r\":true},\"653\":{\"r\":20000},\"713\":{\"r\":true},\"815\":{\"r\":true},\"887\":{\"r\":true},\"904\":{\"r\":true},\"905\":{\"r\":true},\"906\":{\"r\":true},\"82\":{\"r\":true},\"471\":{\"r\":false},\"757\":{\"r\":false},\"55\":{\"r\":true},\"73\":{\"r\":25000}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"RaA31FN\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/l\\/0,cross\\/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":14,144,151,0\",\"nc\":1},\"LGJRwGF\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yH\\/l\\/0,cross\\/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"Zx0r1CJ\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/l\\/0,cross\\/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"kWwybab\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/l\\/0,cross\\/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"f7Ym7Sv\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/l\\/0,cross\\/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1}}})});</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/l/0,cross/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/l/0,cross/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/l/0,cross/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yk/l/0,cross/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yH/l/0,cross/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yG/r/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yG/r/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"vLAMZRo\" async=\"1\" data-p=\":1\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;vLAMZRo&quot;]=1\" onerror=\"_btldr[&quot;vLAMZRo&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3imDI4/yD/l/en_US/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3imDI4/yD/l/en_US/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"wYUxKHn\" async=\"1\" data-p=\":15,138,110,13,181,166,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;wYUxKHn&quot;]=1\" onerror=\"_btldr[&quot;wYUxKHn&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y-/r/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y-/r/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"68MbJvY\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;68MbJvY&quot;]=1\" onerror=\"_btldr[&quot;68MbJvY&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ihtU4/yy/l/en_US/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ihtU4/yy/l/en_US/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bgEvhmj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bgEvhmj&quot;]=1\" onerror=\"_btldr[&quot;bgEvhmj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y_/r/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y_/r/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"JYW18Ti\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;JYW18Ti&quot;]=1\" onerror=\"_btldr[&quot;JYW18Ti&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_sF4/ym/l/en_US/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_sF4/ym/l/en_US/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"GBulvfh\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;GBulvfh&quot;]=1\" onerror=\"_btldr[&quot;GBulvfh&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iFMc4/yP/l/en_US/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iFMc4/yP/l/en_US/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"AsuDyfD\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;AsuDyfD&quot;]=1\" onerror=\"_btldr[&quot;AsuDyfD&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iZ3g4/yH/l/en_US/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iZ3g4/yH/l/en_US/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"oZORzhP\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;oZORzhP&quot;]=1\" onerror=\"_btldr[&quot;oZORzhP&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iJIK4/yK/l/en_US/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iJIK4/yK/l/en_US/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ICkzBzx\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ICkzBzx&quot;]=1\" onerror=\"_btldr[&quot;ICkzBzx&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iss64/yb/l/en_US/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iss64/yb/l/en_US/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"oEUvNGb\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;oEUvNGb&quot;]=1\" onerror=\"_btldr[&quot;oEUvNGb&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/r/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yR/r/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Up8o120\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;Up8o120&quot;]=1\" onerror=\"_btldr[&quot;Up8o120&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iqfe4/yO/l/en_US/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iqfe4/yO/l/en_US/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"RgUx6NB\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;RgUx6NB&quot;]=1\" onerror=\"_btldr[&quot;RgUx6NB&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iwkF4/y3/l/en_US/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iwkF4/y3/l/en_US/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"pm3z9kc\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;pm3z9kc&quot;]=1\" onerror=\"_btldr[&quot;pm3z9kc&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ms3f9xJ\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ms3f9xJ&quot;]=1\" onerror=\"_btldr[&quot;ms3f9xJ&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"pp/2fvu\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;pp\\/2fvu&quot;]=1\" onerror=\"_btldr[&quot;pp\\/2fvu&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iTf14/yj/l/en_US/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iTf14/yj/l/en_US/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ShQo0xA\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ShQo0xA&quot;]=1\" onerror=\"_btldr[&quot;ShQo0xA&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yl/r/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yl/r/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"aVqoX25\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;aVqoX25&quot;]=1\" onerror=\"_btldr[&quot;aVqoX25&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"gpD7gKM\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;gpD7gKM&quot;]=1\" onerror=\"_btldr[&quot;gpD7gKM&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yW/r/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yW/r/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"dioMJ9z\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;dioMJ9z&quot;]=1\" onerror=\"_btldr[&quot;dioMJ9z&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iLf44/ye/l/en_US/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iLf44/ye/l/en_US/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"G83kG5B\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;G83kG5B&quot;]=1\" onerror=\"_btldr[&quot;G83kG5B&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ihe24/yg/l/en_US/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ihe24/yg/l/en_US/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"cOGwS2G\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;cOGwS2G&quot;]=1\" onerror=\"_btldr[&quot;cOGwS2G&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i4NY4/y-/l/en_US/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i4NY4/y-/l/en_US/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"SagIiXi\" async=\"1\" data-p=\":0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;SagIiXi&quot;]=1\" onerror=\"_btldr[&quot;SagIiXi&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ijPr4/yv/l/en_US/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ijPr4/yv/l/en_US/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"UaJ6Fae\" async=\"1\" data-p=\":0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;UaJ6Fae&quot;]=1\" onerror=\"_btldr[&quot;UaJ6Fae&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iUce4/yS/l/en_US/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iUce4/yS/l/en_US/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"obEmI58\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;obEmI58&quot;]=1\" onerror=\"_btldr[&quot;obEmI58&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iow94/yJ/l/en_US/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iow94/yJ/l/en_US/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"WYJHsrI\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;WYJHsrI&quot;]=1\" onerror=\"_btldr[&quot;WYJHsrI&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iGsb4/y5/l/en_US/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iGsb4/y5/l/en_US/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"YYCsR5a\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;YYCsR5a&quot;]=1\" onerror=\"_btldr[&quot;YYCsR5a&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ivkL4/yP/l/en_US/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ivkL4/yP/l/en_US/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"yxuOpZn\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;yxuOpZn&quot;]=1\" onerror=\"_btldr[&quot;yxuOpZn&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ideN4/yh/l/en_US/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ideN4/yh/l/en_US/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"lA0A1O8\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;lA0A1O8&quot;]=1\" onerror=\"_btldr[&quot;lA0A1O8&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iXZ54/yZ/l/en_US/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iXZ54/yZ/l/en_US/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"CbVciYk\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;CbVciYk&quot;]=1\" onerror=\"_btldr[&quot;CbVciYk&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iogo4/yZ/l/en_US/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iogo4/yZ/l/en_US/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bSZaoMi\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bSZaoMi&quot;]=1\" onerror=\"_btldr[&quot;bSZaoMi&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iGYw4/yu/l/en_US/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iGYw4/yu/l/en_US/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"SsSrcC4\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;SsSrcC4&quot;]=1\" onerror=\"_btldr[&quot;SsSrcC4&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ye/r/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ye/r/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"iE2l7jW\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;iE2l7jW&quot;]=1\" onerror=\"_btldr[&quot;iE2l7jW&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_954/yI/l/en_US/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_954/yI/l/en_US/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"rDzHHGL\" async=\"1\" data-p=\":0,0,0,27,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;rDzHHGL&quot;]=1\" onerror=\"_btldr[&quot;rDzHHGL&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/r/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yp/r/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"8aTFOzW\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;8aTFOzW&quot;]=1\" onerror=\"_btldr[&quot;8aTFOzW&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"/xWlKkI\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;\\/xWlKkI&quot;]=1\" onerror=\"_btldr[&quot;\\/xWlKkI&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3isHT4/yE/l/en_US/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3isHT4/yE/l/en_US/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ImCNdhg\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ImCNdhg&quot;]=1\" onerror=\"_btldr[&quot;ImCNdhg&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"1BRKNYj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;1BRKNYj&quot;]=1\" onerror=\"_btldr[&quot;1BRKNYj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/r/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yu/r/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"f0Nl9pe\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;f0Nl9pe&quot;]=1\" onerror=\"_btldr[&quot;f0Nl9pe&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3itX54/yU/l/en_US/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3itX54/yU/l/en_US/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"PJevOFh\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;PJevOFh&quot;]=1\" onerror=\"_btldr[&quot;PJevOFh&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3izF44/yn/l/en_US/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3izF44/yn/l/en_US/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"iuENYaU\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;iuENYaU&quot;]=1\" onerror=\"_btldr[&quot;iuENYaU&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3in5G4/yN/l/en_US/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3in5G4/yN/l/en_US/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"DsWfgKJ\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;DsWfgKJ&quot;]=1\" onerror=\"_btldr[&quot;DsWfgKJ&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iumd4/yp/l/en_US/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iumd4/yp/l/en_US/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"lgaAFHU\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;lgaAFHU&quot;]=1\" onerror=\"_btldr[&quot;lgaAFHU&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ys/r/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ys/r/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"8MwX2jo\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;8MwX2jo&quot;]=1\" onerror=\"_btldr[&quot;8MwX2jo&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i3xT4/y5/l/en_US/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i3xT4/y5/l/en_US/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"6KCwpsF\" async=\"1\" data-p=\":152,3,2,25,114,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;6KCwpsF&quot;]=1\" onerror=\"_btldr[&quot;6KCwpsF&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ikjM4/yo/l/en_US/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ikjM4/yo/l/en_US/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"/cMNGhx\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;\\/cMNGhx&quot;]=1\" onerror=\"_btldr[&quot;\\/cMNGhx&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iSdl4/yn/l/en_US/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iSdl4/yn/l/en_US/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Nx6u9Jq\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;Nx6u9Jq&quot;]=1\" onerror=\"_btldr[&quot;Nx6u9Jq&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iPVh4/yv/l/en_US/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iPVh4/yv/l/en_US/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"TQAZkKv\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;TQAZkKv&quot;]=1\" onerror=\"_btldr[&quot;TQAZkKv&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iLxq4/yI/l/en_US/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iLxq4/yI/l/en_US/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"gxHwpBE\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;gxHwpBE&quot;]=1\" onerror=\"_btldr[&quot;gxHwpBE&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iuVg4/yI/l/en_US/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iuVg4/yI/l/en_US/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"nQecA5e\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;nQecA5e&quot;]=1\" onerror=\"_btldr[&quot;nQecA5e&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e8bJQ8q\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e8bJQ8q&quot;]=1\" onerror=\"_btldr[&quot;e8bJQ8q&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yS/r/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yS/r/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"+vXa6Lj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;+vXa6Lj&quot;]=1\" onerror=\"_btldr[&quot;+vXa6Lj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iga04/yD/l/en_US/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iga04/yD/l/en_US/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"DCNucsL\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;DCNucsL&quot;]=1\" onerror=\"_btldr[&quot;DCNucsL&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yZ/r/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yZ/r/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"xivIod5\" async=\"1\" data-p=\":0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;xivIod5&quot;]=1\" onerror=\"_btldr[&quot;xivIod5&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yD/r/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yD/r/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"m4q5gIa\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;m4q5gIa&quot;]=1\" onerror=\"_btldr[&quot;m4q5gIa&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_tA4/yO/l/en_US/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_tA4/yO/l/en_US/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bsXsmKk\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bsXsmKk&quot;]=1\" onerror=\"_btldr[&quot;bsXsmKk&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i5iB4/y7/l/en_US/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i5iB4/y7/l/en_US/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"51fcjGV\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;51fcjGV&quot;]=1\" onerror=\"_btldr[&quot;51fcjGV&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n</head><body class=\"_a3wf _-kb\"><div id=\"splash-screen\" style=\"position:fixed;z-index:100;background:#fff;top:0;left:0;width:100%;height:100%\"><style type=\"text/css\" nonce=\"7DXsYBtw\">html{overflow-y:scroll!important}</style><img width=\"80px\" height=\"80px\" style=\"position:absolute;top:50%;left:50%;margin:-40px 0 0 -40px\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACgCAYAAACLz2ctAAAtXklEQVR4AezBAQ0AAAjAoNu/tDl0QAAAAAAAAG9NRy179gDrX9NdcfyzZ8793b9r27Zt2wqqoHYb1rYdt1Hj1AhqI6jdPrafizO7uHOSnfMi+uvFTlZm73XO9TdrZnK/TB6/Ctef5jqudm4MbgTXBofGUXAYHJaLvq/GUee4GR2tGz2tndaa80a2hWhAdCPCiAA0dBmBBQ1bH4BONqFJi8ggm6FrGWRnXKwxmrHS1kWsYYyDOBucdLk27Sycnod2cixOhzw7Fs8NnljFk8PZ01fFs087fRzPegmt+HP3uNvrF7325eD1lu6t1/SW2bxWX71x8iqRDskRjoNlqk9FoyW9yUjZQvYwgmxdIqMRzRoNNuiEjmYIIqQmNQQaltJvft/gFLnNDX3OIbLJ7FKIPBIjZAbTjzUYTeairawjGOToYm2chHG6cIa1y8eSe7r492Y8EM7/7Ez7rzf1mg8j3eUVKd1N9ZVXvUY786qteUfpnYKPkN5QuhaJokgCEEUNCbM34QlDQxhCCpu/gjb9xtTQUOHr6ucMCzbfXKN4Md+pMIbQ6rtzbnLO1Ln21QspdjPDBaT53138NeN3mvO/Pji+7xW95n04eTmAu/o8Lr3qVW++nnmj1ny08B6R3ly6DJEYhLnu4bPv9zCOCVAW+NjgaxID6QghN1AnHEOvMBTgluLt4eo28KI+n37Od7MAOHQNSQGvzb4CGGWtgDLUPlg79zTrn5G/162//4z1P/Cwu6DiHv/gTtYPXXnzj8nwYdL7S6/b0qtFIIkJm6TC15JaHQqE6h+spF2Xcs6b39VkTItkex/toi/gbT52oDW0CZitl5svsGy9nE5qWMQOMKImq6SAW1O5wvjCNbbPfTqs/975S/JXbzj/VTxyhxPw79yJ+porb/lOwee15qMNryNdikQWgCaEkpizCWAgC2hKH1BTrEC1zNSLDawCYNsDKAuYUYBlQYgKjIOgAlfTUmyfRxdy9il1sYdOg33i1c+/B466Fo0pQnIxn+L+kP/cjB++4t9+Eyd3CMBfdbvqy33U8ZVr3uucL4z0icHV2GCaYBlAywLclKyAAYGOKGogS/LVs9+qTfBM4FqBsU3IzHWhwBuipGDIOdNFScU9gAG7rbSeA4HYVAGsniFEAW0gNCkk068/nwmhzZt92a7PG3966vQHw8kf4H63seJpf+p21Ld4t9d03cdKXxe8uQRiEGqylXMeYi3PVQBfeGLsz0nNqtU0nOnX59z3aWctZ7cJZwGws9/6LKKAVS8eKbQdTKFJrSTh5sf0a5rZIBUlybBPPpA7GPdKrAIqjFKzPtT4le78m/EftzEB/9KtrPBO8Q3XvLX0tcJH49UlMWjq9nohaGP6VfUP/GLUqYmmGxiaUdJt1LSbIG694pkfF/UWLMo2u78Zd20DYoNM7OA0e+X2awO39HsQ61wvUknxxsTa7JXkI6zswdxAtEr5W+SPd9d/43ZsywvX3cr62uveE98ZvLdwsMHUaImYwAUxoIJHY5cEBKAVlWQoyTV0Y65ZUs0GqAWBmLAu5VmBtMC9hzxmHxobQOy2zQ3YCiepUdIaCPbPZIFYgc8ujbMmIxW0zdGo6VfW0OQH4fV48rVYfgHP3OIE/Bu3or7a218+vuGTpZ8P84JRoAJoFbpBjN35zy79CgTFL/2oAAprmdOypSETsGGRYurIoKRdLynSRAVYF0xvQlWSDxtYWgEidhenALETkPXzU8BUkpDcz4LiZz0DCuaawpBztUlOnf8SR1+Mh29hAp7dgvPeu1w5vILPaekbpEsRBCJQt9S5GrsLRdIrpFDhm4K2B3N3QyypNZUl8WYKTmjJAtiw1PcpICsA24ShFcBil3pRe+qtlro9S9if7+TuZ8MuxVRApdwl6/Y5kqKo0FH6+DTO/pHTn8F/3RIAb3bCfu+rvv/10xOfsaRvD149AogoIGUBcqWNDcjZ7858ClgNSt/ZATGmN0aT502eLPL5Lk/TOFt4Pi78sRgZcjTySGaTSbrw6bJAPdLs65bbNGFomkZJGtGY7wUiJkzRBTQyQosmG9nJQ4hLF2seB5dCLEFLIwJ250AAsgK+AwwGCLn1yJ0A9R3rVxOvyvrt+O9bAOBwM+uZUx/bYsKHTZIAtCAqaBt8Zd4lWvXOgoeDexb+Jbmn8dTCk8RzXTzfrKchnj/iJLVnunyuy/O0JrkGo4tMq8vkKZCLwBlIHEgO4OAUADFdDhKBVIuDI8Cp0zhsroMzZ3E014OG8yDi3HkPrR85tHB6vFquNC43ebxwPOQxcSXEFdZXaNorhnxL8nXxWuRlYBQIYZQ+i/aVRYGBuIxP4+ghjn4Yj7iJFelP3Kz6thvv/m5n/FGjB5Rz3P4/Gm0q7NOvbquexn0L/xn8Ef7mwJ/8J/dgeHkB+Cb/8uosb8r6/ng3vBnj1cnXICuMU1l6Zc6ptXjrXP0wH/h1OL/r/hf8Lde8re6HpA+NknaSmDJoCmQD6/RMKP+nvbsAsuS4En7/y6y63T2sscVMRsmklekz4zIzM++alzf8DIvGb3ntZd41My2ZmS1ZMglHjMPdfavyPLobcSNj6k231Hem50X/I9JZWdcjaWb+fbLOqcy8RMMefBIfSfxnw6dX/iC8wU+5fjMH70d5IL6HuBf9mUQzLeNEsqlWKumgn5a2p3sq/msNBXznGsj31BOb7EWJ74iwJcHUtBpBiinJpt9wFGIiZmY586+JdxY+cCs3YNkGdyMyfuJ4tj6A7htI3045qxKuuu6hjnwIdCifoPwsPrZGAr7d3eGnfc3o9O2+PfOX2JICpoUjBYFcJRmCpp+IyheDP5znjTu4Ab01YYPvJHHJiYzOZPnFlMfhUBJOtXock9YvEf9G+yzctgYC/oe7w28d96THN+HvU3FGSvifCAf/IyDERLhCiknrydyY+MfEi3GzmbLBz/jsFnwH/dOIB1JawnSjryJifd9BumfR/A2W3A3auzvDjXrflzgjBSYt+Z+ePB0Ro46Cbiv8Pv4y2GfmbPCnHrj/5/h7Pn496bnEo1FFvPj/aFA2kX6Cuffi80ctAr5k+5MeGsV7EpvS/0gGUMiTPiFNop9g8hy4C7/1U7wSYYOjwCfuS/+PlK869FQcA9lxZ3L9J/gFd4OWPe4qUfxEEzZJ1AJCE5QgIwc5kXqasBsvnecf/4GwwVHiqy7/QR/6Tfwu8WCmZQMD2XEgkL6XO5+Dxbsh4G6snpct/MgT5nhiQhRSIiEVpmUc1e96w0147k/wFwgbHGUe+Q4+fAfxvykPIzI9oAy0MOnvwfZn8u2/h7B6pLB6Xi3mbtrs5Sn5sQgLSbWkatKmi8uTscQf7eZXcNCas8Ezvbvl8QXFqnj3D5BeTjkeKAh0iCEBUT7M8ndil9Wj5R+tlju2uE/LIxULkKaXyBcgFUzX/oAvBr+zc83k2+BHvLvl+LPIj6C7F8edxqfvIK4gfwSfsiJueS0n3Jf4jfr57zDlmvNpvwZ/afVoaa2W1Dmn4XyJBIjpwnKaqgGaXBN4GW60hmxwwq9RvonxaaQt2ExZxh7KbYxfQ/c3uNowOO0gy39M/AJlx7CEdYISx1Eexc5/wNLqBbTdavhLX3vSiG+IsC0FEUAytZOtLsEg8erCW91tNvh+Ep+9AC8mvoaAaTFaYjNOJi6g+S76X2P5nVg0zI2MX0D8LjFHDwiUqkFB1+Iibn0wPrJ6Ad1qNcxxai4eHQGYFhASqQDQIrE38/pXcYM1YEPAz56G36U8GXWNDuoodT/S8xjdjvcxDPvfTvP9lItI9T8HtYSBOBfn88MfRaxSwB9cnYCNe0fvPEFKlCDXElKv5/vomA98G70N7hbf4/072fKDpKcQLQWgFqNuD6a8BA+HYfIV9K+iPIho6BEDq2QAbKW/iL99K+5cpYB/azXk/kceHswlCDIyYmB7IQ4kPnEJ11kDNthxOuMfJOZRiRCAGGpfRX4gPmuQrUvc8UnKtTi7WpwKCEBfCT4+EXfOdEn+HF8TyAAIqASckvLaxFsuplgDNlj8avL9KIgB6aD+HEpD+Wme8AsIg/zrpcxfQpxFn+hR/3N7FCT0iIfhFHxxdQKugjf7yc0tZ0NGVPIFciUjri9cYo3YoFwwLF2soJUL+MBW7DXI99zAqy8jPYV+nnoKdqhVMlspZ8HMIuAmzgo2FWRAqabfDIAEfBx3WCM2iJOGhTPdDxSO02b27MCwgN4epI8xvgWnD5dkahnLg/H3M9sTMuK+BRCVcBmBaRqM+Yg1ZINYImCVURCgD+bGDsuey4jbiNOHM2G15OfBzARsuH9jOPpFJR+6OAYFfLzntzxxJ8sn0J1EeybpfOJsnEyzhbSVmCN1OEDsJe0hfYX8JdI1uIXxjYx2Y681IT6PbyENyFeqe10lpi/x/lscnks478vEg6YEq/95VSJS7s0zE2IVAj7dSpnztJNV0tXPgYXpJOS2TexyjPBwb93JwoU88t4cfCjNA0kX0G8nIwH6gTO5AgkF+SBxC6P3Uz5N8wl8BVe7W5QPkfZQtquj23Ckmr73bi4qVsRtV2LgmY9DTM1n8+LN2L8KAV9sJVzqOXMjzquTj4I8rPzV1jkXeXXD9nPIT2busXQXEWeQNtNVUqmrnJWMaToz3EQ6k/77SN9FXE+5Fm+ifT+nfBKLVs1VHye/nfLdpAEpoK8kgbiNxTdaMeVSkuGl+lGPF0jHr1LAZCU0bJvjOFUZsq1ELEiA4ErrmAd59VZ2/CK+hTiP2EG0h87vA1DXAFLVZ6hp6c/EmaQL6Xex693EX+OTVset9K/Co4nTCBRAfV2P/THzt1gx+2+mQ1nhwoSCvMMqaAkrIbF9nvlUBfYetcKBhLQOp9/7+sSIvWcx/kG2/zDlLHowTKr6HpCqBqrPVJ+lHaQduAA/T7yS9FqWP4LdDk+H1+E4PJu4PzH0Cg4RlP3EbzP3Cqti6WYMRL4ykJAsn4nPrkLARSthM1sKTVRTboMYKEon9lhHnO9dW0jfhB+nfyxGFBh4omW41G7g84QwLKb6n/dTxBOZ/1PiDVY+a/w1i7dQXkicjy1EJYegfIzyRtJfs3yHVbG4l3mE4c3ttfjNCVZBS2MlNOxomB+uPEEoSAKhiH3WCed673l4GuPvxQnDZ6IEatJQZKtamRZw4CVlOdT4fMoL8D3EL+KjVkT7Zrov0T2O8hjiQspxpH3EV/BRvIM9l2LRqsn7h1ZEDz8P2rpKAXsrYYGtPaNAUSf+RZKEkIWEUIxYtA44zdvuw/yLiSdStgy/Sciokw1VRKsFrZ/7Sh3l6ux4oGgcW/Ew0h9R/pw7/gnLDs/luJodb2O8g36ebky5kxNuxz6Oc9f43BJ9ITKl2hNiYP/IeH4m2zLn2DoWIwghEDAZhYl4QhECSRxVAU/23/PEj9I8j+6kQz+k90iADlDLFnW0q8WqBE7V/TTV90iGSQ/Dg9j5ABb/DF9yeA6yfC2upUUL2OfusXSAdomyiVRHv4FIaPNM3gXPMUfJvZBMu19AL1Bk01OwJUeJk3xsK/13kX6H2AnUf4BQhkRAUlELWY3LgLihFnGYgHnS02jPIn4GtzgqfHSRh+8nNlWSGX43bG4mWXCxON9KuQGhTPUhZFAUoUGIEuKoCHgP795G87P0v0jsJAB1/m4Vz3x1qyVMA2MwICTDlAbfRtxG8zu4yhHnx3ou2Uscf4joNzSen8kzYKOMktQEQkgC5CkZCWXSB306CgJu8x9zLHwt/a9jO/3AEWSqWt40xbBYeXjZxWDtMCE5PAG1sN9Hl7jjN3CzI07spx8Qrr6H1QtYrISRMhfkiWAaTK6r/y0ClOVes98RJ/8Y49+nbAf6SQMoA283IEE9bRbSftxOvpP+StIdxD7yMrnFZspO0imkE0nbsRNzwyWbmgQOURbagh9nxyLxu7jeEWXXvrrkQgcDUs5IQEqbRGoUYCrpgDKRL5mMlMVWHHAEGXn3ReT/g7J9+Cd2qGqpyoZjiXQV5VLyJ3AJzRWcdDk6NW5pWLwnWy4gX0g8jHQf3B9bKMgwLKQ0VBpK+Bnsxm86opRu+NwYtXwo7YwEXG5JmQAUWSCEkGEiYRGwFEo5cvL99zmMns/4ZMrA0nGqzw6VTCzRf47mX0kfJ11G3Aws41oD9LiZ/Tfjv8nb2Xwy6VGUb8YT6LeTVjr9Vr2W8jTKu/BeR4wY061gCi6AaGeShNC15HyoZ6hUnbieBCwnpXdE+OI8fob+CRQUAHQoVXSpM9UMcID8+/SvYv+VPG0Z4a6xB3t4xZWc+F7KE/DTpItxuGRkoNRfthG/Oim5XOmI0HcUGBSvOnW1nUkSQpln3BAw8MK7TAlZlmh6M+e/R7TfTfMz9Fsoh4l41NMhcYD4N+LFuAxo8CfuPt2Y67+Cr+AvOen5xPeTziHl4cjHwL6Pp5Key95n4Q4zZ7w8sD1zoKRVmllNwQ0lkVBgOB0H/ZiDYeake1N+kNhen940vGgzoSDgKtp/Yv5Pcb2ZU36PuJz8y7iQaOsSDQWgvkY0eCJbH8kV70AxWwqljnrDPyCkGW1KGjeUVE+/hkschQgzp5s8X6kLowNLZ/O0iLfgl1l8G/Y7Itx+kP3/xoVfon8uvpEAVT+QFRc4k/gxzv4MrjNTLi8YXo5FNe5XGwG7VQgYiYCBkGw6AsXsBdw1R/l5+oYyvDFHqqMh3E7zq+x+PTpHlsIlH+fcp9OeiwtI9azCcFYMTyEeidcc6Qg4fNI+RJ5RErKcKYkY2nlVR6CgMzueknjRc2hOreUjBgrK0CHfSv+DvOs/0DlqvPtKfvTbGP0B/VORMTSj1AJsJ36bfW/FQTOjKwTDEa/+wUkzEnCpQaoLuZSBelBfEGbG755FfCNjFBiIFnVxOd1G/Cm3vIeHdI46n/4iD34p6QLSGQQMJFF1K/dm68PwHjMjKgHL4X5A0qySkEwkykAELNW9PujNjvSNjM+hh+FFAVQSegvNn3PPg9YNu9/H9j8g/QZlp2kUGK7DGf8wt70PxUzoAVBqCatmlknIUgJKbT76+g8HHZowEy7ZTHk45QTyQCG3ALIpxjQvoLvBuuL2JY77B7rH4RsBiBVUHOLBnHghPmsm3BlDq6AH9iWnGT8DFtONhA4JBWOAoJgN+x9CfhTy8JQbaNAjkArNCyhXWJd84WZOewZzT8BWyko3nd+Lpe9i9yUo1pjhVTAG6oBhRoXoA4mMfmhXPAJ9Jeda8+9znH0/ysmESRt4n9sBMspn8Vbrmmuu4Nx3EN+BoWhT/6VvpVzAju2405pzaxDqBkP3ZzUFO3QZpp/qTfXdjJ4Bd96T5YuJheHlVPXSqTQm/QP7v2Td0/8Z6bHEiYYjTl0YPoflc/Apa04fAMRK2sySkFS9dhvYoNyhwIyqA/M7WXooCeozuSohCxLSdbQfZmGfdU/+MuP3kL7zEAIOTXsnUE42E8LKBYQwqzIMukSYbnSgfg1GxGySkIMnEvcjIWD4iEyBHDSfYvFSxwQ7r+Pmd9B/AzYNr+yJ6Xunku7H1v/CkjUnqjZc9pphErI/kwY2KB9qDL0ZCHg67SYSDCyNzwBIeyZns+x2TPDfPff5Iul6nFdFuuEvmOZc9m1dewH7ICGqZrCf1btgBMpKzolDMRvKvRgPlJxyJWNG3IJPOaboryZfSTkPKCvIPMvkaBG3WXOGi8+kIzUFj4cPpdHX0/AMBezOJw1MtwW5zoj3E19yTLH3FrZeg57SAFG3eja6B2nBmhPD8lHdM8sIeBDQVxKODe8ZXbb2jE8CciVcroTMKChX849fdGyxyO9dTTpAbKMADEU/lJOIzdacWjrDEW+2Ai7XG1PqcsykQcywDthvJpChPnUAqnHcyvcWxxyxm1geWARQtQI7sXl2CYjDyzf7OqCq3jf49U3oka09461AGmj1ocH2OybpD5K64XfB6vEm4jgzo5buiEfA8QoOKIR+xlNwN0+CAfmqEwr1Y8ckpUMhBt4Fq68TJc8uATG8n/rITcGDGXA1Lkhmw7ibFpAGkAfOaGkbxyQl0+eBetxQRIwjF/nqa7POghcBECs4rgvC2tPtJ9VvO5CR62VYGC84JukXiDy8UUm9FnOZvN9MGH7mIw2M1/iIXvqBBah9/dM44yjY76egqZKNfkrABmFyfQ/enhCOKR60jTQi1G0gIdlN7JmtgBjeT400yym4q4QrlZhRj1GsOW23Vx8IZCKTAlCIBhAAp/KtJ+BmxxTlnqQFihV+M9LtdEuOCInhkx1mJeBiJVUtYy1dmY2Ao/GXzSNlSiIyMZWEJERBpmRKd4L2zgfgPx0rLF54AuVCYiKgAQGhB5SbWT5ozekHdhemgag3uwg4fCzD8DQ8AwG7L2shI5mIRkqUIAXREJPr5XI8zQXHlIDyKfQnDhR/h1ZHX2smZ/GU4chGJeZsyzCBOuoNL8tXMLbmbO6uJC1LaY6Ehkjkhr4QGcVESprmOBEXm9u0Bfutd256V+Ih96GcP7wxCaJuX2LuTmvO/kQc5uR/dzkitmQrowsi6BFqGetFqRo0ZhEBbyHdSDqTZBpNAgSBSEhZOFcsnonLrHuesYNyMf1WwIB0pvuD+Ap/st+a8/0D34liqI8ZZcHjoFTSqYvSpDE5MZKUkqw180s30rwP3y9lSiElIkiJUtCgEJM+8oM1HuaM0ZfQWc/c0N+b8h1IdfQzPCVfzdKX+KGwNqzyKyoS0qyTkPHA9FtIQS4o5J45jLokj609N96iPfHT5O+lyVKQEwUp0QalEBmBhrCFpW9xg3/H9dY1/ROJc4cTDyj1ZzfS3GomjBPJMLneCGYm3xPCUmBqCu6RyD1NT4vU0wajjjZIyZqz7+Qlxy9/Rso3iO40elKLnmiJQpPRolACmWieKo2/Fn9lvXLZA+5B9wtAgMMnIg7gM1y1y0w4KQ1Mt1WDPMskpA+KSSMVYNTT9pPIF5PrMcnsjgdM469o5i8jnSaj9GiJ+nSpTEHKsFnE09a1gOLHKaetUsBbKO/m9M5MWK7lg+Hvx5djRknIUlBC0wFtz6jQFEY9uaMtNGNSIfdJU5JZcMAV7tF/UEoPp91GQ5kjjYlR/SaEaIkg8gMVzzfuX4x91gufvzTxI99I/Bx9Ld/hZPwMt7/dzDgOUYtXSQcNEtLMBOylCKMeE/lGhXZMM6YJUtD05CAjzI7UvUPje6Vum2hpOmJERilEQUMKCkog0zQ/aS5/3scueRXCuuCHziY9i/5sYhWLAaC8ix1LZkdCteLc8HQsm42A+WAY9cwXck9TaCdRL8ekIaFFIwuzY59PON47iXsxJsboUWhaYo4oRJCD6NEiThbNr/tfD74CH3O0+eD9zyJ+lfhfh5evjopuorzKTGkzkAcEy9PRb4ZT8Gipt2kcmn6SaAQ5SMhTrTG5lnSSWRGW8UqNXwABY1KPEQXRokz6BkFEEum+YvwrlvMv4wpHl5+l/36MMCTc0PU/4RYzJdKhI15GnhZvxgJu39/LitZUpKt+AFokJJCMzJY7fM5J/lryYwAULKEnMjYREwlToSD6OdF+u1Fzb73v8P7Lv4ziiPINx7PwHMa/Mlx3g6KGQPo45S/NnNyQh954VBI2UGaTBc/ppSnhagnrSJglRTJrWn8peRzOAwUJOqDAGCNiRELKRFD6B8ijV3rivX5bGb8Pi2bNu+854qwziF+ifPfq1tIFIPaT/4buajNnLqOWDhmpatD0s6kDNopGqabaQ7eERntEBEw+qfEKyQuwAMIUy0SHnuiJQEtpaDIRj1Gav9DO/4kyfiV2myXbT/9O4+6nLHmEkuZXt5wpAN5LeS3pgJmTUi0goBYSzQyn4EYnC83AlNtM9RnJSJLNmjstOdWb9b4WT4BaQgplmdRROmKOPE80RMqaOEuJZ2rai/XxvJm8M/7cOSfSfr+2e7rkTFkyTiyvZiVxIF2DV/Lmmx0RvndUvemokpGmFrDMJgJmi0Z6DXIlW1MnRMgWJK0jwa0ut9MLzNumuJh61TqaIHpyj2WMKS0WJiK2p4j2u6TR10heL+JfLHZf4Oxd6KyWd787Of2RO21fuJel9I02lR9nfLJRok+M0SCjS/SIertpjTH5hXgDX+fIECPS0HTLtBCgHa9SwNaKWNBRTcGVfJWAc8iOFLu924leqvEPQguo65EUKMQyuSeCmEPQF3K/XTQ/rG+fYvPcx6Qb3qRvvqhbvMa5O2/A2BCv/ETyqEedYpxOcNGj7qNrL9b7OnNxgVIokMiJhAajxBiLiR59N7zOTnor7/hrR5TvGZEcfitsRoPoZrMpKes0QlMnHBwyOUkWJAuOJP/mVX7Ak/BjQh4+YQx6So+eWCbmaEaUEdHQ9KeK5puV0ddq+2u07TV27b9aP7pSTnt16aDIYyU1+rSgNNs86mHH099XTidr8rlSt02TspLoEwWRgJQm8iElErpgKdMHoea/6H+HxxVHlNSQTFE9c6kEaLqZRMCJgH2VaNQCkqYiYNjsSPJUxdjvWdAKP8Jhvv8lIfVTb046SiLK5F5DLnMin68058vRyQ6KtCw3HRFI5EZjTmdOlAUyqRAT8QIyGWlyDyJNP0MzTuTCGEuIBPBF2hey+9OOPJtMU0/Bcp2QjGdUiLYsK3XCUUsoIaExwiZHmn2+YovfAHynbIsY2F8NPXKgI3piTLSUeZNnQ7T0LaFV2m1kcksgZ5O9JzQNXSISgT6TEyUBMn2iR5PoJn2LLjEXLCVGGE3uHfTf+DW6j7DJkSe2oYo4qml30oyQlmazILWxLCkydSJCPR0jazDvaHCL693T8805iJ9B0iCGv4wIlKD06Mn9RMRJ/VBHNKRAJhUik1BaSiYK8kRApMl1n0goicgkpEwO+kyXaJAQiRbAZyx4Pj7iaLGYN5OQB9YApvovfnE2WXA7EXB6uq2lqxsLjha7XeUeftOcLfgezLGS3Y2AMomIZZItx4hoiYls0VAaSqb0yJOIlymJkkmJSKRJK4k86ROTMSmRUSbXPaT/Iv2+kfc4Wtx+1ibSdhIMFYCrZ8K8PKs64KKkG5Stvt+AOUeT3W53gt/U+KLsGcLxSv1dNkNf+ghB6smFGBMN/Yg8R8nkZhIh00S4TExE7Cdy9ZmUJtdpWk76oM8wERTyIt4jNb/qlP5SR5Pb2wUsEEgDG9PriDR30CpoV+xI2K2xrKmKz81gHRAWHG1udy1+2+k+KjxbeDzmFUAMtAYFEEEEpdCMKYvE3ETIhhhREhq6TGpIk3GbpoWkoCRSppnKjrtUhF2a/Dxf/NzfobjKUeZ+C2hJpptagukoqCzO5pT8ZI9kXEW6OvFQfb7VeuFG/+4UXxaeK3mi7EzB8D7vKQlLvfemYJFIpBHRURoiEy0pkZvJvYSJkGUiXMoIIgHZPpp369K/GvX/5KL7Wxd8cmkL80N7QAZqgXOLs4mA2V6NcZ35Dj8SgO3WEze50vF+zoKnCD8gfJ2wRUGqIl8ACsPfTBHkZcoypaEk8iQalnZyryHlqc8nEuZMZLJ36/MbpMVXO+uam6wnPnnxNkotHKA5ZMQhbptNIXqrg3qdNCBfQqbKkndYb9zpoLO8w6JLJG+U/YrGA8SAdAlNdQhXqc/hRN+TEP1Eskxu6FpSQz9PDpMISO96pXmNfv5PjZevwUG7Tre+KDum/2JRC3eotyE3zCYLXnankT1VtKt+EKraIPe3HtllGVfgCsd5gzmPl30bHoLzhG1CEuiRBs7krCNnTO3fz4XSkZcoLXm8JNxA8xmpfZPF/o24Td7LZuuU/hRaRCVa/TzYTo3jptlEwHe9bL9vfNZV1TvfYfkykrOsd/baj7c6xTv17oNvFx4iOUdxkuQkIUnIdeRDqqboyViPZK/karpb6D6jaz5g1L8D+8w7FrjvlFiH2QvSIHeUO2eThEDj2mqarWWsxTzZvHvgduud3Tpc6mU+7/l24ky9E4w8WHGG5FzFCXonY4dksyTphGJZuBO3GbtZcp3kK8a+LFwh3OgG19F3jinSvYk6+YCB/cB5F6ffsUoBz7Rikptq+WoB6xUxevfFBx0rPF3g9kmj8X47bNPZppg3sklnq2y70KBoHTC2W7Zo3kFL9tlvr/McRAH3dmzxvG88HtVDaRp46A9kpGu4oV+lgDdYMdlH6ihXPwNq6+K4x+GDjl0O2uMgbgZLaihoALAwaXscw8xfhFPISAPymRKgRXMZzCYJgd6VRjpZO7Ai5lDtYbZYwKINjiGai4idBAKQDvPdfPFZmE0SAm/4ozt9/y/eIDtjuPxSPx+6t0X3w6dscGzwe1+/ExeTjqsEA0BSRcclRl9avYBGVkX2CdkZlWhDWTDZ8bJHHksCbrD1NJxP5HqaIwHUUfFa4tbZRkDI3i77Jo2sGYx6JJNrJ8qegtfgZhusb5730BHjR9Hed7qmRD7MUvzyPtrrYTYrogFan5bdJDtl+L1wHR09WHL/Y0HADU45C1+H+eFDMVPdOvLHOXjn6gV00KrYZJex92t8Zx35BiNidqbk62Wfwm4brGPKwylPBNJKN8tfQ3wOS6sXcLXc5FYneLfsWzXaQ0XBQ2TGWfYdslfhYzZYx6SfIW8dPp63PhEVfIX5y6weLfNWxatfsexpP/1pXC67UFtJV19ntEjOxkslX42DNlhfPGs+85gfJx5Nj4wGgQDkQ61Nu4PmnSzdavVoWbJqGpcLl0kuQJKQVrBTrvEY2dfhtTZYZzzqYtqfhuHzanq09TfVX4P/Apj9FAwv/8PbPetpb9F6rMZJh5x6m4FpufG7sr14lw3WBz/9xPNIz6VcMPxVEACpkjN/gNs/dzcEvN1dInmb7CekWsDhpkFyjuTXzbkNn7DB0eVHnngy3S/QPJk8kPnWfQAKuj9noXMXySy4S+2lv3er7PclRR54H9xUPTRajccp/kj4GsFGO0rtFy48yejAHxDPIKbkA+gBkOpr5DfQf47eXW0tvbvMnLcrLpE9UKIWsX4WZPozj5S9VNiFSxxZNnjOheebm/t5Ed+lFPo8fCi6glLddz3jV7ibpPA8d4vnPe+7ZK/QOE5T1wLRHLZE8ynJy23yBuy1wWx5wUUjtx+8WJd/RTf3eEujHbqGgyO6FqNJm0Mz6UeYRzvpRz2jF9G+DLfC7JOQYd6t8Q+yXxwWbaAlZA/UeKGxBwkvwY02mA0vPjvZv+cnjfLPyc19pGh1iMQIfRCBqNaYRdV8gfKvPO+2NYiAa8Dvuw/+QOPJGo1m4OiQKjs+xPgmxcvxDsnVvsVuhA3uOg9Ic+6xcLKDm59kvPB9utGT9S3jecYtXctiO+lHLI3QYH6qn5uKjPNX0D4Db7YGpPAca8KLXvKtsj80cnq9YHWF2fH0GTSflbxR8kHh8/a7Bb0NVs4rHC8508HRRcrCN+vnHqOb22E8oowYz9G1jBu6EYtzLDfsn0eekm5uqrUYvRDPNcysC9EDHPBW222S/ZNUZ8ArOFMQMrI5ycWSB0luknzeTp+aLAO7zC0uq2XcAL8qe7CTLblIcn+Ni3XO1XT3Y3mzQGppglToe3LDKJGCvkdmuafLRKm+kLxD8zqal1lDUniGNeMV/3uzsb/S+J7B9YFtdZ0MrvqetJDtx63Yq3EZdglflFxv5EadfTbZZ9GiHQ643RI6a0UjORz7HI7hx/Ul7AcsT9qWSX8AT5C8yYJiXmezYrODtuM4vVONnas4z9g5xk5V3FNvm142Rsl0mxlvopunTKbcbp5uxHgSCccjDoxYHtGNMJqOfJ+geQbev8YC/tgah/6/Pl7xbK2f1th5yKRkZHJ9uL66hjS8OUvSC8uS/diL/RN5x4pO0gnLsl4RKCiSgkAIAQJQBIACQqkqFNBD9U8rU+OCTlIkk15IOo3epNfqjPSTVsxZtl1nm85WvTmdkQ5jdOgnrTC5T48OBcuIxHiefp7lzZSWfo7xHOMR/YguT8YtB0YszhMjjJZp3kf78/iCNaZl2Zry0z9wq7/+xz/Vu4fkB2WbpgXSACDVAtUSDok2eL+RbJJsEo6XAJBhYBxqSIhqL3Cu+vqfU6rPUr1/p+pLFfXrxLPUfxZT9+oEtT65ISOQEEHuJ30hCqmQe9pMZHKiKfQYoevpEpHfTXoBy18wA5rnuS/6tW1vvGCPb7r001rLssfK1eaple0nGfgqsvrXDoibhzbyV2OHuVb9Mw0cEqAaD/0AlcEvHq/GU00luWm5phoUpKHPE9FSEjEiT+RLiciYjFOmz6T0AX1+Fv3H6M2itSybCT/5Lbu84g1/YKvjZD8jaWVAMtys4p76eqoF6s+h/jxXf2n1rxtaDFzLkRGVeHVUSmiq6FpgIPJNmrb69dDXP5T1hrXqB7gUdKSgDXT0GUhIQQ6aQilhLv7DUnqhhfGnzZAUC19vprzorfNO8lTZL8keKlsYPl1/OIoMnRA7LOXgtDp8LwAO9y35A/cC9cFFZar11XWPbqovU/0YPZaZ3J+Mq8/HKFhGX///qnvjhrIwef5bYJKE6OfoJ4nHuPmCfuFvHPAK3GnGpDju8Y4If/nui7V+UfLtki1TEq5MwPoahjdqrZZhAROiaqpxLWUcRryYEqNDUcs4fD1GX40nvVJ93mM89Vk/STTKiH7LRL55xv9Pv2zcXGLc/J5rPvo69MyeFI4gr3NPje/S+DHZQySN5lDPcQNjh5u6hyQcmlprKukMSjcsYR0J+1UK2A3IOK7v121KuB4F40rAwPKIfoGyQDeiW6Af7TKe/1vj5m34kCNIivMf4ojyG59acLIHCN8t+wHZSZoBqepkhGEpwYCIUY9XEQUZFhAKYiXT8ICM40rIMeopNyZ9merHA5Gy/mcsI6Y/z5RN9JvoR2F54dW60d8po/e69NL9iCMroKPI22y3yc/qfbXs3rKTZK00FAWrxnCvygZV1xCwwnEMjAtU4qkiYKnFq6fdKmr1dUQbeCbsUI/rX9erx7fq5m5W5t9mPP+v+ISjSIqHH++o8uFbk/9yJp6o8RjJIzROk2yXhhOSgRpfLd4AqxDycBGxwGGm4BiKgJU0dTG5FqnDUvVrp5KPQXE7S4qr9a6w5D/wHjf7LJYdZVLc3/rheTY51X1wgeSrJs+JD5bskKRVZb9phVmwVdwrqBMTA5GvAOpMuKvGQ+L0hrPeOtKN1fKGzgG9qy15r3ApPmXRNbjWOiLFU60/fk2rsdOc4ySn4GxcqHFv2b1wFrbIsAIJoxJwSMSEAitIRADq+329kLiOgPUUXD+jUQs5uQ7Tny+bFrbTu87Y1RZ9QXKpzuUW3WLO9Tp3YNk6JMV3Ora4QPY9ttjteK1tGmfKTsAWybx+0mfzipF20tNKWiEjS7IyuSbJCAmUybhM3WO4LggqAXskoUcPQqATOhShCJ0i9DpFr1jS6U2asbFFnWWdJWOLegd1Dhq7TXGj3k16d9hlN3orZ0PADTbI/v/KBhsCbrDBhoAbbAi4wQYbAm6wIeAGG2wIuMGGgBtssCHgBhsCbrDB/wlKajuIhIz6AQAAAABJRU5ErkJggg==\" /><span style=\"position:absolute;bottom:32px;left:50%;margin:-36px 0 0 -36px;\"><img width=\"72px\" height=\"37px\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAABKCAYAAABU493xAAAS4ElEQVR4Ae3bV39Vd9739/f3vwXGNjOW7yu9eXOl12HSj2Jxn6THdp6ARXo3Tu+I9A6kHiKeQAand+Qc5SiD07s36XUsrmJjo72+WSl6BbCQZV9ze4bM/qzXe/f9Xwv0U9eOl7i//G/5Rz6QvEt3oM3hutNV3LPpe2nrL/6b/2EvY1uLcVN7jTou6fZItn1vbRpjxMvm3Jh2tNdAp9uxvjTL7NLrjz+/N7Px/diaT7xsfXHhtXcBBzKu1XFW8302fX+N+T/cy4b8CKof12b7RW6jXr7tl6dNW16SXnv8xfbjC69sQw2QeiOZlp5tBXDh8Zf/93Pm80PM+K0Lr+zEYpn0EPdO3NcXX2z/9vGnSdR6dfHxlw9w6AXN+1nC0/v67XPnLlvMkPRwXvfgpDWOj+l4XzjwkpS/5G/9B70MxWJ3cMc3tLa+ggMYxl7kOg5ifbW27tAdxxFPFevlCY85TpNbr33x2zdweMLXZZ9iOXF1YX1w4jpxWL2BW9Dk8phy84T9rZp+iHt+yRsjw8sgUw+xwgxoHWL1nBOrxX268/Rznh+eqVs/pTugeYD9xj2sIO21eVB+im0vKPLW8b6O1yAHoLbT3Jw67YxOy6xzn+6Qg2cexzJyZ3Razvwy2xqdvBQN9zCjtu7THentsuephuGEdkCn2699+XgPh55tex6M+0m36Sqmq+IAUsftTl3cTCznx/4EV5xQ0mvaw5iuiAMct6zFfSwXFtfLMpkOY3qPZx83dfHTsN3mGma/vI02XjbfpeqNJtc+v/Dq4czT/t+vd5YQ0xUc+Hr7I+sPATtr69n/tzmutqeR99ZjcTDzlFWn3gbstLZfsK/VSG+DMd6f+WU2jOGl863rKuwFJxnNB4D9WqxmXuD404xF8+7MsWcGbfJg5mvGdA8gce9F+xrro3ugtl/94vPtmV9WYz7xsvn2ZUW8UHoZOvWjmdPQT6BjvD1z7LiJj2dOsrZYAayt785O3KbFOAR48vrFN2Z+WY35xMvm51mslwDTmA5nTtOpK0htzxz7VW04bpOsp8OZ0zzTps0A1WLluMW5yzOnycgSsLLJsAk5gNG+M3MavAM6fTJz7Fe1YZM4uguSd9eZdmZOkozrWELSWzPHflUbNqnFvnoAC4s7sdidOTb/Hmx72Lpe3QOdbrdZzRz7VW3LJpCs3zv+SfHgTpubSR+I7c9feX0Z3YbGPRnXPFfqV7JhE6jFKtZXqndbh0m3saMuJ91uHTb9kL5HPe9XtfzVf8c/ZtPX+6rT5cW03oZTflG76a+Y/5xjY+M72gzQxmaANjYDtLEZoI3NAG1sbAZoYzNAG5sB2tgM0MbGZoA2NgO0sRmgjc0AbWxsBmhjM0AbmwHa2AzQxsZmgDY2A7SxGaCNzQBt/OrKfOIs/XP//e0dIz9ylG0GR/nEV4sDHPq2HW7vmBY/ItvWHs0e4MBL16b0T/+Tndof899eN+XabFtTHTHFjA6m7HviBla+qd/e/sBkz5Q3TlhnpYs93PU76X/+vbetx03rMA1miqkf4Z7fYY//jz9geW6M6zDBtFCcd34PD/2Klfo7nNjuP7O0tfUTUy5rmMbTb+yZ6sjs+PKHuO2k/o9p27kf/ISx8+zQHJ+bDRo6Dny5voqV79Lh77d0ND59Zu0OmpUnj3+MQ75768PlnSa7hKYVk5EaV3Dge+yz8eu3Mo03iInZdPf7Pobx31t6nr9iHp7z4z69TGnRUhStJCiF4Ja6rjzjt88vXXj9p4YdbZnFc+shCNhxbuvfwdJ3rgRKgsLSeO3azHe1PvyD3pXuUo6LJHD0vRtT35HuVncTuzGWM9+n8fwNf9Bf8Tct1X26pBVEERREKBFP11w3jdlg5mfTtjHu4y1KBI/oDaa/0MgVna5hRWlR0kvOnb/Phe2ZbweB9mtDFB+YPt+e+S6SxU3HtaUgbf2iaoVq/SLa8nzpfc0SJFEkEQe4y7SSc9syvaPdFSQoQbNnAjdcfOWOqUsJBQ+cy3tYAUdwwPq237qwp65rS6LT0qI3cdW3rpVES0KLYHrDeO0D3PAtWz/6td2YlppKAj0+j6hfTEGJ1C+g4an+wL/qw+vS5QxQUkw3jPUV5472nT86cP6Ley58eZUnl8jK0wXJdR0/Ie8CJV15Mq54bDXzNVuP99SeiLYC2bXuzsyZAQGUogURumealjPfxphcJzIXiERpS/1iqiCoZqGd+T6N4wt/4F/xVy+N7oEgoHTPmGaTr7n41UpyxbACEZ2KiHdpBemnxrTjtS8PZ17odz26gQMBpIzFnZkzg0ArBXgkOJbFnZkzO/xd1+mSclxbVSp+caVpTUlYS2a+T1trAV5ZXLcuCVNJiU/EDaf1w0crv/HGFfFT7baMUISIYurfg4fOVK9K/hstUvqWqbvYd+aKBKXoXckHGiDdMY0dHPimDi8uxS6VplMatZ+M3YJQdYYeu7g9jN3wduVyMpZtMDrxMXnAdBsrJ3Tk4nUGsyMydLuaSKfK0HcqS7Y6mcIwjK4tPsE9L+hL53a2xtb705QdxrLS8kgWD9rexT6sjSVb7w/DkSkM+Y/92/6Ya3/u0rT4VMMUs+oILmHlLP1v2++Sf15HTKFhGjMf4V3fpv/9125p/rpZTIMpB7jiLH325lL7qWl46t9zRXPdNN42hY7oGdd89IM77dglKhirqdNV2br/1G3Wdeq38cNr7xxl3Kos27QZIYgea8igYw83PNfaK1MjFbropGFoQgfSSkgnCaPNXLOPq57ricWSc3cqOwwVjDbCOD6eTu3DSa5uWXQtB00wqjGGATtSTxXD/mw1cya/7+E96W1KQAXJOzpdnjmzhX2EEMQO4+2Zb4a2lLYCWPcGjYRAdnS8PfNCn/1gqXYDCEbtbUkDCKjTmrx2/WjkXllWiWipzgElAaR7E3dmnlZNi0JFCpFSIkJJQhAwfc0T5y8nW/9+2QGKEpQq0GZuOeR+5d1QRRuaQan3UUqQ1uTuzLeSvCvQ54w7M2e2/X88EAeUY+mVmW8EcSyO23JAZg1QTPszL7RwHdUWcNBMd0FbKtRpjQvXY7pumkQFCg6jn0QO2j5AtaKqBu/jpqcLAVpNZwntlNA5ZglQDfV8T5xbRn+i3gwgSYEpdNV2JYVqBTVdExKoYvxR1373tmGHEijJymI6mDmzn20ff6FZTxckl3Vcmzkz0z0pQNXbyjcCQgu0jlvkqkBJSZam7M18zW+9uiN9XxCh0u7OgEiq1cTJPba17NQ9SVDtLJ+FD4e+GdOPh6MrW45+XP11yaplNG2ayAeTaWdmMjnq0aUji0tr49cnuRRWVUnA4NqXvrr0ZR9f+qq99MR06UnX8/n6w5lji+QOlqJUgvbhMK6N9s2F6dI560u/1SdvVv8isiqEdkpbEGxZnN8xtZJoEfRj36b/4/UlvU4gtJJQqpKIv9vnX+zj0Fma3vxYABHtjmb7TM8Pijz/9j1a6dYeZlAyPpDFra+tO3LH1KASmezTh3CkCSB0arH2fBecv45WM2eSR5or+MRznfNk9aTTj3ntfjNdThdtmoWt6ziABSseO+5JX5GmTVPB9OiCxQp44qSOvLoz1Q6lCGpFrjCtPNU2h3y1j3tPvHoT7zdzBaqGuoygqJT4SDi78/elEQTxEV2hkgDedOG1mzNn8muHD3AoRVGSH82cCrQiCK2tI44dPb6NQwHotmn6YMaxx2MXS0EEHptuzMxsSQORSkR8rQtLsUtBiU43ePLJzEnOWR+y/jBNmylabS+ntmeeB4hC4wzV4oNEk5AmVb66wuPVzAscnvPFh20fhkoVMMSPBBoRcPTkwcyZ/OwH1+lSoCjT9KHkmghFCWKXaWfmbKwcl9BemjkVRE78OgguOpTe1pYSxDVffbWcMSPXKQpM3bvAambmSFMFWoNuSWeOYYcSiRaHiVszpzmfzw+aPkyRSGyv2Zl5HqAJsD4D8XbbqGpF7w6L1czpnhyW29ooUdSQvgUo4NC5xWrmGx1uL8ke9VQ3bFlZHH1EDwSBEnRxc+ZM0geCwGT21szpHgNaL+ro8S3xUAK0bzj3yvUZ47XrWAoSWOGuF5RQQkMdG8k7aRtaSUwfz5yF9mOBqgo/Cp4HTGkrqYXRmRfh3GXtmwENTPrRzFksjJ9WJQhJuoVLgggYXTlr58ZNUzFoSVaO7Dsu45p6ACgluayu4ZYzVRKEkaUz1RIU6vkuOvSFD+lPJETorvXigO5KqGpDb1hYeaqt9bmWThpVSY48W3S7EdBi/Bni06khw9SoIBgkKgjJNihJlKUTStC0RGGKU1p47Y0ppRVpNaxXztgWJtEitM2gbwClLTkkvtFnP3yfvgMUmKYbzq1XM2a2vvhEp1u0IpIZ5Lov18uZU8VD0FacvUAJRuKkXv3invaAAlSmfemSkkasLOzPPANtAUVt8Yy2SwUE6ZutZZIlliMzZnkr6ZIuw5JZuz1DtRNeoFVN4kw90UsKVBMpX61mzuLIOlKUFjUkkRJEmHyjRz9YSvcQgRIrW/ZnnjGObohHFAVi2ytbd2ZONU0VRChnLyJAkRJf094QKBrHBW112pv5Gt98TCMOg7SNgmi1TZUSpPFUqcYsAUlElvH1DRK0nOlTGAIpRfOKH74xcxYcgYRIgy2KAOpMjfV16/GWlCqhveqkLhwd+u0LH9I7QBGandkHuO1FDbRQSdQZa0EaTWmc1MXHB3779QOxoyqiUDI+tnDXCR09aRbSEpFo6/m6klxuG02Z/t1J7tBM1nSBCcN6xnHFoEdiYV0WfOaEqiJIVdamOKXhqwft+UoRpV/28Zt46EydpwXVVGxJV9olSGiWTuu3Ln6gdilCRLpv0QMv6oe/se/RD96X7khoCZo9T8ZHWDmpkcvWiGhLH/mmLuBJogBFvLCur7L4VBLtU4M63/6Ctqw7WSSiZsRzpVa0MlKSjj9kwV1qAY4cd85364nfj5Y0Gqy/4fHnVltoG1KaYbGDB75NiVSRoVao42JpOvrRzNc8emVJbwmiAlbavZlTbeUqPaTEsW1bvTNzovayACIyfTpzKtAKIOK0Lj5ekfckN8Tfw7QnvWphNXOip0qnOqG16SNJHJdeIm8TPzeJSLWCWLwx8yKvenJIPwmlSBvvzJxFbL2foCUiDMmBNIJAa2ztzTzjN19fOjfu03qm3rDow5lT/eBwhT2gBYq+TW9Sz/j81V2x1KkUGNPHM6eCCEgBR6e7eHjPxZ/t+eFs+2c3vPm/78+8yJFFQqlGhtZzbTk6oIcUBTXtP/ab2zPf5ImL7z/22nLmRdIeThpAw+XgNPQjRIQmtdO6NnOao77xfnVXC7SCYfgYBApR75rGHdPibV/Nvjx33Sv5qViKUCJM+8b/zZn82me3pQciWoKIKR+Y9+do7Hh8fsdXF64b65uUkQjSleSBs/8kmrZSv0dqzaq0Tq69pQRthbfOu3ifC8uZk21vj/H73Zxin8WdmReZ9JOESGmi70zWy5kXOXJ0S3ymQFXkJq55QZPXP6j1fpVEArST/Gf+dX/k3/Tn3tfsPP03NE+9XCemQWdr1REN01gZix089G36H95YGuO+KcunXtJTTUwDs3Voakpm1RFxFfu+qcMfLh2NTzUcH/O6vxsHfk4d/ffLnUXcJ3qsufL8Pn6L7Vdz4SetHUaJChmm9u5k8VE4hNh6q8PlaRq7jDdKZGhzCx86oSde2WXcIWRoRyceDjmYjIO1ZLA9cYh9gDr/QS1ulhDNoFFjRQ7WfLyQThaXsduM7TaeOv4SU5NBWBwdf31SQCkRxykBtCsdV6z7cOZb+f0OV3hPHFIgggo6EWgEQbqi+9Q3Q0BBElv8PG05QmnrlC5y2LqKlUg1VDWR90f8JMl9Gfeb7reuhTekgVTpu2xtzzzvnPU9spJoCxLLKXbDnaF3KjdjvD1zbDi6Te8GSRop0CXdXSR3yr70g+q2KkUPQJvOokbUf/EP/esrI9ekoahnSgGNMa0s1u8593g18538gf/jA+kVunJchEIpgcJDeoU6G2hFaAVH6czPDdI5AqFe0JbHK1xJe09ATvw5UlN1HGEy/ZN8/mMeHc6c4PCcxbtMh8AUraBpIOqkFr66Wr2taCMkgCqozKHBjS1jL6FASQdB/Bf/yL9813pxCQdGIhwDKXHP6BULD2Z+R/6QeYhy7ophX1qKPj9IB+oKVr5NSSgRsNXM/NxIG0laigZOG6KFL96bOl2VPBgUIihVaaD6SHur7RV6jVcOZ17ss0/WXfw4HAiRaqmCU4f7q2tr/YuqK60ZqAZC5w5qfYWjPUCDEJr85/51z/dHXHtnaeo7LN40jZry0PnFPRz6PdF/tlx64rLOpgErj88fYOX/hz3+9/6s5RNHl2PrsoEprTwcFg+eeLLC4Xda1++7HHp5srjM6OzhkWl1ZOvBN6/5+mXMspwwjBXjAWYv7v8Et4Nz+w5xmR4AAAAASUVORK5CYII=\" /></span></div><div id=\"mount_0_0_AQ\"></div><script>qpl_inl(\"7191084768081846440\",\"splash_screen_show\");</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"splash_screen_show\"]]]}</script>\n\n<link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/l/0,cross/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"RaA31FN\" data-p=\":14,144,151,0\" data-c=\"1\" onload=\"_btldr[&quot;RaA31FN&quot;]=1\" onerror=\"_btldr[&quot;RaA31FN&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/l/0,cross/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Zx0r1CJ\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;Zx0r1CJ&quot;]=1\" onerror=\"_btldr[&quot;Zx0r1CJ&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/l/0,cross/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"kWwybab\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;kWwybab&quot;]=1\" onerror=\"_btldr[&quot;kWwybab&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yk/l/0,cross/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"f7Ym7Sv\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;f7Ym7Sv&quot;]=1\" onerror=\"_btldr[&quot;f7Ym7Sv&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yH/l/0,cross/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"LGJRwGF\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;LGJRwGF&quot;]=1\" onerror=\"_btldr[&quot;LGJRwGF&quot;]=1\" /><script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"injectQPLTagsServerJSIntoWindow\",\"injectQPLTagsServerJSIntoWindow\",null,[]]]}</script>\n<script type=\"application/json\" data-content-len=\"97\" data-sjs>{\"require\":[[\"injectQPLTimingsServerJSIntoWindow\",\"injectQPLTimingsServerJSIntoWindow\",null,[]]]}</script>\n<script>var hc=navigator&&navigator.hardwareConcurrency;null!=hc&&4>hc&&document.documentElement.classList.add(\"_8ykn\");</script>\n<script>requireLazy([\"replaceNativeTimer\"],function(j){j()})</script>\n<script>requireLazy([\"bootstrapWebSession\"],function(j){j(1674304895)})</script>\n<script type=\"application/json\" data-content-len=\"98\" data-sjs>{\"require\":[[\"qplTagServerJS\",null,null,[[\"react_fizz\",\"comet_aa_coinflip:false\",\"logged_out\"]]]]}</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierOne\");</script>\n<script type=\"application/json\" data-content-len=\"80\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierOne\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierOne\",202);</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierOne\",202]]]}</script>\n<script>requireLazy([\"JSScheduler\"],function(j){j.makeSchedulerGlobalEntry(null,false)})</script>\n<script>requireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierOneBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierOneInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"IntlCurrentLocale\",[],{\"code\":\"en_US\"},5954],[\"CometPersistQueryParams\",[],{\"relative\":{},\"domain\":{\"instagram.com\":{}}},6231],[\"CookieDomain\",[],{\"domain\":\"instagram.com\"},6421],[\"CurrentAdAccountInitialData\",[],{\"AD_ACCOUNT_ID\":null},6828],[\"BootloaderConfig\",[],{\"deferBootloads\":false,\"jsRetries\":[200,500],\"jsRetryAbortNum\":2,\"jsRetryAbortTime\":5,\"silentDups\":true,\"hypStep4\":true,\"phdOn\":false,\"btCutoffIndex\":1187,\"translationRetries\":[200,500],\"translationRetryAbortNum\":3,\"translationRetryAbortTime\":50},329],[\"CSSLoaderConfig\",[],{\"timeout\":5000,\"modulePrefix\":\"BLCSS:\"},619],[\"CookieCoreConfig\",[],{\"dpr\":{\"t\":604800},\"ds_user_id\":{\"t\":7776000},\"locale\":{\"t\":604800}},2104],[\"CurrentCommunityInitialData\",[],{},490],[\"CurrentEnvironment\",[],{\"facebookdotcom\":true,\"messengerdotcom\":false,\"workplacedotcom\":false,\"instagramdotcom\":true,\"workdotmetadotcom\":false},827],[\"CurrentUserInitialData\",[],{\"ACCOUNT_ID\":\"0\",\"USER_ID\":\"0\",\"NAME\":\"\",\"SHORT_NAME\":null,\"IS_BUSINESS_PERSON_ACCOUNT\":false,\"HAS_SECONDARY_BUSINESS_PERSON\":false,\"IS_FACEBOOK_WORK_ACCOUNT\":false,\"IS_MESSENGER_ONLY_USER\":false,\"IS_DEACTIVATED_ALLOWED_ON_MESSENGER\":false,\"IS_MESSENGER_CALL_GUEST_USER\":false,\"IS_WORK_MESSENGER_CALL_GUEST_USER\":false,\"IS_WORKROOMS_USER\":false,\"APP_ID\":\"936619743392459\",\"IS_BUSINESS_DOMAIN\":false,\"NON_FACEBOOK_USER_ID\":\"0\",\"IG_USER_EIMU\":\"0\"},270],[\"DTSGInitialData\",[],{},258],[\"ISB\",[],{},330],[\"LSD\",[],{\"token\":\"AVrh0l1XgEU\"},323],[\"RelayAPIConfigDefaults\",[],{\"accessToken\":\"\",\"actorID\":\"0\",\"customHeaders\":{\"X-IG-App-ID\":\"936619743392459\",\"X-IG-D\":\"www\"},\"enableNetworkLogger\":false,\"fetchTimeout\":30000,\"graphBatchURI\":\"\\/api\\/graphqlbatch\\/\",\"graphURI\":\"\\/api\\/graphql\\/\",\"retryDelays\":[1000,3000],\"useXController\":true,\"xhrEncoding\":null,\"subscriptionTopicURI\":null,\"withCredentials\":false,\"isProductionEndpoint\":false},926],[\"ServerNonce\",[],{\"ServerNonce\":\"gPoPZKHclhQDe-6QIBGEq7\"},141],[\"SiteData\",[],{\"server_revision\":1006847381,\"client_revision\":1006847381,\"tier\":\"\",\"push_phase\":\"C3\",\"pkg_cohort\":\"HYP:comet_loggedout_pkg\",\"haste_session\":\"19378.HYP:comet_loggedout_pkg.2.1.0.0.0\",\"pr\":1,\"haste_site\":\"www\",\"manifest_base_uri\":\"https:\\/\\/static.cdninstagram.com\",\"manifest_origin\":null,\"manifest_version_prefix\":null,\"be_one_ahead\":true,\"is_rtl\":false,\"is_comet\":true,\"is_experimental_tier\":false,\"is_jit_warmed_up\":true,\"hsi\":\"7191084768081846440\",\"semr_host_bucket\":\"6\",\"bl_hash_version\":2,\"skip_rd_bl\":true,\"comet_env\":3,\"wbloks_env\":false,\"spin\":4,\"__spin_r\":1006847381,\"__spin_b\":\"trunk\",\"__spin_t\":1674304895,\"vip\":\"31.13.65.174\"},317],[\"SprinkleConfig\",[],{\"param_name\":\"jazoest\",\"version\":2,\"should_randomize\":false},2111],[\"PromiseUsePolyfillSetImmediateGK\",[],{\"www_always_use_polyfill_setimmediate\":false},2190],[\"KSConfig\",[],{\"killed\":{\"__set\":[\"MLHUB_FLOW_AUTOREFRESH_SEARCH\",\"NEKO_DISABLE_CREATE_FOR_SAP\",\"EO_DISABLE_SYSTEM_SERIAL_NUMBER_FREE_TYPING_IN_CPE_NON_CLIENT\",\"MOBILITY_KILL_OLD_VISIBILITY_POSITION_SETTING\",\"WORKPLACE_DISPLAY_TEXT_EVIDENCE_REPORTING\",\"BUSINESS_INVITE_FLOW_WITH_SELLER_PROFILE\",\"BUY_AT_UI_LINE_DELETE\",\"BUSINESS_GRAPH_SETTING_APP_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_BU_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_ESG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_PRODUCT_CATALOG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_SESG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_WABA_ASSIGNED_USERS_NEW_API\",\"ADS_PLACEMENT_FIX_PUBLISHER_PLATFORMS_MUTATION\",\"FORCE_FETCH_BOOSTED_COMPONENT_AFTER_ADS_CREATION\",\"VIDEO_DIMENSIONS_FROM_PLAYER_IN_UPLOAD_DIALOG\",\"SNIVY_GROUP_BY_EVENT_TRACE_ID_AND_NAME\",\"ADS_STORE_VISITS_METRICS_DEPRECATION\",\"AD_DRAFT_ENABLE_SYNCRHONOUS_FRAGMENT_VALIDATION\",\"SEPARATE_MESSAGING_COMACTIVITY_PAGE_PERMS\",\"LAB_NET_NEW_UI_RELEASE\",\"POCKET_MONSTERS_CREATE\",\"POCKET_MONSTERS_DELETE\",\"WORKPLACE_PLATFORM_SECURE_APPS_MAILBOXES\",\"POCKET_MONSTERS_UPDATE_NAME\",\"IC_DISABLE_MERGE_TOOL_FEED_CHECK_FOR_REPLACE_SCHEDULE\",\"ADS_EPD_IMPACTED_ADVERTISER_MIGRATE_XCONTROLLER\",\"RECRUITING_CANDIDATE_PORTAL_ACCOUNT_DELETION_CARD\",\"BIZ_INBOX_POP_UP_TIP_NAVIGATION_BUG_FIX\",\"SRT_REVIEW_DISABLE_FELLOWSHIP_REVIEW\",\"EO_STORE_HOME_PAGE_COVID19_BANNER\"]},\"ko\":{\"__set\":[\"3OsLvnSHNTt\",\"1G7wJ6bJt9K\",\"9NpkGYwzrPG\",\"3oh5Mw86USj\",\"8NAceEy9JZo\",\"7FOIzos6XJX\",\"rf8JEPGgOi\",\"4j36SVzvP3w\",\"4NSq3ZC4ScE\",\"53gCxKq281G\",\"3yzzwBY7Npj\",\"1onzIv0jH6H\",\"8PlKuowafe8\",\"1ntjZ2zgf03\",\"4SIH2GRVX5W\",\"2dhqRnqXGLQ\",\"2WgiNOrHVuC\",\"amKHb4Cw4WI\",\"8rDvN9vWdAK\",\"5BdzWGmfvrA\",\"DDZhogI19W\",\"acrJTh9WGdp\",\"1oOE64fL4wO\",\"5XCz1h9Iaw3\",\"7r6mSP7ofr2\",\"6DGPLrRdyts\",\"aWxCyi1sEC7\",\"9kCSDzzr8fu\",\"awYA7fn2Bse\",\"aBMlJ8QRPWE\",\"Fl3bH3ozLe\"]}},2580],[\"TimeSliceInteractionSV\",[],{\"on_demand_reference_counting\":true,\"on_demand_profiling_counters\":true,\"default_rate\":1000,\"lite_default_rate\":100,\"interaction_to_lite_coinflip\":{\"ADS_INTERFACES_INTERACTION\":0,\"ads_perf_scenario\":0,\"ads_wait_time\":0,\"Event\":1},\"interaction_to_coinflip\":{\"ADS_INTERFACES_INTERACTION\":1,\"ads_perf_scenario\":1,\"ads_wait_time\":1,\"Event\":100},\"enable_heartbeat\":true,\"maxBlockMergeDuration\":0,\"maxBlockMergeDistance\":0,\"enable_banzai_stream\":true,\"user_timing_coinflip\":50,\"banzai_stream_coinflip\":0,\"compression_enabled\":true,\"ref_counting_fix\":false,\"ref_counting_cont_fix\":false,\"also_record_new_timeslice_format\":false,\"force_async_request_tracing_on\":false},2609],[\"JSErrorLoggingConfig\",[],{\"appId\":936619743392459,\"extra\":[],\"reportInterval\":50,\"sampleWeight\":null,\"sampleWeightKey\":\"__jssesw\",\"projectBlocklist\":[]},2776],[\"CookieCoreLoggingConfig\",[],{\"maximumIgnorableStallMs\":16.67,\"sampleRate\":9.7e-5,\"sampleRateClassic\":1.0e-10,\"sampleRateFastStale\":1.0e-8},3401],[\"ImmediateImplementationExperiments\",[],{\"prefer_message_channel\":true},3419],[\"DTSGInitData\",[],{\"token\":\"\",\"async_get_token\":\"\"},3515],[\"UriNeedRawQuerySVConfig\",[],{\"uris\":[\"dms.netmng.com\",\"doubleclick.net\",\"r.msn.com\",\"watchit.sky.com\",\"graphite.instagram.com\",\"www.kfc.co.th\",\"learn.pantheon.io\",\"www.landmarkshops.in\",\"www.ncl.com\",\"s0.wp.com\",\"www.tatacliq.com\",\"bs.serving-sys.com\",\"kohls.com\",\"lazada.co.th\",\"xg4ken.com\",\"technopark.ru\",\"officedepot.com.mx\",\"bestbuy.com.mx\",\"booking.com\",\"nibio.no\"]},3871],[\"WebConnectionClassServerGuess\",[],{\"connectionClass\":\"EXCELLENT\"},4705],[\"CometAltpayJsSdkIframeAllowedDomains\",[],{\"allowed_domains\":[\"https:\\/\\/live.adyen.com\",\"https:\\/\\/integration-facebook.payu.in\",\"https:\\/\\/facebook.payulatam.com\",\"https:\\/\\/secure.payu.com\",\"https:\\/\\/facebook.dlocal.com\",\"https:\\/\\/buy2.boku.com\"]},4920],[\"QuickMarkersConfig\",[],{\"pageLoadEventId\":\"7191084768081846440\",\"pageLoadScriptPath\":\"XPolarisProfileController\",\"sampleWeight\":null},4953],[\"BootloaderEndpointConfig\",[],{\"debugNoBatching\":false,\"endpointURI\":\"https:\\/\\/www.instagram.com\\/ajax\\/bootloader-endpoint\\/\"},5094],[\"USIDMetadata\",[],{\"browser_id\":\"?\",\"tab_id\":\"\",\"page_id\":\"Prou5xblsa71y\",\"transition_id\":0,\"version\":6},5888],[\"ServerTimeData\",[],{\"serverTime\":1674304895196,\"timeOfRequestStart\":1674304895138.1,\"timeOfResponseStart\":1674304895138.1},5943],[\"InstagramUserAgent\",[],{\"is_chrome\":false,\"is_edge\":false,\"is_edge_chromium_based\":false,\"is_edge_legacy\":false,\"is_firefox\":false,\"is_ig_carbon\":false,\"is_ig_lite\":false,\"is_ig_webview\":false,\"is_igtv_webview\":false,\"is_in_app_browser\":false,\"is_ipad\":false,\"is_macos\":false,\"is_mobile\":false,\"is_mobile_safari\":false,\"is_oculus_browser\":false,\"is_opera\":false,\"is_safari\":false,\"is_supported_browser\":false,\"is_twitter_webview\":false,\"is_uc_browser\":false,\"is_vapid_eligible\":false,\"is_webview\":false,\"user_agent\":\"WordPress\\/6.1.1; http:\\/\\/demo.kevkem.chiefsoft.net\"},6088],[\"IntlVariationHoldout\",[],{\"disable_variation\":false},6533],[\"FbtQTOverrides\",[],{\"overrides\":{}},551],[\"FbtResultGK\",[],{\"shouldReturnFbtResult\":true,\"inlineMode\":\"NO_INLINE\"},876],[\"IntlPhonologicalRules\",[],{\"meta\":{\"\\/_B\\/\":\"([.,!?\\\\s]|^)\",\"\\/_E\\/\":\"([.,!?\\\\s]|$)\"},\"patterns\":{\"\\/\\u0001(.*)(\'|&#039;)s\\u0001(?:\'|&#039;)s(.*)\\/\":\"\\u0001$1$2s\\u0001$3\",\"\\/_\\u0001([^\\u0001]*)\\u0001\\/\":\"javascript\"}},1496],[\"IntlViewerContext\",[],{\"GENDER\":3,\"regionalLocale\":null},772],[\"LinkshimHandlerConfig\",[],{\"supports_meta_referrer\":false,\"default_meta_referrer_policy\":\"default\",\"switched_meta_referrer_policy\":\"origin\",\"non_linkshim_lnfb_mode\":\"ie\",\"link_react_default_hash\":\"AT3oslNZsInoQANT_t_eNJR7eVrbkjaQxl2UrohHCb9D0ybydzH57Ehrs8X7PHJTDBxhjmaWx3boagpWGVMkUa8bDtgwPxQZiZr_gLm3fZ8Bep2cKKhEw58PzHOrfQ95cELkObzyTQt8JqJi\",\"untrusted_link_default_hash\":\"AT2zIoS4M4S-7qFm3lscq5q0I-vvv0rxW6TPCtVFNVLVr6uVredDY2T46b6hThcN3gkauJ8PHZJOdpfPBHGJBNL9F4VAvcF3h6liW0pReInxJUzH1q14gLtRwM-9ZkaN5th540P7Vb7p-lfe\",\"linkshim_host\":\"l.instagram.com\",\"linkshim_path\":\"\\/\",\"linkshim_enc_param\":\"e\",\"linkshim_url_param\":\"u\",\"use_rel_no_opener\":false,\"always_use_https\":false,\"onion_always_shim\":true,\"middle_click_requires_event\":false,\"www_safe_js_mode\":\"hover\",\"m_safe_js_mode\":null,\"ghl_param_link_shim\":false,\"click_ids\":null,\"is_linkshim_supported\":false,\"current_domain\":\"instagram.com\",\"blocklisted_domains\":[\"ad.doubleclick.net\",\"ads-encryption-url-example.com\",\"bs.serving-sys.com\",\"ad.atdmt.com\",\"adform.net\",\"ad13.adfarm1.adition.com\",\"ilovemyfreedoms.com\",\"secure.adnxs.com\"],\"is_mobile_device\":false},27],[\"NumberFormatConfig\",[],{\"decimalSeparator\":\".\",\"numberDelimiter\":\",\",\"minDigitsForThousandsSeparator\":4,\"standardDecimalPatternInfo\":{\"primaryGroupSize\":3,\"secondaryGroupSize\":3},\"numberingSystemData\":null},54],[\"UserAgentData\",[],{\"browserArchitecture\":\"32\",\"browserFullVersion\":null,\"browserMinorVersion\":null,\"browserName\":\"Unknown\",\"browserVersion\":null,\"deviceName\":\"Unknown\",\"engineName\":\"Unknown\",\"engineVersion\":null,\"platformArchitecture\":\"32\",\"platformName\":\"Unknown\",\"platformVersion\":null,\"platformFullVersion\":null},527],[\"IntlNumberTypeConfig\",[],{\"impl\":\"if (n === 1) { return IntlVariations.NUMBER_ONE; } else { return IntlVariations.NUMBER_OTHER; }\"},3405],[\"FBDomainsSVConfig\",[],{\"domains\":{\"__map\":[[\"www.facebook.com\",1],[\"tfbnw.net\",1],[\"m.beta.facebook.com\",1],[\"touch.beta.facebook.com\",1],[\"www.dev.facebook.com\",1],[\"fb.me\",1],[\"s.fb.com\",1],[\"m.fbjs.facebook.com\",1],[\"facebook.com.es\",1],[\"www.fbjs.facebook.com\",1],[\"m.facebook.com\",1],[\"facebook.fr\",1],[\"fbsbx.com\",1],[\"embed.fbsbx.com\",1],[\"attachment.fbsbx.com\",1],[\"lookaside.fbsbx.com\",1],[\"web.facebook.com\",1],[\"fb.com\",1],[\"messenger.com\",1],[\"secure.facebook.com\",1],[\"secure.my-od.facebook.com\",1],[\"www.my-od.facebook.com\",1]]}},3828],[\"ClickIDDomainBlacklistSVConfig\",[],{\"domains\":[\"craigslist\",\"tfbnw.net\",\"flashtalking.com\",\"canadiantire.ca\",\"o2.co.uk\",\"archive.org\",\"reddit.com\",\"redd.it\",\"gmail.com\",\"cvk.gov.ua\",\"electoralsearch.in\",\"yahoo.com\",\"cve.mitre.org\",\"usenix.org\",\"ky.gov\",\"voteohio.gov\",\"vote.pa.gov\",\"oversightboard.com\",\"wi.gov\",\"pbs.twimg.com\",\"media.discordapp.net\",\"vastadeal.com\",\"theaustralian.com.au\",\"alloygator.com\",\"elsmannimmobilien.de\",\"news.com.au\",\"dennisbonnen.com\",\"stoett.com\",\"investorhour.com\",\"perspectivasur.com\",\"bonnegueule.fr\",\"firstent.org\",\"twitpic.com\",\"kollosche.com.au\",\"nau.edu\",\"arcourts.gov\",\"lomberg.de\",\"network4.hu\",\"balloonrace.com\",\"awstrack.me\",\"ic3.gov\",\"sos.wyo.gov\",\"cnpq.br\",\"0.discoverapp.com\"]},3829],[\"WebDriverConfig\",[],{\"isTestRunning\":false,\"isJestE2ETestRun\":false,\"isXRequestConfigEnabled\":false,\"auxiliaryServiceInfo\":{},\"testPath\":null,\"originHost\":null},5332],[\"WebBloksVersioningID\",[],{\"versioningID\":\"e7c1f05400c7b80a9d5c48ffbe8b26641f6e0f506bb0eba02f2a06ef377d3058\"},6636],[\"AsyncRequestConfig\",[],{\"retryOnNetworkError\":\"1\",\"useFetchStreamAjaxPipeTransport\":false},328],[\"SessionNameConfig\",[],{\"seed\":\"0aGN\"},757],[\"ZeroCategoryHeader\",[],{},1127],[\"ZeroRewriteRules\",[],{\"rewrite_rules\":{},\"whitelist\":{\"\\/hr\\/r\":1,\"\\/hr\\/p\":1,\"\\/zero\\/unsupported_browser\\/\":1,\"\\/zero\\/policy\\/optin\":1,\"\\/zero\\/optin\\/write\\/\":1,\"\\/zero\\/optin\\/legal\\/\":1,\"\\/zero\\/optin\\/free\\/\":1,\"\\/about\\/privacy\\/\":1,\"\\/about\\/privacy\\/update\\/\":1,\"\\/privacy\\/explanation\\/\":1,\"\\/zero\\/toggle\\/welcome\\/\":1,\"\\/zero\\/toggle\\/nux\\/\":1,\"\\/zero\\/toggle\\/settings\\/\":1,\"\\/fup\\/interstitial\\/\":1,\"\\/work\\/landing\":1,\"\\/work\\/login\\/\":1,\"\\/work\\/email\\/\":1,\"\\/ai.php\":1,\"\\/js_dialog_resources\\/dialog_descriptions_android.json\":0,\"\\/connect\\/jsdialog\\/MPlatformAppInvitesJSDialog\\/\":0,\"\\/connect\\/jsdialog\\/MPlatformOAuthShimJSDialog\\/\":0,\"\\/connect\\/jsdialog\\/MPlatformLikeJSDialog\\/\":0,\"\\/qp\\/interstitial\\/\":1,\"\\/qp\\/action\\/redirect\\/\":1,\"\\/qp\\/action\\/close\\/\":1,\"\\/zero\\/support\\/ineligible\\/\":1,\"\\/zero_balance_redirect\\/\":1,\"\\/zero_balance_redirect\":1,\"\\/zero_balance_redirect\\/l\\/\":1,\"\\/l.php\":1,\"\\/lsr.php\":1,\"\\/ajax\\/dtsg\\/\":1,\"\\/checkpoint\\/block\\/\":1,\"\\/exitdsite\":1,\"\\/zero\\/balance\\/pixel\\/\":1,\"\\/zero\\/balance\\/\":1,\"\\/zero\\/balance\\/carrier_landing\\/\":1,\"\\/zero\\/flex\\/logging\\/\":1,\"\\/tr\":1,\"\\/tr\\/\":1,\"\\/sem_campaigns\\/sem_pixel_test\\/\":1,\"\\/bookmarks\\/flyout\\/body\\/\":1,\"\\/zero\\/subno\\/\":1,\"\\/confirmemail.php\":1,\"\\/policies\\/\":1,\"\\/mobile\\/internetdotorg\\/classifier\\/\":1,\"\\/zero\\/dogfooding\":1,\"\\/xti.php\":1,\"\\/zero\\/fblite\\/config\\/\":1,\"\\/hr\\/zsh\\/wc\\/\":1,\"\\/ajax\\/bootloader-endpoint\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/education_page\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/feature_switch\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/settings_page\\/\":1,\"\\/aloha_check_build\":1,\"\\/upsell\\/zbd\\/softnudge\\/\":1,\"\\/mobile\\/zero\\/af_transition\\/\":1,\"\\/mobile\\/zero\\/af_transition\\/action\\/\":1,\"\\/mobile\\/zero\\/freemium\\/\":1,\"\\/mobile\\/zero\\/freemium\\/redirect\\/\":1,\"\\/mobile\\/zero\\/freemium\\/zero_fup\\/\":1,\"\\/privacy\\/policy\\/\":1,\"\\/privacy\\/center\\/\":1,\"\\/data\\/manifest\\/\":1,\"\\/4oh4.php\":1,\"\\/autologin.php\":1,\"\\/birthday_help.php\":1,\"\\/checkpoint\\/\":1,\"\\/contact-importer\\/\":1,\"\\/cr.php\":1,\"\\/legal\\/terms\\/\":1,\"\\/login.php\":1,\"\\/login\\/\":1,\"\\/mobile\\/account\\/\":1,\"\\/n\\/\":1,\"\\/remote_test_device\\/\":1,\"\\/upsell\\/buy\\/\":1,\"\\/upsell\\/buyconfirm\\/\":1,\"\\/upsell\\/buyresult\\/\":1,\"\\/upsell\\/promos\\/\":1,\"\\/upsell\\/continue\\/\":1,\"\\/upsell\\/h\\/promos\\/\":1,\"\\/upsell\\/loan\\/learnmore\\/\":1,\"\\/upsell\\/purchase\\/\":1,\"\\/upsell\\/promos\\/upgrade\\/\":1,\"\\/upsell\\/buy_redirect\\/\":1,\"\\/upsell\\/loan\\/buyconfirm\\/\":1,\"\\/upsell\\/loan\\/buy\\/\":1,\"\\/upsell\\/sms\\/\":1,\"\\/wap\\/a\\/channel\\/reconnect.php\":1,\"\\/wap\\/a\\/nux\\/wizard\\/nav.php\":1,\"\\/wap\\/appreg.php\":1,\"\\/wap\\/birthday_help.php\":1,\"\\/wap\\/c.php\":1,\"\\/wap\\/confirmemail.php\":1,\"\\/wap\\/cr.php\":1,\"\\/wap\\/login.php\":1,\"\\/wap\\/r.php\":1,\"\\/zero\\/datapolicy\":1,\"\\/a\\/timezone.php\":1,\"\\/a\\/bz\":1,\"\\/bz\\/reliability\":1,\"\\/r.php\":1,\"\\/mr\\/\":1,\"\\/reg\\/\":1,\"\\/registration\\/log\\/\":1,\"\\/terms\\/\":1,\"\\/f123\\/\":1,\"\\/expert\\/\":1,\"\\/experts\\/\":1,\"\\/terms\\/index.php\":1,\"\\/terms.php\":1,\"\\/srr\\/\":1,\"\\/msite\\/redirect\\/\":1,\"\\/fbs\\/pixel\\/\":1,\"\\/contactpoint\\/preconfirmation\\/\":1,\"\\/contactpoint\\/cliff\\/\":1,\"\\/contactpoint\\/confirm\\/submit\\/\":1,\"\\/contactpoint\\/confirmed\\/\":1,\"\\/contactpoint\\/login\\/\":1,\"\\/preconfirmation\\/contactpoint_change\\/\":1,\"\\/help\\/contact\\/\":1,\"\\/survey\\/\":1,\"\\/upsell\\/loyaltytopup\\/accept\\/\":1,\"\\/settings\\/\":1,\"\\/lite\\/\":1,\"\\/zero_status_update\\/\":1,\"\\/operator_store\\/\":1,\"\\/upsell\\/\":1,\"\\/wifiauth\\/login\\/\":1}},1478],[\"DataStoreConfig\",[],{\"expandoKey\":\"__FB_STORE\",\"useExpando\":true},2915],[\"CometCustomKeyCommands\",[],{\"customCommands\":{},\"areSingleKeysDisabled\":null,\"modifiedKeyboardShortcutsPreference\":4},4521],[\"GqlsUseCaseSamplingRateMap\",[],{\"GqlsUseCaseSamplingRateMap\":{\"default\":10000,\"test_blade_runner_actualized_subscribe\":1}},6497],[\"CometUrlTransformsConfig\",[],{\"should_remove_trailing_slash\":false},6589],[\"RtiWebRequestStreamClient\",[],{\"ThrottledMethods\":{}},6639],[\"RTISubscriptionManagerConfig\",[],{\"config\":{},\"autobot\":{},\"assimilator\":{},\"unsubscribe_release\":true,\"bladerunner_www_sandbox\":null,\"is_intern\":false},1081],[\"CometRelayConfig\",[],{\"gc_release_buffer_size\":50},4685],[\"TimeSpentWWWCometConfig\",[],{\"CONFIG\":{\"0_delay\":0,\"0_timeout\":8,\"delay\":1000,\"timeout\":64}},4748],[\"CometMaxEnqueuedToastsSitevarConfig\",[],{\"max\":2},4763],[\"MqttWebDeviceID\",[],{\"clientID\":\"a9d8d9fe-a52f-4249-a066-c452a4d48b71\"},5003],[\"LiveQueryWebRelayKillList\",[],{\"liveQueryWebRelayKillList\":[\"test_example_config_id_to_be_killed\",\"data_studio_nav_pane_collections_section\",\"work_recruiting_home_tasks\"]},5050],[\"LiveQueryWebClientPollingSwitchList\",[],{\"liveQueryWebClientPollingSwitchList\":{\"example_config_id_to_be_switched\":10000}},5842],[\"TransportSelectingClientContextualConfig\",[],{\"rawConfig\":\"{\\\"name\\\":\\\"rti\\/web_rs_transport_selecting_client\\\",\\\"cctype\\\":\\\"dense\\\",\\\"version\\\":1,\\\"policy_id\\\":\\\"static\\\",\\\"sample_rate\\\":1000,\\\"contexts\\\":[{\\\"name\\\":\\\"method\\\",\\\"type\\\":\\\"STRING\\\",\\\"callsite\\\":true,\\\"buckets\\\":[{\\\"name\\\":\\\"rollout_group_1\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"FBGQLS:FEEDBACK_LIKE_SUBSCRIBE\\\",\\\"Falco\\\",\\\"FBLQ:comet_notifications_live_query_experimental\\\"]},{\\\"name\\\":\\\"rollout_group_6\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"FBGQLS:COMMENT_CREATE_SUBSCRIBE\\\",\\\"FBGQLS:COMMENT_LIKE_SUBSCRIBE\\\",\\\"FBGQLS:FEEDBACK_COMMENT_PERMISSION_TOGGLE_SUBSCRIBE\\\",\\\"FBGQLS:FEEDBACK_TYPING_SUBSCRIBE\\\"]},{\\\"name\\\":\\\"rollout_group_4\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"FBGQLS:.*\\\"]},{\\\"name\\\":\\\"rollout_group_3\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"FBLQ:.*\\\"]},{\\\"name\\\":\\\"skywalker\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"SKY:test_topic\\\",\\\"live\\/api\\/copyright\\\",\\\"intern_notify\\\",\\\"locplat\\/ttm\\\",\\\"rti_widget_dashboard\\\",\\\"srt\\/user_metrics_counter\\\",\\\"media_manager_instagram_composer_create_update\\\",\\\"cubism_annotations\\/fleet_health\\\",\\\"srt\\/notifications\\\",\\\"ads\\/reporting\\/snapshot\\\",\\\"unidash\\/widget\\\",\\\"cubism_annotations\\\",\\\"ads\\/reporting\\/export\\\",\\\"pubx\\/notification\\/update\\\",\\\"ads\\/powereditor\\/import\\\",\\\"lwi_async_create\\\",\\\"video_edit\\\",\\\"metric_graph_realtime\\\",\\\"vcc_video_posting_www\\\",\\\"cms\\/object_archive_copy_created\\\",\\\"cms\\/branch_updated\\\",\\\"cms\\/object_saved\\\",\\\"codeless_event_tracking\\\",\\\"srt\\/job_updated\\\",\\\"video_broadcast\\\",\\\"video\\/broadcast\\/error\\\",\\\"vcpanel\\/api\\\",\\\"lwi_everywhere_plugin\\\",\\\"commercial_break_v2\\\",\\\"advanced_analytics\\/query\\\",\\\"cubism_annotations\\/ads_mastercook_models\\\",\\\"gqls\\/comment_like_subscribe\\\",\\\"live\\/api\\/copyright\\\",\\\"shiba\\/mock_bot_error\\\",\\\"shiba\\/save_state\\\",\\\"video_list_publishing_progress_update\\\",\\\"assistant_wizard\\\",\\\"gizmo\\/manage\\\",\\\"collab\\/presentation\\/request\\\",\\\"snaptu\\/push_notif\\\"]},{\\\"name\\\":\\\"skywalker_bulletin\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"www\\/sr\\/hot_reload\\\"]},{\\\"name\\\":\\\"rollout_group_5\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"Collabri|RealtimeClientSync:.*\\\"]},{\\\"name\\\":\\\"default\\\",\\\"strategy\\\":\\\"catch_all\\\"}]}],\\\"outputs\\\":[{\\\"name\\\":\\\"group\\\",\\\"type\\\":\\\"STRING\\\"},{\\\"name\\\":\\\"dgwUpsampleMultiplier\\\",\\\"type\\\":\\\"FLOAT\\\"}],\\\"vector\\\":[\\\"group1\\\",\\\"0.01\\\",\\\"group6\\\",\\\"0.001\\\",\\\"group4\\\",\\\"1.0\\\",\\\"group3\\\",\\\"1.0\\\",\\\"skywalker\\\",\\\"1.0\\\",\\\"skywalker_bulletin\\\",\\\"1.0\\\",\\\"group5\\\",\\\"1.0\\\",\\\"default_group\\\",\\\"1.0\\\"],\\\"vectorDefaults\\\":[\\\"default_group\\\",\\\"1.0\\\"],\\\"timestamp\\\":1663366072}\"},5968],[\"AnalyticsCoreData\",[],{\"device_id\":\"$^|AcbHCzGYW6tDxTUxyOfdK3OR4sK01arWfMsw1M26SR1Yz5qk5BP8Kgap5Y5NpBKRA23w9yOVHlSf7f_X67yReZg56b6s6dw|\\u0040sdig:AQ_dPjRV4b2mnLhXQUjMQgDJzsQorF1kiY48qow-3YblH4zy75yStl2Tyuy6uRTkD5I6uPOnW7xgOy-XaMCORvLPas41JXA5BM55ZrgI\",\"app_id\":\"936619743392459\",\"enable_bladerunner\":false,\"enable_ack\":true,\"push_phase\":\"C3\",\"enable_observer\":false,\"enable_dataloss_timer\":false,\"enable_fallback_for_br\":true,\"fix_br_init_rc\":true,\"queue_activation_experiment\":true,\"max_delay_br_queue\":60000,\"max_delay_br_queue_immediate\":3,\"use_critical_for_fallback_from_immediate\":false,\"impression_experiment_flag\":1},5237],[\"InitialCookieConsent\",[],{\"deferCookies\":false,\"initialConsent\":{\"__set\":[1,2]},\"noCookies\":false,\"shouldShowCookieBanner\":false},4328],[\"CookieConsentIFrameConfig\",[],{\"consent_param\":\"FQAREhIA.ARaTkXpof6Xi6oQ3Be3fdkpapEGtRX73NWOKHKZSJdA0CqJL\",\"allowlisted_iframes\":[]},5540],[\"XIGSharedData\",[],{\"raw\":\"{\\\"config\\\":{\\\"csrf_token\\\":\\\"twx0P57yoM3gX9aC2d2ONyBLLnSz2LcH\\\",\\\"viewer\\\":null,\\\"viewerId\\\":null},\\\"country_code\\\":\\\"\\\",\\\"entry_data\\\":{},\\\"is_whitelisted_crawl_bot\\\":false,\\\"connection_quality_rating\\\":\\\"UNKNOWN\\\",\\\"deployment_stage\\\":\\\"C3\\\",\\\"platform\\\":\\\"web\\\",\\\"mid_pct\\\":66.82159,\\\"zero_data\\\":{},\\\"cache_schema_version\\\":3,\\\"server_checks\\\":{},\\\"to_cache\\\":{},\\\"browser_push_pub_key\\\":\\\"BIBn3E_rWTci8Xn6P9Xj3btShT85Wdtne0LtwNUyRQ5XjFNkuTq9j4MPAVLvAFhXrUU1A9UxyxBA7YIOjqDIDHI\\\",\\\"encryption\\\":{\\\"key_id\\\":\\\"254\\\",\\\"public_key\\\":\\\"de4752f9479ed29171693e5d9106fb1b139b55895f80e5fee4141833bbc4e05b\\\",\\\"version\\\":\\\"10\\\"},\\\"is_dev\\\":false,\\\"is_e2e\\\":false,\\\"signal_collection_config\\\":{\\\"bbs\\\":100,\\\"ctw\\\":null,\\\"dbs\\\":100,\\\"fd\\\":60,\\\"hbc\\\":{\\\"hbbi\\\":30,\\\"hbcbc\\\":2,\\\"hbi\\\":60,\\\"hbv\\\":\\\"c3d6940c58f107d3c550814f524342d6\\\",\\\"hbvbc\\\":0},\\\"i\\\":60,\\\"rt\\\":null,\\\"sbs\\\":1,\\\"sc\\\":{\\\"c\\\":[[30000,838801],[30001,838801],[30002,838801],[30003,838801],[30004,838801],[30005,838801],[30006,573585],[30007,838801],[30008,838801],[30009,838801],[30010,838801],[30012,838801],[30013,838801],[30015,806033],[30018,806033],[30019,806033],[30040,806033],[30093,806033],[30094,806033],[30095,806033],[30100,541591],[30101,541591],[30102,541591],[30103,541591],[30104,541591],[30106,806039],[30107,806039],[38000,541427],[38001,806643]],\\\"t\\\":1618437631},\\\"sid\\\":-1},\\\"www_routing_config\\\":{\\\"frontend_and_proxygen_routes\\\":[{\\\"path\\\":\\\"\\/service-worker-prerelease-metro.js\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/robots.txt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads.txt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/BingSiteAuth.xml\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bimi-vmc.pem\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/images\\/bimi\\/ig-logo.svg\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/static\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/config-test\\/routes\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/.well-known\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/apple-app-site-association\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/403invalidnonce\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/404html\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/embed.js\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/collections\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/collections\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/guide\\/*\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/guide\\/*\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/false_information\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/caption\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/false_information\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/reels\\/audio_page\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/false_information\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/c\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/c\\/*\\/r\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/caption\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/configure_to_igtv\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/drafts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/upload\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/upload\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/all\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/c\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/collection\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/p\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop2\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/f\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/follow\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/access_tool\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/_n\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/_u\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/a\\/r\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/about-ads\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/about\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/login\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/onetap\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/emailsignup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/phone\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/email\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/privacy_and_security\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/blocked_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/muted_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/restricted_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/story_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/message_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/professional_account_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/activity\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/confirm_phone\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/confirm_phone\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/contact_history\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/cookie_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/digital_wallets\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/edit\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/fbsignup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/menu\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/change\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/reset\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/reset\\/confirm\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password_reset\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/report\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/emailpreferences\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/new_terms_confirm\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/recovery\\/landing\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/remove\\/request\\/temporary\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/remove\\/request\\/post\\/temporary\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/account_recovery\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/comment_filter\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/data_controls_support\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/supervision\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/suspended\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/two_factor_authentication\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/what_you_see\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/who_can_see_your_content\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/how_others_can_interact_with_you\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/manage_access\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/your_data_and_media\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/hacked\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/support\\/chat\\/embed\\/ig\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/home\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/profiles\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/service\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/acredirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads\\/settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/ads\\/activity\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/ads\\/preferences\\/ad_topics\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/affiliate_management\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ajax\\/bz\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/api\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/app\\/hyperlapse\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/*\\/push\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/shopping\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/assisted_account_recovery\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/authenticity\\/authenticity\\/location\\/get_location_verification\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/authenticity\\/authenticity\\/location\\/set_location_verification\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/badges_milestones_management\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bfad3e85bc\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bfad3e85bc_cheap\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/business\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/categories\\/accounts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/categories\\/accounts\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/client_error\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/coming_soon\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/componentexplorer\\/embeds\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/componentexplorer\\/react\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/concurrent_request\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/create\\/configure_to_story\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/create\\/configure\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dogfoodnow\\/whitelist_add\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dogfoodnow\\/whitelist_remove\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/live\\/*\\/comment\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/comment\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/live\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/experiments\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/manifest.json\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/qe_params\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/shared_data\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/developer\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/digital_collectibles\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/direct_v2\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/suggested\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/checkout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/redirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/ecp_checkout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/ecp_redirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/download\\/request\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/download\\/request_download_data_ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/download\\/confirm\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/download\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/dyi\\/download\\/auth\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dyi\\/lookaside_auth\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/emails\\/emails_sent\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/emails\\/preferences\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/emails\\/unsubscribe\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/embed_logger\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/current\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/snooze\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/undo\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/403\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/404\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/500\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/facebook_pay\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/facebook_pay\\/connect_learn_more\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/connect\\/ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/create\\/ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/create\\/ajax\\/attempt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fbsurvey\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fbsurvey\\/confirm_user\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fxcal\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fxcal\\/disclosure\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/getapp\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/graphql\\/query\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/help\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/configure_to_igtv\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/drafts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/upload\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/upload\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv_revshare_onboarding\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/instagramstickers\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/intern\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/internal\\/ig_product_principles\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/interstitial\\/covid19\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/invites\\/contact\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/legal\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/legal\\/cookies\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/legal\\/terms\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linking\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/linking\\/fundraiser\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linking\\/professional_dashboard\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linkshim\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/linkshim\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/local\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/local\\/dev\\/transaction_tool_selector\\/redirect\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/location_search\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/grid\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/map\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/search\\/keyword\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/logging\\/falco\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/comment\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/appeal_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/dismiss_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/dispute_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/restore_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/ridge_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/am_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/appeal\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/delete\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/dismiss_am\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/dispute_am\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/done\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/delete\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/edit\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/product\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/product\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/*\\/story_poll_vote\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/*\\/story_slider_vote\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/mixi\\/oauth_callback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/oauth\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/qp\\/batch_fetch_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/n\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/nametag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p-ng\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/payments\\/paypal_close\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/press\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/privacy\\/activity_center\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/privacy\\/checks\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/privacy\\/consent\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/publicapi\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/preferences\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/removetoken\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/get_push_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/register\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/update_settings\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/raters\\/summary\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/realtime\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/*\\/flag\\/hacked\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/*\\/flag\\/hacked\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/flag_hacked_user\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/submit_reporter_appeal\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/common\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/media\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/user\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/user_report_support_feedback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/get_frx_prompt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/handle_guided_action\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/notify_guardian\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/log_tag_selected\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/repute\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/restriction\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/s\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/security\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sem\\/campaign\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sem\\/campaign\\/emailsignup\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/seo\\/google_widget\\/crawler\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/avow_login\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/disavow_login_activity\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/logout_session\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/undo_avow_login\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/cart\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/cart\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/products\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/shopping\\/bag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shopping\\/home\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sitemap\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/stories\\/tags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/location\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/suggested_users\\/remove_from_suggested\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/suggested_users\\/remove_from_suggested_confirm\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/support\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/survey\\/us2020\\/consent_withdraw\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/switcher\\/placeholder\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tags\\/*\\/qr\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/terms\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/terms\\/accept\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/test_users\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/testing\\/indigo_logging\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/testing\\/validate_client_input\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/thirdparty\\/static\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/topics\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/topics\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/two_factor\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/uid\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\/options\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report_celebrity\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report_underage\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/merchant\\/*\\/product\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/merchant\\/*\\/product\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/self\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/set_disallow_story_reshare_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/set_feed_post_reshare_disabled_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/verification\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/video_call\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/votinginfocenter\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/watch_together\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/web\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\/loggedin\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\/loggedout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\/loggedin\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\/loggedout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/weibo\\/oauth_callback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/wifiauth\\/login\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/xwoiynko\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/zr\\/diagnostics\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/zr\\/nux\\/update_preference\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\\",\\\"destination\\\":\\\"WWW\\\"}],\\\"frontend_only_routes\\\":[{\\\"path\\\":\\\"\\/create\\/(story|style|details|location|tag|advanced-settings|advanced-settings\\/alt-text)\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/accounts\\/login\\/two_factor\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/explore\\/search\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/direct\\/t\\/?.*\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/stories\\/tags\\/?.*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/location\\/?.*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/?.*\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/similar_accounts\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/related_profiles\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/(following|hashtag_following|followers)\\/?(mutualOnly|mutualFirst)?\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"}],\\\"proxygen_request_handler_only_routes\\\":[{\\\"paths\\\":[\\\"^\\/$\\\",\\\"^$\\\"],\\\"destination\\\":\\\"WWW\\\",\\\"in_vpn_dogfooding\\\":false,\\\"in_qe\\\":false}]},\\\"bundle_variant\\\":\\\"wwwig\\\",\\\"frontend_env\\\":\\\"C3\\\",\\\"probably_has_app\\\":null,\\\"rollout_hash\\\":\\\"1006847381\\\"}\",\"native\":{\"browser_push_pub_key\":\"BIBn3E_rWTci8Xn6P9Xj3btShT85Wdtne0LtwNUyRQ5XjFNkuTq9j4MPAVLvAFhXrUU1A9UxyxBA7YIOjqDIDHI\",\"bundle_variant\":\"wwwig\",\"entry_data\":{},\"should_show_digital_collectibles_privacy_notice\":false,\"config\":{\"csrf_token\":\"\",\"viewerId\":null},\"cache_schema_version\":3,\"deployment_stage\":\"C3\",\"frontend_env\":\"C3\",\"gatekeepers\":{},\"qe\":{},\"is_on_vpn\":false,\"is_e2e\":false,\"rollout_hash\":\"1006847381\",\"server_checks\":{\"hfe\":true},\"www_routing_config\":{\"frontend_only_routes\":[{\"path\":\"\\/create\\/(story|style|details|location|tag|advanced-settings|advanced-settings\\/alt-text)\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/accounts\\/login\\/two_factor\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/explore\\/search\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/direct\\/t\\/?.*\",\"destination\":\"BOTH\"},{\"path\":\"\\/stories\\/tags\\/?.*\",\"destination\":\"DISTILLERY\"},{\"path\":\"\\/stories\\/location\\/?.*\",\"destination\":\"DISTILLERY\"},{\"path\":\"\\/stories\\/?.*\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/similar_accounts\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/related_profiles\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/(following|hashtag_following|followers)\\/?(mutualOnly|mutualFirst)?\\/?\",\"destination\":\"BOTH\"}]},\"consent_dialog_config\":{\"is_user_linked_to_fb\":false,\"should_show_consent_dialog\":false},\"locale\":\"en_US\",\"language_code\":\"en\",\"hostname\":\"www.instagram.com\",\"nonce\":\"P4atEFu9+Wo3ZLP+uqW6Mw==\",\"device_id\":\"46749EC6-93BF-448F-B7A9-9502CB1F16F7\",\"signal_collection_config\":{\"sid\":-1},\"privacy_flow_trigger\":null,\"platform_install_badge_links\":{\"ios\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yt\\/r\\/Yfc020c87j0.png\",\"android\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/c5Rp7Ym-Klz.png\",\"windows_nt_10\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/EHY6QnZYdNX.png\"},\"country_code\":\"US\"}},6186],[\"WebDevicePerfClassData\",[],{\"deviceLevel\":\"unknown\",\"yearClass\":null},3665],[\"cr:70\",[\"FBInteractionTracingDependencies\"],{\"__rc\":[\"FBInteractionTracingDependencies\",\"Aa0Qj1b9XT66Or8qjJH6njV7vMo0mlOgTB8HForhIQJx9g8fZSohKGYxoQqyCKji8LhLe3UKJkZIuAQOuCg0554utr5RHjiGDg\"]},-1],[\"cr:686\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:2695\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:11531\",[\"CometNavigationTracingQPLEvents\"],{\"__rc\":[\"CometNavigationTracingQPLEvents\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:683059\",[\"CometVisualCompletion\"],{\"__rc\":[\"CometVisualCompletion\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:696703\",[\"JSScheduler\"],{\"__rc\":[\"JSScheduler\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:717822\",[\"TimeSliceSham\"],{\"__rc\":[\"TimeSliceSham\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:719780\",[],{\"__rc\":[null,\"Aa0uI4MR6rpGQhmskNXV94ZdpXXKe7YlvwfL_Q8fcqM5LBaxJCJpdueAHlDhw3OW6licpdtKNxu-JiuAtU0\"]},-1],[\"cr:806696\",[\"clearTimeoutComet\"],{\"__rc\":[\"clearTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:807042\",[\"setTimeoutComet\"],{\"__rc\":[\"setTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:896461\",[\"setIntervalComet\"],{\"__rc\":[\"setIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:896462\",[\"setIntervalComet\"],{\"__rc\":[\"setIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:925100\",[\"RunComet\"],{\"__rc\":[\"RunComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:986633\",[\"setTimeoutComet\"],{\"__rc\":[\"setTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1003267\",[\"clearIntervalComet\"],{\"__rc\":[\"clearIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1106516\",[],{\"__rc\":[null,\"Aa3MWODbyvJa4u3k2Gh8lSS8VGkR-LncsM4VHoK7sjZkWHhndQFAXqXP4x5ZlSIpwjDrkb4dlNKjgQVh\"]},-1],[\"cr:1108857\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1294158\",[\"React.classic\"],{\"__rc\":[\"React.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:1294159\",[\"ReactDOM.classic\"],{\"__rc\":[\"ReactDOM.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:1540330\",[],{\"__rc\":[null,\"Aa1CpVBOV_pwu-siLYxJWqgUZYvJWF0xHgg-Y4VM1o_-OpuDyNslGGXQus0RWIdtoJBlCMRYMnpNDrnyeLdZvBMi6yEQI6aXDdNJRcS56C-v_BD34w\"]},-1],[\"cr:1703077\",[],{\"__rc\":[null,\"Aa0Q9mpUh7pSI1ToNasW57H1f-6eyNCsSc8bI6Ltn8Pl03KjSVIUSV0yG8mNo1hekp8qgBqq5Vv69Sr_WfbhOB40f0T7bg\"]},-1],[\"cr:1791501\",[\"CometVCTracker\"],{\"__rc\":[\"CometVCTracker\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:1984081\",[],{\"__rc\":[null,\"Aa0nfXSdRKA1Lw8LFR1ydKwppCyrWV00JKiMr8-FVt7RV7UvNc1Je3XMDvKyz2iqRPzs67wPO0XQz3Ar8crTnIWBVVC3\"]},-1],[\"cr:2010754\",[],{\"__rc\":[null,\"Aa3mcjBCcd2-jda3b5ouk9HCulxpqD5Va7A1cLRKvWu_ybo3PwHDbV1KszNbCIxVVw2IcBG0HvQLQgpoNHf5ZsXhMMcafCc\"]},-1],[\"cr:284\",[],{\"__rc\":[null,\"Aa0Ev_RTgTTpIJoFZ7hgU9bTKfiDy1L1BlFV4dk4UyT5XcO81mGJCzP9f-f3FGkuIlJy2JKOalQiw-jyKHD8\"]},-1],[\"cr:796\",[],{\"__rc\":[null,null]},-1],[\"cr:976\",[],{\"__rc\":[null,\"Aa2ks6Uz-1dG5fPwh-UwqiVQD-k8Xk-qpCU1ZtGN77z1wpvvh6yHpJoaSHhqXp8EPleGpkVyMmZzjerlkv9D\"]},-1],[\"cr:2222\",[\"PolarisShell_DEPRECATED.react\"],{\"__rc\":[\"PolarisShell_DEPRECATED.react\",null]},-1],[\"cr:4150\",[\"PolarisLoggedOutLoginModal.react\"],{\"__rc\":[\"PolarisLoggedOutLoginModal.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:4319\",[\"PolarisODSImpl\"],{\"__rc\":[\"PolarisODSImpl\",\"Aa1viVXPp4vDuUp3tU57a2MYXUQEcA2_6IWEB3nJEl8UT-xow3pfTqUqjToFOuharT1h1jEnAgwy_mZLZFapX-2o\"]},-1],[\"cr:4865\",[\"ReactDOMLegacy_DEPRECATED\"],{\"__rc\":[\"ReactDOMLegacy_DEPRECATED\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:5041\",[],{\"__rc\":[null,\"Aa0Ev_RTgTTpIJoFZ7hgU9bTKfiDy1L1BlFV4dk4UyT5XcO81mGJCzP9f-f3FGkuIlJy2JKOalQiw-jyKHD8\"]},-1],[\"cr:11054\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:694370\",[\"requestIdleCallbackComet\"],{\"__rc\":[\"requestIdleCallbackComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1064332\",[],{\"__rc\":[null,\"Aa0DGI75E0Ljo7UR1IiyYQ0A9i0EqqbQdFEeIvDUSZW0ovF4RJlY1Uuh0RmbCCBZW-JZDP_bOlUbJ0w\"]},-1],[\"cr:1183579\",[\"InlineFbtResultImplComet\"],{\"__rc\":[\"InlineFbtResultImplComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1522191\",[\"CometLinkTrackingUtils.facebook\"],{\"__rc\":[\"CometLinkTrackingUtils.facebook\",\"Aa24BQXusyzP_yTXysD1z2jmFAvRCPlEmUcsGyZPaQJPkzHyigzZdpFgUsgrnQkFeMmKS2FVw0hQ2mXazthM0bjVKYDRbpOX9BdTgQ\"]},-1],[\"cr:1645510\",[],{\"__rc\":[null,\"Aa2VOpiS_cUMHKKNynVxLs1eEUb32pfblwWofxXBBluM6Z-iXcAULI4grzRRvvCSBbvUa9nuGCmkdlEu6CSGnPBwjjIYIw\"]},-1],[\"cr:1651548\",[\"useCometPreloaderImpl\"],{\"__rc\":[\"useCometPreloaderImpl\",\"Aa0iJX1pBKO51gws8skKZ7mswIl6Fa1cfwr6NDvqIfccXr5N-HXt-w3VZe4RF_mCmsCEOpBCnwKN-g3DAXIVFb7A5QtMwWgwSHA\"]},-1],[\"cr:53\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:522\",[],{\"__rc\":[null,\"Aa2d5UKzHe5rnNOkBoXOU8CEM0MQSOl4v6P0TdDF51K1ybGznV3nuyzvNpIqhHcVLudEjGl0doB3lNTNcljAjHD33jIBI3av\"]},-1],[\"cr:1501\",[],{\"__rc\":[null,\"Aa3XXGhrd-C6deYZ7JnDJQrPJSL2lvxSFxTOhRH9nxXsltyg4SiAvcC3lieRCeCHq0J_iqb2FG-dsUMS1FEnHVGS40rg6xktAU3dtKI\"]},-1],[\"cr:2310\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:2682\",[\"warningComet\"],{\"__rc\":[\"warningComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:3832\",[],{\"__rc\":[null,null]},-1],[\"cr:11202\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:708886\",[\"EventProfilerSham\"],{\"__rc\":[\"EventProfilerSham\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:994756\",[\"BaseCometModal.react\"],{\"__rc\":[\"BaseCometModal.react\",\"Aa3poS25lpv3RODSOJWEiKfKZb6miMkjAlUvL6ee4eTfO1JkCtNTklc2NQ8eWcPDvn1HIemKIkvEcgNvCfM\"]},-1],[\"cr:1105154\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1642797\",[\"BanzaiComet\"],{\"__rc\":[\"BanzaiComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1752405\",[\"QPLAddCometRequestHeaders\"],{\"__rc\":[\"QPLAddCometRequestHeaders\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1824473\",[],{\"__rc\":[null,\"Aa3lJKrPqcb5Eqf4hJuE1IPeCgmmHY_ggD9fAkWCAtFopjve3unK3-PpPcp3cn856quxVBuWcus7eB0riI4KmXyJ\"]},-1],[\"cr:267\",[],{\"__rc\":[null,\"Aa02hnWmjabdtHz__saAIAsErRXZWmMitOk-tCLNJj4rmvnV2ueaDKCAJ1MsFIGYndoLRNOZPwEGi9sQD3EzgJwBr8et52eqhRUVbg\"]},-1],[\"cr:641\",[\"handleCometErrorCodeSideEffects\"],{\"__rc\":[\"handleCometErrorCodeSideEffects\",\"Aa2Uu3Pnz1UYCJAs-aEOROujgd_OFC2hQLigUmdMs3QivxZvuDlIhfoycIf7UoYOjwaNWeG2Bg1hcvbB93FQNZswZxw2rRovefWTdAsX\"]},-1],[\"cr:851\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:866\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:945\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:1024\",[],{\"__rc\":[null,\"Aa1lhJ_BdlyxXC17HOX8sbCo4oqcSxLt4JxWJiPo075VDil_g2MTa_cdCVX_peIXwvsKOUjf3hGW6gqsBMGmpX0c0waetvF0YDrKswwya_WZRd3DyBppsYraH2dA\"]},-1],[\"cr:1196\",[\"handleCometReauthenticationSideEffects\"],{\"__rc\":[\"handleCometReauthenticationSideEffects\",\"Aa2Uu3Pnz1UYCJAs-aEOROujgd_OFC2hQLigUmdMs3QivxZvuDlIhfoycIf7UoYOjwaNWeG2Bg1hcvbB93FQNZswZxw2rRovefWTdAsX\"]},-1],[\"cr:1330\",[],{\"__rc\":[null,\"Aa1462W8X0UEsVWy_yPsqhw6HrxUwNvpnUw5MjalHslfw4BPTAduZ5nq1-iRX2nGBmff4HyYmQr7oGD-rcXyUBdcYZ4Cs1AMh9QPcMBaVdeshlqt_8dS0nvsLAWFxCIZxA\"]},-1],[\"cr:1565\",[],{\"__rc\":[null,\"Aa2ks6Uz-1dG5fPwh-UwqiVQD-k8Xk-qpCU1ZtGN77z1wpvvh6yHpJoaSHhqXp8EPleGpkVyMmZzjerlkv9D\"]},-1],[\"cr:1588\",[],{\"__rc\":[null,\"Aa1vU7KrtVlIX8KOUnzdT__TgraFdwNOZGNleCowpwe_7pakAeZmL-wMF3HbZcpOajNO7RtuP2aFxeXlXP1lqrOwSMQ\"]},-1],[\"cr:2011\",[\"cometFaceliftFonts\"],{\"__rc\":[\"cometFaceliftFonts\",\"Aa1vH3onGvF3Z46KNbEEhkuZ6hESUpQeDYzq0p-oLGEgjXbdHGn5rd7UGYq7eyLsm2271RnuZ9XgVZLTsA9eKVyMAdsWJE8\"]},-1],[\"cr:2099\",[],{\"__rc\":[null,\"Aa0ArHmKiGWF3H3C1X_dL5X_SIBGCQy27tsfZ0GwwVkD5ID6VZOT28Kg2DZtrriyI8BWyc6abL4fM176C8jbmp63SGZ9uXapK7zCLbcG7jaDQyJd19LwmcfA\"]},-1],[\"cr:2293\",[\"BasePopoverSVGArrowContainer.react\"],{\"__rc\":[\"BasePopoverSVGArrowContainer.react\",\"Aa0PtwYd9C-4GHnrumlskrzkMsYTgvISvrBFXwhoRE-qc2RbRfpD9KxuITi1APYIn2nIKv2aak0U_zID89_zcj3DYQsa0rLj-jc\"]},-1],[\"cr:2654\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:2928\",[\"relay-runtime\"],{\"__rc\":[\"relay-runtime\",\"Aa2WR0AH8YcazFB2BOuBgV2sAYtLfddIpxjb4vlqE2aJyJwHF8uxcnu-6Jlhp4bpOfNqCR_rGSzuWNA79OEkP-_VJuyTqNH14hx9XA\"]},-1],[\"cr:3917\",[],{\"__rc\":[null,\"Aa3lWBdi6aMCbErYNdU7xTDm7QjHe0tsVJT2tNKW_wnoGEyMg3k4Tr7V1NoeymorBD76DseOC-hV5F23elzDhqtNO94bpq6PF78\"]},-1],[\"cr:3919\",[],{\"__rc\":[null,\"Aa3xzwgVIBvOeyK6JrZ_mng_NoxHRaLvTawmrMfP8gAz2SvFoMwMgsAQ2BVeMHMijKybyhvxr2PhIyrRSJiT5iuN5E4_\"]},-1],[\"cr:4166\",[],{\"__rc\":[null,null]},-1],[\"cr:4345\",[],{\"__rc\":[null,\"Aa16-524lUKaDhZGMZZ9X5dj3pj7aLRO2K9wU0vFwt4oOej_RizfM8jkts-SzDM-40n1kioo7lhLt9flIvcpKO-TFk82krr4gVo\"]},-1],[\"cr:4506\",[\"PolarisKeyCommandNub.react\"],{\"__rc\":[\"PolarisKeyCommandNub.react\",\"Aa0mUSouYPm8JPajvl69POo_NvEFIPgqGf6lVoBUIo4VtRb7Fjbx7XOvSt2el0cfDQ7AIapX_kWEfSqeCte1MH5OmmmS8tdVjejHR8SU\"]},-1],[\"cr:4785\",[],{\"__rc\":[null,\"Aa1KB9QozIreyevKrXclhkhtk4b-7CsAJFiu197Tga3ROxnOqpkNsDBmjrurswTi3l0cMN5Fg4bt9Ud0Tc4BChnRRhw_M_h7IZ63FcsQ\"]},-1],[\"cr:4816\",[],{\"__rc\":[null,\"Aa1NSPcJR50h706LaSw21xvQ2DS1_o91eD9flxaOHX_tvu7FtkYitCcQc41ZJ3RFPwKmtCVn-hLX1CXJhEXg-G41cj-RWUDvKYtI6Q\"]},-1],[\"cr:4878\",[],{\"__rc\":[null,\"Aa0EwxBT46R5ahO4cihbyPNMIOaBB1nKM8z2BHt2eeqn6QC789ShdJ6EYZRgxEEMtIphKIoOIvdSUEQrAq8\"]},-1],[\"cr:5022\",[\"oz-player\\/strategies\\/bandwidth_estimators\\/OzBandwidthEstimatorDefault\"],{\"__rc\":[\"oz-player\\/strategies\\/bandwidth_estimators\\/OzBandwidthEstimatorDefault\",null]},-1],[\"cr:5128\",[],{\"__rc\":[null,\"Aa1ug4sam9Hpu2WOYjMNG8RVWsEyWRywQJHXrdTvpi15GzGCtMnyCdQrTt9OnK0uMJ9o4thPVpKSJ7nzhBmh4P4ScFBF3ap4\"]},-1],[\"cr:5286\",[],{\"__rc\":[null,\"Aa040wFB9zQ7zB8qwjU0iqM0dKqCe5VHJtMgtLjE-ECYVZpGvLhCStKM1SkGQJsviJvYcnf71CsfM0RwmSIpazBN\"]},-1],[\"cr:9876\",[],{\"__rc\":[null,\"Aa2cQMYdCBe7x2xihV23FSvgC44Spc_jsIiiI4X_fs7Vbgl6wSfhe1xNwTC4gqI4NSQZL24vGI1p3gTHndk\"]},-1],[\"cr:10569\",[],{\"__rc\":[null,\"Aa3MWY8PLH_f9a7YR4j-gb451CF1yyuXWN5Gr_B2AnidXXkYCNGnVBV1Su2N634BL3ZX0eHvztaI6iREvrtjJ3HIzHI-pw\"]},-1],[\"cr:10726\",[],{\"__rc\":[null,\"Aa2O9ll8hESOdGrLMLk1R_D2jsGD1pBTau5NQ1IMxwxrEJgP1wrnkphBIf9KP4KCjhrIeI4FHU5s97QrzZDdsL0\"]},-1],[\"cr:11053\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:11192\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:12338\",[\"CometErrorRoot.react\"],{\"__rc\":[\"CometErrorRoot.react\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:840411\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:844180\",[\"TimeSpentImmediateActiveSecondsLoggerComet\"],{\"__rc\":[\"TimeSpentImmediateActiveSecondsLoggerComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:869493\",[],{\"__rc\":[null,\"Aa1cqUullmgM-_zx4zgAJA8jM0OZxvk96e5EJESSpJat3F2uOKvIco5LbdD5O2pmPwkOmfiPumYr\"]},-1],[\"cr:992073\",[],{\"__rc\":[null,\"Aa0JZ6LgSPAOhuqMmgnb2rBIm8CcWqL500qzyZoLBNRibu6GIrpJT_7FOImizcTA2ZpnA-h0OZB-t1T4-h8WLIe9Riw5k8de\"]},-1],[\"cr:1011783\",[\"CometHeroInteractionImpl.react\"],{\"__rc\":[\"CometHeroInteractionImpl.react\",\"Aa2O8k93D8F04xe0_2qqjaJlEdh5PViAR6CaGbvtYr4uxM9rbLXwFU5RDEj0LVMplNedanmrs_7GDPM\"]},-1],[\"cr:1069930\",[\"cometAsyncFetch\"],{\"__rc\":[\"cometAsyncFetch\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1083116\",[],{\"__rc\":[null,\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1083117\",[\"recoverableViolation\"],{\"__rc\":[\"recoverableViolation\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1110430\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1119068\",[],{\"__rc\":[null,\"Aa2p-Qbg9qIJNpmXkjpAVlkMMjj0Uue3YVXhSo4hlaVMGvYBLqRVIQj4a_vkk__G8mQO_1cpfzNZpJAFX4mzzM5NNQ\"]},-1],[\"cr:1121434\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1132918\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1267207\",[],{\"__rc\":[null,\"Aa1jjKhyl_eAoaC5Vqy_hFTo_PhcAqHO9JC_f0fRlNms3Ktw2GJJhXr_55xfARHsbSmq7HYTTSvGCco9bWUHXCQ\"]},-1],[\"cr:1342471\",[\"ReactFlightDOMRelayClient-prod.modern\"],{\"__rc\":[\"ReactFlightDOMRelayClient-prod.modern\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1445039\",[],{\"__rc\":[null,\"Aa2A_w1_4o6HNY2bTqMTkhqJqzPvkNrLadfdLLbdZ8Dhdvq97NqrhZifBtv9cPycDTRky_GujweB0lJg6F7egxSSdf4FHVEPGqyf-NM\"]},-1],[\"cr:1465733\",[\"emptyFunction\"],{\"__rc\":[\"emptyFunction\",\"Aa23EMHfuJ4cslAjjNglxZz2NllJ83ahuPidNQTJ7Fa4v7xBq_v1z52F4C3usquBYDPqC25ysagLqMXtaRZlFErcKQ0Qrg\"]},-1],[\"cr:1467370\",[\"CometRelayScheduler\"],{\"__rc\":[\"CometRelayScheduler\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1791018\",[\"CometInteractionVC\"],{\"__rc\":[\"CometInteractionVC\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:1813330\",[],{\"__rc\":[null,\"Aa0SzTDkkMQ1TmI8skbuvgzJqMuJPCtPpjYxDL3Nm3OrmuFHXMuqtxyOLOdATyiHJ7KET2RtQDBNpilTmz58iYeQ0PU\"]},-1],[\"cr:1829844\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:1941981\",[],{\"__rc\":[null,null]},-1],[\"cr:1941982\",[],{\"__rc\":[null,null]},-1],[\"cr:1969469\",[],{\"__rc\":[null,null]},-1],[\"cr:1987488\",[\"DGWRequestStreamDeferredClient\"],{\"__rc\":[\"DGWRequestStreamDeferredClient\",\"Aa0F96noFnBAwKfE4Zc9McwdXTOFP6Di2RW26zAUL6Rmj6jgHkN5WAom_0FGxYdzEOW5YExQ_97DF0Y4OvoyzA\"]},-1],[\"cr:1999269\",[],{\"__rc\":[null,\"Aa38G6ZxfF10sePePrsoUFAamCnTBEduaflNp3PvRwQ3NO-bheuMPNIR_C-34flr7kHar_CuXIH6UboOGHDcg9G3R7mCbN9C5ojRLQMnfEPf-Dcd8-auTJ0z0g\"]},-1],[\"cr:2306\",[\"NullState404FailedLoadingFB\"],{\"__rc\":[\"NullState404FailedLoadingFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"cr:3211\",[\"NullStateGeneralFB\"],{\"__rc\":[\"NullStateGeneralFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"cr:3587\",[\"NullStatePermissionsFB\"],{\"__rc\":[\"NullStatePermissionsFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"WebLoomConfig\",[],{\"adaptive_config\":{\"interactions\":{\"modules\":{\"8448\":1},\"events\":{\"553648129.polaris.DirectInboxPage\":46.2,\"553648129.polaris.OneTapUpsellPage\":38,\"553648129.polaris.StoriesPage\":9.4,\"553648129.polaris.exploreLandingPage\":6.6,\"553648129.polaris.fbSignupPage\":2.5,\"553648129.polaris.feedPage\":270.9,\"553648129.polaris.httpErrorPage\":30.1,\"553648129.polaris.loginPage\":51.6,\"553648129.polaris.postPage\":197.6,\"553648129.polaris.profilePage\":204.3,\"553648129.polaris.resetPassword\":5.2,\"553648129.polaris.unifiedHome\":82.7,\"553648130.polaris.ActivityFeedPage\":13.7,\"553648130.polaris.DirectInboxPage\":341.5,\"553648130.polaris.SavedCollectionPage\":6.5,\"553648130.polaris.StoriesPage\":81.8,\"553648130.polaris.editProfile\":2.6,\"553648130.polaris.exploreLandingPage\":86.5,\"553648130.polaris.feedPage\":158.3,\"553648130.polaris.followList\":10,\"553648130.polaris.loginPage\":3.1,\"553648130.polaris.mobileAllCommentsPage\":9.5,\"553648130.polaris.multiStepSignupPage\":4.2,\"553648130.polaris.postPage\":102.5,\"553648130.polaris.profilePage\":350.2,\"553648130.polaris.reelsTab\":5.3,\"553648130.polaris.resetPassword\":2.2,\"553648130.polaris.tagPage\":7,\"553648130.polaris.unifiedHome\":1.5}},\"qpl\":{\"modules\":{},\"events\":{}},\"modules\":null,\"events\":null}},4171],[\"BanzaiConfig\",[],{\"MAX_SIZE\":10000,\"MAX_WAIT\":150000,\"MIN_WAIT\":null,\"RESTORE_WAIT\":150000,\"blacklist\":[\"time_spent\"],\"disabled\":false,\"gks\":{\"boosted_pagelikes\":true,\"mercury_send_error_logging\":true,\"platform_oauth_client_events\":true,\"graphexplorer\":true,\"sticker_search_ranking\":true},\"known_routes\":[\"artillery_javascript_actions\",\"artillery_javascript_trace\",\"artillery_logger_data\",\"logger\",\"falco\",\"gk2_exposure\",\"js_error_logging\",\"loom_trace\",\"marauder\",\"perfx_custom_logger_endpoint\",\"qex\",\"require_cond_exposure_logging\"],\"should_drop_unknown_routes\":true,\"should_log_unknown_routes\":false},7],[\"cr:955714\",[],{\"__rc\":[null,\"Aa1GkJfS5BrKPBLwmAL9AioLKfMm61nb1s-4ewW63-EShDYqMPSoHUqhZmY2H2Id9iLlrre-NpVv9p3_KXDM\"]},-1],[\"cr:1094133\",[],{\"__rc\":[null,\"Aa0Y_belJkc-QRnbdoKiWAXkEz38xtqS4GdXkHCeoCKU4h7ovwPH_IGgo71PkRBji_xkUKC2ExmmWz64X2ktUzOtImQ\"]},-1],[\"cr:1808490\",[],{\"__rc\":[null,\"Aa0EaViHuaqck5VGFhqVDaUy8ihq7oMUNKZ2sb5aQS4wQT2W4GoYZi5yGl2wTb6Ph06ZuriWRLqBuaXDXkpJiH-PCpukPfI\"]},-1],[\"cr:1292365\",[\"React-prod.classic\"],{\"__rc\":[\"React-prod.classic\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:5277\",[\"ReactDOM.classic.prod-or-profiling\"],{\"__rc\":[\"ReactDOM.classic.prod-or-profiling\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:662\",[\"PolarisBrowserCookieConsentModal.react\"],{\"__rc\":[\"PolarisBrowserCookieConsentModal.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:777\",[],{\"__rc\":[null,\"Aa00g8cnT4aDvWivoTqTgbuOou1uPDUX7d6UceNucaKEbwYUpd-8MWiS96qiELbT7mbv-Hgd-RrGM2syCPAXlfmaYY_ln4RM-2iJOzk\"]},-1],[\"cr:3474\",[],{\"__rc\":[null,null]},-1],[\"cr:4472\",[\"PolarisLoggedOutIntentDialog.react\"],{\"__rc\":[\"PolarisLoggedOutIntentDialog.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:4791\",[\"PolarisDesktopNav.react\"],{\"__rc\":[\"PolarisDesktopNav.react\",\"Aa0mUSouYPm8JPajvl69POo_NvEFIPgqGf6lVoBUIo4VtRb7Fjbx7XOvSt2el0cfDQ7AIapX_kWEfSqeCte1MH5OmmmS8tdVjejHR8SU\"]},-1],[\"cr:4792\",[],{\"__rc\":[null,\"Aa111sU_vGdVVZvqc22PVD4fjyOpGtvYGiwZarKzIiFBobLY-vNC9pxQhjDKHR6tCMgch5YfEW9Tfh3h6KQwmGjk7H5u_aVKQT6iulQ\"]},-1],[\"cr:1294246\",[\"ReactDOM.classic\"],{\"__rc\":[\"ReactDOM.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:983844\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072546\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072547\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072549\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:692209\",[\"cancelIdleCallbackComet\"],{\"__rc\":[\"cancelIdleCallbackComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1268629\",[\"setTimeoutCometLoggingPri\"],{\"__rc\":[\"setTimeoutCometLoggingPri\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1268630\",[\"setTimeoutCometSpeculative\"],{\"__rc\":[\"setTimeoutCometSpeculative\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:4840\",[],{\"__rc\":[null,\"Aa1IHwbw0qdyPqrdijdWiUNgC295Q58SdnPgmiBjCnsKEFkqxYBiZaO2s2zbYbl591sZYVKgJ6o5IVbIeT8-F8s0dOloqjY537xK477EdpEc1MLs\"]},-1],[\"cr:956931\",[\"useCometPrerendererImpl\"],{\"__rc\":[\"useCometPrerendererImpl\",\"Aa0iJX1pBKO51gws8skKZ7mswIl6Fa1cfwr6NDvqIfccXr5N-HXt-w3VZe4RF_mCmsCEOpBCnwKN-g3DAXIVFb7A5QtMwWgwSHA\"]},-1],[\"cr:5278\",[\"ReactDOM-prod.classic\"],{\"__rc\":[\"ReactDOM-prod.classic\",\"Aa1VWwka1-TM7O1mdvM_kYUH24wchg4wCzvk4KGNQS5UpAIjihrfqyqwb9DPAMOqTyvdb78PH3T7B0PRNEwK9A5xtQmo93iJ0g\"]},-1],[\"cr:104\",[\"PolarisDirectBadgeIcon\"],{\"__rc\":[\"PolarisDirectBadgeIcon\",null]},-1],[\"cr:4477\",[\"PolarisDesktopNavLoggedOutContainer.react\"],{\"__rc\":[\"PolarisDesktopNavLoggedOutContainer.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:1353359\",[\"CometEventListener\"],{\"__rc\":[\"CometEventListener\",\"Aa17FqHYV3crsmjEXtd8DpJzj_aMa5saLAzyyO2iln15RAvsxcZRzf2e4Wr_lsR6AdgVcGHa4cdMza3qKnyIaUTH7jn5BH8T2A\"]},-1]],\"instances\":[[\"__inst_af5d41d9_0_0_Ua\",[\"XIGCometRoutedRootConfigBuilder\"],[{\"service_worker_uri\":\"\\/www-service-worker.js?s=push&__d=www\"}],1]],\"require\":[[\"PolarisErrorRoot.entrypoint\"],[\"PolarisErrorRoot.react\"],[\"CometPlatformRootClient\",\"init\",[\"__inst_af5d41d9_0_0_Ua\",\"RequireDeferredReference\"],[{\"__m\":\"__inst_af5d41d9_0_0_Ua\"},\"mount_0_0_AQ\",\"7191084768081846440\",{\"actorID\":\"0\",\"rootView\":{\"allResources\":[{\"__dr\":\"PolarisErrorRoot.entrypoint\"},{\"__dr\":\"PolarisErrorRoot.react\"}],\"resource\":{\"__dr\":\"PolarisErrorRoot.react\"},\"props\":{\"page_logging\":{\"name\":\"httpErrorPage\",\"params\":{}}},\"entryPoint\":{\"__dr\":\"PolarisErrorRoot.entrypoint\"}},\"tracePolicy\":\"polaris.httpErrorPage\",\"meta\":{\"title\":null,\"accessory\":null,\"favicon\":null},\"prefetchable\":true,\"hostableView\":{\"allResources\":[{\"__dr\":\"PolarisErrorRoot.entrypoint\"},{\"__dr\":\"PolarisErrorRoot.react\"}],\"resource\":{\"__dr\":\"PolarisErrorRoot.react\"},\"props\":{\"page_logging\":{\"name\":\"httpErrorPage\",\"params\":{}}},\"entryPoint\":{\"__dr\":\"PolarisErrorRoot.entrypoint\"}},\"url\":\"\\/codesupplyco_demo\\/\",\"params\":{},\"routePath\":null},null,null,{\"backgroundRoute\":null,\"timeSpentMetaData\":null}]],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"IGWebBloksApp\"]]],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"CometErrorRoot.react\",\"CometKeyCommandWrapperDialog.react\",\"CometModifiedKeyCommandWrapperDialog.react\"]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"PolarisErrorRoot.entrypoint\",\"PolarisErrorRoot.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"PolarisErrorRoot.entrypoint\",\"PolarisErrorRoot.react\"],\"css\"]]]});});});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierOneEnd\");</script>\n<script type=\"application/json\" data-content-len=\"83\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierOneEnd\"]]]}</script>\n\n<script>qpl_inl(\"7191084768081846440\",\"tierTwo\");</script>\n<script type=\"application/json\" data-content-len=\"80\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierTwo\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierTwo\",296);</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierTwo\",296]]]}</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3idBq4/yL/l/en_US/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3idBq4/yL/l/en_US/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e37RKYh\" async=\"1\" data-p=\":4\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e37RKYh&quot;]=1\" onerror=\"_btldr[&quot;e37RKYh&quot;]=1\" id=\"u_0_0_71\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yM/r/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yM/r/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e577y0g\" async=\"1\" data-p=\":6\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e577y0g&quot;]=1\" onerror=\"_btldr[&quot;e577y0g&quot;]=1\" id=\"u_0_1_xu\" nonce=\"7DXsYBtw\"></script>\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"clpData\":{\"1808128\":{\"r\":1,\"s\":1}},\"gkxData\":{\"4769\":{\"result\":false,\"hash\":\"AT4BMuDcCXv_oBypYnM\"},\"3538\":{\"result\":false,\"hash\":\"AT57TGJPNDIjCAO6AM0\"},\"952052\":{\"result\":false,\"hash\":\"AT7wsJl9q10w1hpgLlA\"},\"1611172\":{\"result\":false,\"hash\":\"AT6trgho2WMoFqOj3rI\"},\"4574\":{\"result\":false,\"hash\":\"AT55qFTN_fjShHbfEaU\"},\"1073500\":{\"result\":false,\"hash\":\"AT7aJmfnqWyioxOOi7c\"},\"1857581\":{\"result\":false,\"hash\":\"AT5yTxGMp6le0PAt0IY\"}},\"ixData\":{\"1876411\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/3mD7kKai_7W.gif\",\"width\":12,\"height\":12},\"1876412\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y1\\/r\\/mHADa0fT0mI.gif\",\"width\":16,\"height\":16},\"1876413\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/ZY0eC865SgX.gif\",\"width\":20,\"height\":20},\"1876414\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y8\\/r\\/M3mvaC7u8oH.gif\",\"width\":24,\"height\":24},\"1876415\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/hVe2HmwMRpE.gif\",\"width\":32,\"height\":32},\"1876416\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/yFaaylccZ5L.gif\",\"width\":48,\"height\":48},\"1876418\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/96GJYGbUDCJ.gif\",\"width\":72,\"height\":72},\"1876419\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/NiR8M1k4AVU.gif\",\"width\":12,\"height\":12},\"1876420\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/FNERtXIk9xp.gif\",\"width\":16,\"height\":16},\"1876421\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/l2FWxc8ihQj.gif\",\"width\":20,\"height\":20},\"1876422\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/r\\/Io_N1z4MXYh.gif\",\"width\":24,\"height\":24},\"1876423\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yD\\/r\\/-1hifBvDgEQ.gif\",\"width\":32,\"height\":32},\"1876424\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/RcIiVWWukEr.gif\",\"width\":48,\"height\":48},\"1876426\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/9ISCYYcy94m.gif\",\"width\":72,\"height\":72},\"1876427\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/MStXnCtsaSe.gif\",\"width\":12,\"height\":12},\"1876428\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/dw2egiKdoVV.gif\",\"width\":16,\"height\":16},\"1876429\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yA\\/r\\/1DbfjOftY0d.gif\",\"width\":20,\"height\":20},\"1876430\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/r\\/2uPGz8a6lb6.gif\",\"width\":24,\"height\":24},\"1876431\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/60r9oPEvxiL.gif\",\"width\":32,\"height\":32},\"1876432\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/NlAFhiEx3a1.gif\",\"width\":48,\"height\":48},\"1876434\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yx\\/r\\/uzrQzxgD_Bg.gif\",\"width\":72,\"height\":72},\"1876435\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/TtXj9IXnkoK.gif\",\"width\":12,\"height\":12},\"1876436\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yy\\/r\\/HNs8yq0QiXE.gif\",\"width\":16,\"height\":16},\"1876437\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yT\\/r\\/ay_drQe6StD.gif\",\"width\":20,\"height\":20},\"1876438\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y4\\/r\\/iACDMhAROS_.gif\",\"width\":24,\"height\":24},\"1876439\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yy\\/r\\/WEhNL1y2zoZ.gif\",\"width\":32,\"height\":32},\"1876440\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/mAeZkO4yhqj.gif\",\"width\":48,\"height\":48},\"1876442\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/79uB7ciX8vY.gif\",\"width\":72,\"height\":72},\"1876443\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/dzn6it4Fw3p.gif\",\"width\":12,\"height\":12},\"1876444\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/wqjQpFb4tea.gif\",\"width\":16,\"height\":16},\"1876445\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/yy3mR2PXKrn.gif\",\"width\":20,\"height\":20},\"1876446\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/gTdm7zPKz-c.gif\",\"width\":24,\"height\":24},\"1876447\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/kdaft251gQ_.gif\",\"width\":32,\"height\":32},\"1876448\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/6-FTd4KBtOk.gif\",\"width\":48,\"height\":48},\"1876450\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yq\\/r\\/Tks_lRPtYc-.gif\",\"width\":72,\"height\":72},\"1876451\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/Bys0xcVibDa.gif\",\"width\":12,\"height\":12},\"1876452\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/Wk0dcHGH6EG.gif\",\"width\":16,\"height\":16},\"1876453\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/aOTs7vt2hEc.gif\",\"width\":20,\"height\":20},\"1876454\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yh\\/r\\/wVjfNbGZ3CH.gif\",\"width\":24,\"height\":24},\"1876455\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/oT6wM_vuQNQ.gif\",\"width\":32,\"height\":32},\"1876456\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/r\\/ac61i44rSWK.gif\",\"width\":48,\"height\":48},\"1876458\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/ZH27Vvjc9-u.gif\",\"width\":72,\"height\":72},\"1940508\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y3\\/r\\/ycQ2OPoZwUA.gif\",\"width\":64,\"height\":64},\"1940509\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/8kyIVWHZW-b.gif\",\"width\":64,\"height\":64},\"1940510\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/8gPN8wBD9yB.gif\",\"width\":64,\"height\":64},\"1940511\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/WtK_u51t3nM.gif\",\"width\":64,\"height\":64},\"1940512\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yj\\/r\\/JYwEre3ewp7.gif\",\"width\":64,\"height\":64},\"1940513\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/M2HDLLPAUWl.gif\",\"width\":64,\"height\":64},\"166735\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":16,\"h\":16,\"p\":\"0 -200px\",\"sz\":\"auto\"},\"184566\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -100px\",\"sz\":\"auto\"},\"1296473\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -25px\",\"sz\":\"auto\"},\"1346159\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -50px\",\"sz\":\"auto\"},\"1350889\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 0\",\"sz\":\"auto\"},\"1356754\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -75px\",\"sz\":\"auto\"},\"1361369\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -175px\",\"sz\":\"auto\"},\"1362297\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":16,\"h\":16,\"p\":\"0 -217px\",\"sz\":\"auto\"},\"1729923\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -125px\",\"sz\":\"auto\"},\"1795210\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -150px\",\"sz\":\"auto\"}},\"qplData\":{\"425\":{\"r\":1},\"426\":{\"r\":1}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"qpyrtMy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/r\\/iWjgLm3q1pYuS51swCRoFxKjo7wuH4tyUCgLMVNa_87hY4mW9AWSDwbkt5ZNqTBDYYCDMa1vyJXChx3OE-zbF510sKgAeHYIRShVtkcaz3UJLQCIK2Sff-gydiSFwJRR0aL3kLkiQ872P4HIf9l82a5I5HJnyNgU8sXz07m2lVw7eP9aGNcp6hty_i61mhfKb6XuDThkNqzJL7r6uGWXsTy1cksqPsx5DFVh4UeFyEAw3H8nD0EYflvVWid0IdRzXksvPgEuFBlApFBaDIqf0JxitoWHDinHwx_gNvpKTSpONS-7vdnexeT8clYB2a8vIGvk_15Lm3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"tmOAXuP\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ii2C4\\/yN\\/l\\/en_US\\/xvU3j0h4k3izoB2OwJTIlrKfQfQfz74xU3YigL2IcjwrDPxSsU9kQctw0Bqm-rmcJX.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,616,444,5,312,242\",\"m\":\"1006847381_main\",\"nc\":1},\"AaClBt7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/Dh3_ZiNNl2lFAF-iZbNu-4AG8suGnLi_4quYEqzdK43o42J6zZkMjkme8Cggdg4F4Q4w4GvxU3-11dtXg5WetJUyX15GtjI7cf_TNDq_fqV_K8NWruXH68HXtT_fAdCctbd2gPwgr_h4GtCyYaQFAfXII5m3JIIKJijPHfcazt6TOOK9I74wA3FisAX9w-k7E0tmDkK5p5RUo_8OcdvWRDHs64txPmygUU0QBmxBQnKOp32M8MotHRo9ONLb9G3HvITCuvwy_KaZtaQSOJgLH_HLJPVBv6dry4KTbkrmk43tOyd2r6sDrFoBUR-ku6945XQOXF1Nep.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"qS64MW1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5s_4\\/yC\\/l\\/en_US\\/x75gkHcI0H8qClHE3ggsTYOgQZKqBcuUWabn8-gRWN5GrfOrQmbHYEfNwbs23K9rcFY_Y9O409faUWeCOs2s5bD3tSLpUIDNQgnUVyILCpHF4l7HH-7sBTDN8YWDsVhU-nV1eOQwobyVrtvrCSAsgw1ETddc6P3uZ_OxQQX_G8INiUAxXTOFe844pcLEFG9URf2UNtSzlToPztkVNCwH1VviYmwcJbgrpQNFWhqMmRKs0GJ-S2F-5djCiZASDsc9dhNbJ4UF1vh6Zb_kR4tBXNa0gJ0GR3vYkjxO5mvIuMvUc43groPfU7DkxXrp675J2Jlp2aAem3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":212,353,632,0,298,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"UVEzwS2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0a.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388\",\"nc\":1},\"m6VVYrH\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yF\\/r\\/w0HcDFoIhg9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":21\",\"m\":\"1006847381_main\",\"nc\":1},\"GltrS7H\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUXn4\\/yu\\/l\\/en_US\\/DitlTwroUi6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23\",\"m\":\"1006847381_main\",\"nc\":1},\"6oh\\/uBh\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ibOQ4\\/ye\\/l\\/en_US\\/HEtIpHgdUd5.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":96\",\"m\":\"1006847381_main\",\"nc\":1},\"+L0X93S\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i8hs4\\/y3\\/l\\/en_US\\/i9nIgo3DWBW.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35450\",\"m\":\"1006847381_longtail\",\"nc\":1},\"MIwFPq4\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yX\\/r\\/CnnssOFlSrF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35447\",\"m\":\"1006847381_longtail\",\"nc\":1},\"kleA10d\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEsn4\\/yw\\/l\\/en_US\\/3YigL2Icjwr.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":5\",\"m\":\"1006847381_main\",\"nc\":1},\"hXjPl2V\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i46r4\\/y7\\/l\\/en_US\\/4DyzuxKfqiESrxCISTcUjcCnnssOFlSrF3NsR67xBXBm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":332,35449,35447,35440\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"iQc1shL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i4X-4\\/yH\\/l\\/en_US\\/m6OBZx8UTDj.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":118\",\"m\":\"1006847381_main\",\"nc\":1},\"hTAZzFI\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/FubvMLCRnWm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":100\",\"m\":\"1006847381_main\",\"nc\":1},\"Sboo2ZQ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yr\\/r\\/ef5d8wbITlx.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23917\",\"m\":\"1006847381_longtail\",\"nc\":1},\"pARoKZ4\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLK1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"OW1kw59\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/80BsmNKe4b8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":168\",\"m\":\"1006847381_main\",\"nc\":1},\"TJ2LIPj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yO\\/r\\/mLT6R-X0Ih2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ht8qD46\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/l\\/0,cross\\/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"nc\":1},\"3vB8LuQ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iBPb4\\/yW\\/l\\/en_US\\/iZQLDmBv2K-.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"A5prXCT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/KKZf8FX1sT4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"mlxztRz\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/HUxMHl9Lidg.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"iTm\\/k9J\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/2QF11C8Kc69.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"g4lhZxV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/0Q6fw1BN4dxYzZHJxI6mNmPmjybo1DR6m4nxjd8y7k_W5Xf4wooNJ38lStDEfqxUv3AFX6rgZMzFtmh4uWrjcXE9nU5m7BP8gNJ6ZofxF_zUUe_raXjgSDP_rP9kK5HtufSbhE241-ESLFCaASyJevaLbtkg1XYWYzRqD5TLPG-zZFryH-cTofARqjkagHlLO6wQOtGgxcq_gSZU8Bk8d32mrvXp0O9O2TEY7sZCemuu-ROBOjSywdZqsF5fdptkRuMzIdMIJgQ7Zf9KcJtVVUfbyNt52PRCodw5LPKbxSCReU8fm2krPG0HIuGAiHot4v1e_tTw5w.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"yWcJ8lq\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/1KiOU-7XoBtqVIV8ZpYpc0t8xvQZn2oY2Ic61TpIiCyqlni5-xjHWIm-71ZF2Ip2f4QD_uK79OEnYw-nvR8EUPoi6riciajppPHw4IiWnlLoEc9jwoksr6RzcCMaieNnXSbseiDBK-Vie1bK9pK6pn_KiOriQXCJovVG40ZkrZ39Nqw7hGZc8oWykeS-Ov7dBRCn_hq-OzZuxlinwlAOoUgg8dTx-fALeOzhhBcPFO3paBxCRzAAJKQyivZie0HWNuBUizwk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"sP1wABL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/9QAMoOHWPNV.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"l5HqvCB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/YT7n1sgH1lv.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":19\",\"m\":\"1006847381_main\",\"nc\":1},\"lwZReTr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/5Gtc5QsnfLa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":51\",\"m\":\"1006847381_main\",\"nc\":1},\"j5Ia\\/+m\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/KfQfQfz74xU.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":444\",\"m\":\"1006847381_main\",\"nc\":1},\"CxpEI\\/m\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/u7ilu_cVD4XIhUAaF02eRYe0zS91sDXbAUZPPOwV690IqKntHarRwTS4BdzqX1XVWV-8kvYIMlYKy1Qp21FpQF0KT0sqSRBHGz_LwT_S9iYXRldbL4y2Tyhf5KK0iB9z7GZkv2R2yk2WsTAw-XY5OcB9lFI53d8xCOiAWxhj_JTPipmx_CUMSZVXVvQcuO9hCXtYO_KWZVlgSqidtwlZlM6JrlPRZypUdyjskvMl6tsXMGY_vAw_2pO2nOuVb9JornMAZyIi0eKDK4Z-Vtq3x-hjtbDP9UPCJktzRkHP9tfMKEkkTAYOlXdG_M7GZzUWAHJFjnT2Iy.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8610,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"TWaSLum\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yq\\/r\\/hYTUgtoFzSn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":310\",\"m\":\"1006847381_main\",\"nc\":1},\"K2Zj+QB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/5sXiUdKSCUh.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"HnCMbju\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yv\\/r\\/RxXHlk7Vd6e.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"9KJrUco\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/MtTqd1FSM56.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"3gEWTNm\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/l\\/0,cross\\/o9GByEG16aT.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"nc\":1},\"GLsKCyO\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iqLF4\\/yv\\/l\\/en_US\\/kGABMab3gWl.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"nF8umvm\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/xapN3qcH79U.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"4SBVdv7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVio4\\/y2\\/l\\/en_US\\/DOun_kaVJlfQg9dZGuEzHE8oPWP2oCnuDAs_1p8rRBeAntC4AWWs1bEjD8xkthZ2_hj0FkT6Lxe2QPqRL8aiIprjcVKTOyyUnMg-XeLMmryu3vCXroHQGc7h7ocSzIxcI0Ha3k2rjCRetwpmn_h9BjGPC6MA4XwPI0UIzaRPXpYPMjuhPao0kBADf2H3yWSoedVKnIdfpIlwrqlNzUn7kVSGoM89YzkCHZTOTSvoqThs5_UY-muBKTHKIGscnSP-LysLb26Ko5xem5Mn6TxRn7iNhySEAs1ul3OTTX7aS__-4usbTK1uT8bMeO-b9qwusp1Co8L-qp.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,82,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"JbVkxQr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJ9m4\\/y9\\/l\\/en_US\\/1mfLQvApMw6BI9JbRBk3CQaorB95xIijnO9lwzzIN0sOhFEdrHpFVbBMv6VJRpCLfrBosryxGCiLxD8PmzG6pxMSQQ0fPVN_6xC5jVtOOpVRXq01iU__yMod6viC322-KoSMj6dzOhQIB3ypjN2mXJTfwKk_MdnVnhLTnFc6v8s0OAeXQcf7YeFIjkYErv_13rWADYdhOFqwQ8ygfaU2kTp6ghOY4rrBYjuiuwKNVaiqiN4gPfxPqh7us8KzchFxWZQ2w6-vkLkiQ872P4HwlzuXtB5cGzB9N6cChuSnaQIcv0fsOtqJqJcW8J7U1RVm4-h-SiH-NX.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"EyeE1V7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yv\\/r\\/k4xXknqMYN9ezD5BoTR-ersKF30l9L0dNULegSm4VYdAqCB-Bu9eoX0P9OKlRsD9mJaxsDDSHlf0bam6FnGA7Q2QGkfeBudHmLyj3wkQQc7S4_-6JNQukG-1OG8vFgzZXQJf41pJJl_0v-ZKi-Z-OmvcCfe9eqMEh0n6qg9XN4xVt_0NevXKZoF1gM7poP-zYF4v-zgkqDLAhVlb_a9Xulzr3mA62bteQPWp0XCsvkZWeA_IJy76tYDPimIe3JBC2tUpCbDdeTpfON0SZju_SVQW1558z_adgJH4VVTrZi6HhmF9jRambaCg_VU2kRyZR60nQjSvZm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"vvTbhsc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/iULO6s5_uLBcPMf180fLkhqEeIcLYEJ71iRytcqPIx_-AeRQPT3JtYCCZa8u9t513L98RFlQxjGq4C4n-qlYjxxbCwmBUHfircKM4PPazOh5HLHyuuvW08e0X9Q9mi_4If2Sq0OSEFv-gznCLKMvh0lD4geAZie4b2plnGo-cvXfgfpnxUYzhzRbQy7zvP1GT14JHc4e2oCTvQQGpd2jkC0WizqEspWvkSQzwNYYb8_7BvMiGLLtUV2KiLgORR4qw4RP-FSZyA7m0nmAyNtEwCI3PImQrIuWPzhShqiYNYEJmRq_25L4PO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"n3OReDX\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iumM4\\/yz\\/l\\/en_US\\/xvU3j0h4k3iMmM7kLQoKZH0hhzhyLC_yelsCor4e7MRSFubvMLCRnWm3YigL2IcjwrMtmXybLsMSqz2SHhyL5uF9PyHnyc07dpkLh8fzDnu3jqnZDfldGWMyOCNtzayu2o2socJJgo3RrqHlG54kCgnql96xhqpkGNnhzi9bqJHWK9oJp7uEHHMSyiK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,63,104,214,100,5,30,31,67,76,226,0,466,531,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"jkOHTTH\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/l\\/0,cross\\/WkL85HmibujL8shGqf9VoB6StuX6aUNbr7V-k9aTC8UHqyj1yeqdxHvfsLRpBUPyqi-g_gR8Im4iErBWBbRxhvYsK11Y0sl59zGlq9vwiiMIzjrlN-Nu99zMSCShcD46FIhrkah0thFhGH87R33bZ5kRtEsX2rnD8vFbx6PPmkrxPEXw_2zbBDxCXsI3nvNka5_GSp.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"bu6zhrA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3innW4\\/y0\\/l\\/en_US\\/DusWLsy96BYmhFdKvMAtz5jWrWYjexbiVoGVfiJd4vJgiOzplWNdfnNLRTNQOQnIe8NPYMVcUBqNqzmIh5eCDkGWi-MRFNzUtyi6UvBcxKvN4n0U2-YfCykCzwl6aXkTNmGoF_M9BsJc-I2sXKfp4tHOzWUDYYrKf7dHaRu7d5sf8dQhR5SpR_62N4gJnYMSxbGMa110RPGDF_pNn-h-Cg2YoQq3sTYsPEYcsqKWD7Z2q3uKhV6qjMRd2H4eYofzNT4XnUKFqySN3xK8b6UVzuX6iQ0mYdGV9AfQOki3l3EPUWTWkyJgVHAUxNWcFC27twgiU4u86u.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ev9AzR\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iQAO4\\/yj\\/l\\/en_US\\/unD3qKN_89BV1LxDhhidJTA79BMI_taI_bZHR53cpSW1Js5Fu-H7_5psGSJ8g3hWShgMgyduThzfXNPDJIIZxHGr9gyeinraNPrzYE14JGvqVYxfLlrGI6ueicki17AN05nrJz013qWXllQh40-vCFyk_RdOoX8MXEafMqjj3fQN3GE6jcs9sqSkRdaSP6zLWkdUIWSouIMKh-fH6SwJBFhQL244nV_3kn2JD9atiiq75TQraz0guCe4VSH5TiL_g2Nru2FaE5g3HsN8HkQbKF6sKYu4LzR46LYFYY7wIYndCk-YzFjygkTHs4GchPamnrGOtcF_VJ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"TSKmWI8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iT7_4\\/yv\\/l\\/en_US\\/c94KTcKyykXRbRbYA3HAZDWrt7XTEOP4W3qfkUAAtdc8uwcgQJZH5ymkBa-xiAND6sgOrGV6DgaDHJxJH06tPo1oxEd2wjQF24SmrrREqr2NepDdMUwdZttq7zGqkyUyyhyLMDPxWg7K5_HxINRE6rYcOQ7k8OdRPniU1dmaK_EegC5stlqsNPkgD8JHxc-kBx8KsCZK0FjW0tgRnHZwE5b9PBV813Evx73bw9OrbfclAHS0xaSYkFX96BNdkaZCUcO6MDDTr7DK_WpSZIM-Vh7eHvi9rK7spQHKeb-YVqevbKEyWVhXtVmd0XVqXWF4I2RgFTT69C.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ClW4KJN\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/l\\/0,cross\\/dHH1Qr5OohAShrLnCsHauEtrZAMGIi9pYyrM-Ax8lgZz13paIMTaUWbF0qdt1CKyfo6oMkPQ3oPZ7IsGQsfCTjaTwtvlxq_h7rkCBFbnTZJrRi8Ip29CQfHlzZclFoMK2l4H6q3MMBNjXC05KfHTf0DwPdcEOt42So4RYjTp-fi2XO0mm47yzior9wJmB-pP8I5TygOtE64UdcG9gBeqDiiqrTDQuA6JWQWGJcwu3rUa7y-BxovPctiscFHoaiWfTglXVTARFtPSiFza84Cr-cEckH1OTxIiKIo6GwAAZNZzG7mN50dnLePu6Cmx36klapfA6ImCYQ.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"jJljVye\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iHSO4\\/y-\\/l\\/en_US\\/OloNdVW5J56_-nHq21OpqAWyUucqz6mOjvqJSgOHjgUQJ4_bxxISS0mTNsx83vOeWWIERiLJzv5UbeU2KXUQEOtlY_Y9O409faUJP9VcmNzec3P7E_VOJ_iC-xcnLQPcLzjHWeCOs2s5bD3zdEciDMGH4oKu7ibYGSNuiUXwZ3rFFHFb7mZwNgBAbwHtSLpUIDNQgn-L5TePR4hQpvX_lDhr5MfkdMbaSlm6aiVUVyILCpHF4lCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc3tBB7awrNPa-X1TLdF9BpoFbUftdruRolDgvGMc2MIWGy7HH-7sBTDN8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"SLuMFyC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5Sp4\\/yP\\/l\\/en_US\\/frk5o133HYN9EFMjx6MT8eUEJpVyQqdGvY4mW9AWSDwbkt5ZNqTBDYYu_LZxx_DC_6CDMa1vyJXChJir3bSY_Ex8x3OE-zbF5101alrYtZnwpQa1QcHnOH1EwsKgAeHYIRShhWnrESIE2IAVtkcaz3UJLQJiC7v-Px9Kp_DSORESQquL8XSj4Sp3040n5WuCm_sBp6z_iOr22efHeCIK2Sff-gydiSFwJRR0aL3XrhG8ANfMlkClftP4j3wAA1y_8ZBWCTZi-iSnoOIYgX8jmT3oTs-nTqIf9l82a5I5HeOq33LIfj3JiKAgAeWzP0zJnyNgU8sXz0.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"3q99Ilj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5s04\\/yJ\\/l\\/en_US\\/H1itYEOEoLVYWDsVhU-nV1eOQwobyVrtvrCSAsgw1ETd49aX9NPfIAiaajPm99MQIWxBLV5miH5QGZljJSmHFgwZdc6P3uZ_OxQq-r_V4x6wC8hnvUZBbAIyTLTp3wDEC4ghWUvgyvOsyCpGSI4gJg5SEesWbc8WAAQ5ckTQHv60Pt0zQX_G8INiUAxfTRssVuQNNFxtnCz5M89kp98z1GnlBs6BbtKHy_VESiOry6X4cQysBxVB6mta42QXlXTOFe844pcLEFG9URf2UNtwJoJc-I4o35SzlToPztkVN0WKguSKnK_KXtSPhOYNlLxCwH1VviYmwc.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"uKsbV15\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVLf4\\/ya\\/l\\/en_US\\/DitlTwroUi6zoB2OwJTIlrKfQfQfz74xUw0HcDFoIhg9DPxSsU9kQctw0Bqm-rmcJXx75gkHcI0H8qClHE3ggsTYvB9taUdFJNHOgQZKqBcuUWUICWLNi60WDNOiwu8bOOqbhw35Zi01WAK_3_v6yOAVO3abn8-gRWN5GrfOrQmbHYEfEthKmVitIx3Nwbs23K9rcFhNBES6MjmQnClV5PQ6ftsNY5W9b_Y-dIhO36QDIrOK01reRzP7OJIzEW0Wc7PUxI9dzj3ndxRJdMB.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23,616,444,21,312,242,212,353,0,632,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"GirQBwl\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0a4ucdnAKp3hMLQEvrhlwNlFbXQBGUo5NgDjjbFSk9M1jf6w0lfCDjvzy1yp4PJV-Vz-bb-hwNGmfWOz6w-B6eMgH8BVo-YN2Xeh0nuCD99GG8yXQ6Jn31fd8BppOH2OrU8IaLfDjwySY1azPspnSw7Jc8DPKIst33dIS_h8DOXkSsgn_e6GK6KezKvs333bgIjXbYEClunE4cb6Hzpj2t0wq6ZgQJvZHU_BvXIWhL4OkfYnoLgttIs6yMTBtm71dkFFl7OfbngcqAbLcFaKb.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"F7Yyqnn\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3issY4\\/yr\\/l\\/en_US\\/asP4i4hSYRMzmg-O2XpObhYZU-eGYZjFI4UeMic4f7MstJC9tfu2dFG8fvT_C6-AK_HDyJ8RHd8VW7m2lVw7eP9aGNcp6hty_i6IU1tHFn46BQEBYhBGlsvGI1mhfKb6XuDT_9nMgdiPYBbAjDcdepN9q9hkNqzJL7r6uG83hsOsGxwW5BnQsPJo23wcV-UB4pz5E7Ck9PuTDtWr3GWXsTy1cksqyPiTi6WcXgCpKAOtJEXSAdOeco_GNmG-KPsx5DFVh4UeFyEAw3H8nD0WoGSsodkStYCPL4Zl90vXwEYflvVWid0IZteQi7ghzx1llwpOgkzBvQ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ECNt4aT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i9EG4\\/y7\\/l\\/en_US\\/dRzXksvPgEuxsgpGO5GUUHFBlApFBaDIqf0JxitoWHDinHwx_gNvpKTSpONS-7vdne0J0FBgPmHtGX7ncRyxILDCdvg2CafnFcbvIGvk_15Lm3xeT8clYB2a8TCHECZC83utQfysIxOmJin5m_ZnJebTW7aJPsGDe_g-DDh3_ZiNNl2lWY6-0XmluV_FAF-iZbNu-4XdNWgSoF8PPH2P4qLbOQGCAG8suGnLi_4DQZ_r4ee6EvquYEqzdK43o8GhgovABDR_4f4G610qAEETqu0qUQsk0b42J6zZkMjkme8Cggdg4F4QSYXWuz6SaCWGX8q6IpYhOk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"RtDBsbo\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/4w4GvxU3-11MSuXfyVwDCIdtXg5WetJUy9OePM1GuhzPX15GtjI7cf_VUpwARe85ptTNDq_fqV_K8b9qQYJk_fUyNWruXH68HXtT_fAdCctbd2yYaQFAfXII5gPwgr_h4GtCCXHTjxHInJhm3JIIKJijPHfcazt6TOOK9I74wA3FisAXolB-fIaIjdx9w-k7E0tmDkK5p5RUo_8OcdvWRDHs64txPmygUU0QBmxBQnKOp32M8MotHRo9ONLb9G3HvITCuvwy_KaZtaQSOJgdry4KTbkrmkLH_HLJPVBv643tOyd2r6sDrFoBUR-ku6945XQOXF1Nep.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"0o3vj9b\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ipTc4\\/yF\\/l\\/en_US\\/JbgrpQNFWhqMmRKs0GJ-S2F-5djCiZASDsc9dhNbJ4UF1vh6Zb_kR4tBXNa0gJ0GR3vYkjxO5mvIu-qkSyagmUcB4Trdh4-6cLc2EQSbzIh07mgZe4xXkmRWLUMixX4vLr0CMvUc43groPfKQMV3_upF5YVr8ZApMHDmEPwPTOt6AR6lTU7HQ9S1sdk6iQrIcWeFYnRvwbqOkULPjJ2Jlp2aAem3U7DkxXrp675yP_KGXKLvAwiWjgLm3q1pYowSkEET64PJuS51swCRoFxJHh55U9dNXhKjo7wuH4tyUCgLMVNa_87hcfsMwE5bAk8TIvzDks0PwI.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4kCFpD3\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iQAO4\\/yA\\/l\\/en_US\\/JBC2tUpCbDd_SVQW1558z_adgJH4VVTrZbaCg_VU2kRyunD3qKN_89BV1LxDhhidJTA79BMI_taI_Js5Fu-H7_5pbZHR53cpSW1sGSJ8g3hWShgMgyduThzfX9gyeinraNPrxfLlrGI6ueicki17AN05nrJz013qWXllQh40-vCFyk_RdOoX8MXEafMqjj3fQN3GE6jcs9sqSkRdaSP6zLWkdUIWSwJBFhQL244SouIMKh-fH6nV_3kn2JD9atiiq75TQraz0guCe4VSH5TE5g3HsN8HkQbKF6sKYu4LzR46LYFYY7wIYndCk-YzFjygkTHs4GchPa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"anb0L73\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yX\\/r\\/mnrGOtcF_VJiULO6s5_uLBcPMf180fLkhiRytcqPIx_-qEeIcLYEJ71CZa8u9t513LAeRQPT3JtYC98RFlQxjGq4C4n-qlYjxxbCwmBUHfircKHyuuvW08e0XM4PPazOh5HL9Q9mi_4If2Sq0OSEFv-gznCLKMvh0lD4gGo-cvXfgfpneAZie4b2plnxUYzhzRbQy7zvP1GT14JHc4e2oCTvQQGpd2jkC0WizqEspWvkSQzwNYYb8_7BvMiGLLtUV2KiLgORyA7m0nmAyNtR4qw4RP-FSZuWPzhShqiYNYEJmRq_25L4PO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"cBaTsIy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ik004\\/y3\\/l\\/en_US\\/xvU3j0h4k3iMmM7kLQoKZH0hhzhyLC_yelsCor4e7MRSFubvMLCRnWm3YigL2IcjwrMtmXybLsMSqPyHnyc07dpk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,63,104,214,100,5,30,67\",\"m\":\"1006847381_main\",\"nc\":1},\"93HC0Re\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3il_X4\\/yj\\/l\\/en_US\\/Lh8fzDnu3jqnZDfldGWMyOCNtzayu2o2socJJgo3RrqHlG54kCgnql96xhqpkGNnhzi9bqJHWK9oJp7uEHHMSyiKDOun_kaVJlfQg9dZGuEzHE8oPWP2oCnuDAs_1p8rRBeAntC4AWWs1bEjD8xkthZ2_hj0FkT6Lxe2QPqRL8aiIprj-XeLMmryu3vCXroHQGc7h7ocSzIxcI0Ha3k2rjCRetwpmn_h9BjGPC6MA4XwPI0UIzaRPXpYPMjuhPao0kBADf2H3yWSoedVKnIdfpIlwrqlNzUn7kVSGoM89YzkCHZTOTSvoqThs5_UY-muBKTHKIGscn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":76,226,0,466,531,0,0,0,0,82,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4g6DzU1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inZh4\\/yq\\/l\\/en_US\\/Rn7iNhySEAs1ul3OTTX7aS__-4usbTK1uT8bMeO-b9qwusp1Co8L-qpDusWLsy96BYmhFdKvMAtz5jWrWYjexbiVoGVfiJd4vJgiOzplWNdfnNLRTNQOQnIe8cO_Iuaw9QlNNPYMVcUBqNqi-MRFNzUtyizmIh5eCDkGWdsg2m3CI52gBteF1f538kE6UvBcxKvN4n0U2-YfCykCzwl6aXkTNmGoF_M9BsJc-I2sXKfp4tHOzW6gjdDn1D2JtRu7d5sf8dQhR5SpR_62N4gJnYMSxbGMa110RPGDF_pNn-h-Cg2YoQq3sTYsPEYcsqKWD7Z2q3uKhV.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"3UNYkPm\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3rT4\\/yX\\/l\\/en_US\\/6qjMRd2H4eYofzNT4XnUKFqySN3xK8b6UVzuX6iQ0mYd3EPUWTWkyJgGV9AfQOki3lVHAUxNWcFC2c94KTcKyykXRbRbYA3HAZDWrt7XTEOP4WU4N9OsG4Sb9vXRYSk9Aw703qfkUAAtdc8uwcgQJZH5ymkBa-xiAND6sgOrGV6DgaDHJxJH06tPo1oxEd2wjQF24SmrrREqr2NepDdMUwdZttq7zGqkyUyyhyLMDPxWg7K5_HxINRE6rYcOQ7k8OdRPniU1dmaK_EegC5stlqsNPkgD8JHxc-kBx8KsCZK0FjW0tgRnHZwE5b9PBV813Evx73bw9O.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"\\/y6k9ah\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3icI14\\/y-\\/l\\/en_US\\/rbfclAHS0xaSYkFX96BNdkaZCUcO6MDDTr7DK_WpSZIM-Vh7eHvi9rK7spQHKeb-YVqevbKEyWVhXtVmd0XVqXWF4I2RgFTT69C1mfLQvApMw6BI9JbRBk3CQaorB95xIijnhFEdrHpFVbBMv6VJRpCLfrBosryxGCiLxD8PmzG6pxMSQQ0fPVN_6xC01iU__yMod6viC322-KoSMj6dzOhQIB3ypjN2mXJTfwKk_MdnVnhLTnFc6v8s0OAeXQcf7YeFIjkYErv_13rWADYaU2kTp6ghOYdhOFqwQ8ygf4rrBYjuiuwKNVaiqiN4gPfxPqh7us8Kzc.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"g+ugZ1+\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJ674\\/yh\\/l\\/en_US\\/hFxWZQ2w6-vkLkiQ872P4HwlzuXtB5cGzB9N6cChuSnaQIcv0fsOtqJqJcW8J7U1RVm4-h-SiH-NXsKF30l9L0dNezD5BoTR-erk4xXknqMYN9ULegSm4VYdAqCB-Bu9eoX0P9OKlRsD9mJaxsDDSHlf0bam6FnGA7Q2QGkfeBudHmLyj3wkQQc7S4_-6JNQukG-1OG8vFgzZXQJf41pJJl_0v-Ze9eqMEh0n6qKi-Z-OmvcCfg9XN4xVt_0NevXKZoF1gM7poP-zYF4v-za9Xulzr3mA6gkqDLAhVlb_2bteQPWp0XCsvkZWeA_IJy76tYDPimIe3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"PwnKoR\\/\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/l\\/0,cross\\/3nvNka5_GSpShrLnCsHauEtrZAMGIi9pYyrM-Ax8lgZz13paIMTaUWbF0qdt1CKyfo6oMkPQ3oPZ7IsGQsfCTjaTwtvlxq_h7rkCBFbnTZJrRi8Ip29CQfHlzZclFoMK2l4H6q3MMBNjXC05KfHTf0DwPdcEOt42So4RYjTp-fi2XO0mm47yzior9wJmB-pP8I5TygBeqDiiqrTDQ8sL3qkM7i_LuA6JWQWGJcwu3rUa7y-BxovPctiscFHoaiWfTglXVTARFtPSiFza84Cr-cEckH1OTxIiKIo6GwAAZNZzG7mN50dnLePu6Cmx36klapfA6ImCYQ.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"erF32yE\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y0\\/l\\/0,cross\\/WkL85Hmibujw1tmvaTvNaVL8shGqf9VoB6StuX6aUNbr7V-k9aTC8UHqyj1yeqdxHvfsLRpBUPyqi-g_gR8Im4iErBWBbRxhvYslq9vwiiMIzjrlN-Nu99zMSCShcD46FIhr7R33bZ5kRtEsX2rnD8vFbx6PPmkrxPEXw_2zbBDxCXsI.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"WSrXOyK\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iMwe4\\/yV\\/l\\/en_US\\/_3_v6yOAVO3hNBES6MjmQnO36QDIrOK01J4_bxxISS0mxcnLQPcLzjHP7E_VOJ_iC-zdEciDMGH4oKu7ibYGSNui.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"W+rZutK\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/l\\/0,cross\\/4ucdnAKp3hMLQEvrhlwNlFjjbFSk9M1jf6w0lfCDjvzybb-hwNGmfWO6GK6KezKvs31dkFFl7Ofbn.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0\",\"nc\":1},\"mxLmC3V\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iMwe4\\/yV\\/l\\/en_US\\/dMbaSlm6aiVCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc3tBB7awrNPa--h-Cg2YoQq36qjMRd2H4eY49aX9NPfIAiq-r_V4x6wC8GSI4gJg5SEekTQHv60Pt0zfTRssVuQNNFXtSPhOYNlLx2EQSbzIh07mgZe4xXkmRWLRvwbqOkULPjJir3bSY_Ex8_DSORESQquLClftP4j3wAA8fvT_C6-AK_HDyJ8RHd8VWG83hsOsGxwWWoGSsodkStYCPL4Zl90vXw0J0FBgPmHtGQfysIxOmJinTqu0qUQsk0b4f4G610qAEE8GhgovABDR_MSuXfyVwDCI.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"rFlA2V8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/hw35Zi01WAK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"prUu57P\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihAX4\\/yR\\/l\\/en_US\\/NOiwu8bOOqb.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"lNcRReC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/zoB2OwJTIlr.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":616\",\"m\":\"1006847381_main\",\"nc\":1},\"b7jAzg\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/IEGo0XaunVa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"EzSlDwr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/aAAWUpeRCq7sdqK9ScNJ6_.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"7ckTzJJ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y3\\/r\\/vWk1LnCjSBN.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ZYgq4v1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/r\\/SdV_l264IXn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"6yZSQ\\/\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iiaY4\\/yS\\/l\\/en_US\\/3oMTvZOm6CzvB9taUdFJNH5rcsKFb2dUcwxeq_67EzkWmOWQYuPeRNoOnVg-JBPO-vw0-oSMKT-ov43KRWqzccCzY8AlaskAL5M-XeLMmryu3vqo-yEtCDGHzOU2Mvq8DINuo2M7YWQGNp_HlmysYlsjAliALqzb10Inxmtu_-F9cxrKJui_KhnA27AYe-x7w7LxueVmCpOKBUtN2hIT02Y-mBpWQwgeW-saYk4aQIn21rEA5xFBT-_NWTK-jUTbMa_zxG-6eTUkZcCbTcle8he1N8k1byplWNmUfnm2W_-nHq21OpqASBssTLcWQbEaJfULZAI61w.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ioLctzh\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yb\\/l\\/0,cross\\/mGFxlc3pNJ30EHA67mR7fcwCNVCqFB1QWWUXjHC9ZAAAPOiODzm28Cv8oGIAxlD6hUGQpZx2zytM7tKB2i2fdk6YX3hWotlKQYxjwCQUqUUu8RLvr5NwEWUUip5zlFlH9R6BX6kH3HeAmCbYZryQxPOERTaAkfljRjBsxht3YDAFqAOnL0JW1rw3316d7CLjUlTGsi1yp4PJV-Vz-9l03yiGTgnsz6w-B6eMgH8X141VhUN7cDxbvjgJVq4ZOzaV2pZvcpp1efGd5AF6o34pt_k7B9iybiHMzfbT27JdqItURO_NV3bV6poBvYQMY7H6f4SsDh2dHB.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"5nrAkeG\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y1\\/r\\/rZ9MNKrH0k0ZbI0G4LrOxIHPZrXg5ReZ0TYMvUwK5Uma9w4uNPsrUnOvaNelY5dvtdhRkyt3Yfi6vH3kdUJxBG-ANsNjilJ0afAGX8q6IpYhOkT_S5rq0HeYBAaIYlwNb87SCSp4KZz6HHeBvhG1lEKGsmutMKrfthU2RuzxCO9Gh_AlpYf9AKx-NgBm80lT15D-NgEwCI3PImQrI6Ve5kNR3wz8AAdI7Av9C-XPMsqpJXSbdkIs-8tKrgqiGou8tKGzJ5QGRsjzfk8IokY57gS-YG1i4nPO881yikXoZPR0jFeq5lk9a3MjIxzn551WjyvDNbsFZF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"9E2DBRy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yh\\/r\\/Cb2nWZgnWUhiSSnW4PMNlga2aWXarw1dkwle1I1TnKiqhFEdrHpFVbBV6zVufZ_jMeD8PmzG6pxMS55WJhMeNItitfLLXDtrZWLwbK0JKhNrz-TJsccjxVQoSMTUMRaLT9ChPzsN3sCvOxdi_TgxwE3eu_nyA3sW0FVCqLw_ycRVvStcrqKLBxQ_P7jlh9C0gA1PfgAkSeS2_DsuX_XZ9LI8WObQnJHlqzMAFRPIfCiJmlQOb8NoXGI0ARLOrxjq2yOHi0LqPZP5f6bVNNj_TEymI8eTCFk_MdnVnhLTnQQs74FyXGL2wIDnWqh7q7dbY6eQTwT9o8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"bcIiNV2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/l\\/0,cross\\/WU_aqaOgOui5KfHTf0DwPdACr3iloYvjsfeXjSpUc1q6EgECl_dlP71xPFQej7MzE1mcseKB8a-340hhj4zAl09LpjJRJLiCLFSQACZqkUJqh4CCYvuhEUQDGwFd3oI30VkZPwC1jt2DpXuium9VFcgQfjbPMIZphGawQWAHIVv_vtpSyq7vRUeyp1rRcLfmUHQOQOXb_Rh5zm5IRu3rUa7y-Bxomj2c4HWgOMDcr7XvB5D2u1iWfTglXVTARqkGEPsa2XVCvZHU_BvXIWhL4OkfYnoLgtquM-GFCOuDf5g4xhyjHepf97SRy71Ra5nXvyz8JVab2y.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"47qoW\\/f\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iAAL4\\/yd\\/l\\/en_US\\/hh_9PD_2PIAQLCNaF3rMKK6PcvwtEuEFW3dCSfDrxXKSRT9vXQCG3ERfOXveanvv3eGkfeBudHmLyoM3GEVUsZlrlbx1rZb6kvfKM3ib0V0VBlEBYhBGlsvGIqEHYGkVPw9ofPc8bIjFzbCeX7e0JdGswjLHJ8cVR3SaIAjDcdepN9q9Wg_eS8zpF-YuXrHmhulGBJMiiicqUENUVRCO_BFV3rQhFvrNQBQqoOG9xgy9EoOk_ZwKi3RvIsuUBOeco_GNmG-KfbxZqR_YeCDNU4ob3x41fFW2GHsNVrxjTrifq1sATFtW9rfLZ4a1-rgzqw_0sErWwF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"fSczSRB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iHeG4\\/yH\\/l\\/en_US\\/KfQfQfz74xUxX__jyeLapOCNtzayu2o2sVZHSOzZWDG2lG54kCgnql99lCmaWUnN9wI6PsK8-JGR8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":444,0,0,430,531,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"QvFDbhy\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yf\\/l\\/0,cross\\/BKGi5qNuGRpZtZXZ-vjU2Fn_mCyUwIymEW71i9CghJ8TBdoBXqu66iNbXQBGUo5NgDP_m3v26xQUyzT0JY0EkYmM-uiwjx_I5GN.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0\",\"nc\":1},\"OJGpUeV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/iL_g2Nru2FaoTRVzp7JEmeVJ5edDiOCvWBzKo4DBgDODCG3maEf0leqmSGzLcJ980NGQS5FRLrjTcXIh8VYn7YXibKF6sKYu4LzTEnvxG_bp0FKMhOlJBxgs0R46LYFYY7wIw77DAzLEZyZcow0DpskHtufgAy7YUQq0xVmKxdWHsV2fKhlVBP3yIQcG2j1mc5aNButuwda2MZUlBVslaI1GfGvDI69FydhezoYoAmEfuA5esJqEeIcLYEJ71lXvAGdK9AGeN8fmyW97uQKzL1pWaT5ZqS3l6kW76IFF6CZa8u9t513LULrbvJDzdZ598RFlQxjGq4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"XHdXHcA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iutZ4\\/yR\\/l\\/en_US\\/5hFciBnqzukGVs4NlxLnE1oGJlo6SwRvN3zGV9MktIqER6wz1U42U6Hxof12od75DdFfxGNDvdluSGLHTsyDXmPOe0LjwvRezmZAKryZxMMb3345skMfZWE_w13Evx73bw9OzPjG1Q4OhZtUMixX4vLr0CZ87kWc1R4ogA0EncZ9HbSv96JBuh1KNAlcWUMjEhsyoMHtHVeglOyokGki3el6yFZ4eTfuB2T9YHIqaWb25FgcR8wfetfxOaYXpKDZQnrL_GnGiG3toEeXA3CD3zd-SWSqAsw-LsdrzKwPdnbrS27Dg3Ra9O1WQqUGZztVnCriOxPRLv.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4oDhgvB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3io-b4\\/yE\\/l\\/en_US\\/2kSuPgqcLj2jsnFniTizDcc6BCJBGUFUUQf6bg-_1vNYrUu41wY5f9UjTbGQmh7PiKhw1afqlskiJtyzbWQ2DmSKy14o1rH5DCN2C0O9XxFpNn_nPMlytnTpdb2n842hbZ5UYA1M30ASGSvofzNT4XnUKFMlB4LkoVd2-FIFO6EQz4nrwtkji6HSgWuJqyVRokkiJzWm6VyBgS0IjxBLV5miH5QGZljJSmHFgwZ34TFITGTVyiRbRbYA3HAZDULdaDJjPcassWbc8WAAQ5cf0mexr7Eill-BU3gDEdgJlviisi6SU2mfwGOAh7uL2-tgK9ABVKgK-m.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"8VDQs1D\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ilBt4\\/yc\\/l\\/en_US\\/rFRP9D0lEV-7VAmaO9cOTQu8ySS__7hKCK7Jh58FZUReBJoR1SWhoGn7QAbZJspzaXsgvtqxwROe7kRwdxzyBP6nFEJ9Xw1QByo6Iwhzr-Ldih__-4usbTK1uxQV6kwl_Vd6zo-VBYI9ZBQxpWuCo_-3-ojAX6HsuumcKfjraGf829Lbc-PC3x-g7xxmVcMLBqMAkZpTr-PEva-iPcmlfXu79zZoUXwZ3rFFHFbxfUYnpoxRsmUJZ4YFrkqaQ6pzgfnEEwOjf3oWjgsMQ_MdFslYEmA7ad6c28WZvFQfEMHxHC479r1qkWrX3vRxpKMpJO5QBFP9GG.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"FOzv+Zj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUlg4\\/yu\\/l\\/en_US\\/Z2Dys35WO4-4rrBYjuiuwKzpnq-QQijAIt0GMpoepjsjESNmWfkdlhdX3Hj8XqpnvuyfqCmEOQUHg995qFyE9unjMmSxogAG9G2t_kMbQYANLQgBjKC2zIq8UfawicO0EWSkk5k7vcPY_jX_Sj7XCWOWbIBEspZ3jSs50tgIVQvgJGyObwWDfEHxzl7v66JGxaSCBCZ8sE_lemx-GqsQyPjex3cSmRVx9isPMmjbIqtPyCYbV0qsoplWNAOctbyejfM4Wdphwqacqqxqp0xwkVOLdB-D4aYNMp923mi9aPUi_WAEhAAQRP0R2BtPqVPsYZS9hE_MnH.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"x7h4g48\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_4T4\\/yD\\/l\\/en_US\\/MIHPzira5YVQlflzjxUnerWuUABZczVW1MXG9zxl56FnI-369-Uw2D5XYyVjYZMZUXRVPsQLjoFZTbaCg_VU2kRypMQE-01i8RlTFo7Qp9Aoo2NzF8iEAzRsCttJHebhcQA8cZh85MJVQ-GHniaZebCimMROkeYOVP4X9nkEwTbWBjvNNJeJoMwk3nBFbUCIYuzM4ozYE14JGvqVYo3wgBGWkB2D6f9K263W1be7nOp3oHKprL2pRqbfKfDOmCfKKmr20mYCIwXM19u3xsSa3tvCKCO3GSYWgqoo90uwagZaiBFi58BE3aXh6X_AutfDQZ_r4ee6Ev.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"1XKrke9\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDUr4\\/yu\\/l\\/en_US\\/j0FkT6Lxe2Q_3_v6yOAVO3PqRL8aiIprj-XeLMmryu3vRrdrv_R-BSthNBES6MjmQnt8_AM4GYgjnO36QDIrOK01hIT02Y-mBpWnktcy9_8-3pJ4_bxxISS0musp1Co8L-qpT3fnUQ2euyAP7E_VOJ_iC-xcnLQPcLzjHzdEciDMGH4oKu7ibYGSNuiGO7SbzSUxM9zmIh5eCDkGWdMbaSlm6aiVMHxHC479r1qCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc328CjMNUn1sptBB7awrNPa-3neAr1j-CX8FfGWvgrFROv-h-Cg2YoQq3sTYsPEYcsqK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"q\\/fczbW\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/l\\/0,cross\\/4ucdnAKp3hMLQEvrhlwNlFfsLRpBUPyqibXQBGUo5NgD68k021VWLiijjbFSk9M1jf6w0lfCDjvzyJr4BlFOVEsuUeo4kDtC1XA6oMkPQ3oPZ7bb-hwNGmfWO8Ip29CQfHlzuAiwRpIgDi5HkgVQZQe_Qe6poBvYQMY7Ha0cuTt9boFcuA6JWQWGJcw6GK6KezKvs3SNESTm7huvg1T3BxIhgD6aKk3oHi1d6WR1dkFFl7Ofbn97SRy71Ra5n.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"8a1mZN2\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ie924\\/yb\\/l\\/en_US\\/76tYDPimIe3adgJH4VVTrZoN5LSFO_O9CHniaZebCimMsGSJ8g3hWSh0J0FBgPmHtG_3qqZ8dtvUncki17AN05nrQfysIxOmJinh40-vCFyk_RSSrcazAWeUInV_3kn2JD9aDQZ_r4ee6Ev0guCe4VSH5TTqu0qUQsk0b4f4G610qAEE8GhgovABDR_Oa3H3hPmog7VmKxdWHsV2fD-QGoAU_GVtDm8uuzzDhfiMSuXfyVwDCI7EvUOC2wNVsiIicd8nY7iYR4qw4RP-FSZktT4NUvKINEyYaQFAfXII5uWPzhShqiYNPO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"1b2FW87\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i9gg4\\/yX\\/l\\/en_US\\/2BP8URldF_XX_XijVh6J7gxkaGZqMxJ_Dj6dzOhQIB3ymeehKaQzx0exjq2yOHi0LqIzUBMwa0zKXk_MdnVnhLTnJir3bSY_Ex8Qcf7YeFIjkYkylPW2izp0p_DSORESQquL4rrBYjuiuwKxufzWnL2VC38iYbWXdxkO4995qFyE9unjClftP4j3wAAI_1SjCLTDcPlFviBM7q3jOvqHDUCOkroX8fvT_C6-AK_HDyJ8RHd8VWb7u8TcJxMQx-r9FEck8vfmHG08uOtLTqE3tk4U7xNm7AG83hsOsGxwWevXKZoF1gM7WoGSsodkStYCPL4Zl90vXw.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"xSCpRjR\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iNO64\\/yq\\/l\\/en_US\\/6qjMRd2H4eYofzNT4XnUKF1ELiqUJdhXSNCmZLD5ebn149aX9NPfIAiol1Z2n8oFJUq-r_V4x6wC80Qfm48XgOZ6GSI4gJg5SEesWbc8WAAQ5ckTQHv60Pt0zfTRssVuQNNFj8YCyqfU-HTXtSPhOYNlLxNhe_K3WxExezGqkyUyyhyLnph6nqdFcuLFfxGNDvdluSSYkFX96BNdk2EQSbzIh07mgZe4xXkmRWLhtIqHF6L1vcTU7HQ9S1sdkBI9JbRBk3CQqchNfyPUh-Ud_guBvHTot-RvwbqOkULPjqbQlQVGfALEdUKPvF_QvRHnl7pcLVrHxd.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"Xa\\/Vyod\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ibdr4\\/ys\\/l\\/en_US\\/CNtzayu2o2slG54kCgnql9p7uEHHMSyiKNOiwu8bOOqbhw35Zi01WAK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,531,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"l8yvi67\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/MqUHzzATDrHj4IM92LiofQ95mUM7nL2d8-jHxNQsWTssDzwhn3opHxAxb12Hdbb0bL.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"AD1bWlA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/YSjaktEjbop.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"xpajmW8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iRNb4\\/y9\\/l\\/en_US\\/tnxX-ZxlkrD.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":825\",\"m\":\"1006847381_main\",\"nc\":1},\"McMbPS1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/qIRfvgy9sEM.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ccOBUXC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/if_goWIebSU.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"O8ghqVf\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/49TCMVpJQ9O.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":854\",\"m\":\"1006847381_main\",\"nc\":1},\"ueGkFVV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inoj4\\/y4\\/l\\/en_US\\/L9iclwrP2Mz9zxLl_ssB3nxudfWkGfnMS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7251,328,7250\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"8Za3h9N\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDCh4\\/yt\\/l\\/en_US\\/obNSSdwUDIq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":875\",\"m\":\"1006847381_main\",\"nc\":1},\"UrOsroS\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i0Wo4\\/yT\\/l\\/en_US\\/MtmXybLsMSq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":30\",\"m\":\"1006847381_main\",\"nc\":1},\"tsaNjL0\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/VW2QYHgKuAS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":247\",\"m\":\"1006847381_main\",\"nc\":1},\"Na1E3Dy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5Un4\\/yW\\/l\\/en_US\\/xudfWkGfnMS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7250\",\"m\":\"1006847381_longtail\",\"nc\":1},\"Is9sUvu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inf74\\/yg\\/l\\/en_US\\/H6kIOT6P8ak.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7252\",\"m\":\"1006847381_longtail\",\"nc\":1},\"M0ByNMu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDp44\\/yj\\/l\\/en_US\\/ta_DJjjl7X0.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35736\",\"m\":\"1006847381_longtail\",\"nc\":1},\"YoHC+Yu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3id_K4\\/yW\\/l\\/en_US\\/WGonvpHzAl9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":311\",\"m\":\"1006847381_main\",\"nc\":1},\"mhiCfI5\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y2\\/r\\/Cu2KVQ06AcD.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":39390\",\"m\":\"1006847381_longtail\",\"nc\":1},\"ZpmIcGw\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTHh4\\/yf\\/l\\/en_US\\/XjBRyI0ZSr_.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":834\",\"m\":\"1006847381_main\",\"nc\":1},\"x5opEZT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihzu4\\/yg\\/l\\/en_US\\/m6OBZx8UTDjVW2QYHgKuASQ1CCJPG1GhL9zxLl_ssB3nl10E0k-UWuh.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":118,247,7695,328,29860\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"8rpQEHL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ix9W4\\/yF\\/l\\/en_US\\/Gg7kK8EeOPslqsnp5OUNAOqFj_IKtOe_Nspcbd9dqmIIj6dzOhQIB3yxokvK4M2tHxQcf7YeFIjkYYMci2dckUc6HUxMHl9LidgClftP4j3wAAZttID0s5tPrGkfeBudHmLymLT6R-X0Ih2o-xu7unW-Sm76tYDPimIe3adgJH4VVTrZ-5wr-a1CvvypXXqholOWr1MRPod07iws9x7fSXs1NHO14bNiNke4Hc29yIhi7KFRadnV_3kn2JD9aXlhUsbmefqXAGOCEqZsv-0K9G_IgNc4SNA_c7oLSB0vWJ2RkjNC2Z3h1UrXITZqHLKuWPzhShqiYN.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"vddimCz\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/l\\/0,cross\\/KrcDhB2YEYufsLRpBUPyqix_a5WjBkPtGuwB3WLZnSUK6oMkPQ3oPZ78Ip29CQfHlzVosqQik2ptmPnCw1TUcSQ8uA6JWQWGJcwbHSpovBxCGp3EM7S3aMKOc.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"oJPpsv6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iu9-4\\/yJ\\/l\\/en_US\\/zglliOLRnbyrKlzUkAAyG_YOB7whma59nusp1Co8L-qp78wSZ0g2LwezmIh5eCDkGWxP0vdregVEjk2RmkA-sxlmsTYsPEYcsqKofzNT4XnUKFQhy2UO-rlQpGwV2UI9edr-4Tc-cu8XHP4Tm6UHEyfqFfGYWZafl2gcI0NZDxeN71qySYkFX96BNdkZwNoyQKO8H4BI9JbRBk3CQ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"fmKqHO6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yb\\/r\\/VSHsneAFx_p.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"cX+JuEO\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i1CO4\\/yf\\/l\\/en_US\\/p7uEHHMSyiK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"rMvrLP1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iijT4\\/y_\\/l\\/en_US\\/siZ2Q7mfsHAn8zGt7h5onZ-yRAdn27OANzKleYcveLTxhFEdrHpFVbBJHh55U9dNXhkyfcWY8oWGk9EFMjx6MT8exMZQV3Pf2rPUEJpVyQqdGvBuPECb_Q_WcT-ToG7CMAUUcbuyUQIVHxGbAdFKB-RZjOu_LZxx_DC_6VFnNot06Ay9UROyvFK0Dnh1alrYtZnwpQhfJSpcpSW7e8XSj4Sp30401y_8ZBWCTZi-iSnoOIYgX8zmg-O2XpObhWAMomf0mD7_Otr1WY8W0osIU1tHFn46BQ_9nMgdiPYBbEBYhBGlsvGIMcTuD-6022zW0KeIyygUHj.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"HHMg2kK\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ijUf4\\/yb\\/l\\/en_US\\/3YigL2IcjwrvB9taUdFJNHgROZDMpVFJgrfOrQmbHYEf5w6xLKqk6qEEthKmVitIx3geEWXcTi5qZ1gRuevHpq6aT0h7vNyvgMxHzlChpadHunBQqNfpW5XTLMpNBFYh14r5OloNdVW5J56_-nHq21OpqAHClMyh6ShpPhTF0SkaSU0ZUIHFSmds5lXeU2KXUQEOtlUXwZ3rFFHFbidK7stmVOWBhQgMDf_CxrF7mZwNgBAbwHzHz47Mrnv15.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":5,0,84,298,0,0,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"OQt4KUI\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iXXr4\\/y4\\/l\\/en_US\\/ZCAwVi2rsBDbSQ1e50Qng9BRy3-v_yeqQW7abA3P1pdDAH0-eA7qtnjgvGMc2MIWGyt1mvKZH71fAxBLV5miH5QGZljJSmHFgwZ2zcNBSoA-iWqSLdMjgonSigE_oHSQ0lw3yxsIAHswcRn4O7X_7M_IGvJ8E8InnuprX3_ehGtJkD9ybtKHy_VESiOwJoJc-I4o350WKguSKnK_KQexMsmxlBo-Im_Zf-0rsxdRg5g2T63Pd6qTSJVpox2B7-qkSyagmUcBSYkFX96BNdkYZMSzy780gRW-bSLguFou8KQMV3_upF5YVr8ZApMHDmERno4aJi9v_Z.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"W3hrXJU\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3igmh4\\/yo\\/l\\/en_US\\/BrvyYVmICUhAjDcdepN9q9JficXhU7UAfzaV-nqkDrQ4gVOILqfvP3IZteQi7ghzx1c2m_T10eGdzHlCMRFaUBduR2_MMvj8_l5hdRCl802ioDIEqSHqzVVTLxsgpGO5GUUH9wF3HY8bHcOW3P8AOj72tVNPDJIIZxHGrTCHECZC83utCc3J4Uu-rudH2P4qLbOQGCN4eREa-u6Hni_PDh_zzFVUhyDf3bgUY96FCfju7iPI9BGX8q6IpYhOkjxpPOBTLvHTOP34w62s8Ozeq2jgOO-DKUyG5pzGzAayHci6BvUc16OaGkbnqkW9br5khHLxhCIYPR.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"xCiTfbB\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yE\\/l\\/0,cross\\/BB68VSfNzsL1yp4PJV-Vz-z6w-B6eMgH80-97Ub6KlkHnuCD99GG8yX9flWAwFBOozspnSw7Jc8DPKIst33dIS_h8DOXkSsgn_e33bgIjXbYEClunE4cb6HzpQjUXQboECnsvZHU_BvXIWhL4OkfYnoLgttIs6yMTBtm7OC3pFaawyHf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"HniVJ+M\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/r\\/Oqqs0l4JHQ02MWrxszkORH3b_CXzdi38YqP62B1XwsXTTL8dTFR5gDSZmjBW8burtDkPQqHbNhoanTF3hdzBsrj_IWdGczRDltjRHENyavGFlyfWd5h9M8h9uVOJcOP86f-gw46FGNR_AFqSOacWRyVHGkxEvZ5eTdCiPqVFOwA5Htm-qY1k5_CeNlrJFKaOlKKE4KyZC2coUfGe9deFDz0FA2xuUxdC1AEtagAJr2bykU7VlS3ROf5Nks8dmC4Ll0Lto66DJiubrUiDRqh1ioS0shW0C2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"yD7sROd\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/r\\/YTWlWA9jUz9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"v8Pu5wR\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/9KR3OsAB-i2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"+VhMrk\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yN\\/r\\/8RwW0k9W8nq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"HfGZtSr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/QdF1FAOj3XM.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1}},\"compMap\":{\"IGWebBloksApp\":{\"r\":[\"RaA31FN\",\"51fcjGV\",\"yxuOpZn\",\"qpyrtMy\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"cOGwS2G\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"e8bJQ8q\",\"CbVciYk\",\"RgUx6NB\",\"tmOAXuP\",\"AsuDyfD\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"WYJHsrI\",\"PJevOFh\",\"rDzHHGL\",\"8aTFOzW\",\"gxHwpBE\",\"DsWfgKJ\",\"lgaAFHU\",\"AaClBt7\",\"qS64MW1\",\"68MbJvY\",\"LGJRwGF\",\"TQAZkKv\",\"Zx0r1CJ\",\"+vXa6Lj\",\"ImCNdhg\",\"G83kG5B\",\"gpD7gKM\",\"GBulvfh\",\"bsXsmKk\",\"oZORzhP\",\"ShQo0xA\",\"UaJ6Fae\",\"bgEvhmj\",\"Nx6u9Jq\",\"Up8o120\",\"nQecA5e\",\"aVqoX25\",\"\\/cMNGhx\",\"DCNucsL\",\"ICkzBzx\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"lA0A1O8\",\"f7Ym7Sv\",\"m4q5gIa\",\"8MwX2jo\",\"SagIiXi\",\"obEmI58\",\"pp\\/2fvu\",\"oEUvNGb\",\"bSZaoMi\",\"UVEzwS2\",\"f0Nl9pe\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometErrorRoot.react\":{\"r\":[\"rDzHHGL\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometKeyCommandWrapperDialog.react\":{\"r\":[\"rDzHHGL\",\"6oh\\/uBh\",\"+L0X93S\",\"RaA31FN\",\"wYUxKHn\",\"MIwFPq4\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometModifiedKeyCommandWrapperDialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"6oh\\/uBh\",\"hXjPl2V\",\"iQc1shL\",\"RaA31FN\",\"hTAZzFI\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"QPLInspector\":{\"r\":[\"Sboo2ZQ\"],\"be\":1},\"ODS\":{\"r\":[\"vLAMZRo\",\"6KCwpsF\"],\"be\":1},\"PolarisErrorRoot.react\":{\"r\":[\"RaA31FN\",\"Zx0r1CJ\",\"8aTFOzW\",\"LGJRwGF\",\"\\/xWlKkI\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"1BRKNYj\",\"f0Nl9pe\",\"PJevOFh\",\"iuENYaU\",\"DsWfgKJ\",\"kWwybab\",\"lgaAFHU\",\"SsSrcC4\",\"8MwX2jo\",\"\\/cMNGhx\",\"Nx6u9Jq\",\"TQAZkKv\",\"gxHwpBE\",\"rDzHHGL\",\"nQecA5e\",\"e8bJQ8q\",\"+vXa6Lj\",\"iE2l7jW\",\"DCNucsL\",\"xivIod5\",\"m4q5gIa\",\"f7Ym7Sv\",\"bsXsmKk\",\"CbVciYk\",\"bSZaoMi\",\"ShQo0xA\",\"lA0A1O8\",\"bgEvhmj\",\"JYW18Ti\",\"GBulvfh\",\"AsuDyfD\",\"oZORzhP\",\"ICkzBzx\",\"oEUvNGb\",\"Up8o120\",\"RgUx6NB\",\"pm3z9kc\",\"68MbJvY\",\"pp\\/2fvu\",\"ms3f9xJ\",\"aVqoX25\",\"gpD7gKM\",\"dioMJ9z\",\"G83kG5B\",\"cOGwS2G\",\"SagIiXi\",\"UaJ6Fae\",\"obEmI58\",\"WYJHsrI\",\"YYCsR5a\",\"vLAMZRo\",\"yxuOpZn\",\"51fcjGV\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"PolarisIncomingCall.react\"],\"r\":[\"m6VVYrH\",\"GltrS7H\",\"pARoKZ4\",\"OW1kw59\",\"TJ2LIPj\",\"ht8qD46\",\"3vB8LuQ\",\"A5prXCT\",\"mlxztRz\",\"iTm\\/k9J\"]},\"be\":1},\"PolarisHttp500UnexpectedErrorPage.react\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"G83kG5B\",\"rDzHHGL\",\"1BRKNYj\",\"ICkzBzx\",\"\\/xWlKkI\",\"wYUxKHn\",\"vLAMZRo\",\"UaJ6Fae\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisBDClientSignalCollectionTrigger\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"g4lhZxV\",\"yWcJ8lq\",\"rDzHHGL\",\"sP1wABL\",\"l5HqvCB\",\"lwZReTr\",\"wYUxKHn\",\"vLAMZRo\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisAsyncBloksIGLineChartV2\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"wYUxKHn\",\"j5Ia\\/+m\",\"CxpEI\\/m\",\"UaJ6Fae\",\"Nx6u9Jq\",\"ms3f9xJ\",\"rDzHHGL\",\"+vXa6Lj\",\"nQecA5e\",\"JYW18Ti\",\"TWaSLum\",\"K2Zj+QB\",\"oZORzhP\",\"YYCsR5a\",\"HnCMbju\",\"oEUvNGb\",\"ShQo0xA\",\"8MwX2jo\",\"dioMJ9z\",\"G83kG5B\",\"vLAMZRo\",\"m4q5gIa\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisHttp404Page.react\":{\"r\":[\"RaA31FN\",\"Zx0r1CJ\",\"8aTFOzW\",\"LGJRwGF\",\"\\/xWlKkI\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"1BRKNYj\",\"f0Nl9pe\",\"PJevOFh\",\"iuENYaU\",\"DsWfgKJ\",\"kWwybab\",\"lgaAFHU\",\"SsSrcC4\",\"8MwX2jo\",\"\\/cMNGhx\",\"Nx6u9Jq\",\"TQAZkKv\",\"gxHwpBE\",\"rDzHHGL\",\"nQecA5e\",\"e8bJQ8q\",\"+vXa6Lj\",\"iE2l7jW\",\"DCNucsL\",\"xivIod5\",\"m4q5gIa\",\"f7Ym7Sv\",\"bsXsmKk\",\"CbVciYk\",\"bSZaoMi\",\"ShQo0xA\",\"lA0A1O8\",\"bgEvhmj\",\"JYW18Ti\",\"GBulvfh\",\"AsuDyfD\",\"oZORzhP\",\"ICkzBzx\",\"oEUvNGb\",\"Up8o120\",\"RgUx6NB\",\"pm3z9kc\",\"68MbJvY\",\"pp\\/2fvu\",\"ms3f9xJ\",\"aVqoX25\",\"gpD7gKM\",\"dioMJ9z\",\"G83kG5B\",\"cOGwS2G\",\"SagIiXi\",\"UaJ6Fae\",\"obEmI58\",\"WYJHsrI\",\"YYCsR5a\",\"vLAMZRo\",\"yxuOpZn\",\"51fcjGV\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"PolarisIncomingCall.react\"],\"r\":[\"m6VVYrH\",\"GltrS7H\",\"pARoKZ4\",\"OW1kw59\",\"TJ2LIPj\",\"ht8qD46\",\"3vB8LuQ\",\"A5prXCT\",\"mlxztRz\",\"iTm\\/k9J\"]},\"be\":1},\"PolarisBugReportModal.react\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"wYUxKHn\",\"1BRKNYj\",\"ms3f9xJ\",\"PJevOFh\",\"DsWfgKJ\",\"oZORzhP\",\"LGJRwGF\",\"TQAZkKv\",\"rDzHHGL\",\"Zx0r1CJ\",\"gpD7gKM\",\"Up8o120\",\"iuENYaU\",\"xivIod5\",\"nQecA5e\",\"dioMJ9z\",\"9KJrUco\",\"gxHwpBE\",\"pp\\/2fvu\",\"aVqoX25\",\"lgaAFHU\",\"f7Ym7Sv\",\"yxuOpZn\",\"ShQo0xA\",\"\\/xWlKkI\",\"\\/cMNGhx\",\"SsSrcC4\",\"+vXa6Lj\",\"bSZaoMi\",\"DCNucsL\",\"RgUx6NB\",\"3gEWTNm\",\"obEmI58\",\"YYCsR5a\",\"ICkzBzx\",\"GLsKCyO\",\"UaJ6Fae\",\"nF8umvm\",\"vLAMZRo\",\"GBulvfh\",\"bgEvhmj\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisDesktopStoriesPage.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"4SBVdv7\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"JbVkxQr\",\"ImCNdhg\",\"EyeE1V7\",\"G83kG5B\",\"vvTbhsc\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"UaJ6Fae\",\"lgaAFHU\",\"n3OReDX\",\"DCNucsL\",\"aVqoX25\",\"GBulvfh\",\"bsXsmKk\",\"RgUx6NB\",\"jkOHTTH\",\"+vXa6Lj\",\"m4q5gIa\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"TQAZkKv\",\"gpD7gKM\",\"rDzHHGL\",\"Zx0r1CJ\",\"e8bJQ8q\",\"CbVciYk\",\"yxuOpZn\",\"Up8o120\",\"iE2l7jW\",\"f7Ym7Sv\",\"pm3z9kc\",\"SagIiXi\",\"51fcjGV\",\"bu6zhrA\",\"1BRKNYj\",\"ev9AzR\\/\",\"pp\\/2fvu\",\"iuENYaU\",\"bSZaoMi\",\"lA0A1O8\",\"TSKmWI8\",\"ShQo0xA\",\"obEmI58\",\"AsuDyfD\",\"ICkzBzx\",\"Nx6u9Jq\",\"68MbJvY\",\"oEUvNGb\",\"gxHwpBE\",\"bgEvhmj\",\"ms3f9xJ\",\"dioMJ9z\",\"WYJHsrI\",\"cOGwS2G\",\"f0Nl9pe\",\"ClW4KJN\",\"vLAMZRo\",\"8MwX2jo\",\"e577y0g\",\"e37RKYh\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"VideoPlayerSpinner.react\",\"VideoPlayerCaptionsArea.react\",\"CometTooltipDeferredImpl.react\",\"oz-player\"]},\"rds\":{\"m\":[\"PolarisODS\",\"PolarisStoryModals.react\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"VideoPlayerWithLiveVideoInterruptedOverlay.react\"],\"r\":[\"jJljVye\",\"SLuMFyC\",\"3q99Ilj\",\"uKsbV15\",\"GirQBwl\",\"F7Yyqnn\",\"ECNt4aT\",\"RtDBsbo\",\"0o3vj9b\"]},\"be\":1},\"PolarisMobileStoriesPage.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"4kCFpD3\",\"G83kG5B\",\"anb0L73\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"cBaTsIy\",\"DCNucsL\",\"aVqoX25\",\"GBulvfh\",\"bsXsmKk\",\"RgUx6NB\",\"+vXa6Lj\",\"m4q5gIa\",\"nQecA5e\",\"LGJRwGF\",\"TQAZkKv\",\"gpD7gKM\",\"rDzHHGL\",\"e8bJQ8q\",\"Up8o120\",\"iE2l7jW\",\"f7Ym7Sv\",\"93HC0Re\",\"pm3z9kc\",\"SagIiXi\",\"51fcjGV\",\"4g6DzU1\",\"1BRKNYj\",\"UaJ6Fae\",\"iuENYaU\",\"lgaAFHU\",\"bSZaoMi\",\"3UNYkPm\",\"CbVciYk\",\"pp\\/2fvu\",\"obEmI58\",\"ShQo0xA\",\"AsuDyfD\",\"ICkzBzx\",\"lA0A1O8\",\"Nx6u9Jq\",\"68MbJvY\",\"oEUvNGb\",\"\\/y6k9ah\",\"g+ugZ1+\",\"PwnKoR\\/\",\"ms3f9xJ\",\"dioMJ9z\",\"yxuOpZn\",\"erF32yE\",\"cOGwS2G\",\"oZORzhP\",\"gxHwpBE\",\"f0Nl9pe\",\"WYJHsrI\",\"Zx0r1CJ\",\"vLAMZRo\",\"bgEvhmj\",\"8MwX2jo\",\"e577y0g\",\"e37RKYh\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"VideoPlayerSpinner.react\",\"VideoPlayerCaptionsArea.react\",\"CometTooltipDeferredImpl.react\",\"oz-player\"]},\"rds\":{\"m\":[\"PolarisODS\",\"PolarisStoryModals.react\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"VideoPlayerWithLiveVideoInterruptedOverlay.react\"],\"r\":[\"jJljVye\",\"SLuMFyC\",\"3q99Ilj\",\"uKsbV15\",\"GirQBwl\",\"F7Yyqnn\",\"ECNt4aT\",\"RtDBsbo\",\"0o3vj9b\"]},\"be\":1},\"PolarisFRXReportModal.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"bsXsmKk\",\"WSrXOyK\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"DsWfgKJ\",\"YYCsR5a\",\"cOGwS2G\",\"ms3f9xJ\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"W+rZutK\",\"mxLmC3V\",\"pm3z9kc\",\"PJevOFh\",\"8aTFOzW\",\"e8bJQ8q\",\"rFlA2V8\",\"TQAZkKv\",\"DCNucsL\",\"aVqoX25\",\"WYJHsrI\",\"RgUx6NB\",\"m4q5gIa\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"gpD7gKM\",\"rDzHHGL\",\"Zx0r1CJ\",\"SagIiXi\",\"CbVciYk\",\"iE2l7jW\",\"+vXa6Lj\",\"51fcjGV\",\"gxHwpBE\",\"UaJ6Fae\",\"pp\\/2fvu\",\"G83kG5B\",\"iuENYaU\",\"oEUvNGb\",\"lgaAFHU\",\"bSZaoMi\",\"prUu57P\",\"1BRKNYj\",\"AsuDyfD\",\"lA0A1O8\",\"yxuOpZn\",\"Nx6u9Jq\",\"68MbJvY\",\"kWwybab\",\"GBulvfh\",\"f7Ym7Sv\",\"ICkzBzx\",\"ShQo0xA\",\"dioMJ9z\",\"ImCNdhg\",\"f0Nl9pe\",\"Up8o120\",\"obEmI58\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"CometTooltip.react\":{\"r\":[\"rDzHHGL\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"CometSuspenseFalcoEvent\",\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"liveQueryFetchWithWWWInitial\":{\"r\":[\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\",\"rDzHHGL\"]},\"be\":1},\"PolarisPrivacyFlowLauncher.react\":{\"r\":[\"6KCwpsF\",\"wYUxKHn\",\"lNcRReC\",\"rDzHHGL\",\"xivIod5\",\"b7jAzg\\/\",\"pp\\/2fvu\",\"EzSlDwr\",\"\\/cMNGhx\",\"UaJ6Fae\",\"vLAMZRo\",\"7ckTzJJ\",\"RaA31FN\",\"JYW18Ti\",\"\\/xWlKkI\",\"kWwybab\",\"e8bJQ8q\",\"ms3f9xJ\",\"PJevOFh\",\"Nx6u9Jq\",\"TQAZkKv\",\"DCNucsL\",\"nQecA5e\",\"f7Ym7Sv\",\"SagIiXi\",\"+vXa6Lj\",\"AsuDyfD\",\"lA0A1O8\",\"lgaAFHU\",\"oZORzhP\",\"YYCsR5a\",\"ZYgq4v1\",\"aVqoX25\",\"yxuOpZn\",\"68MbJvY\",\"51fcjGV\",\"oEUvNGb\",\"obEmI58\",\"ShQo0xA\",\"bSZaoMi\",\"ICkzBzx\",\"dioMJ9z\",\"G83kG5B\",\"m4q5gIa\",\"WYJHsrI\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisCreationModal.react\":{\"r\":[\"RaA31FN\",\"6yZSQ\\/\\/\",\"ioLctzh\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"5nrAkeG\",\"9E2DBRy\",\"DsWfgKJ\",\"YYCsR5a\",\"bcIiNV2\",\"ms3f9xJ\",\"6KCwpsF\",\"47qoW\\/f\",\"wYUxKHn\",\"ImCNdhg\",\"fSczSRB\",\"QvFDbhy\",\"OJGpUeV\",\"RgUx6NB\",\"XHdXHcA\",\"4oDhgvB\",\"8VDQs1D\",\"pm3z9kc\",\"1BRKNYj\",\"WYJHsrI\",\"FOzv+Zj\",\"PJevOFh\",\"8aTFOzW\",\"iE2l7jW\",\"UaJ6Fae\",\"xivIod5\",\"lgaAFHU\",\"TQAZkKv\",\"x7h4g48\",\"Zx0r1CJ\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"rDzHHGL\",\"gpD7gKM\",\"\\/cMNGhx\",\"e8bJQ8q\",\"SagIiXi\",\"DCNucsL\",\"ICkzBzx\",\"CbVciYk\",\"Up8o120\",\"iuENYaU\",\"m4q5gIa\",\"dioMJ9z\",\"+vXa6Lj\",\"bsXsmKk\",\"G83kG5B\",\"gxHwpBE\",\"pp\\/2fvu\",\"bSZaoMi\",\"ShQo0xA\",\"obEmI58\",\"lA0A1O8\",\"GBulvfh\",\"AsuDyfD\",\"yxuOpZn\",\"68MbJvY\",\"aVqoX25\",\"kWwybab\",\"f7Ym7Sv\",\"cOGwS2G\",\"oEUvNGb\",\"bgEvhmj\",\"51fcjGV\",\"Nx6u9Jq\",\"f0Nl9pe\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisLiveCreationModal.react\":{\"r\":[\"RaA31FN\",\"1XKrke9\",\"\\/cMNGhx\",\"bsXsmKk\",\"ms3f9xJ\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"DsWfgKJ\",\"YYCsR5a\",\"cOGwS2G\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"TQAZkKv\",\"q\\/fczbW\",\"e8bJQ8q\",\"8a1mZN2\",\"1b2FW87\",\"pm3z9kc\",\"PJevOFh\",\"8aTFOzW\",\"xSCpRjR\",\"obEmI58\",\"68MbJvY\",\"Xa\\/Vyod\",\"UaJ6Fae\",\"ImCNdhg\",\"yxuOpZn\",\"DCNucsL\",\"aVqoX25\",\"gpD7gKM\",\"rDzHHGL\",\"WYJHsrI\",\"RgUx6NB\",\"oZORzhP\",\"CbVciYk\",\"m4q5gIa\",\"nQecA5e\",\"LGJRwGF\",\"Zx0r1CJ\",\"SagIiXi\",\"ICkzBzx\",\"iE2l7jW\",\"dioMJ9z\",\"+vXa6Lj\",\"8MwX2jo\",\"G83kG5B\",\"51fcjGV\",\"gxHwpBE\",\"1BRKNYj\",\"iuENYaU\",\"kWwybab\",\"pp\\/2fvu\",\"lgaAFHU\",\"oEUvNGb\",\"bSZaoMi\",\"GBulvfh\",\"AsuDyfD\",\"lA0A1O8\",\"f7Ym7Sv\",\"Nx6u9Jq\",\"ShQo0xA\",\"bgEvhmj\",\"f0Nl9pe\",\"Up8o120\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisSwitchAccountsModal.react\":{\"r\":[\"RaA31FN\",\"TQAZkKv\",\"l8yvi67\",\"SsSrcC4\",\"JYW18Ti\",\"6KCwpsF\",\"Zx0r1CJ\",\"\\/xWlKkI\",\"YYCsR5a\",\"xivIod5\",\"wYUxKHn\",\"obEmI58\",\"WYJHsrI\",\"cOGwS2G\",\"AsuDyfD\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"lgaAFHU\",\"LGJRwGF\",\"68MbJvY\",\"Nx6u9Jq\",\"G83kG5B\",\"CbVciYk\",\"GBulvfh\",\"ImCNdhg\",\"m4q5gIa\",\"gpD7gKM\",\"rDzHHGL\",\"gxHwpBE\",\"bsXsmKk\",\"RgUx6NB\",\"oZORzhP\",\"f7Ym7Sv\",\"51fcjGV\",\"bgEvhmj\",\"Up8o120\",\"lA0A1O8\",\"ShQo0xA\",\"nQecA5e\",\"kWwybab\",\"\\/cMNGhx\",\"e8bJQ8q\",\"DCNucsL\",\"yxuOpZn\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"8MwX2jo\",\"SagIiXi\",\"UaJ6Fae\",\"pp\\/2fvu\",\"f0Nl9pe\",\"bSZaoMi\",\"AD1bWlA\",\"oEUvNGb\",\"+vXa6Lj\",\"aVqoX25\",\"ICkzBzx\",\"xpajmW8\",\"McMbPS1\",\"ccOBUXC\",\"vLAMZRo\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"SwitcherButtonTappedFalcoEvent\",\"ContextualConfig\",\"PolarisODS\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"CometToast.react\",\"CometRelayEF\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"O8ghqVf\",\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"SecuredActionChallengePasswordDialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"PJevOFh\",\"ueGkFVV\",\"8Za3h9N\",\"UrOsroS\",\"wYUxKHn\",\"RaA31FN\",\"vLAMZRo\",\"6KCwpsF\",\"tsaNjL0\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\",\"CometExceptionDialog.react\"]},\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"FBBrowserPasswordEncryption\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"CometToast.react\",\"CometRelayEF\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"SecuredActionChallengeSSODialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"PJevOFh\",\"Na1E3Dy\",\"wYUxKHn\",\"RaA31FN\",\"Is9sUvu\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\",\"CometExceptionDialog.react\"]},\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"CometToast.react\",\"CometRelayEF\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"WorkSSOReauthDialog.react\":{\"r\":[\"M0ByNMu\",\"rDzHHGL\",\"YoHC+Yu\",\"mhiCfI5\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"KeyBindDialog.react\":{\"r\":[\"kleA10d\",\"ZpmIcGw\",\"rDzHHGL\",\"x5opEZT\",\"GltrS7H\",\"UrOsroS\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisDirectInboxPopover\":{\"r\":[\"RaA31FN\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"8rpQEHL\",\"YYCsR5a\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"TQAZkKv\",\"e8bJQ8q\",\"ImCNdhg\",\"vddimCz\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"obEmI58\",\"68MbJvY\",\"UaJ6Fae\",\"yxuOpZn\",\"gpD7gKM\",\"rDzHHGL\",\"WYJHsrI\",\"bsXsmKk\",\"RgUx6NB\",\"oZORzhP\",\"oJPpsv6\",\"CbVciYk\",\"nQecA5e\",\"LGJRwGF\",\"Nx6u9Jq\",\"Zx0r1CJ\",\"\\/cMNGhx\",\"m4q5gIa\",\"DCNucsL\",\"ICkzBzx\",\"Up8o120\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"GBulvfh\",\"8MwX2jo\",\"G83kG5B\",\"SagIiXi\",\"51fcjGV\",\"gxHwpBE\",\"pp\\/2fvu\",\"lgaAFHU\",\"bSZaoMi\",\"lA0A1O8\",\"cOGwS2G\",\"AsuDyfD\",\"f7Ym7Sv\",\"aVqoX25\",\"ShQo0xA\",\"bgEvhmj\",\"+vXa6Lj\",\"fmKqHO6\",\"f0Nl9pe\",\"cX+JuEO\",\"kWwybab\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisActivityFeedBox.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"51fcjGV\",\"rMvrLP1\",\"SsSrcC4\",\"JYW18Ti\",\"HHMg2kK\",\"\\/xWlKkI\",\"YYCsR5a\",\"cOGwS2G\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"OQt4KUI\",\"AsuDyfD\",\"pm3z9kc\",\"PJevOFh\",\"rDzHHGL\",\"8aTFOzW\",\"DsWfgKJ\",\"nQecA5e\",\"lgaAFHU\",\"TQAZkKv\",\"DCNucsL\",\"bsXsmKk\",\"RgUx6NB\",\"f0Nl9pe\",\"m4q5gIa\",\"oZORzhP\",\"LGJRwGF\",\"gpD7gKM\",\"W3hrXJU\",\"Zx0r1CJ\",\"e8bJQ8q\",\"aVqoX25\",\"CbVciYk\",\"yxuOpZn\",\"iE2l7jW\",\"lA0A1O8\",\"kWwybab\",\"G83kG5B\",\"gxHwpBE\",\"1BRKNYj\",\"obEmI58\",\"UaJ6Fae\",\"pp\\/2fvu\",\"+vXa6Lj\",\"iuENYaU\",\"oEUvNGb\",\"bSZaoMi\",\"68MbJvY\",\"GBulvfh\",\"xCiTfbB\",\"SagIiXi\",\"Nx6u9Jq\",\"ms3f9xJ\",\"f7Ym7Sv\",\"ICkzBzx\",\"WYJHsrI\",\"ShQo0xA\",\"bgEvhmj\",\"dioMJ9z\",\"Up8o120\",\"vLAMZRo\",\"8MwX2jo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisDirectMQTT\":{\"r\":[\"RaA31FN\",\"HniVJ+M\",\"6KCwpsF\",\"wYUxKHn\",\"pm3z9kc\",\"yD7sROd\",\"rDzHHGL\",\"JYW18Ti\",\"xivIod5\",\"pp\\/2fvu\",\"v8Pu5wR\",\"\\/cMNGhx\",\"+VhMrk\\/\",\"HfGZtSr\",\"bSZaoMi\",\"TQAZkKv\",\"UaJ6Fae\",\"e8bJQ8q\",\"vLAMZRo\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1}},\"rsrcTags\":[\"u_0_0_71\",\"u_0_1_xu\"]})});\nrequireLazy([\"CometResourceScheduler\"],function(c){c.registerHighPriHashes([\"e37RKYh\",\"e577y0g\"])});\nrequireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierTwoBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierTwoInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"cr:964538\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1]],\"require\":[[\"CometTooltipDeferredImpl.react\"],[\"maybeRemoveElement\"],[\"GlobalVideoPortsImpl.react\"],[\"CometExceptionDialog.react\"],[\"CometCalloutImpl.react\"],[\"emptyFunction\",\"thatReturns\",[\"RequireDeferredReference\"],[[{\"__dr\":\"CometTooltipDeferredImpl.react\"},{\"__dr\":\"maybeRemoveElement\"},{\"__dr\":\"GlobalVideoPortsImpl.react\"},{\"__dr\":\"CometExceptionDialog.react\"},{\"__dr\":\"CometCalloutImpl.react\"}]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"CometTooltipDeferredImpl.react\",\"maybeRemoveElement\",\"GlobalVideoPortsImpl.react\",\"CometExceptionDialog.react\",\"CometCalloutImpl.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"CometTooltipDeferredImpl.react\",\"maybeRemoveElement\",\"GlobalVideoPortsImpl.react\",\"CometExceptionDialog.react\",\"CometCalloutImpl.react\"],\"css\"]]]});});});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierTwoEnd\");</script>\n<script type=\"application/json\" data-content-len=\"83\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierTwoEnd\"]]]}</script>\n\n<script>qpl_inl(\"7191084768081846440\",\"tierThree\");</script>\n<script type=\"application/json\" data-content-len=\"82\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierThree\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierThree\",327);</script>\n<script type=\"application/json\" data-content-len=\"93\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierThree\",327]]]}</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ya/l/0,cross/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"bxData\":{\"6022\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yZ\\/r\\/WuT1LYDBD4A.m4a\"}},\"clpData\":{\"1949898\":{\"r\":1,\"s\":1},\"1743887\":{\"r\":1,\"s\":1},\"1828945\":{\"r\":100,\"s\":1},\"1848815\":{\"r\":10000,\"s\":1},\"819\":{\"r\":1,\"s\":1},\"1744057\":{\"r\":500,\"s\":1},\"1744058\":{\"r\":5000,\"s\":1},\"1744059\":{\"r\":10000,\"s\":1},\"1744060\":{\"r\":1000,\"s\":1},\"1857112\":{\"r\":1,\"s\":1},\"1828905\":{\"r\":1,\"s\":1},\"1871697\":{\"r\":1,\"s\":1},\"1764786\":{\"r\":1,\"s\":1},\"1823926\":{\"r\":1,\"s\":1},\"1755537\":{\"r\":1,\"s\":1},\"1873550\":{\"r\":10000,\"s\":1},\"1743095\":{\"r\":1,\"s\":1}},\"gkxData\":{\"307\":{\"result\":true,\"hash\":\"AT5dPMZBMiNY0f7uLC4\"},\"762\":{\"result\":false,\"hash\":\"AT7XePNdehhQhxt4pQY\"},\"2795\":{\"result\":false,\"hash\":\"AT5ilL0A5sDVhuaBELo\"},\"2810\":{\"result\":false,\"hash\":\"AT7dAsBSsZL01JO_QJo\"},\"5639\":{\"result\":true,\"hash\":\"AT5SF61ZadJ9LozlPn8\"},\"778292\":{\"result\":false,\"hash\":\"AT574OhXHwX0kRP2qlA\"},\"832242\":{\"result\":false,\"hash\":\"AT7QZmREZ7b0HQdOF18\"},\"945829\":{\"result\":true,\"hash\":\"AT6KFs8jy_GkmgnU0Aw\"},\"968609\":{\"result\":true,\"hash\":\"AT7nKteWCVYK6uN6DUI\"},\"1001007\":{\"result\":false,\"hash\":\"AT54HpnriRBxXJ_M4lU\"},\"1066746\":{\"result\":false,\"hash\":\"AT55_E5b8Sj7u5rUCzA\"},\"1166607\":{\"result\":false,\"hash\":\"AT7xrOkGBcaF8I5uKoY\"},\"1196\":{\"result\":false,\"hash\":\"AT7JN3eRi_TkojttTEU\"},\"6258\":{\"result\":false,\"hash\":\"AT5ZFurVOaTLk7IyvfU\"},\"1341692\":{\"result\":false,\"hash\":\"AT6ztF4pPshu3yZQCUc\"},\"1334580\":{\"result\":false,\"hash\":\"AT6P8Id36DnRE-rxbYM\"},\"5269\":{\"result\":false,\"hash\":\"AT7dQXDqO_qPX5n-kFk\"},\"574\":{\"result\":false,\"hash\":\"AT5l2P5ytV2bv8xHNxQ\"},\"871\":{\"result\":true,\"hash\":\"AT4vyfQGHTBrTQa9woI\"},\"1626\":{\"result\":false,\"hash\":\"AT6XwrJGGF9CvtwsosI\"},\"1799\":{\"result\":false,\"hash\":\"AT6Id9SGNjhz9Osh00M\"},\"2674\":{\"result\":false,\"hash\":\"AT6LknPzbQEjKsuxQNE\"},\"2819\":{\"result\":false,\"hash\":\"AT77OwnXENquugNcSNY\"},\"1652843\":{\"result\":false,\"hash\":\"AT6uh9NWRY4QEQoY_Jg\"},\"1352\":{\"result\":true,\"hash\":\"AT5QIimySNH929zXv4c\"}},\"ixData\":{\"485124\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":24,\"h\":24,\"p\":\"-100px -99px\",\"sz\":\"auto\"}},\"qexData\":{\"37\":{\"r\":null},\"130\":{\"r\":null},\"131\":{\"r\":null},\"656\":{\"r\":null},\"657\":{\"r\":null},\"660\":{\"r\":null},\"19\":{\"r\":null},\"245\":{\"r\":null},\"296\":{\"r\":null},\"379\":{\"r\":null},\"478\":{\"r\":null},\"1742\":{\"r\":null},\"633\":{\"r\":null}},\"justknobxData\":{\"317\":{\"r\":16}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"gNzyyn\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEwU4\\/y-\\/l\\/en_US\\/KKZf8FX1sT4ozwG_xmxgK87lOXZygpG8_2QF11C8Kc69HUxMHl9LidgmLT6R-X0Ih2WchIFc77ydpiZQLDmBv2K-_nOseCHUKy2h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLKhsU-pEZX1mw1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"lOLXvja\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/z3tBjWqvW0-.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":39365\",\"m\":\"1006847381_longtail\",\"nc\":1},\"PxF2nsc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/Dy8CTDeaF7j.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":546\",\"m\":\"1006847381_main\",\"nc\":1},\"e5d6Ztw\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/qClHE3ggsTY.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":353\",\"m\":\"1006847381_main\",\"nc\":1},\"kfpwlze\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/PE87llWkhUd.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":714\",\"m\":\"1006847381_main\",\"nc\":1},\"pPp+jIc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/Qg9dZGuEzHE.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":82\",\"m\":\"1006847381_main\",\"nc\":1},\"SkFr2Ae\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVNy4\\/yM\\/l\\/en_US\\/5PVc6Qpbasq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":58\",\"m\":\"1006847381_main\",\"nc\":1},\"W5crAoY\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTQy4\\/yT\\/l\\/en_US\\/X7C_iLj0yRa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":710\",\"m\":\"1006847381_main\",\"nc\":1},\"eivexpP\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0aW9AeuaFOnx_.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388,743\",\"nc\":1},\"TETat5y\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iPvu4\\/yw\\/l\\/en_US\\/w3u7PbaKnVZ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":177\",\"m\":\"1006847381_main\",\"nc\":1},\"kho7\\/jW\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iK1C4\\/ye\\/l\\/en_US\\/w3u7PbaKnVZYhiQUqTmFFHKWg4P5lmhwJqClHE3ggsTYDy8CTDeaF7j_mTNodGA1yKQg9dZGuEzHEg1UC9KyubLfPE87llWkhUdbSqxIEuBnPF2KtBqbM9U8F14xtbHg3WbC6P9n2F2AKCIJJdX6BV3dPz8c0H7ihoY7nxRdJbjnMUA7AD0vIwbJotB.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":177,42,126,353,546,770,82,109,714,24571,30537,25361,24726,24915,24783,24582,24725\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"pz9YUL2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/l\\/0,cross\\/eShCSGw11YpGm7TiUB88U6D3LZcWILYuplGwdDxZWs8d2mma9gOZ0yhRP1ehFw2w0aW9AeuaFOnx_2OHDOK2lZe-ySOd8EEugVVzHJWgay9vgV.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":461,572,530,1049,141,388,743,967,1071,24724\",\"nc\":1},\"yP6nl4x\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/SkVQ6fLU1EJ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":40\",\"m\":\"1006847381_main\",\"nc\":1},\"c4jwoso\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i2TV4\\/y5\\/l\\/en_US\\/aPSIKWlVJZP.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":373\",\"m\":\"1006847381_main\",\"nc\":1},\"ixymreW\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3izyN4\\/yR\\/l\\/en_US\\/RDR1tSXNcuC.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":1132\",\"m\":\"1006847381_main\",\"nc\":1},\"H7A1\\/vo\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3XV4\\/ym\\/l\\/en_US\\/B-73iZvdSs6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":1070\",\"m\":\"1006847381_main\",\"nc\":1},\"qiPpWo6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLl54\\/y4\\/l\\/en_US\\/uRty0IB2ck6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":379\",\"m\":\"1006847381_main\",\"nc\":1},\"uen0LVB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i7664\\/y8\\/l\\/en_US\\/ktG5_klR3PO.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":947\",\"m\":\"1006847381_main\",\"nc\":1},\"grEoa8Y\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3if094\\/ys\\/l\\/en_US\\/Woh9q-loyHP.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":431\",\"m\":\"1006847381_main\",\"nc\":1},\"Pfkc54B\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/YBirLTG403L.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37184\",\"m\":\"1006847381_longtail\",\"nc\":1},\"sD3z2ST\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/OgQZKqBcuUW.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":632\",\"m\":\"1006847381_main\",\"nc\":1},\"+ClWygH\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/r611P2Lt7hb.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37192\",\"m\":\"1006847381_longtail\",\"nc\":1},\"n2UPpV0\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/xKJiMS7RGt4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37177\",\"m\":\"1006847381_longtail\",\"nc\":1}},\"compMap\":{\"CometProfileVideoSection.react\":{\"r\":[\"rDzHHGL\",\"PJevOFh\",\"wYUxKHn\",\"lOLXvja\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]}},\"Dialog\":{\"r\":[\"PxF2nsc\",\"kleA10d\",\"e5d6Ztw\",\"kfpwlze\",\"pPp+jIc\",\"SkFr2Ae\",\"W5crAoY\",\"eivexpP\",\"TETat5y\",\"rDzHHGL\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"ExceptionDialog\":{\"r\":[\"kho7\\/jW\",\"kleA10d\",\"pz9YUL2\",\"rDzHHGL\",\"yP6nl4x\",\"c4jwoso\",\"SkFr2Ae\",\"ixymreW\",\"H7A1\\/vo\",\"wYUxKHn\",\"qiPpWo6\",\"RaA31FN\",\"uen0LVB\",\"vLAMZRo\",\"6KCwpsF\",\"grEoa8Y\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"QuickSandSolver\":{\"r\":[\"PxF2nsc\",\"Pfkc54B\",\"pPp+jIc\",\"wYUxKHn\",\"sD3z2ST\",\"vLAMZRo\",\"6KCwpsF\",\"+ClWygH\",\"rDzHHGL\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"ConfirmationDialog\":{\"r\":[\"PxF2nsc\",\"pPp+jIc\",\"n2UPpV0\",\"rDzHHGL\",\"wYUxKHn\",\"vLAMZRo\"],\"be\":1},\"TransportSelectingClientSingleton\":{\"r\":[\"wYUxKHn\",\"vLAMZRo\"],\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\",\"6KCwpsF\",\"rDzHHGL\"]},\"be\":1},\"RequestStreamCommonRequestStreamCommonTypes\":{\"r\":[\"wYUxKHn\"],\"be\":1}},\"sotUpgrades\":[\"m6VVYrH\",\"GltrS7H\",\"gNzyyn\\/\",\"lwZReTr\",\"kleA10d\",\"OW1kw59\",\"ht8qD46\",\"l5HqvCB\"]})});\nrequireLazy([\"CometResourceScheduler\",\"JSScheduler\",\"Bootloader\"],function(c,s,b){c.onHighPriComplete(function(){s.scheduleLoggingPriCallback(function(){b.loadResources([\"m6VVYrH\",\"GltrS7H\",\"gNzyyn\\/\",\"lwZReTr\",\"kleA10d\",\"OW1kw59\",\"l5HqvCB\"])})})});\nrequireLazy([\"Bootloader\"],function(b){b.loadResources([\"ht8qD46\"],{onAll:function(){requireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierThreeBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierThreeInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"MarauderConfig\",[],{\"app_version\":\"1.0.0.0 (1006847381)\",\"gk_enabled\":false},31],[\"MqttWebConfig\",[],{\"fbid\":\"0\",\"appID\":219994525426954,\"endpoint\":\"wss:\\/\\/edge-chat.facebook.com\\/chat\",\"pollingEndpoint\":\"https:\\/\\/edge-chat.facebook.com\\/mqtt\\/pull\",\"subscribedTopics\":[],\"capabilities\":10,\"clientCapabilities\":3,\"chatVisibility\":false,\"hostNameOverride\":\"\"},3790],[\"MqttPublishTimeoutConfig\",[],{\"mqttPublishTimeoutMs\":90000},4266],[\"RequestStreamE2EClientSamplingConfig\",[],{\"sampleRate\":100000,\"methodToSamplingMultiplier\":{\"RTCSessionMessage\":10000,\"Presence\":0.01,\"FBGQLS:VOD_TICKER_SUBSCRIBE\":0.01,\"FBGQLS:HUDDLE_USERS_REQUESTED_TO_SPEAK_COUNT_SUBSCRIBE\":1000,\"FBGQLS:FEEDBACK_LIKE_SUBSCRIBE\":1}},4501],[\"WebDevicePerfInfoData\",[],{\"needsFullUpdate\":true,\"needsPartialUpdate\":false,\"shouldLogResourcePerf\":false},3977],[\"CometRouteActorToasterBlocklist\",[],{\"route_trace_policies\":[\"comet.jobs.composer\",\"comet.jobs.detailView\",\"comet.compat.XCometPageJobOpeningDetailViewController\",\"comet.offer.create\",\"comet.offers.offer_details\",\"comet.crisis.safety_check\",\"comet.crisis.home_page\"]},5542],[\"TrackingConfig\",[],{\"domain\":\"https:\\/\\/pixel.facebook.com\"},325],[\"WebStorageMonsterLoggingURI\",[],{\"uri\":null},3032],[\"DGWWebConfig\",[],{\"appId\":\"936619743392459\",\"appVersion\":\"0\",\"dgwVersion\":\"2\",\"endpoint\":\"\",\"fbId\":\"0\",\"authType\":\"\"},5508],[\"cr:1094907\",[],{\"__rc\":[null,\"Aa0-AXU7QQ_i030JU71shuMhgRJP-F94XW55rErXmKgEYY3ct2H0uGF-bdI6wohC5MLNm-R1Taqblv5rH-p29_c\"]},-1],[\"cr:1351741\",[\"CometEventListener\"],{\"__rc\":[\"CometEventListener\",\"Aa0jgCZvYvIxj3voBdBfyJUBmAC11MlyS62vnQgB9R6ke1pf1FHNWDj6mZviKNgwfh8rvplPuNyK_kWRXvTZGWD8NFlS9OqupxmJg_izy5Jgo1iKgcZm\"]},-1],[\"cr:3024\",[],{\"__rc\":[null,\"Aa1q4dC3lNmbE9_dpUbNzD4ldsQUa-b3Tr19KBcTt42H2TBoGblbeOPbkYaMh8C_RNUBejHGdUiKpYo\"]},-1],[\"cr:2046346\",[],{\"__rc\":[null,null]},-1],[\"cr:653\",[],{\"__rc\":[null,\"Aa0R7jt7o1oxJqfpXA2k6YVuPFeTqShAPFN119DkY8MsBlo6a72pb0Xw7mV3S0u833UAab4DLlZr1oXEctWZ4IxmmqyrwB4iUw\"]},-1],[\"cr:2718\",[],{\"__rc\":[null,\"Aa3aJm-A00RAAaWbovzHGMZSfh5xZ4EH1a_XSMWSS-fL6EsUN3Uk5YynExathSheUVHhmO0yXAlxhjCuAGHELmGJZzYkHrg\"]},-1],[\"cr:10026\",[],{\"__rc\":[null,\"Aa0r588aIW3G0zjGZ1_sJQwEZYv0bIcC0KlGJulKyR_-zIt0mkUSIYEVkWRTydxgsUOj8VxNkhI306DaB1ykctrfarGRC7Jm4iIJdg\"]},-1],[\"cr:1201738\",[],{\"__rc\":[null,\"Aa2vSygTQLc_smVEJFepv_lubOCo9cNOzrIDmhQrk8mR9Z9TaBfOatUar6jf5AXzRMV3Zott8m7YEXhOPM8SIgwDQCpFTSF9rOHLzjZQSdQb\"]},-1],[\"cr:1332233\",[],{\"__rc\":[null,\"Aa13GZ_kwGKanhwBLTb0AOSm_18LC0233aiEWzcFC7DXd_lV7SRV7jt61jKRU9hupXIpgV6HLNOcVHSE_wWNplQXEgLaWH5aXg\"]},-1],[\"cr:1345969\",[\"AccessibilityWebAssistiveTechTypedLoggerLite\"],{\"__rc\":[\"AccessibilityWebAssistiveTechTypedLoggerLite\",\"Aa3uX3Ib7H-V1I0ETB7IpwARTI8wB94PLL6DDVvl6zaeNbsS2jeRn_7is4fXMidUcgvaMGVCyNE\"]},-1],[\"cr:1516609\",[\"BDCometSignalCollectionTrigger\"],{\"__rc\":[\"BDCometSignalCollectionTrigger\",\"Aa2mfIryioyhsV-cPbL5eMg9hC2eJLx80oken9MY1vV39pngTgAKMrs4EbEN28_9sL5cLoFlwxVpExnCKU_7Q_-SqXX3xIwKkFidvh0ZWrN1CxmdtaxmfQ8O6w\"]},-1],[\"cr:1634616\",[\"CometUserActivity\"],{\"__rc\":[\"CometUserActivity\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:3473\",[],{\"__rc\":[null,null]},-1],[\"BDSignalCollectionData\",[],{\"sc\":\"{\\\"t\\\":1659080345,\\\"c\\\":[[30000,838801],[30001,838801],[30002,838801],[30003,838801],[30004,838801],[30005,838801],[30006,573585],[30007,838801],[30008,838801],[30012,838801],[30013,838801],[30015,806033],[30018,806033],[30021,540823],[30022,540817],[30040,806033],[30093,806033],[30094,806033],[30095,806033],[30101,541591],[30102,541591],[30103,541591],[30104,541591],[30106,806039],[30107,806039],[38000,541427],[38001,806643]]}\",\"fds\":60,\"fda\":60,\"i\":60,\"sbs\":1,\"dbs\":100,\"bbs\":100,\"hbi\":60,\"rt\":262144,\"hbcbc\":2,\"hbvbc\":0,\"hbbi\":30,\"sid\":-1,\"hbv\":\"7799648998567260803\"},5239]],\"instances\":[[\"__inst_af5d41d9_0_0_Ua\",null,null,1]],\"require\":[[\"BanzaiScuba_DEPRECATED\"],[\"PolarisODS\"],[\"FbtLogging\"],[\"LynxAsyncCallbackFalcoEvent\"],[\"CometSuspenseFalcoEvent\"],[\"IntlQtEventFalcoEvent\"],[\"AsyncRequest\"],[\"ContextualConfig\"],[\"IGDSPrivateToaster.react\"],[\"BladeRunnerClient\"],[\"CometErrorLogging\"],[\"SkywalkerUtils\"],[\"CometToast.react\"],[\"WebDevicePerfInfoLogging\"],[\"CometPixelRatioUpdater\"],[\"CometUncaughtError.react\"],[\"CometBrowserDimensionsLogger\"],[\"CometToasterView_DO_NOT_USE.react\"],[\"CometRelayEF\"],[\"CometRouteActorToaster.react\"],[\"CometOnBeforeUnloadDialog.react\"],[\"ClientConsistencyFalcoEvent\"],[\"ODS\"],[\"CometRootDeferredShared\"],[\"FalcoLoggerTransports\"],[\"PolarisIncomingCall.react\"],[\"DGWRequestStreamClient\"],[\"emptyFunction\",\"thatReturns\",[\"RequireDeferredReference\"],[[{\"__dr\":\"BanzaiScuba_DEPRECATED\"},{\"__dr\":\"PolarisODS\"},{\"__dr\":\"FbtLogging\"},{\"__dr\":\"LynxAsyncCallbackFalcoEvent\"},{\"__dr\":\"CometSuspenseFalcoEvent\"},{\"__dr\":\"IntlQtEventFalcoEvent\"},{\"__dr\":\"AsyncRequest\"},{\"__dr\":\"ContextualConfig\"},{\"__dr\":\"IGDSPrivateToaster.react\"},{\"__dr\":\"BladeRunnerClient\"},{\"__dr\":\"CometErrorLogging\"},{\"__dr\":\"SkywalkerUtils\"},{\"__dr\":\"CometToast.react\"},{\"__dr\":\"WebDevicePerfInfoLogging\"},{\"__dr\":\"CometPixelRatioUpdater\"},{\"__dr\":\"CometUncaughtError.react\"},{\"__dr\":\"CometBrowserDimensionsLogger\"},{\"__dr\":\"CometToasterView_DO_NOT_USE.react\"},{\"__dr\":\"CometRelayEF\"},{\"__dr\":\"CometRouteActorToaster.react\"},{\"__dr\":\"CometOnBeforeUnloadDialog.react\"},{\"__dr\":\"ClientConsistencyFalcoEvent\"},{\"__dr\":\"ODS\"},{\"__dr\":\"CometRootDeferredShared\"},{\"__dr\":\"FalcoLoggerTransports\"},{\"__dr\":\"PolarisIncomingCall.react\"},{\"__dr\":\"DGWRequestStreamClient\"}]]],[\"CometPlatformRootClient\",\"initDeferred\",[\"__inst_af5d41d9_0_0_Ua\"],[{\"__m\":\"__inst_af5d41d9_0_0_Ua\"},{\"sketchInfo\":null,\"userID\":0,\"deferredCookies\":{\"_js_ig_did\":{\"value\":\"46749EC6-93BF-448F-B7A9-9502CB1F16F7\",\"expiration_for_js\":31536000000,\"expiration_for_http\":1705840895,\"path\":\"\\/\",\"domain\":\".instagram.com\",\"secure\":true,\"http_only\":true,\"first_party_only\":true,\"add_js_prefix\":true,\"same_site\":\"None\"},\"_js_datr\":{\"value\":\"f93LY3Ufmyi8a2tcIQxxt_Sm\",\"expiration_for_js\":63072000000,\"expiration_for_http\":1737376895,\"path\":\"\\/\",\"domain\":\".instagram.com\",\"secure\":true,\"http_only\":true,\"first_party_only\":true,\"add_js_prefix\":true,\"same_site\":\"None\"}},\"blLoggingCavalryFields\":{\"bl_sample_rate\":0,\"hr_sample_rate\":0,\"parent_lid\":\"7191084768081846440\"}}]],[\"MqttLongPollingRunner\"],[\"AcfToastImpressionFalcoEvent\"],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"CometProfileVideoSection.react\"]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"BanzaiScuba_DEPRECATED\",\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"AsyncRequest\",\"ContextualConfig\",\"IGDSPrivateToaster.react\",\"BladeRunnerClient\",\"CometErrorLogging\",\"SkywalkerUtils\",\"CometToast.react\",\"WebDevicePerfInfoLogging\",\"CometPixelRatioUpdater\",\"CometUncaughtError.react\",\"CometBrowserDimensionsLogger\",\"CometToasterView_DO_NOT_USE.react\",\"CometRelayEF\",\"CometRouteActorToaster.react\",\"CometOnBeforeUnloadDialog.react\",\"ClientConsistencyFalcoEvent\",\"ODS\",\"CometRootDeferredShared\",\"FalcoLoggerTransports\",\"PolarisIncomingCall.react\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"CometExceptionDialog.react\",\"AcfToastImpressionFalcoEvent\",\"CometTooltipDeferredImpl.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"BanzaiScuba_DEPRECATED\",\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"AsyncRequest\",\"ContextualConfig\",\"IGDSPrivateToaster.react\",\"BladeRunnerClient\",\"CometErrorLogging\",\"SkywalkerUtils\",\"CometToast.react\",\"WebDevicePerfInfoLogging\",\"CometPixelRatioUpdater\",\"CometUncaughtError.react\",\"CometBrowserDimensionsLogger\",\"CometToasterView_DO_NOT_USE.react\",\"CometRelayEF\",\"CometRouteActorToaster.react\",\"CometOnBeforeUnloadDialog.react\",\"ClientConsistencyFalcoEvent\",\"ODS\",\"CometRootDeferredShared\",\"FalcoLoggerTransports\",\"PolarisIncomingCall.react\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"CometExceptionDialog.react\",\"AcfToastImpressionFalcoEvent\",\"CometTooltipDeferredImpl.react\"],\"css\"]]]});});});}})});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierThreeEnd\");</script>\n<script type=\"application/json\" data-content-len=\"85\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierThreeEnd\"]]]}</script>\n\n<script>window.pldmp = {\"7191084768081846440\":{\"css\\/6edbtep1nmgwooos.pkg,css\\/k6jsgg508hwks4gc.pkg,css\\/643znbe8uuww0sk4.pkg,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePopover.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/l\\/0,cross\\/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/buapdyfyycgk4w8s.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationIcon,js\\/instagram\\/polaris\\/modules\\/styles\\/Polarisglobal,js\\/instagram\\/polaris\\/core\\/XIGPage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreMegaphoneHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/lists\\/PolarisIGCoreListItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualGrid,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACImagePicker,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDivider,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentBrowserList,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupEmailSuggestionDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionFooter,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisMiddleDot,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOverlay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCondensedMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPBloksRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopoverContentContainer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallLink,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileMenuItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPHelperModule,js\\/instagram\\/polaris\\/adapters\\/ui\\/RouteLoadingBar,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisBaseShell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/hooks\\/usePolarisHideOutline,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericNavBackButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisImageFileForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutIconUtils.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yH\\/l\\/0,cross\\/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetPostFromMediaDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/PolarisuserReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimLoginForm.react,js\\/5hsowgzfkx8o004s.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalConversion\\/PolarisProfessionalConversionActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetPostFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentStrings.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/comment\\/PolariscommentReducer,js\\/27mp1a1v9am8go00.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/ui\\/PolarisFollowingActionsModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutIntentDialog.react,shared\\/third-party-bundles\\/normalizr-3.3.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTwoFactorForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisReportStrings,shared\\/third-party-bundles\\/css-in-js-utils-3.1.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellInnerContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutAppSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryAPIActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfileEditStrings,shared\\/third-party-bundles\\/react-spring-rafz-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalConversionCardTypeConfigs.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreMetaLogoPrimaryIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mobileStoryCreation\\/PolarisstoryCreationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisnavigationSelectors,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisPostRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInstagramWordmarkIcon,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/country_names\\/PolarisCountryNamesConfigJSModule.en_US.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_954\\/yI\\/l\\/en_US\\/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/6shsxta4034s0o4k.pkg,js\\/96g6scpfwy880owg.pkg,js\\/781zxh1eih0ksos8.pkg,js\\/6zfd06dvlpsskgs0.pkg,js\\/8k3memnucccg84wo.pkg,js\\/1bcvj230rclc88sk.pkg,shared\\/third-party-bundles\\/react-spring-core-9.4.5.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3imDI4\\/yD\\/l\\/en_US\\/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/clincp2mt1s888kw.pkg,js\\/3ysyndwrdn28ks04.pkg,js\\/ciqxk7hor3ksgg08.pkg,js\\/wzcw46dyrqoscgow.pkg,js\\/40g1sv7zr4ow84oo.pkg,shared\\/third-party-bundles\\/react-spring-shared-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryActions,js\\/20drax5dbjggwoww.pkg,shared\\/third-party-bundles\\/react-redux-8.0.1,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarispaymentsCheckoutReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarisSignupActions,js\\/instagram\\/polaris\\/www_schema_components\\/PolarisMobileNavMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsStrings,shared\\/third-party-bundles\\/babel-runtime-7.14.6,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisEmojiConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisConsentModal.react,shared\\/third-party-bundles\\/inline-style-prefixer-5.1.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarispostReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisdirectReducer,shared\\/third-party-bundles\\/react-spring-web-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisstoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisstorySelectors,shared\\/third-party-bundles\\/react-spring-animated-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/PolarissettingsReducer,js\\/70oshkhfatc0w8sc.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisrelationshipReducer,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedTimelineRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthFormCard.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedRootPaginationQuery_subscribe.graphql.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3xT4\\/y5\\/l\\/en_US\\/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksApply,shared\\/facebook\\/isInstagramBlobURI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisdebounce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedParallel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/pendingComment\\/PolarisPendingCommentState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionSetProfessionalAccountStatusForUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenUserDetail,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayActions,js\\/instagram\\/polaris\\/error\\/PolarisErrorRoot.entrypoint,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetImageResourceFromGraphImageResource,shared\\/js\\/__generated__\\/JSEnumMeerkatStep\\/single_source\\/PolarisFeedVariants\\/JSEnumArtifact\\/PolarisFeedVariants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/gating\\/IGWeb2023H1Gating,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisJavascriptWebErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGStringEncryptPassword,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberMul,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisMultiStepSignupController\\/JSRouteBuilderArtifact\\/XPolarisMultiStepSignupControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationLayoutContext,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToasterContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksInsertChildrenAfter,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisTimer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetFollowRequests,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncLoadV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelatedMediaFromGraphMediaInterface,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnExplorePage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberDiv,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionGating,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberGt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberAdd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberSub.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ye\\/r\\/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreTooltip,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisConsentModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenBulletListInterstitial,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreTextInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOneTapLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericMobileHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthFormCard,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNav,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCheckbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisIconSnackbar,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreSearchInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlayBase,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNav,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericDesktopHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFooter,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisLabeledTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenInterstitial,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimSignupForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisCheckboxToggle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDOBFieldSelect,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheet.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/l\\/0,cross\\/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSaveFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartGallerySessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndGallerySessionEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateConsentState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndPostCaptureSession,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchBackPressedFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGalleryStartEditSession,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFXAuthenticationLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveCommentImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointSnapshot,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/hasPolarisBugReporting,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramThumbnailClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisWellbeingCommentCoverFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/utils\\/PolarisScreenTimeEnforcementState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisSignupTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/trackFBRegistrationConversion,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebAgeCollectionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchViewportViewFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramClearSearchHistoryFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchResultsPageFalcoEvent,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnProfilePage,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramAdVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraShareMediaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelatedVideoMediaFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFBInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgWebImageLoadingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartCameraSessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebRegistrationFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/r\\/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisZeroIgWebCarrierSignalPingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisPlatformBadge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebStoriesLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetTaggedUserFromGraphTaggedUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followList\\/PolarisFollowListState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisMiniToast.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateConsentDob,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentpermalink\\/PolarisCommentPermalinkUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedRefreshFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebComponentPerfEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/incomingCall\\/PolarisIncomingCallActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebResourceTimingEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGalleryStartShareSessionEvent,js\\/instagram\\/polaris\\/adapters\\/ui\\/RouteLoadingBar,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebCacheLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebClientConnectionInfoFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEmailValidator,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/trimPolarisLinkTrackingData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetAccountBadgeData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenUrlV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetMappedOwnerTypeFromReelDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchSessionInitiatedFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisInteractionTracingExtensions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarissetPageTitle,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisBaseModel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartPostCaptureSession,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIStoryPollVote,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraGallerySelectMediaEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGallerySelectMultipleEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisOneTraceQPLLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsFormUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/actions\\/PolarisPostActionPostLoadedV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFeedTimeline,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogo.react,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGCometPushViewCloseButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisErrorBoundary.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisStopDeletionDialogStrings,js\\/instagram\\/polaris\\/feed\\/usePolarisFeedVariantScrollRestore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePinPanoFilled24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetCommentFromCommentDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisCheckboxToggle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIExtractTwoFactorChallengeIfPresent,js\\/instagram\\/polaris\\/core\\/initXIGRuntime,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisCookieConsentFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAdminSpinner.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreWarningPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogoWithTitle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePhotoGridPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolaristransformReelEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHashtagPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLogoutActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsListContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/post\\/PolarisPostModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalFooter,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisHashtagMediaModel.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3isHT4\\/yE\\/l\\/en_US\\/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisnormalizeActivityFeedItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCoreHoverCardConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetVideoResourceFromGraphVideoResource,js\\/instagram\\/polaris\\/core\\/PolarisSplashScreen.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/embed\\/PolarisEmbedState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisgetPageTitle,shared\\/js\\/__generated__\\/JSEnumMeerkatStep\\/single_source\\/IGAutomatedLoggingInteractionGestureType\\/JSEnumArtifact\\/IGAutomatedLoggingInteractionGestureType,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenBottomSheetOrDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIVerifyAge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSuggestedUserFromGraphSuggestedUser,js\\/instagram\\/polaris\\/error\\/PolarisErrorRoot.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisavatarConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisgetReelIdFromReelType,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFXSSOLinkedUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSharingFrictionInfoFromGraphMediaSharingFrictionInfo,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIApproveFollowRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIIgnoreFollowRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPICheckNewFeedPostsExist,js\\/instagram\\/polaris\\/core\\/relay\\/relayPolarisGetDataID,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformActivityFeedUserEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisTimeSpentScreenTimeFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGTVIndicator.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenDiscoverPeople,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchParentalConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisSEOEventsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayDispatch,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnAdsActivityPage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/centralizedUpsell\\/PolariscentralizedUpsellSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisPaymentsConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchUnconsentedConsents.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksRotate3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayClone,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayConcat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayRemove,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetAttr,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberSub,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisCurrentLocale,shared\\/third-party-bundles\\/inline-style-prefixer-grid,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapUpdate,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGridConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisLoginConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberAdd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayLength,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberMul,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberEq,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaModelBase,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringLength,shared\\/third-party-bundles\\/inline-style-prefixer-flex,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisSnackbarConstants,shared\\/third-party-bundles\\/css-in-js-utils-resolveArrayValue,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolNot,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarismemoizeLast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberGt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringConcat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberLt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksConstNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksInflateSync.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksInternalShadow,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGLineChartV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlayContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetProfilePosts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisnormalizeFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/desktop\\/PolarisDesktopStoriesGalleryConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisguidesReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGLanguageSwitcher,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreChevronDownPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisStrategicWebTraffic,js\\/ezemckykhb4gww8c.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/ActivityFeed\\/activity_feed_box\\/PolarisActivityFeedBoxLoader.react,shared\\/third-party-bundles\\/hyphenate-style-name-1.0.4,shared\\/third-party-bundles\\/redux-thunk-2.3.0,js\\/instagram\\/polaris\\/adapters\\/ui\\/Portal,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/upsell\\/PolarisUpsellActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFooterBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisLiveHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOAuthPermissionResultCallbackDoNotUse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSavePanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSavePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScalarNativePropsStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/PolarisisEligibleForFacebookLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/location\\/PolarisLocationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisScrollPositionManager.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisMemoizedBindContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/newPostsPill\\/usePolarisLightweightNewPostsPillCheck.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3itX54\\/yU\\/l\\/en_US\\/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksImage,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromUserInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHeartPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/PolarisuserSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionRemoveCloseFriendUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginFromCredentialManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionFollowUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionAddCloseFriendUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/discoverChaining\\/PolarisdiscoverChainingReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaAccountOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAcceptTermsOfUseForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFacebookLoginLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisInteractionsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksCollection,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGScreen,shared\\/third-party-bundles\\/merge-1.2.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationBannerIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisTransform3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNewPostPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404PageBase.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/usePolarisHoverCardDelay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopoverContentContainer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisTrackingLinkClickHandler,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFocusTrap.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentLikeLists\\/PolariscommentLikeListsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarislogReelPlaybackEntry,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreStarPanoFilledGradientIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404Page.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3izF44\\/yn\\/l\\/en_US\\/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileMenuItems.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimTextInput.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksPrimitives,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSearchResultsFromSearchResultsData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthTypeSwitcher.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisStoryRing.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlay.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisFBConnectHelpers,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryCache,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisGenericStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisResponsiveImage.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLoggedInAppBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisPaginationUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/__private__\\/PolarisLoginActionBaseLogin,shared\\/third-party-bundles\\/stackblur-1.0.0,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisOpenInApp,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisLocalesConstants,shared\\/third-party-bundles\\/tabbable-5.1.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginWithFBAccessToken,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/buildIGWWWCometRouterStateProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksNavbar,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPhoto.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreSearchInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisEmailConfirmationForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGrid.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectMediaHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetTappableObjectsFromMediaDict.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3in5G4\\/yN\\/l\\/en_US\\/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveBadge,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/stories\\/PolarisUserAvatarLivePulse,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenu,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisActivityIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupChangeNumberForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisMiniToast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroLoggedOutUpsell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisNavWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreToast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGConfirmationCode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisUserAvatarWithStories,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAdminSpinner,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcher,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericOnboardingUnit,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTwoFactorForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLoadingBar,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookAccountPicker,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCorePhoneNumberInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuSection,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullStateSection,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuLink,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupConfirmForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisLandingForm,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialogCircleMedia.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/l\\/0,cross\\/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPageMetadata.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGAnnotateTTIEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisProfileLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisreducerRegistry,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetMediaDictFromDynamicExploreGridItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolariscreateSelectorWithArg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisIgLiteCarbonUpsellsUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/emptyFeed\\/PolarisemptyFeedReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisnormalizeUserDicts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisIsFeedItemWithOldAdDataModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTOSStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSponsorItemsFromSponsorTagsDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisDiscoverLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/Birthday\\/PolarisBirthdayHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/processPolarisFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisnewPostsPillSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGAnchor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFBConnectStatus,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSubtitleFromUserData,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisMisinformationConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionGetUserInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDivider,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisNetworkInfo,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXSettingLogClick,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelViewerAppAttributionClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGClearChallenge,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksAction,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelationshipInfoFromRelationshipInfoDict.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iumd4\\/yp\\/l\\/en_US\\/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisSentryFeedbackDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCheckbox,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisMediaConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/shopping\\/PolarisshoppingReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisStoriesStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopover,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/displayProperties\\/PolarisDisplayPropertiesActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileIconV2.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisExploreIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGConfirmationCode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksFlexbox,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisGradientSpinnerSpecs,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisfollowRequestReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarissearchSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDevicePhonePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/charitableGiving\\/PolarisCGCheckoutUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveStrings,js\\/instagram\\/polaris\\/modules\\/styles\\/PolarisSizing,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialogButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXAccountCenterEntrypointInformation.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultHashtagItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNavigationalHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheStateGetters,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksApp,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisExternalLink.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisKnownQEParams,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayViewpointManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionBuildFeedPageLoadedActionV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisnormalizeMediaDicts.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iGYw4\\/yu\\/l\\/en_US\\/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenActionSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksBooleanUtils,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisFeedController\\/JSRouteBuilderArtifact\\/XPolarisFeedControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMatchesRegex,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReflow,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGToast,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisPostRootQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGResumeStoryPlayback,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenShareSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGLogEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksExecutor,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseModalWithResult,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksRemoveChildrenBetween,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetVariable2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksVisibilityContextHasSeenBefore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksClipboardSetString,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberRand,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksSessionStoreGet,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectCacheConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDangerouslyGetTreeFromParseResult,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksLogEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingContent\\/PolarisTrendingContentSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDismissBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenSendMessage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayRemoveAndGet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayPutAndGet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksShareText.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramThumbnailImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelComposeMessageFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisInteractionsStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroDataStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackEntryFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/usePolarisGetDeepLink,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackExitFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebResourceTransferSizeEventsFalcoEvent,shared\\/facebook\\/isInstagramCDNURI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebDiscoverPostLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebProfileChainedLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelTrayRefreshFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebReelTrayRefreshFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromGuideOwnerOrCommentUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisSignupAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelSendMessageFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGEndTTIEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelMediaPauseFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/live\\/PolarisnormalizeLiveUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksInternalMerge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchUserCancelButtonTapFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/postRemoveComments\\/PolarispostRemoveCommentsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishasLinkParent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicCarouselVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/lib\\/redux\\/PolarisReactRedux,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISendParentalConsentEmail,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveViewerEndScreenImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFalcoErrorEventUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisIGLiteHelpers.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ikjM4\\/yo\\/l\\/en_US\\/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDataSaverConfig,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisfrxWebReportReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadSULV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tag\\/PolaristagReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followList\\/PolarisfollowListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGFollowButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksNode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisScrollPerfMonitor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramMediaOverlayFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisReduxStaging,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScreenManager,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisSearchLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisadMediaItemSchema,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisKeyCommands,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisreadImageFile,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenInterstitial.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksAppLoader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupFormFields.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisUseAppPill.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullState.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutPaypalUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/seenState\\/PolarisSeenStateManager,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksLayout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisIconSnackbar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/PolarisProfessionalConversionUtils.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iSdl4\\/yn\\/l\\/en_US\\/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisnormalizeSuggestions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksParseEmbedded,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreate,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/sentryFeedback\\/PolarisSentryFeedbackActions,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACStickyHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIQuery,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionReloadInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLogoutModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/PolarisSettingsActionsStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisLockOrientation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarisPostReducerHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectActionConstants,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/static_upstream\\/utils\\/Polaristhrottle,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreChevronUpPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/incomingCall\\/PolarisincomingCallReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisexifOrientations,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisKeyCommandNub.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/lib\\/PolarisIGCoreConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIListCollections,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreChevronIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionOneTapLoginRemove,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolarisgetProfilePostsFromNativeResponse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAnimationFunctions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/uploadProgress\\/PolarisuploadProgressReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisBatchDOM,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationMediaFromGraphLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxSSO\\/PolarisfxSSOReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/call\\/PolarisCallGatingHelpers.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iPVh4\\/yv\\/l\\/en_US\\/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserCirclePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemMediaIndicator.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/PolarisVolumeControlsManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionFavoriteUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxAuth\\/PolarisfxAuthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLocationPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolarisgetProfilePostsFromGraphQLResponse,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramPushTokenRegistrationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGGradientText,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFXCALAuthLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/getPolarisKeyCommandConfig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLicensingPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionGoToTwoFactorLogin,js\\/instagram\\/igds\\/IGDSDialog\\/IGDSControlledUserBlockingDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagFromGraphHashtag,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAdPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesType,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolariswithDataSaver,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGActionSheetItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGNavbarButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionLoadThread,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisViewpointActionUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaCarouselFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDeviceDesktopPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHeartFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisAsyncLiveCreationModal,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSMediaCarouselFilledIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLxq4\\/yI\\/l\\/en_US\\/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualGrid.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnfollowUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/helpers\\/PolarisIGCoreModalBackdrop,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLiveAppInstallSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButtonContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisPrioritizedTask,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionMuteOrUnmuteUser,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/www_schema_components\\/PolarisMobileNavMenuQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisConnectionsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisNavChain,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisFollowRequestActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisImageFileForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/supervision\\/PolarisSupervisionModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSidecarChildFromMediaDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisClearSearchHistoryButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalConversionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultInformModuleItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/usePolarisHoverCardPosition,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationNavMenu.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUsersFromGraphMedia,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionBlockUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisSearchBoxTextInput.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisCIXWarningScreensFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksScreenWrapper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavBackButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisLabeledTextInput.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iuVg4\\/yI\\/l\\/en_US\\/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSReelsFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISkipParentalConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndCameraSessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebOspFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisExploreHomeImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportState,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleSeeResultsClickFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleSeeResultsClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchResultsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMakeFlat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModalWithModalObject,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgBloksSettingsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSensitivityFrictionInfoFromGraphMediaSensitivityFrictionInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisExploreHomeClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishashCode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebLoginFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisreducerWithCache,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleClickFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleButtonClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetPaginationInfoFromPageInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisUpcomingEventTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionFetchInboxPresence,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetUsernameSuggestions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchAccountRecoveryOptions,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramWellbeingCommentCoverFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramWellbeingCommentCoverEventFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionThreadLoaded,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/usePolarisViewpointSanityCheck,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisactivityUtils,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarissetTimeoutAcrossTransitions,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleImpressionFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleImpressionFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y9\\/r\\/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/PrivacyPolicy\\/PolarisShouldUserSeePrivacyPolicy,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisRelationshipState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGStartTTIEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisCreationTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSubmitErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironmentContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountTapComponentFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISendTwoFactorLoginSms,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksAnchor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountStartStepFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/__private__\\/PolarisLoginActionGetErrorDescription,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFetchDataFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayCenterButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/sentryFeedback\\/PolarissentryFeedbackReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksNode,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIOneTapLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/comments\\/PolarisnormalizeMicroUserDicts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSubmitFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/effects\\/PolarisAREffectsState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetDynamicExploreGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFunctionalityTracker,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountCancelFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisCookieModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSkipFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisALTrackingData,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/clips\\/PolarisClipsState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreForm.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialogHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisCaptchaSignupForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDisappearingTooltip.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/effects\\/PolarisarEffectsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultKeywordItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/twoFactor\\/PolaristwoFactorReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxSSO\\/PolarisFXSSOActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLiveLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReelsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisQuickLogModules,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScriptParser,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/usePolarisViewport,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksDecoration,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultKeywordSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutLoginModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGPopover,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSidecarChildFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionInitFeed,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsFormFieldInputConfigs,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetPreviewImageCanvas,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEmojiHelper,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGCometRoutedRootConfigBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSettingsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccount\\/PolarisProfessionalAccountLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReelsPanoFilledIcon,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSReelsPanoFilledIcon,js\\/instagram\\/igds\\/IGDSCheckboxOrToggle\\/IGDSCheckboxOrToggle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentNavigationLogger.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iga04\\/yD\\/l\\/en_US\\/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchBatchQuickPromotions,js\\/csa9qir353c4goc0.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginTwoFactor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/isPolarisFeedAdItemMediaTypeSupported,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisNormalizeStoryAds,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/upsell\\/PolarisupsellReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisFilterDuplicateFeedItems,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisCommentModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/hooks\\/usePolarisDirectFeatures,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerTranslations,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/live\\/PolarisLiveGating,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mediaPrefetch\\/PolarismediaPrefetchReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/zero\\/PolariszeroReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIRequestSignupSMSCode,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionBuildPastPostsAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMoreHorizontalPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellMobileHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutNUXUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPinnedPostIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisSidecarIcon.react,js\\/instagram\\/polaris\\/core\\/PolarisBaseThemeDisplayModeWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisUserModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenChallengeUrl,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisReelModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/autoConfirmEmail\\/PolarisautoConfirmEmailReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/profilePosts\\/PolarisProfilePostsModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisVideoIndicator.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/core\\/relay\\/bootstrapPolarisRelayEnvironment,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReduce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksDummyComponent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisErrorBoundaryWithHoldout.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksRenderContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/boost\\/PolarisBoostEligibilityReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksNumberUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/Challenge\\/ui\\/constants\\/PolarisBirthdayConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisCacheLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLoggedInCtaLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisLayoutIntervals,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/unsupportedBrowserToast\\/PolarisUnsupportedBrowserToastReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksEventLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisCreationUtils,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/static_upstream\\/core\\/PolarisdebounceCore,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLoggedOutCtaLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenVoterInformationCenter,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginWithFB,js\\/instagram\\/polaris\\/core\\/PolarisSplashScreenController,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackNavigationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIOneTapGetNonce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginWithFXIGSSO,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/state\\/PolarisCreationV2State,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/PolarisVideoConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisNewPostsPillActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedPageExtrasLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedNextPageLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelSessionSummaryFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yD\\/r\\/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellContent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisSnackbar,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastWrapper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogoWithTitle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBirthdaysAdditionalInfoModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileIconV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreBorderedIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAppsellUnit,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlay,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupFormFields,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLoggedInAppBanner,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemMediaIndicator,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNavigationalHeader,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisSearchBoxTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBanner,js\\/instagram\\/polaris\\/modules\\/styles\\/Polaristypography,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogo,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisTopNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIconButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDoubleTappable,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPreviewPhoto,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavPopover,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationsBannerV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPhoto,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellMobileHeader.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/l\\/0,cross\\/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/contactHistory\\/PolariscontactHistoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchContext,js\\/instagram\\/polaris\\/core\\/query\\/preloading\\/PolarisQueryPreloaderCache,js\\/instagram\\/polaris\\/core\\/PolarisVideoPlayerGlobalComponents.react,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFxcalAuthTwoFactorLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupSeamlessLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/oneTap\\/PolarisoneTapReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSuspenseWithErrorBoundary.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisLoggedOutCtaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/FbSdkConsts,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionCreateDirectInboxLoaded,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisIGViewpoint.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisLoggedInCtaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCoreHoverCardProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGScreenSpinner,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-animate\\/PolarisshouldAnimate,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisClipIndicator.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404PageDeferred.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolaristoastReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarishandleOpenInApp,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialogCircleMedia,js\\/instagram\\/polaris\\/modules\\/consumer\\/GroupProfile\\/lib\\/PolarisGroupProfileUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisSEOEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromLocationDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionGetRelationshipInfoWithViewerByUserId,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisSizeCache,js\\/instagram\\/polaris\\/modules\\/consumer\\/UpcomingEvents\\/ui\\/PolarisUpcomingEventIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCommentPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsIconButton.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_tA4\\/yO\\/l\\/en_US\\/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tagMedia\\/PolaristagMediaReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarispostSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisCentralizedUpsellDataHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavLoggedOutContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolarisCookieModalActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisprofileMediaEdgesReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisUserAvatar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisSharedAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDoubleTappable,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisliveSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/ui\\/PolarisdynamicExploreSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisBirthdaySignupForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarissearchReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellFooter.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedOut.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModalOptionsMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisRedirectHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcher.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/scrolling\\/PolarisScrollPositionHistory,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisautoGeneratedPrefixData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookAccountPicker.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEntrypointHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksTextStyle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisUnfollowDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreWhatsappLogoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlayBase.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreLogoColoredOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksText.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iXZ54\\/yZ\\/l\\/en_US\\/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavPopover.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXAuthenticationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/displayProperties\\/PolarisdisplayPropertiesReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutContextualLoginText.react,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBaseDOMContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisMiddleDot.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentNavigation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericDesktopHeader.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetCommentFromGraphComment,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionInitCacheWithLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisFeedHelpers,js\\/instagram\\/polaris\\/core\\/bootstrapReduxNavigationState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisnormalizeGridItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/accountRecovery\\/PolarisaccountRecoveryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/gender\\/PolarisgenderReducer,shared\\/security\\/trusted_types\\/policies\\/default_policies\\/TrustedTypesIGWWWAliteSiteDefaultPolicyOptions,js\\/instagram\\/polaris\\/video\\/PolarisFeedAutoplayProvider.react,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsAPIActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWhile,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACRecaptcha.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolaristransformProfilePostsEntities,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisgenerateOfflineThreadingId,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/Direct\\/PolarisDirectInboxPopoverLoader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFavoritesStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBodyScrollLock,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisTransformInjectedStoryUnitsEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/usePolarisBaseViewpoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/business\\/data\\/PolarisBusinessUserAccessTokenReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromGraphLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/privacy\\/PolarisprivacyFlowReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iogo4\\/yZ\\/l\\/en_US\\/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreModalLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutPaymentMethodUtils,js\\/instagram\\/polaris\\/modules\\/customersupport\\/ui\\/PolarisBloksCCSSupportUserChatThread.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/PolarisloginReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAdsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisStoriesContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksGlobalStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisNormalizeEndOfFeedDemarcator,js\\/instagram\\/polaris\\/core\\/XIGSharedDataHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentBitArray,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutNetzDGReportLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXAccountCenterStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fbConnect\\/PolarisfbConnectReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFXCalLinkingLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisMediaOverlayInfoTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDateStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationTooltip.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionFetchFeedDataFromNative,js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolariswithRemountOnChange,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisCreationLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/exploreModule\\/state\\/PolarisLoggedOutExploreModuleReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectMQTTInstance,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksTextSpan,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisTopNavigation.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNewPostPanoOutlineIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTf14\\/yj\\/l\\/en_US\\/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisUserAvatarWithStories.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/PolarisBloksPrimitives,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisauthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualList.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionConnectToMqtt,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisinitServiceWorker,shared\\/third-party-bundles\\/css-in-js-utils-2.0.1,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisInt64,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsActions,shared\\/third-party-bundles\\/emoji-regex-7.0.3,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/ui\\/PolarisdirectSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisPerformanceLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarissignupReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisfeedReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationActions,js\\/instagram\\/polaris\\/core\\/ConsumerEntrypoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisPaymentsCheckoutConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/threadedComment\\/PolaristhreadedCommentReducer,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOneTapLoginForm.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedTimelineFragmentQuery_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/dynamicExplore\\/PolarisDynamicExploreActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBox.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShell_DEPRECATED.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsList.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutStickyBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFooter.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ideN4\\/yh\\/l\\/en_US\\/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPrintf,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisClickEventLoggerContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisgetDisplayName,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentValue,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeRootQuery,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisTestAccountTypeConsts,js\\/instagram\\/polaris\\/modules\\/styles\\/PolarisThemeStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWriteLocalState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentCloseDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksFindComponentContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisHomepageImmersiveBackgroundExperimentProvider,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadViewerData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGViewpointExtensionContextGetPercentVisible,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavLabelDisplayTypeContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceChild,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapMake,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedStart,js\\/instagram\\/polaris\\/modules\\/consumer\\/DesktopCreateStory\\/PolarisDesktopCreateStoryGating,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/creation\\/PolarisCreationMode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceEmbeddedChild,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPPRLoggedPostsGridItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetState,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBasePortalTargetContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisNormalizeInFeedStories,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayUpdate,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagFollowList\\/PolarisHashtagFollowListState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/gender\\/PolarisGenderState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGLogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/helpers\\/PolarisAccountPrivacyHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarisLocationPostsTypes.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihtU4\\/yy\\/l\\/en_US\\/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberMod,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksTakeLast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberAdd,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIMarkDiscoverPageSeen,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisFollowRequestState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolaristransformEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksVisibilityContextGetTimeSinceLastImpressionInMS,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolariswithDirectAPIEndpoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPHelpers,js\\/instagram\\/polaris\\/core\\/logXIGPageView,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisNotificationPermission,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/unsupportedBrowserToast\\/PolarisUnsupportedBrowserToastActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/devtools\\/PolarisDevtoolsContext.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisGuidesState,js\\/instagram\\/polaris\\/core\\/getXIGRoutePageLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSponsorFromGraphSponsorTag,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionUnblockDirectUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModalWithResult,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/consts\\/PolarisManageApplicationsStatus,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupDryRunExitError,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsTabDesktopFragment,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksT3DFromArray,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolarisToastActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisFeedState,js\\/instagram\\/polaris\\/adapters\\/helpers\\/xigRequireInterop,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionBlockDirectUser,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisArchivePageController\\/JSRouteBuilderArtifact\\/XPolarisArchivePageControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenScreen,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/mobile\\/PolarisMobileStoriesConstants.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y_\\/r\\/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePressable,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/filters\\/PolarisisWebGLSupported,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLivePanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksOnMount,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/likedByList\\/PolarislikedByListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisNotificationClientLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisBloksOpenBottomSheetV3,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationMediaFromNativeLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/actions\\/PolarisSavedPostsActionRequestNextSavedCollections,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginWithFBJSSDK,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisIgWebOneTrace,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/save\\/PolarisnormalizeCollections,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/embed\\/PolarisembedReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisPhoneCommonStrings,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBannerQuery.graphql,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSUserFollowPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarissignupSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIQueryWWWGraphQL,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisDOMRectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDOMListener.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisnormalizeSuggestedUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisautoplayReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUsersPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisTrustedDevicesUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCardOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreShoppingBagPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisShakeListener,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisRegistrationLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisPPRUtil.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_sF4\\/ym\\/l\\/en_US\\/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarismediaOverlayInfoUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/clips\\/PolarisclipsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGButton.react,js\\/instagram\\/polaris\\/core\\/PolarisAppWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksRenderer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/PolarisfbReady,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisDynamicExploreTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/ui\\/PolarisDirectPresenceHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutCallToAction.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedInButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisStoriesLoggingUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalConversion\\/PolarisprofessionalConversionReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPHelperModule.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAccountPrivacyForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTermsPrivacyPolicyBlurb.react,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayFeed,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGNavbar,js\\/instagram\\/polaris\\/core\\/relay\\/XIGRelayEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisActivityIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISignup,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAnimationScheduler,js\\/instagram\\/polaris\\/modules\\/consumer\\/MobileStoryCreationPages\\/ui\\/PolarisStoryCreationUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/lib\\/PolarisDynamicExploreMediaHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/taggedPosts\\/PolaristaggedPostsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAppsellUnit.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAcceptTermsOfUseBody.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iFMc4\\/yP\\/l\\/en_US\\/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeFragment_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookLoginForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/lib\\/PolarisLoggedOutLoginConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/dynamicExplore\\/PolarisdynamicExploreReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisprofilePostsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromGraphUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutMegaphone.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopFragment_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectStringHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutUpsellStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionLoadFeedPageExtras,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/twoFactor\\/PolarisTwoFactorActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupConfirmForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisnavigationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieSettingsContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/utils\\/PolarisScreenTimeUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisCountryCallingCodes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisReduxCache,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/creation\\/PolariscreationReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDismissEntry,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisHoverCardPositioner,shared\\/third-party-bundles\\/focus-visible-5.2.0,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisExploreLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisRecaptcha,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStoryActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksDataBinding,shared\\/third-party-bundles\\/body-scroll-lock-3.1.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisCreationAPI,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutWebLoginModal.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iZ3g4\\/yH\\/l\\/en_US\\/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/rating\\/PolarisratingReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingContent\\/PolarisTrendingContentReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigationContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisConsentLogger,js\\/instagram\\/polaris\\/adapters\\/lib\\/replaceURL,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisHashtagModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisNftMediaIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisgetBlobFromCanvas,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupGetAPISignupFields,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/suggestedDirectory\\/PolarissuggestedDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAsyncComponent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagsDirectory\\/PolarishashtagsDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/deactivateAccount\\/PolarisdeactivateAccountReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilesDirectory\\/PolarisprofilesDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentBrowserList.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisonlyHandleSingleClick,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionMessageFromProfile,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisPopoverPlacementProvider,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISetPrivateAccount,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPageTitle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthConstants,js\\/instagram\\/polaris\\/video\\/usePolarisFeedAutoplayRules,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/hooks\\/usePolarisHideOutline,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/exploreMap\\/PolarisexploreMapReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/wifiAuth\\/PolariswifiAuthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisClickableProps,js\\/instagram\\/polaris\\/modules\\/consumer\\/Clips\\/ui\\/PolarisClipsConstants,js\\/instagram\\/igds\\/IGDSDialog\\/IGDSDialogPlaceholder.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIReelSeen.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJIK4\\/yK\\/l\\/en_US\\/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisClipboard,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisResponsiveBlock.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relatedInterestMedia\\/PolarisRelatedInterestMediaReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/pendingComment\\/PolarispendingCommentReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisPreBlockConfirmDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisAdsGatingHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisAsyncCreationModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreShieldPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisBirthdayFormInput.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnblockUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNftPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/businessProfileDirectoryPage\\/PolarisbusinessProfileDirectoryPageReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCompassPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAppContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisProfileStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/phoneConfirm\\/PolarisphoneConfirmReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreKeyPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisSupervisionStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolariscookieModalReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-animate\\/components\\/PolarisIGAnimated.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLinkPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGActionSheet,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLogoutButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisCountryCodeUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreRotatePanoOutlineIcon,js\\/instagram\\/polaris\\/core\\/relay\\/buildSubscriptionForQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/live\\/PolarisnormalizeLiveBroadcasts.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iss64\\/yb\\/l\\/en_US\\/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisSelector,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisisPhoneNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapClone,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksIndexOfChild,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisCountryNames,www\\/__virtual__\\/relay\\/PolarisFXPreTransitionBannerQuery_instagramRelayOperation,shared\\/js\\/__generated__\\/StaticServerJSModuleMeerkatStep\\/single_source\\/PolarisPreloadConstantsJSModule\\/StaticServerJSModuleArtifact\\/PolarisPreloadConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGridConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisPreloadImage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisStagingState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGTTIEventConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayPut,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisNavBarConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberDiv,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingNodesContext,shared\\/third-party-bundles\\/inline-style-prefixer-backgroundClip,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksJsonEncode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolOr,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingCodeContext,js\\/instagram\\/polaris\\/adapters\\/ui\\/StylesManifest,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGReloadPage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarisSignupActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/wifiAuth\\/PolarisWifiAuthState,js\\/instagram\\/polaris\\/shared\\/ui\\/shell\\/PolarisConditionalPageLayoutHandler.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32Convert,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringValueOfNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksCurrentTimeMillis,js\\/instagram\\/polaris\\/modules\\/consumer\\/Challenge\\/ui\\/PolarisChallengeRoutes,shared\\/third-party-bundles\\/inline-style-prefixer-flexboxOld,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksTranslate3D.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/r\\/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/bugReport\\/PolarisBugReportSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetCookiesFromServer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/addToHomeScreen\\/PolarisaddToHomeScreenReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateNewUserConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/PolarisAutoplayContextProvider.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromNativeLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformSuggestionEntities,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLoadingBar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisRefUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIValidateSignupSMSCode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXSettingsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisnormalizeReels,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFBPixel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInterestAccountEnterFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/seenState\\/PolarisSeenState.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksSetAttr,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetTaggedUsersFromUserTagInfosDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/webReport\\/PolarisWebReportActionConstants,shared\\/third-party-bundles\\/isobject-3.0.1,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisrequestIdleCallback,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEncryptionUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIConnectAccountToFB,shared\\/third-party-bundles\\/react-spring-types-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisTrendingContentOn404Header.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFinishStepFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFetchDataErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksCheckoutGetCreditCardToken,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/isPolarisAdLink,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/comments\\/PolarisnormalizeComments,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisClickEventLogger.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iqfe4\\/yO\\/l\\/en_US\\/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieSettingsContentBody.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectDeltaHandlers,js\\/instagram\\/polaris\\/adapters\\/ui\\/LegacyIGCoreModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisOrganicThumbnailImpression,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/lists\\/PolarisIGCoreListItem,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisresourceTimings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisAuthActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksExecutor,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarislocationPostsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisCompactKeyCommandDisplay.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionOneTapLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenBulletListInterstitial.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisNavWrapper.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisVpvdImpressionAction,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGRoutedBuildRoot,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisAgeCollectionHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisliveReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBoxContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFrameDropWatcher,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisOneTapLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardMegaphone.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutRedirectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCondensedMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentMethodUtils.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDOBFieldSelect.react,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportStrings,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisadsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksDrawable,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisstagingReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iwkF4\\/y3\\/l\\/en_US\\/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/comment\\/PolarisCommentActionConstants,shared\\/third-party-bundles\\/inline-style-prefixer-flexboxIE,shared\\/third-party-bundles\\/inline-style-prefixer-imageSet,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/PolarisProfilePageContext,shared\\/third-party-bundles\\/inline-style-prefixer-crossFade,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisVideoResource,www\\/__virtual__\\/relay\\/PolarisMobileNavMenuQuery_instagramRelayOperation,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisdevtoolsEnhancer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPattern,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/PolarisLoginActionConstants,shared\\/third-party-bundles\\/inline-style-prefixer-transition,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisRamClassContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32Convert,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayIndexOf,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenUrl,shared\\/third-party-bundles\\/inline-style-prefixer-gradient,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksToast,shared\\/third-party-bundles\\/inline-style-prefixer-logical,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectActionsLogger,shared\\/third-party-bundles\\/inline-style-prefixer-position,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseScreen,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDelay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapKeys,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksScale3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayAppend,shared\\/third-party-bundles\\/inline-style-prefixer-filter,shared\\/third-party-bundles\\/inline-style-prefixer-cursor,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPopBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAddChild,shared\\/third-party-bundles\\/inline-style-prefixer-sizing.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastConstants,js\\/instagram\\/polaris\\/adapters\\/third-party-wrappers\\/css-in-js-utils-resolveArrayValue-wwwig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberAnd,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/init\\/PolarisInitAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberMod,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayGet,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisDateFormatConfig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberOr,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapGet,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarisSavedPostsActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarisLocationPostsActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tagMedia\\/PolarisTagMediaActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDefault,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/shell\\/PolarisShell,shared\\/third-party-bundles\\/strip-variation-selectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDummy,shared\\/third-party-bundles\\/inline-style-prefixer,js\\/instagram\\/polaris\\/adapters\\/third-party\\/react-spring-wwwig,shared\\/third-party-bundles\\/emoji-regex-text,shared\\/third-party-bundles\\/tabbable,shared\\/third-party-bundles\\/body-scroll-lock,js\\/529myxqorq4gkcgw.pkg,js\\/instagram\\/polaris\\/adapters\\/third-party\\/react-redux-wwwig,js\\/instagram\\/polaris\\/adapters\\/third-party\\/redux-wwwig,js\\/instagram\\/polaris\\/adapters\\/third-party-wrappers\\/redux-thunk-wwwig,shared\\/third-party-bundles\\/focus-visible,shared\\/third-party-bundles\\/redux-thunk,shared\\/third-party-bundles\\/merge,shared\\/third-party-bundles\\/normalizr,shared\\/third-party-bundles\\/stackblur.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOrBar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOptionalOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksErrorRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreBusinessPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedOutUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/SEOCategoryPage\\/PolarisSEOCategoryPageReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetMappedReelTypeFromReelDict,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCalendarPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSpinner,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisgetReelDictFromAdMediaItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/utils\\/PolarisvideoMergeUtils,shared\\/third-party-bundles\\/strip-variation-selectors-1.0.0,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserFollowingPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreToast,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccountSettings\\/PolarisprofessionalAccountSettingsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreEyePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagFromNativeHashtag,js\\/instagram\\/polaris\\/core\\/bootstrapPolarisPreloader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisIGCoreClockDottedPanoOutline24Icon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksErrors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisClickEventAuditLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/payments\\/PolarisPaymentsLoggerConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDirectPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnfavoriteUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpFbql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockOutline96Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionFooter.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksStyles,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreBorderedIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksRenderLifecycleExtension,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIPostInboxSeenData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetAymlData,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/likedByList\\/PolarisLikedByListState,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnFeedPage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayMake,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenURL,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionCloseChatTabNewMessage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/lib\\/PolariswithForwardRef,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetInboxData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberLt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberEq,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIClearUserSearchHistory,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisDOMRect,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisAnalyticsContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWriteGlobalConsistencyStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionClearStopDeletionNonce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisTriggerRender,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentLikeLists\\/PolarisCommentLikeListsState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mediaPrefetch\\/PolarisMediaPrefetchActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarissupportsCredentialManagement,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceChildren,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/PolarisProfileQEHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionOpenChatTabThread,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisStoriesArchiveController\\/JSRouteBuilderArtifact\\/XPolarisStoriesArchiveControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberSub,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentOpenDialogAsScreenOnMobileDoNotUse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksRemoveChild,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisHideNavQueryParam.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGEndTTIEventV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/threadedComment\\/PolarisThreadedCommentActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64ConstNumber,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisFeedActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksTextInputGetText,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeLoggedOutRootQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncActionWithDataManifest,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentOpenDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentDimensionValue,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisViewer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/types\\/PolarisReelTypes,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeFragment,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishasDirect,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisgetCrossOriginAttribute,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenReportUser,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisFeedTimelineFragmentQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/PolarisBugReportContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDirectInteropGatingManager,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentColorValue,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateCubicBezier,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolAnd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentCloseAllPrompts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/getPolarisALGestureType,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/businessProfileDirectoryPage\\/PolarisBusinessProfileDirectoryPageActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPushBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentFlowCompletionCallback,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisSettingsTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/common\\/PolarisDailyLimitEnforcementContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisprefix,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDismissKeyboard.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y9\\/r\\/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthTestIDs,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebAdEventsAuditFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreGetIconColor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveReactionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadUserPreferences,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolarisCookieModalEnums,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMatch,js\\/instagram\\/polaris\\/core\\/relay\\/PolarisRelayEnvironmentContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisscrollTo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebNotificationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksChildAtIndex,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/getPolarisPostIdFromNativeId,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisFeedQueryConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisstagingSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisAuthActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGenerateCreditCardToken,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramWebAdEventsAuditFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramWebAdEventsAuditFalcoEvent,js\\/instagram\\/polaris\\/clips\\/desktop\\/hasClipsDesktopTab,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisFeedTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionCreatePendingThreadsLoaded,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/polarisCanRageShake,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisLoginController\\/JSRouteBuilderArtifact\\/XPolarisLoginControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/PolarisFeedPageConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBindWithArrayV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisReduxUpdateUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseToScreen,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisFollowingActionsContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisShouldLogLinkClick,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironmentUtils,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnDirectPage.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/r\\/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisCreationCameraLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellContent.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPreviewPhoto.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGShoppingNavBar,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/PolarisBugReportProvider.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisgetDirectCacheState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisqe,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreMegaphoneHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/lib\\/PolarisLoggedOutLoginStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccount\\/PolarisProfessionalAccountLoggerUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404TrendingContentPage.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarissavedPostsSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/actions\\/PolarisSettingsActionSetPrivateAccount,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxAuth\\/PolarisFXAuthActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/transition\\/PolarisTransition.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullStateSection.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetImageUrlFromPreviewData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPTooltipComponent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupChangeNumberForm.react,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACImagePicker.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisQEHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBirthdaysAdditionalInfoModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksComponentContext,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/payments\\/PolarisFBPayCheckoutWebFunnelConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisUnexpectedErrorIcon.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLf44\\/ye\\/l\\/en_US\\/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/lib\\/PolarisDynamicExploreGridPositionUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/location\\/PolarisLocationMediaModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroLoggedOutUpsell.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisGetCreationModalDimensions,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellModalNavBar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserPanoOutlineIcon,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayMedia,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLoggingOutDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksStyle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericNavBackButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingUsers\\/PolarisTrendingUserReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEventListener,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisAsyncSwitchAccountsModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCompassPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltipExtension,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisRelationshipTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mentalWellBeing\\/PolarisscreenTimeReducer,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsTabDesktop,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDirectPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisStopDeletionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericOnboardingUnit.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisBlockDialogContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInfoPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagFollowList\\/PolarishashtagFollowListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFeedLogger,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBasePortal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInsightsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMailPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreArrowCcwPanoOutlineIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihe24\\/yg\\/l\\/en_US\\/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisformatDate,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisrootReducer,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeLoggedOutRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/consent\\/PolarisConsentActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/actions\\/PolarisSignupActionSignup,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopQuery.graphql,js\\/5sifmyhjlfwooggs.pkg,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopPaginationQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNav.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisUserCookieConsentStrings,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeRootQuery.graphql,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabRootPaginationQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisLiveActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarisSearchActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisCanvasGradientSpinner,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fbConnect\\/PolarisFBConnectActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisReportConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarissavedPostsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/Direct\\/PolarisDirectBadgeIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCorePhoneNumberInput,js\\/2e440z8p5ykgcg80.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/actions\\/PolarisSignupActionMaybeConsentAndSignup,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisAccessDataStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutIconUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisMobileSearchBox.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisLandingForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/multisignup\\/PolarismultiSignupReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i4NY4\\/y-\\/l\\/en_US\\/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/AddToHomeScreen\\/PolarisAddToHomeScreen.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSearch,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/date_formats\\/PolarisDateFormatConfig.en_US,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutPhysicalAddressUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBanner.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/live\\/PolarisLiveAPI,js\\/6k7qj261wgco8k8w.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieConsentModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolaristransformFeedItemListEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fncr\\/PolarisLoginQPL,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryFullscreenManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/actions\\/PolarisSettingsActionLogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationsBannerV2.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolariswithPPRLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisQueryParams,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisStagingActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisguideReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp500UnexpectedErrorPage.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheetOrModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationPopover.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisfilterUnsupportedNativeFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDateHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsumerDataCache,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreTooltip,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointReact.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisrelationshipSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksShadowContext.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ijPr4\\/yv\\/l\\/en_US\\/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionRefreshPendingInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisProfileUtils,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSNewStoryPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentBitArrayLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSvgIconWithCircularBackground.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/utils\\/PolarisContainerModuleUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisUnsupportedBrowserSnackbar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisFeedItemModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksRichText,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsValidators,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAccountPrivacyBody.react,js\\/instagram\\/polaris\\/www_schema_components\\/usePolarisFXCalSettings.react,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSAddFriendOutline96Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relatedProfile\\/PolarisrelatedProfileReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisPushAPI,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/PolarisPanavisionQEHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/webReport\\/PolariswebReportReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateDimension,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEventLoop,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksOpenScreen,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectThreads,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformActivityFeedItemEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAppMessengerPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksViewTransformsExtensionWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSwitch,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationTooltipWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateColor,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTextInput.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUce4\\/yS\\/l\\/en_US\\/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisOneTapLoginModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationsDirectory\\/PolarislocationsDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEmailDomainHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericMobileHeader.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCorePortalPositionProvider,js\\/instagram\\/igds\\/IGDSToast\\/IGDSToasterProvider.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetFeedItemFromFeedItemDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisLoginLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXCalLinkingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksQPClick,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisObjectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAppMessengerPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarisSearchAPI,js\\/instagram\\/igds\\/IGDSBadge\\/IGDSBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisSearchConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisVirtualizedWithScrollLogging.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisSnackbar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/stories\\/PolarisUserAvatarLivePulse.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButtonGroup,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsNormalizers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultPlaceItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetReelFromReelDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentCollapsible.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGPhoneNumberInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisConfirmDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisRemoveSupervisionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppStoreLauncher.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisUserPreferences,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserFollowingFilledIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iow94\\/yJ\\/l\\/en_US\\/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisnewPostsPillReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisPostBlockConfirmDialog.react,js\\/instagram\\/polaris\\/core\\/initIGWebJSErrorLogging,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTooManyAccountsDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolaristoastMiddleware,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButtonContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisReelConstants,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsLoggedOutHome,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenBottomSheetV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksDataBinding,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsHome,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisViewpointUtils,js\\/instagram\\/igds\\/IGDSToast\\/useIGDSToast\\/IGDSToasterUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIconButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStorySelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolariscacheMiddleware,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCircleCheckPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp500UnexpectedErrorPageDeferred.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePlayPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisContextTooltip.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksLocalStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksCommerceGetCreditCardMetadata,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHomePanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavToggleThemeButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHomePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagMediaFromGraphHashtag.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iGsb4\\/y5\\/l\\/en_US\\/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationConstants,js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionLoadFeedPageFromNative,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/consent\\/PolarisconsentReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisIDBKeyValStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcherLanguageContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultUserItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsListItems.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGrid.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetInstallAppHref,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisBaseShell.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionLoadInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalAccountSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/suggestedUser\\/PolarissuggestedUserReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisnormalizeSignupResponse,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionInitInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisgetReelFromGraphReel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromUserDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePopover,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPBloksRenderer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/credentialmanager\\/PolarisCredentialManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupEmailSuggestionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEncryptionHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksTextInput.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ivkL4\\/yP\\/l\\/en_US\\/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionCreateThread,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFollowDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/maps\\/PolarisMapReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarissendLogoutRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisnormalizeSectionalItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXCalSettingsCLFooter.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksSwitch,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/www_schema_components\\/usePolarisFXCalSettings.graphql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksDatetimeTextProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagMediaFromNativeHashtag,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionGetInteropStatus,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerLoggingParams,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/centralizedUpsell\\/PolariscentralizedUpsellReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelationshipFromUserDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/oneTap\\/PolarisOneTapActions,js\\/instagram\\/polaris\\/adapters\\/lib\\/IGRouter,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionLoadActivityFeedRelationships,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisBlockDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisLiveConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMoonIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisConsumerReduxStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreStarPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReportPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroCarrierSignalPixel.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5iB4\\/y7\\/l\\/en_US\\/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/ebgei4gu4pc8ggo0.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3idBq4\\/yL\\/l\\/en_US\\/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierTwo\"]},\"js\\/7kmm5os4dkkccs0k.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierTwo\"]},\"js\\/89ky0idroy8sosks.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yF\\/r\\/w0HcDFoIhg9.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/9mk9w177n9s88w4c.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUXn4\\/yu\\/l\\/en_US\\/DitlTwroUi6.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCall.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToaster.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToast.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCallFilled24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreVideoChatFilled24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/call\\/PolarisCallNavigator,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateActionableToastContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCallBlinkingTitle.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateActionableToast.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/hooks\\/usePolarisMQTT,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/useBlinkDocumentTitle,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisCallController\\/JSRouteBuilderArtifact\\/XPolarisCallControllerRouteBuilder,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToastContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/Calling\\/IGWebPreCallContext.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEwU4\\/y-\\/l\\/en_US\\/KKZf8FX1sT4ozwG_xmxgK87lOXZygpG8_2QF11C8Kc69HUxMHl9LidgmLT6R-X0Ih2WchIFc77ydpiZQLDmBv2K-_nOseCHUKy2h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLKhsU-pEZX1mw1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/e16nnvrxf5csw888.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/5Gtc5QsnfLa.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/1037sw9494usok0w.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEsn4\\/yw\\/l\\/en_US\\/3YigL2Icjwr.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/81cjnzja8dsswk4c.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/80BsmNKe4b8.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCall.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/l\\/0,cross\\/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/djeihiulvfkgcccw.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/YT7n1sgH1lv.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]}}};</script>\n<script type=\"application/json\" data-content-len=\"69\" data-sjs>{\"require\":[[\"qplTagServerJS\",null,null,[[\"lastServerTagFlushed\"]]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"cometPageRender\",51);</script>\n<script type=\"application/json\" data-content-len=\"98\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"cometPageRender\",51]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierOneHasteResponseStart\",109);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierOneHasteResponseStart\",109]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierOneHasteResponseEnd\",197);</script>\n<script type=\"application/json\" data-content-len=\"110\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierOneHasteResponseEnd\",197]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierTwoHasteResponseStart\",210);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierTwoHasteResponseStart\",210]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierTwoHasteResponseEnd\",293);</script>\n<script type=\"application/json\" data-content-len=\"110\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierTwoHasteResponseEnd\",293]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierThreeHasteResponseStart\",302);</script>\n<script type=\"application/json\" data-content-len=\"114\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierThreeHasteResponseStart\",302]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierThreeHasteResponseEnd\",326);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierThreeHasteResponseEnd\",326]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"responseStart\",1);</script>\n<script type=\"application/json\" data-content-len=\"95\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"responseStart\",1]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"responseEnd\",331);</script>\n<script type=\"application/json\" data-content-len=\"95\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"responseEnd\",331]]]}</script>\n<script>window.plbs = {\"tierOne\":[234928,71200],\"tierTwo\":[73086,18419],\"tierThree\":[17990,4741]};</script>\n</body></html>\n\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:513301:\"<!DOCTYPE html><html class=\"_9dls\" style=\"background-color: rgb(var(--ig-secondary-background))\" lang=\"en\" dir=\"ltr\"><head><link data-default-icon=\"https://static.cdninstagram.com/rsrc.php/v3/yb/r/lswP1OF1o6P.png\" rel=\"icon\" sizes=\"192x192\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yb/r/lswP1OF1o6P.png\" /><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/yv/r/BTPhT6yIYfq.ico\" rel=\"shortcut icon\" type=\"image/x-icon\" href=\"https://static.cdninstagram.com/rsrc.php/yv/r/BTPhT6yIYfq.ico\" /><meta name=\"color-scheme\" content=\"light\" /><style nonce=\"7DXsYBtw\">:root,.__ig-light-mode{--fds-black:#000000;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0, 0.5);--fds-black-alpha-60:rgba(0, 0, 0, 0.6);--fds-black-alpha-80:rgba(0, 0, 0, 0.8);--fds-blue-05:#ECF3FF;--fds-blue-30:#AAC9FF;--fds-blue-40:#77A7FF;--fds-blue-60:#1877F2;--fds-blue-70:#2851A3;--fds-blue-80:#1D3C78;--fds-button-text:#444950;--fds-comment-background:#F2F3F5;--fds-dark-mode-gray-35:#CCCCCC;--fds-dark-mode-gray-50:#828282;--fds-dark-mode-gray-70:#4A4A4A;--fds-dark-mode-gray-80:#373737;--fds-dark-mode-gray-90:#282828;--fds-dark-mode-gray-100:#1C1C1C;--fds-gray-00:#F5F6F7;--fds-gray-05:#F2F3F5;--fds-gray-10:#EBEDF0;--fds-gray-20:#DADDE1;--fds-gray-25:#CCD0D5;--fds-gray-30:#BEC3C9;--fds-gray-45:#8D949E;--fds-gray-70:#606770;--fds-gray-80:#444950;--fds-gray-90:#303338;--fds-gray-100:#1C1E21;--fds-green-55:#00A400;--fds-highlight:#3578E5;--fds-highlight-cell-background:#ECF3FF;--fds-primary-icon:#1C1E21;--fds-primary-text:#1C1E21;--fds-red-55:#FA383E;--fds-soft:cubic-bezier(.08,.52,.52,1);--fds-spectrum-aluminum-tint-70:#E4F0F6;--fds-spectrum-blue-gray-tint-70:#CFD1D5;--fds-spectrum-cherry:#F35369;--fds-spectrum-cherry-tint-70:#FBCCD2;--fds-spectrum-grape-tint-70:#DDD5F0;--fds-spectrum-grape-tint-90:#F4F1FA;--fds-spectrum-lemon-dark-1:#F5C33B;--fds-spectrum-lemon-tint-70:#FEF2D1;--fds-spectrum-lime:#A3CE71;--fds-spectrum-lime-tint-70:#E4F0D5;--fds-spectrum-orange-tint-70:#FCDEC5;--fds-spectrum-orange-tint-90:#FEF4EC;--fds-spectrum-seafoam-tint-70:#CAEEF9;--fds-spectrum-slate-dark-2:#89A1AC;--fds-spectrum-slate-tint-70:#EAEFF2;--fds-spectrum-teal:#6BCEBB;--fds-spectrum-teal-dark-1:#4DBBA6;--fds-spectrum-teal-dark-2:#31A38D;--fds-spectrum-teal-tint-70:#D2F0EA;--fds-spectrum-teal-tint-90:#F0FAF8;--fds-spectrum-tomato:#FB724B;--fds-spectrum-tomato-tint-30:#F38E7B;--fds-spectrum-tomato-tint-90:#FDEFED;--fds-strong:cubic-bezier(.12,.8,.32,1);--fds-white:#FFFFFF;--fds-white-alpha-05:rgba(255, 255, 255, 0.05);--fds-white-alpha-10:rgba(255, 255, 255, 0.1);--fds-white-alpha-20:rgba(255, 255, 255, 0.2);--fds-white-alpha-30:rgba(255, 255, 255, 0.3);--fds-white-alpha-40:rgba(255, 255, 255, 0.4);--fds-white-alpha-50:rgba(255, 255, 255, 0.5);--fds-white-alpha-60:rgba(255, 255, 255, 0.6);--fds-white-alpha-80:rgba(255, 255, 255, 0.8);--fds-yellow-20:#FFBA00;--accent:#0095F6;--always-white:#FFFFFF;--always-black:black;--always-dark-gradient:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));--always-dark-overlay:rgba(0, 0, 0, 0.4);--always-light-overlay:rgba(255, 255, 255, 0.4);--always-gray-40:#65676B;--always-gray-75:#BCC0C4;--always-gray-95:#F0F2F5;--attachment-footer-background:#F0F2F5;--background-deemphasized:#F0F2F5;--base-blue:#1877F2;--base-cherry:#F3425F;--base-grape:#9360F7;--base-lemon:#F7B928;--base-lime:#45BD62;--base-pink:#FF66BF;--base-seafoam:#54C7EC;--base-teal:#2ABBA7;--base-tomato:#FB724B;--blue-link:#00376B;--border-focused:#65676B;--card-background:#FFFFFF;--card-background-flat:#F7F8FA;--comment-background:#F0F2F5;--comment-footer-background:#F6F9FA;--dataviz-primary-1:rgb(48,200,180);--disabled-button-background:rgba(0, 149, 246, 0.3);--disabled-button-text:#FFFFFF;--disabled-icon:#BCC0C4;--disabled-text:#BCC0C4;--divider:#DBDBDB;--event-date:#F3425F;--fb-wordmark:#1877F2;--filter-accent:invert(39%) sepia(57%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(147.75%) hue-rotate(202deg) brightness(97%) contrast(96%);--filter-always-white:invert(100%);--filter-disabled-icon:invert(80%) sepia(6%) saturate(200%) saturate(120%) hue-rotate(173deg) brightness(98%) contrast(89%);--filter-placeholder-icon:invert(59%) sepia(11%) saturate(200%) saturate(135%) hue-rotate(176deg) brightness(96%) contrast(94%);--filter-primary-icon:invert(8%) sepia(10%) saturate(200%) saturate(200%) saturate(166%) hue-rotate(177deg) brightness(104%) contrast(91%);--filter-secondary-icon:invert(39%) sepia(21%) saturate(200%) saturate(109.5%) hue-rotate(174deg) brightness(94%) contrast(86%);--filter-warning-icon:invert(77%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(128%) hue-rotate(359deg) brightness(102%) contrast(107%);--filter-blue-link-icon:invert(30%) sepia(98%) saturate(200%) saturate(200%) saturate(200%) saturate(166.5%) hue-rotate(192deg) brightness(91%) contrast(101%);--filter-positive:invert(37%) sepia(61%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(115%) hue-rotate(91deg) brightness(97%) contrast(105%);--filter-negative:invert(25%) sepia(33%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(110%) hue-rotate(345deg) brightness(132%) contrast(96%);--glimmer-spinner-icon:#65676B;--hero-banner-background:#FFFFFF;--hosted-view-selected-state:rgba(45, 136, 255, 0.1);--highlight-bg:#E7F3FF;--hover-overlay:rgba(0, 0, 0, 0.05);--list-cell-chevron:#65676B;--media-hover:rgba(68, 73, 80, 0.15);--media-inner-border:rgba(0, 0, 0, 0.1);--media-outer-border:#FFFFFF;--media-pressed:rgba(68, 73, 80, 0.35);--messenger-card-background:#FFFFFF;--messenger-reply-background:#F0F2F5;--overlay-alpha-80:rgba(0, 0, 0, 0.65);--overlay-on-media:rgba(0, 0, 0, 0.6);--nav-bar-background:#FFFFFF;--nav-bar-background-gradient:linear-gradient(to top, #FFFFFF, rgba(255,255,255.9), rgba(255,255,255,.7), rgba(255,255,255,.4), rgba(255,255,255,0));--nav-bar-background-gradient-wash:linear-gradient(to top, #F0F2F5, rgba(240,242,245.9), rgba(240,242,245,.7), rgba(240,242,245,.4), rgba(240,242,245,0));--negative:hsl(350, 87%, 55%);--negative-background:hsl(350, 87%, 55%, 20%);--new-notification-background:#E7F3FF;--non-media-pressed:rgba(68, 73, 80, 0.15);--non-media-pressed-on-dark:rgba(255, 255, 255, 0.3);--notification-badge:#e41e3f;--placeholder-icon:#65676B;--placeholder-image:rgb(164, 167, 171);--placeholder-text:#65676B;--placeholder-text-on-media:rgba(255, 255, 255, 0.5);--popover-background:#FFFFFF;--positive:#31A24C;--positive-background:#DEEFE1;--press-overlay:rgba(0, 0, 0, 0.10);--primary-button-background:#0095F6;--primary-button-icon:#FFFFFF;--primary-button-pressed:#77A7FF;--primary-button-text:#FFFFFF;--primary-deemphasized-button-background:rgba(0, 149, 246, 0.1);--primary-deemphasized-button-pressed:rgba(0, 149, 246, 0.05);--primary-deemphasized-button-pressed-overlay:rgba(0, 149, 246, 0.15);--primary-deemphasized-button-text:#0095F6;--primary-icon:#262626;--primary-text:#262626;--primary-text-on-media:#FFFFFF;--primary-web-focus-indicator:#D24294;--progress-ring-neutral-background:rgba(0, 0, 0, 0.2);--progress-ring-neutral-foreground:#000000;--progress-ring-on-media-background:rgba(255, 255, 255, 0.2);--progress-ring-on-media-foreground:#FFFFFF;--progress-ring-blue-background:rgba(24, 119, 242, 0.2);--progress-ring-blue-foreground:hsl(214, 89%, 52%);--progress-ring-disabled-background:rgba(190,195,201, 0.2);--progress-ring-disabled-foreground:#BEC3C9;--rating-star-active:#EB660D;--scroll-thumb:#BCC0C4;--scroll-shadow:0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(0, 0, 0, 0.1) inset;--secondary-button-background:transparent;--secondary-button-background-floating:#ffffff;--secondary-button-background-on-dark:rgba(0, 0, 0, 0.4);--secondary-button-pressed:rgba(0, 0, 0, 0.05);--secondary-button-stroke:transparent;--secondary-button-text:#0095F6;--secondary-icon:#8E8E8E;--secondary-text:#8E8E8E;--secondary-text-on-media:rgba(255, 255, 255, 0.9);--section-header-text:#4B4C4F;--shadow-1:rgba(0, 0, 0, 0.1);--shadow-2:rgba(0, 0, 0, 0.2);--shadow-5:rgba(0, 0, 0, 0.5);--shadow-8:rgba(0, 0, 0, 0.8);--shadow-inset:rgba(255, 255, 255, 0.5);--shadow-elevated:0px 5px 12px rgba(52, 72, 84, 0.2);--shadow-persistent:0px 0px 12px rgba(52, 72, 84, 0.05);--shadow-primary:0px 5px 12px rgba(52, 72, 84, 0.2);--surface-background:#FFFFFF;--switch-active:hsl(214, 89%, 52%);--text-highlight:rgba(24, 119, 242, 0.2);--text-input-background:#FFFFFF;--toast-background:#FFFFFF;--toast-text:#1C2B33;--toast-text-link:#216FDB;--toggle-active-background:#E7F3FF;--toggle-active-icon:rgb(24, 119, 242);--toggle-active-text:rgb(24, 119, 242);--toggle-button-active-background:#E7F3FF;--wash:#FAFAFA;--web-wash:#FAFAFA;--warning:hsl(40, 89%, 52%);--fb-logo-color:#2D88FF;--dialog-anchor-vertical-padding:56px;--header-height:0px;--global-panel-width:0px;--global-panel-width-expanded:0px;--alert-banner-corner-radius:8px;--button-corner-radius:4px;--button-corner-radius-medium:10px;--button-corner-radius-large:12px;--button-height-large:40px;--button-height-medium:36px;--button-padding-horizontal-large:16px;--button-padding-horizontal-medium:16px;--button-icon-padding-large:16px;--button-icon-padding-medium:16px;--button-inner-icon-spacing-large:3px;--button-inner-icon-spacing-medium:3px;--blueprint-button-height-medium:40px;--blueprint-button-height-large:48px;--card-corner-radius:4px;--card-box-shadow:0 12px 28px 0 var(--shadow-2), 0 2px 4px 0 var(--shadow-1);--card-padding-vertical:20px;--chip-corner-radius:6px;--dialog-corner-radius:8px;--glimmer-corner-radius:8px;--image-corner-radius:4px;--input-corner-radius:4px;--nav-list-cell-corner-radius:8px;--list-cell-corner-radius:8px;--list-cell-min-height:52px;--list-cell-padding-vertical:20px;--list-cell-padding-vertical-with-addon:14px;--nav-list-cell-min-height:0px;--nav-list-cell-padding-vertical:16px;--nav-list-cell-padding-vertical-with-addon:16px;--text-input-multi-padding-between-text-scrollbar:20px;--text-input-multi-padding-scrollbar:16px;--toast-corner-radius:4px;--text-input-caption-margin-top:10px;--text-input-label-top:22px;--text-input-min-height:64px;--text-input-padding-vertical:12px;--fds-animation-enter-exit-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-enter-exit-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-swap-shuffle-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-swap-shuffle-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-move-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-move-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-passive-move-in:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-passive-move-out:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-quick-move-in:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-quick-move-out:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-fade-in:cubic-bezier(0, 0, 1, 1);--fds-animation-fade-out:cubic-bezier(0, 0, 1, 1);--fds-duration-extra-extra-short-in:100ms;--fds-duration-extra-extra-short-out:100ms;--fds-duration-extra-short-in:200ms;--fds-duration-extra-short-out:150ms;--fds-duration-short-in:280ms;--fds-duration-short-out:200ms;--fds-duration-medium-in:400ms;--fds-duration-medium-out:350ms;--fds-duration-long-in:500ms;--fds-duration-long-out:350ms;--fds-duration-extra-long-in:1000ms;--fds-duration-extra-long-out:1000ms;--fds-duration-none:0ms;--fds-fast:200ms;--fds-slow:400ms;--font-family-apple:system-ui, -apple-system, BlinkMacSystemFont, \'.SFNSText-Regular\', sans-serif;--font-family-code:ui-monospace, Menlo, Consolas, Monaco, monospace;--font-family-default:Helvetica, Arial, sans-serif;--font-family-segoe:Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;--body-font-family:Placeholder Font;--body-font-size:0.9375rem;--body-font-weight:400;--body-line-height:1.3333;--body-emphasized-font-family:Placeholder Font;--body-emphasized-font-size:0.9375rem;--body-emphasized-font-weight:600;--body-emphasized-line-height:1.3333;--headline1-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline1-font-size:1.75rem;--headline1-font-weight:700;--headline1-line-height:1.2143;--headline2-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline2-font-size:1.5rem;--headline2-font-weight:700;--headline2-line-height:1.25;--headline3-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline3-font-size:1.0625rem;--headline3-font-weight:700;--headline3-line-height:1.2941;--meta-font-family:Placeholder Font;--meta-font-size:0.8125rem;--meta-font-weight:400;--meta-line-height:1.3846;--meta-emphasized-font-family:Placeholder Font;--meta-emphasized-font-size:0.8125rem;--meta-emphasized-font-weight:600;--meta-emphasized-line-height:1.3846;--primary-label-font-family:Optimistic Display Medium, system-ui, sans-serif;--primary-label-font-size:1.0625rem;--primary-label-font-weight:500;--primary-label-line-height:1.2941;--secondary-label-font-family:Placeholder Font;--secondary-label-font-size:0.9375rem;--secondary-label-font-weight:500;--secondary-label-line-height:1.3333;--text-input-field-font-family:Placeholder Font;--text-input-field-font-size:1rem;--text-input-field-font-weight:500;--text-input-field-line-height:1.2941;--text-input-label-font-family:Placeholder Font;--text-input-label-font-size:17px;--text-input-label-font-size-scale-multiplier:0.75;--text-input-label-font-weight:400;--text-input-label-line-height:1.2941;--dataviz-primary-2:rgb(134,218,255);--dataviz-primary-3:rgb(95,170,255);--dataviz-secondary-1:rgb(118,62,230);--dataviz-secondary-2:rgb(147,96,247);--dataviz-secondary-3:rgb(219,26,139);--dataviz-supplementary-1:rgb(255,122,105);--dataviz-supplementary-2:rgb(241,168,23);--dataviz-supplementary-3:rgb(49,162,76);--dataviz-supplementary-4:rgb(50,52,54);--base-unit:4px;--blue-0:#f5fbff;--blue-2:#b3dbff;--blue-4:#47afff;--blue-5:#0095f6;--blue-6:#0074cc;--blue-7:#0057a3;--blue-8:#00376b;--blue-9:#002952;--breakpoint-medium-width:1536px;--breakpoint-small-width:1024px;--challenge-width:460px;--clr-separator:#efefef;--clr_red_dark_30:#af2634;--creation-header-height:43px;--creation-min-padding-x:32px;--creation-modal-max-height:898px;--creation-modal-min-height:391px;--creation-padding-x:64px;--creation-padding-y:112px;--creation-settings-width:340px;--cyan-5:#27c4f5;--desktop-center-feed-min-width-breakpoint:1500px;--desktop-grid-item-margin:28px;--desktop-in-feed-story-item-height:208px;--desktop-in-feed-story-item-width:116px;--desktop-nav-height:60px;--desktop-skinny-nav-height:60px;--direct-attachment-image-grid-item-size:78px;--direct-attachment-story-height:150px;--direct-attachment-story-large-height:256px;--direct-attachment-story-large-width:164px;--direct-attachment-story-width:84px;--direct-message-max-width:236px;--fb-connect-blue:#4f67b0;--fb-signup-page-profile-pic-size:88px;--feed-sidebar-padding:32px;--feed-sidebar-width:319px;--feed-width:470px;--font-family-system:-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;--font-weight-system-bold:700;--font-weight-system-extra-bold:800;--font-weight-system-extra-light:200;--font-weight-system-light:300;--font-weight-system-medium:500;--font-weight-system-regular:400;--font-weight-system-semibold:600;--footer-width-wide:1150px;--gradient-lavender:#d300c5;--gradient-orange:#ff7a00;--gradient-pink:#ff0169;--gradient-purple:#7638fa;--gradient-yellow:#ffd600;--green-4:#78de45;--green-5:#58c322;--green-6:#37a600;--grey-0:#f5f5f5;--grey-1:#efefef;--grey-2:#dbdbdb;--grey-3:#c7c7c7;--grey-4:#a8a8a8;--grey-5:#8e8e8e;--grey-6:#737373;--grey-7:#555555;--grey-8:#363636;--grey-9:#262626;--ig-badge:255, 48, 64;--ig-close-friends-refreshed:28, 209, 79;--ig-disabled-action-text:169, 219, 255;--ig-error-or-destructive:237, 73, 86;--ig-facebook-blue:53, 121, 234;--ig-full-screen-background:54, 54, 54;--ig-live-badge:255, 1, 105;--ig-primary-button:0, 149, 246;--ig-primary-button-hover:24, 119, 242;--ig-secondary-button-background:239, 239, 239;--ig-secondary-button-hover:219, 219, 219;--ig-secondary-button-focused:224, 241, 255;--ig-tertiary-button-background:255, 255, 255;--ig-tertiary-button-border:219, 219, 219;--ig-tertiary-button-hover:245, 245, 245;--ig-tertiary-button-text:38, 38, 38;--ig-subscribers-only:118, 56, 250;--ig-success:88, 195, 34;--ig-text-on-color:255, 255, 255;--ig-text-on-media:255, 255, 255;--in-feed-story-item-height:240px;--in-feed-story-item-width:135px;--in-feed-story-item-padding:12px;--input-border-radius:6px;--large-layout-min:1500px;--like-animation-duration:1000ms;--live-video-border-radius:4px;--live-video-right-col-width:336px;--media-content-card-width:350px;--media-content-card-width-small:300px;--media-info:335px;--medium-layout-max:1499px;--medium-layout-min:1080px;--medium-screen-max:875px;--medium-screen-min:736px;--mobile-grid-item-margin:2px;--mobile-nav-height:45px;--modal-backdrop-dark:rgba(0, 0, 0, 0.85);--modal-backdrop-default:rgba(0, 0, 0, 0.65);--modal-border-radius:12px;--modal-padding:16px;--modal-z-index:100;--nav-narrow-width:72px;--nav-medium-width:244px;--nav-wide-width:335px;--nav-bottom-screen-max:767px;--nav-narrow-screen-min:768px;--nav-medium-screen-min:1264px;--nav-wide-screen-min:1920px;--orange-5:#fd8d32;--photo:600px;--pink-5:#d10869;--post-step-indicator:168, 168, 168;--purple-5:#a307ba;--red-4:#ff6874;--red-5:#ed4956;--red-6:#c62330;--red-7:#a70311;--reels-large-screen-min:1366px;--refinement-section-height:50px;--revamp-nav-bottom-toolbar-height:50px;--revamp-feed-card-max-height:758px;--revamp-feed-card-min-height:615px;--revamp-feed-card-min-width:710px;--revamp-feed-card-media-min-width:390px;--revamp-feed-card-details-section-width:320px;--revamp-feed-card-details-section-width-xl:340px;--revamp-feed-horizontal-padding-small-screen:24px;--revamp-feed-horizontal-padding-large-screen:32px;--revamp-feed-vertical-padding:32px;--right-rail-width:300px;--scrollable-content-header-height-large:56px;--scrollable-content-header-height-med:49px;--scrollable-content-header-height:44px;--search-box-height:40px;--search-modal-height-expanded:450px;--search-modal-height:362px;--search-modal-top-offset:12px;--search-result-height:50px;--search-result-inline-top-offset:60px;--search-result-list-width:375px;--site-width-narrow:600px;--site-width-wide:935px;--small-layout-max:1079px;--small-layout-min:800px;--small-screen-max:735px;--small-screen-min:414px;--story-progressbar-update-tick:0.1s;--story-swap-animation-duration:350ms;--system-10-font-size:10px;--system-10-line-height:12px;--system-11-font-size:11px;--system-11-line-height:13px;--system-12-font-size:12px;--system-12-line-height:16px;--system-14-font-size:14px;--system-14-line-height:18px;--system-16-font-size:16px;--system-16-line-height:24px;--system-18-font-size:18px;--system-18-line-height:24px;--system-20-font-size:20px;--system-20-line-height:25px;--system-22-font-size:22px;--system-22-line-height:26px;--system-24-font-size:24px;--system-24-line-height:27px;--system-26-font-size:26px;--system-26-line-height:28px;--system-28-font-size:28px;--system-28-line-height:32px;--system-30-font-size:30px;--system-30-line-height:36px;--system-32-font-size:32px;--system-32-line-height:40px;--web-always-black:0, 0, 0;--web-always-white:255, 255, 255;--web-overlay-on-media:38, 38, 38;--web-secondary-action:224, 241, 255;--yellow-5:#fdcb5c;--challenge-link:54,54,54;--docpen-lightgrey:243,243,243;--ig-banner-background:255,255,255;--ig-elevated-background:255,255,255;--ig-elevated-separator:219,219,219;--ig-focus-stroke:168,168,168;--ig-highlight-background:239,239,239;--ig-link:0,55,107;--ig-primary-background:255,255,255;--ig-primary-text:38,38,38;--ig-secondary-background:250,250,250;--ig-secondary-button:38,38,38;--ig-secondary-text:142, 142, 142;--ig-separator:219,219,219;--ig-stroke:219,219,219;--ig-temporary-highlight:245,251,255;--ig-tertiary-text:199,199,199;--post-separator:239,239,239;--tos-box-shadow:0,0,0;}.__ig-dark-mode{--fds-black:black;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0, 0.5);--fds-black-alpha-60:rgba(0, 0, 0, 0.6);--fds-black-alpha-80:rgba(0, 0, 0, 0.8);--fds-blue-05:black;--fds-blue-30:black;--fds-blue-40:black;--fds-blue-60:black;--fds-blue-70:black;--fds-blue-80:black;--fds-button-text:black;--fds-comment-background:black;--fds-dark-mode-gray-35:black;--fds-dark-mode-gray-50:black;--fds-dark-mode-gray-70:black;--fds-dark-mode-gray-80:black;--fds-dark-mode-gray-90:black;--fds-dark-mode-gray-100:black;--fds-gray-00:black;--fds-gray-05:black;--fds-gray-10:black;--fds-gray-20:black;--fds-gray-25:black;--fds-gray-30:black;--fds-gray-45:black;--fds-gray-70:black;--fds-gray-80:black;--fds-gray-90:black;--fds-gray-100:black;--fds-green-55:black;--fds-highlight:black;--fds-highlight-cell-background:black;--fds-primary-icon:white;--fds-primary-text:white;--fds-red-55:black;--fds-soft:cubic-bezier(.08,.52,.52,1);--fds-spectrum-aluminum-tint-70:black;--fds-spectrum-blue-gray-tint-70:black;--fds-spectrum-cherry:black;--fds-spectrum-cherry-tint-70:black;--fds-spectrum-grape-tint-70:black;--fds-spectrum-grape-tint-90:black;--fds-spectrum-lemon-dark-1:black;--fds-spectrum-lemon-tint-70:black;--fds-spectrum-lime:black;--fds-spectrum-lime-tint-70:black;--fds-spectrum-orange-tint-70:black;--fds-spectrum-orange-tint-90:black;--fds-spectrum-seafoam-tint-70:black;--fds-spectrum-slate-dark-2:black;--fds-spectrum-slate-tint-70:black;--fds-spectrum-teal:black;--fds-spectrum-teal-dark-1:black;--fds-spectrum-teal-dark-2:black;--fds-spectrum-teal-tint-70:black;--fds-spectrum-teal-tint-90:black;--fds-spectrum-tomato:black;--fds-spectrum-tomato-tint-30:black;--fds-spectrum-tomato-tint-90:black;--fds-strong:cubic-bezier(.12,.8,.32,1);--fds-white:black;--fds-white-alpha-05:rgba(255, 255, 255, 0.05);--fds-white-alpha-10:rgba(255, 255, 255, 0.1);--fds-white-alpha-20:rgba(255, 255, 255, 0.2);--fds-white-alpha-30:rgba(255, 255, 255, 0.3);--fds-white-alpha-40:rgba(255, 255, 255, 0.4);--fds-white-alpha-50:rgba(255, 255, 255, 0.5);--fds-white-alpha-60:rgba(255, 255, 255, 0.6);--fds-white-alpha-80:rgba(255, 255, 255, 0.8);--fds-yellow-20:black;--accent:#0095F6;--always-white:white;--always-black:black;--always-dark-gradient:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));--always-dark-overlay:rgba(0, 0, 0, 0.4);--always-light-overlay:rgba(255, 255, 255, 0.4);--always-gray-40:#65676B;--always-gray-75:#BCC0C4;--always-gray-95:#F0F2F5;--attachment-footer-background:rgba(255,255,255,0.1);--background-deemphasized:rgba(255,255,255,0.1);--base-blue:#1877F2;--base-cherry:#F3425F;--base-grape:#9360F7;--base-lemon:#F7B928;--base-lime:#45BD62;--base-pink:#FF66BF;--base-seafoam:#54C7EC;--base-teal:#2ABBA7;--base-tomato:#FB724B;--blue-link:#00376B;--border-focused:#8A8D91;--card-background:#242526;--card-background-flat:#323436;--comment-background:#3A3B3C;--comment-footer-background:#4E4F50;--dataviz-primary-1:rgb(48,200,180);--disabled-button-background:rgba(255, 255, 255, 0.2);--disabled-button-text:rgba(255, 255, 255, 0.3);--disabled-icon:rgba(255, 255, 255, 0.3);--disabled-text:rgba(255, 255, 255, 0.3);--divider:#3E4042;--event-date:#F3425F;--fb-wordmark:#FFFFFF;--filter-accent:invert(40%) sepia(52%) saturate(200%) saturate(200%) saturate(200%) saturate(189%) hue-rotate(191deg) brightness(103%) contrast(102%);--filter-always-white:invert(100%);--filter-disabled-icon:invert(100%) opacity(30%);--filter-placeholder-icon:invert(59%) sepia(11%) saturate(200%) saturate(135%) hue-rotate(176deg) brightness(96%) contrast(94%);--filter-primary-icon:invert(89%) sepia(6%) hue-rotate(185deg);--filter-secondary-icon:invert(62%) sepia(98%) saturate(12%) hue-rotate(175deg) brightness(90%) contrast(96%);--filter-warning-icon:invert(77%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(128%) hue-rotate(359deg) brightness(102%) contrast(107%);--filter-blue-link-icon:invert(73%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(103.25%) hue-rotate(189deg) brightness(101%) contrast(101%);--filter-positive:invert(37%) sepia(61%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(115%) hue-rotate(91deg) brightness(97%) contrast(105%);--filter-negative:invert(25%) sepia(33%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(110%) hue-rotate(345deg) brightness(132%) contrast(96%);--glimmer-spinner-icon:white;--hero-banner-background:#E85D07;--hosted-view-selected-state:rgba(45, 136, 255, 0.1);--highlight-bg:rgba(24, 119, 242, .31);--hover-overlay:rgba(255, 255, 255, 0.1);--list-cell-chevron:#B0B3B8;--media-hover:rgba(68, 73, 80, 0.15);--media-inner-border:rgba(255, 255, 255, 0.05);--media-outer-border:#33363A;--media-pressed:rgba(68, 73, 80, 0.35);--messenger-card-background:#242526;--messenger-reply-background:#18191A;--overlay-alpha-80:rgba(0, 0, 0, 0.65);--overlay-on-media:rgba(0, 0, 0, 0.6);--nav-bar-background:#242526;--nav-bar-background-gradient:linear-gradient(to top, #242526, rgba(36,37,38,.9), rgba(36,37,38,.7), rgba(36,37,38,.4), rgba(36,37,38,0));--nav-bar-background-gradient-wash:linear-gradient(to top, #18191A, rgba(24,25,26,.9), rgba(24,25,26,.7), rgba(24,25,26,.4), rgba(24,25,26,0));--negative:hsl(350, 87%, 55%);--negative-background:hsl(350, 87%, 55%, 20%);--new-notification-background:#E7F3FF;--non-media-pressed:rgba(68, 73, 80, 0.15);--non-media-pressed-on-dark:rgba(255, 255, 255, 0.3);--notification-badge:#e41e3f;--placeholder-icon:#8A8D91;--placeholder-image:rgb(164, 167, 171);--placeholder-text:#8A8D91;--placeholder-text-on-media:rgba(255, 255, 255, 0.5);--popover-background:#3E4042;--positive:#31A24C;--positive-background:#1F3520;--press-overlay:rgba(255, 255, 255, 0.1);--primary-button-background:#0095F6;--primary-button-icon:#FFFFFF;--primary-button-pressed:#77A7FF;--primary-button-text:#FFFFFF;--primary-deemphasized-button-background:rgba(45, 136, 255, 0.2);--primary-deemphasized-button-pressed:rgba(24, 119, 242, 0.2);--primary-deemphasized-button-pressed-overlay:rgba(25, 110, 255, 0.15);--primary-deemphasized-button-text:#2D88FF;--primary-icon:#E4E6EB;--primary-text:#E4E6EB;--primary-text-on-media:white;--primary-web-focus-indicator:#D24294;--progress-ring-neutral-background:rgba(255, 255, 255, 0.2);--progress-ring-neutral-foreground:#ffffff;--progress-ring-on-media-background:rgba(255, 255, 255, 0.2);--progress-ring-on-media-foreground:#FFFFFF;--progress-ring-blue-background:rgba(45, 136, 255, 0.2);--progress-ring-blue-foreground:hsl(214, 100%, 59%);--progress-ring-disabled-background:rgba(122,125,130, 0.2);--progress-ring-disabled-foreground:#7A7D82;--rating-star-active:#FF9831;--scroll-thumb:rgba(255, 255, 255, 0.3);--scroll-shadow:0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(255, 255, 255, 0.05) inset;--secondary-button-background:rgba(255,255,255,.1);--secondary-button-background-floating:#4B4C4F;--secondary-button-background-on-dark:rgba(255, 255, 255, 0.4);--secondary-button-pressed:rgba(0, 0, 0, 0.05);--secondary-button-stroke:transparent;--secondary-button-text:#E4E6EB;--secondary-icon:#B0B3B8;--secondary-text:#B0B3B8;--secondary-text-on-media:rgba(255, 255, 255, 0.9);--section-header-text:#BCC0C4;--shadow-1:rgba(0, 0, 0, 0.1);--shadow-2:rgba(0, 0, 0, 0.2);--shadow-5:rgba(0, 0, 0, 0.5);--shadow-8:rgba(0, 0, 0, 0.8);--shadow-inset:rgba(255, 255, 255, 0.05);--shadow-elevated:0px 5px 12px rgba(28, 43, 51, 0.6);--shadow-persistent:0px 0px 12px rgba(28, 43, 51, 0.6);--shadow-primary:0px 0px 12px rgba(28, 43, 51, 0.1);--surface-background:#242526;--switch-active:hsl(214, 100%, 59%);--text-highlight:rgba(24, 119, 242, 0.45);--text-input-background:#242526;--toast-background:#242526;--toast-text:#FFFFFF;--toast-text-link:#4599FF;--toggle-active-background:rgb(45, 136, 255);--toggle-active-icon:#FFFFFF;--toggle-active-text:#FFFFFF;--toggle-button-active-background:#E6F2FF;--wash:#3E4042;--web-wash:#18191A;--warning:hsl(40, 89%, 52%);--fb-logo-color:#2D88FF;--dialog-anchor-vertical-padding:56px;--header-height:0px;--global-panel-width:0px;--global-panel-width-expanded:0px;--alert-banner-corner-radius:8px;--button-corner-radius:4px;--button-corner-radius-medium:10px;--button-corner-radius-large:12px;--button-height-large:40px;--button-height-medium:36px;--button-padding-horizontal-large:16px;--button-padding-horizontal-medium:16px;--button-icon-padding-large:16px;--button-icon-padding-medium:16px;--button-inner-icon-spacing-large:3px;--button-inner-icon-spacing-medium:3px;--blueprint-button-height-medium:40px;--blueprint-button-height-large:48px;--card-corner-radius:4px;--card-box-shadow:0 12px 28px 0 var(--shadow-2), 0 2px 4px 0 var(--shadow-1);--card-padding-vertical:20px;--chip-corner-radius:6px;--dialog-corner-radius:8px;--glimmer-corner-radius:8px;--image-corner-radius:4px;--input-corner-radius:4px;--nav-list-cell-corner-radius:8px;--list-cell-corner-radius:8px;--list-cell-min-height:52px;--list-cell-padding-vertical:20px;--list-cell-padding-vertical-with-addon:14px;--nav-list-cell-min-height:0px;--nav-list-cell-padding-vertical:16px;--nav-list-cell-padding-vertical-with-addon:16px;--text-input-multi-padding-between-text-scrollbar:20px;--text-input-multi-padding-scrollbar:16px;--toast-corner-radius:4px;--text-input-caption-margin-top:10px;--text-input-label-top:22px;--text-input-min-height:64px;--text-input-padding-vertical:12px;--fds-animation-enter-exit-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-enter-exit-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-swap-shuffle-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-swap-shuffle-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-move-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-move-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-passive-move-in:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-passive-move-out:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-quick-move-in:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-quick-move-out:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-fade-in:cubic-bezier(0, 0, 1, 1);--fds-animation-fade-out:cubic-bezier(0, 0, 1, 1);--fds-duration-extra-extra-short-in:100ms;--fds-duration-extra-extra-short-out:100ms;--fds-duration-extra-short-in:200ms;--fds-duration-extra-short-out:150ms;--fds-duration-short-in:280ms;--fds-duration-short-out:200ms;--fds-duration-medium-in:400ms;--fds-duration-medium-out:350ms;--fds-duration-long-in:500ms;--fds-duration-long-out:350ms;--fds-duration-extra-long-in:1000ms;--fds-duration-extra-long-out:1000ms;--fds-duration-none:0ms;--fds-fast:200ms;--fds-slow:400ms;--font-family-apple:system-ui, -apple-system, BlinkMacSystemFont, \'.SFNSText-Regular\', sans-serif;--font-family-code:ui-monospace, Menlo, Consolas, Monaco, monospace;--font-family-default:Helvetica, Arial, sans-serif;--font-family-segoe:Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;--body-font-family:Placeholder Font;--body-font-size:0.9375rem;--body-font-weight:400;--body-line-height:1.3333;--body-emphasized-font-family:Placeholder Font;--body-emphasized-font-size:0.9375rem;--body-emphasized-font-weight:600;--body-emphasized-line-height:1.3333;--headline1-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline1-font-size:1.75rem;--headline1-font-weight:700;--headline1-line-height:1.2143;--headline2-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline2-font-size:1.5rem;--headline2-font-weight:700;--headline2-line-height:1.25;--headline3-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline3-font-size:1.0625rem;--headline3-font-weight:700;--headline3-line-height:1.2941;--meta-font-family:Placeholder Font;--meta-font-size:0.8125rem;--meta-font-weight:400;--meta-line-height:1.3846;--meta-emphasized-font-family:Placeholder Font;--meta-emphasized-font-size:0.8125rem;--meta-emphasized-font-weight:600;--meta-emphasized-line-height:1.3846;--primary-label-font-family:Optimistic Display Medium, system-ui, sans-serif;--primary-label-font-size:1.0625rem;--primary-label-font-weight:500;--primary-label-line-height:1.2941;--secondary-label-font-family:Placeholder Font;--secondary-label-font-size:0.9375rem;--secondary-label-font-weight:500;--secondary-label-line-height:1.3333;--text-input-field-font-family:Placeholder Font;--text-input-field-font-size:1rem;--text-input-field-font-weight:500;--text-input-field-line-height:1.2941;--text-input-label-font-family:Placeholder Font;--text-input-label-font-size:17px;--text-input-label-font-size-scale-multiplier:0.75;--text-input-label-font-weight:400;--text-input-label-line-height:1.2941;--dataviz-primary-2:rgb(134,218,255);--dataviz-primary-3:rgb(95,170,255);--dataviz-secondary-1:rgb(129,77,231);--dataviz-secondary-2:rgb(168,124,255);--dataviz-secondary-3:rgb(219,26,139);--dataviz-supplementary-1:rgb(255,122,105);--dataviz-supplementary-2:rgb(241,168,23);--dataviz-supplementary-3:rgb(49,162,76);--dataviz-supplementary-4:rgb(228,230,235);--base-unit:4px;--blue-0:#f5fbff;--blue-2:#b3dbff;--blue-4:#47afff;--blue-5:#0095f6;--blue-6:#0074cc;--blue-7:#0057a3;--blue-8:#00376b;--blue-9:#002952;--breakpoint-medium-width:1536px;--breakpoint-small-width:1024px;--challenge-width:460px;--clr-separator:#efefef;--clr_red_dark_30:#af2634;--creation-header-height:43px;--creation-min-padding-x:32px;--creation-modal-max-height:898px;--creation-modal-min-height:391px;--creation-padding-x:64px;--creation-padding-y:112px;--creation-settings-width:340px;--cyan-5:#27c4f5;--desktop-center-feed-min-width-breakpoint:1500px;--desktop-grid-item-margin:28px;--desktop-in-feed-story-item-height:208px;--desktop-in-feed-story-item-width:116px;--desktop-nav-height:60px;--desktop-skinny-nav-height:60px;--direct-attachment-image-grid-item-size:78px;--direct-attachment-story-height:150px;--direct-attachment-story-large-height:256px;--direct-attachment-story-large-width:164px;--direct-attachment-story-width:84px;--direct-message-max-width:236px;--fb-connect-blue:#4f67b0;--fb-signup-page-profile-pic-size:88px;--feed-sidebar-padding:32px;--feed-sidebar-width:319px;--feed-width:470px;--font-family-system:-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;--font-weight-system-bold:700;--font-weight-system-extra-bold:800;--font-weight-system-extra-light:200;--font-weight-system-light:300;--font-weight-system-medium:500;--font-weight-system-regular:400;--font-weight-system-semibold:600;--footer-width-wide:1150px;--gradient-lavender:#d300c5;--gradient-orange:#ff7a00;--gradient-pink:#ff0169;--gradient-purple:#7638fa;--gradient-yellow:#ffd600;--green-4:#78de45;--green-5:#58c322;--green-6:#37a600;--grey-0:#f5f5f5;--grey-1:#efefef;--grey-2:#dbdbdb;--grey-3:#c7c7c7;--grey-4:#a8a8a8;--grey-5:#8e8e8e;--grey-6:#737373;--grey-7:#555555;--grey-8:#363636;--grey-9:#262626;--ig-badge:255, 48, 64;--ig-close-friends-refreshed:28, 209, 79;--ig-disabled-action-text:169, 219, 255;--ig-error-or-destructive:237, 73, 86;--ig-facebook-blue:53, 121, 234;--ig-full-screen-background:54, 54, 54;--ig-live-badge:255, 1, 105;--ig-primary-button:0, 149, 246;--ig-primary-button-hover:24, 119, 242;--ig-secondary-button-background:239, 239, 239;--ig-secondary-button-hover:219, 219, 219;--ig-secondary-button-focused:224, 241, 255;--ig-tertiary-button-background:255, 255, 255;--ig-tertiary-button-border:219, 219, 219;--ig-tertiary-button-hover:245, 245, 245;--ig-tertiary-button-text:38, 38, 38;--ig-subscribers-only:118, 56, 250;--ig-success:88, 195, 34;--ig-text-on-color:255, 255, 255;--ig-text-on-media:255, 255, 255;--in-feed-story-item-height:240px;--in-feed-story-item-width:135px;--in-feed-story-item-padding:12px;--input-border-radius:6px;--large-layout-min:1500px;--like-animation-duration:1000ms;--live-video-border-radius:4px;--live-video-right-col-width:336px;--media-content-card-width:350px;--media-content-card-width-small:300px;--media-info:335px;--medium-layout-max:1499px;--medium-layout-min:1080px;--medium-screen-max:875px;--medium-screen-min:736px;--mobile-grid-item-margin:2px;--mobile-nav-height:45px;--modal-backdrop-dark:rgba(0, 0, 0, 0.85);--modal-backdrop-default:rgba(0, 0, 0, 0.65);--modal-border-radius:12px;--modal-padding:16px;--modal-z-index:100;--nav-narrow-width:72px;--nav-medium-width:244px;--nav-wide-width:335px;--nav-bottom-screen-max:767px;--nav-narrow-screen-min:768px;--nav-medium-screen-min:1264px;--nav-wide-screen-min:1920px;--orange-5:#fd8d32;--photo:600px;--pink-5:#d10869;--post-step-indicator:168, 168, 168;--purple-5:#a307ba;--red-4:#ff6874;--red-5:#ed4956;--red-6:#c62330;--red-7:#a70311;--reels-large-screen-min:1366px;--refinement-section-height:50px;--revamp-nav-bottom-toolbar-height:50px;--revamp-feed-card-max-height:758px;--revamp-feed-card-min-height:615px;--revamp-feed-card-min-width:710px;--revamp-feed-card-media-min-width:390px;--revamp-feed-card-details-section-width:320px;--revamp-feed-card-details-section-width-xl:340px;--revamp-feed-horizontal-padding-small-screen:24px;--revamp-feed-horizontal-padding-large-screen:32px;--revamp-feed-vertical-padding:32px;--right-rail-width:300px;--scrollable-content-header-height-large:56px;--scrollable-content-header-height-med:49px;--scrollable-content-header-height:44px;--search-box-height:40px;--search-modal-height-expanded:450px;--search-modal-height:362px;--search-modal-top-offset:12px;--search-result-height:50px;--search-result-inline-top-offset:60px;--search-result-list-width:375px;--site-width-narrow:600px;--site-width-wide:935px;--small-layout-max:1079px;--small-layout-min:800px;--small-screen-max:735px;--small-screen-min:414px;--story-progressbar-update-tick:0.1s;--story-swap-animation-duration:350ms;--system-10-font-size:10px;--system-10-line-height:12px;--system-11-font-size:11px;--system-11-line-height:13px;--system-12-font-size:12px;--system-12-line-height:16px;--system-14-font-size:14px;--system-14-line-height:18px;--system-16-font-size:16px;--system-16-line-height:24px;--system-18-font-size:18px;--system-18-line-height:24px;--system-20-font-size:20px;--system-20-line-height:25px;--system-22-font-size:22px;--system-22-line-height:26px;--system-24-font-size:24px;--system-24-line-height:27px;--system-26-font-size:26px;--system-26-line-height:28px;--system-28-font-size:28px;--system-28-line-height:32px;--system-30-font-size:30px;--system-30-line-height:36px;--system-32-font-size:32px;--system-32-line-height:40px;--web-always-black:0, 0, 0;--web-always-white:255, 255, 255;--web-overlay-on-media:38, 38, 38;--web-secondary-action:224, 241, 255;--yellow-5:#fdcb5c;--challenge-link:219,219,219;--docpen-lightgrey:38,38,38;--ig-banner-background:38,38,38;--ig-elevated-background:38,38,38;--ig-elevated-separator:54,54,54;--ig-focus-stroke:85,85,85;--ig-highlight-background:38,38,38;--ig-link:224,241,255;--ig-primary-background:0,0,0;--ig-primary-text:250,250,250;--ig-secondary-background:18,18,18;--ig-secondary-button:250,250,250;--ig-secondary-text:168, 168, 168;--ig-separator:38,38,38;--ig-stroke:85,85,85;--ig-temporary-highlight:0,149,246;--ig-tertiary-text:115,115,115;--post-separator:38,38,38;--tos-box-shadow:255,255,255;}</style><style nonce=\"7DXsYBtw\"></style><script nonce=\"7DXsYBtw\">__DEV__=0;function envFlush(a){function b(b){for(var c in a)b[c]=a[c]}window.requireLazy?window.requireLazy([\"Env\"],b):(window.Env=window.Env||{},b(window.Env))}envFlush({\"useTrustedTypes\":false,\"isTrustedTypesReportOnly\":false,\"enableDefaultTrustedTypesPolicy\":true,\"defaultTrustedTypesPolicyName\":\"igwww-alite-site\",\"ig_server_override\":\"\",\"compat_iframe_token\":null});__annotator=function(f){return f};__d_stub=[];__d=function(id,deps,factory,special){__d_stub.push([id,deps,factory,special]);};__rl_stub=[];requireLazy=function(){__rl_stub.push(arguments)};now_inl=(function(){var p=window.performance;return p&&p.now&&p.timing&&p.timing.navigationStart?function(){return p.now()+p.timing.navigationStart}:function(){return new Date().getTime()};})();_btldr={};qpl_inl=(function(){var data={};return function(i,n,t){if(!i)return data;if(!data[i])data[i]={};data[i][n]=t||now_inl();}})();qpl_tag=(function(){var data=[];return function(t){if(!t)return data;data.push(t);}})();(function(a){function b(b){if(!window.openDatabase)return;b.I_AM_INCOGNITO_AND_I_REALLY_NEED_WEBSQL=function(a,b,c,d){return window.openDatabase(a,b,c,d)};window.openDatabase=function(){throw new Error()}}b(a)})(this);\"use strict\";window.__SSRInit=function(a){var b=function(){},c={total:0},d=!1,e=null,f=!1,g=[\"success_status\",\"ROOT\",\"eid\"].filter(function(b){return!a[b]});g.length>0&&j(\"Error receiving SSRData: missing keys \"+g.toString());var h=document.getElementById(a.eid),i=[];h?a.gks.mwp_ssr_enabled?u(h):l():j(\"Error locating root element: \"+a.eid);function j(a){if(k())return;d=!0;eventEmitter.emitOnce(\"FIRSTPAYLOADINJECTED\",!1);v(a,\"ERROR\")}function k(){return!!e&&e.status===\"ERROR\"||d}function l(){j(a.disabled_status)}function m(b){window.qpl_inl(a.cavalry_get_lid,b)}function n(a){p(a)||j(\"Checks for useMatchViewport failed\")}function o(b){if(k())return;var c=b[0];if(!c){j(\"Empty SSR payload received\");return}i.push.apply(i,b);r(b);b=c.fizzRootId;var d=c.payloadType,e=c.status;if(b===null||!d||e!==a.success_status){if(e===a.disabled_status||e===a.bad_preloaders_status||e===a.unknown_boundaries_status){l();return}j(\"Error processing SSR payload \"+(c.id||\"Global\")+\": \"+e);return}d===\"FIRST\"?(s(b||\"\"),f=!0):d===\"LAST\"&&(f||s(b||\"\"),m(\"ssr_injected\"),m(\"ssr_inline_injector_ready\"),v(\"\",\"INJECTED\"))}function p(a){return!window.matchMedia?!1:a.every(function(a){var b=a.dimension,c=a.numPixels,d=a.operation;a=a.result;d=q(d,b,c);return window.matchMedia(d).matches===a})}function q(a,b,c){return\"(\"+a+\"-\"+b+\": \"+c+\"px)\"}function r(a){a.forEach(function(a){m(\"ssr_received_\"+(a.id||\"global_failure\"))})}function s(b){while(h==null?void 0:h.firstChild)(h==null?void 0:h.lastChild)&&h.removeChild(h==null?void 0:h.lastChild);b=document.getElementById(b);if(h&&b){var c=b.childNodes;while(c.length){var d=c[0],e=d.nodeType===Node.ELEMENT_NODE?d.dataset:null;if(e!=null&&(e.rxi!=null||e.rri!=null||e.rci!=null||e.rsi!=null)&&d.nodeName.toLowerCase()===\"template\"){(e=document.body)==null?void 0:e.appendChild(d)}else h==null?void 0:h.appendChild(d)}b.remove()}a.gks.comet_ssr_wait_for_dev||t()}function t(){eventEmitter.emitOnce(\"FIRSTPAYLOADINJECTED\",!0)}function u(a){a.style.display=\"none\"}function v(d,f){window.__onSSRPayload=b,window.__onSSRViewportGuessValidation=b,a.gks.comet_ssr_wait_for_dev||t(),e={clickEvents:c,msg:d,processedPayloads:i,status:f,unbindListeners:b},eventEmitter.emitOnce(\"ALLPAYLOADSINJECTED\",e)}window.__isReactFizzContext=!0;window.__onSSRPayload=o;window.__SSREventEmitter=eventEmitter;window.__invalidateSSR=j;window.__logSSRQPL=m;window.__onSSRViewportGuessValidation=n;window.__shouldIgnoreSSRStaticId=a.should_ignore_static_id;a.gks.comet_ssr_wait_for_dev&&(window.__comet_ssr_continue=function(){t()});typeof window.requireLazy===\"function\"&&window.requireLazy([\"ReactDOMComet\"],function(a){m(\"ssr_reactdom_ready\")})};var eventEmitter={emit:function(a,b){eventEmitter.events[a]&&eventEmitter.events[a].map(function(a){return a&&typeof a===\"function\"&&a(b)}),eventEmitter.eventsEmitted[a]={args:b}},emitOnce:function(a,b){a in eventEmitter.eventsEmitted||eventEmitter.emit(a,b)},events:{},eventsEmitted:{},on:function(a,b){var c=eventEmitter.eventsEmitted[a];if(c){b&&typeof b===\"function\"&&b(c.args);return}!eventEmitter.events[a]?eventEmitter.events[a]=[b]:eventEmitter.events[a].push(b)}};</script><script>qpl_inl(\"7191084768081846440\",\"htmlStart\");</script>\n<script type=\"application/json\" data-content-len=\"82\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"htmlStart\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"htmlStart\",52);</script>\n<script type=\"application/json\" data-content-len=\"92\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"htmlStart\",52]]]}</script>\n<title>Instagram</title>\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"bxData\":{\"1160057\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y7\\/r\\/s_LXY1yMsCT.svg\"},\"1160058\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yN\\/r\\/MnQWcWb6SrY.svg\"},\"1160060\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y5\\/r\\/Mszq4yIBziR.svg\"},\"1160061\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yu\\/r\\/Ddk-AuWE7VS.svg\"},\"6339\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y4\\/r\\/wsw1pPOceFo.mp4\"},\"6019\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/ym\\/r\\/uVpL7VtNVaZ.svg\"},\"6381\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yV\\/r\\/d2iYGdGZRSp.svg\"}},\"clpData\":{\"1744178\":{\"r\":1,\"s\":1},\"1836368\":{\"r\":1,\"s\":1},\"1838142\":{\"r\":1,\"s\":1},\"1791\":{\"r\":1},\"3949\":{\"r\":1},\"3950\":{\"r\":1},\"1801\":{\"r\":1,\"s\":1},\"1802\":{\"r\":1,\"s\":1},\"2514\":{\"r\":1,\"s\":1},\"3707\":{\"r\":1,\"s\":1},\"3719\":{\"r\":1,\"s\":1},\"1743656\":{\"r\":1,\"s\":1},\"1744234\":{\"r\":1},\"1744251\":{\"r\":100,\"s\":1},\"1744552\":{\"r\":10000,\"s\":1},\"1814852\":{\"r\":1,\"s\":1},\"1829320\":{\"r\":1,\"s\":1},\"1829321\":{\"r\":1,\"s\":1},\"1837559\":{\"r\":1,\"s\":1},\"1743690\":{\"r\":1,\"s\":1},\"1843988\":{\"r\":1,\"s\":1},\"3255\":{\"r\":1,\"s\":1},\"3257\":{\"r\":1,\"s\":1},\"3258\":{\"r\":1,\"s\":1}},\"gkxData\":{\"2644\":{\"result\":true,\"hash\":\"AT7mI6K8vTz0G2gqpaY\"},\"4796\":{\"result\":false,\"hash\":\"AT7JKBdiRaGFqZ88gyI\"},\"4813\":{\"result\":true,\"hash\":\"AT4zaM5H_8ZI6H51YAg\"},\"4845\":{\"result\":false,\"hash\":\"AT6-8cuRKcjFa5sIiyk\"},\"4875\":{\"result\":true,\"hash\":\"AT5AG1zOFgrramfXbS0\"},\"4876\":{\"result\":false,\"hash\":\"AT7cmpbRk0Dldi5ByL0\"},\"4877\":{\"result\":true,\"hash\":\"AT5wj393VxTj6wfmVmg\"},\"4878\":{\"result\":true,\"hash\":\"AT74ERqdGcPDXpMb7Zk\"},\"4879\":{\"result\":true,\"hash\":\"AT6AjtS5NIA02L6sfd8\"},\"4880\":{\"result\":true,\"hash\":\"AT6R9leZJM8MgClxOkM\"},\"4882\":{\"result\":true,\"hash\":\"AT5vlOTujqD_jUh08vE\"},\"4884\":{\"result\":false,\"hash\":\"AT7mcUh9w-SGaS9YZ4k\"},\"4923\":{\"result\":false,\"hash\":\"AT7GCq770dmAOAKCUBY\"},\"4931\":{\"result\":false,\"hash\":\"AT6b_gSTxvg1HJMVgS4\"},\"4932\":{\"result\":false,\"hash\":\"AT63ZfOTmA-AgnQ2hnM\"},\"4942\":{\"result\":false,\"hash\":\"AT6vxnt_djcMW8SQA1Q\"},\"4946\":{\"result\":false,\"hash\":\"AT50Gg5yts-BmFrdGVw\"},\"4950\":{\"result\":true,\"hash\":\"AT7EhmBWKm11fsotUCA\"},\"4951\":{\"result\":true,\"hash\":\"AT6fL3tAjP3geUI2-3Y\"},\"4954\":{\"result\":false,\"hash\":\"AT74fI-Ee9aScI8hA1M\"},\"4955\":{\"result\":false,\"hash\":\"AT4Ze_o5uVratxr2Rs4\"},\"4956\":{\"result\":false,\"hash\":\"AT6I_8AWh5srRaciM4M\"},\"4957\":{\"result\":false,\"hash\":\"AT7g0zmn8Cwbwp_5zoM\"},\"5207\":{\"result\":false,\"hash\":\"AT73ouJpUXGI2U-T5bU\"},\"5284\":{\"result\":true,\"hash\":\"AT4_oeZCyvBeJCQ6unA\"},\"1397\":{\"result\":false,\"hash\":\"AT4keGCEVCr_Dt41iOE\"},\"1405\":{\"result\":true,\"hash\":\"AT6JmwhMEw9Z9JM-tis\"},\"1407\":{\"result\":true,\"hash\":\"AT580PbjBSL9srk9uQE\"},\"2179\":{\"result\":true,\"hash\":\"AT5LDXs7IpycvWv3b9w\"},\"2638\":{\"result\":true,\"hash\":\"AT6h30Fyo1GLSOJ6Hco\"},\"2645\":{\"result\":false,\"hash\":\"AT6JcCzTcHgDIElHc-s\"},\"2652\":{\"result\":false,\"hash\":\"AT5y-3A6LTipALn1TYc\"},\"2677\":{\"result\":false,\"hash\":\"AT4uB5a6eJ1PzGnwoLE\"},\"3359\":{\"result\":true,\"hash\":\"AT7CTrEkPHjnp7PERmg\"},\"4779\":{\"result\":false,\"hash\":\"AT73sz8ZxFnpaT_SLF8\"},\"4815\":{\"result\":false,\"hash\":\"AT7jwZaquWirnJ5hcjk\"},\"4824\":{\"result\":true,\"hash\":\"AT63XkdVPHzi7R2HI2k\"},\"4846\":{\"result\":true,\"hash\":\"AT5ZRgQH8tD_lYX0Cqc\"},\"4860\":{\"result\":true,\"hash\":\"AT7_JZm4qmZFnyt4mHc\"},\"4868\":{\"result\":false,\"hash\":\"AT5lOt3U1CPcve7N4wI\"},\"4869\":{\"result\":true,\"hash\":\"AT4zpSsNwJyA3fAm9Jg\"},\"4871\":{\"result\":true,\"hash\":\"AT7xq9nantMspv3yP9Q\"},\"4885\":{\"result\":false,\"hash\":\"AT6Scis3t-QrqdQgTX4\"},\"4903\":{\"result\":false,\"hash\":\"AT7rihaWP14WHO-E-nc\"},\"4911\":{\"result\":true,\"hash\":\"AT6zHevjrn8t5OOuy3Q\"},\"4948\":{\"result\":false,\"hash\":\"AT6gVHtPuQBd_0kr5IM\"},\"4958\":{\"result\":true,\"hash\":\"AT7xIi4TsNUu5r7yc9A\"},\"4959\":{\"result\":true,\"hash\":\"AT7vrCtcejFxS7KJL6k\"},\"4960\":{\"result\":false,\"hash\":\"AT62tJ9oyfxSfEjszSA\"},\"4974\":{\"result\":true,\"hash\":\"AT6t4EbirBETU7BIaho\"},\"4977\":{\"result\":false,\"hash\":\"AT5S9_tzgpD4nyajcoA\"},\"5016\":{\"result\":true,\"hash\":\"AT5AbYrMvy8aHBiOEX4\"},\"7251\":{\"result\":true,\"hash\":\"AT6m28fp1IRRRbh1ZJo\"},\"2262\":{\"result\":true,\"hash\":\"AT7m1lpTcig1NOC2iKQ\"},\"3472\":{\"result\":false,\"hash\":\"AT45yZhwPzVLLzf1ymM\"},\"4904\":{\"result\":false,\"hash\":\"AT7rOlF7veVioclvyF4\"},\"4905\":{\"result\":false,\"hash\":\"AT6Ho94zve9DYrTqKmQ\"},\"4912\":{\"result\":false,\"hash\":\"AT6Cu6qnyU9nPQisuFo\"},\"4915\":{\"result\":false,\"hash\":\"AT4Buika8WvVKOXSEZo\"},\"4916\":{\"result\":false,\"hash\":\"AT5pUaLkBqG1KoiPuzg\"},\"4937\":{\"result\":true,\"hash\":\"AT721QPuIPyzp34tdIQ\"},\"5978\":{\"result\":false,\"hash\":\"AT6R0t7E9kYf7qwTnaY\"},\"4849\":{\"result\":false,\"hash\":\"AT7944xa7OdHpsOGw2E\"},\"4913\":{\"result\":false,\"hash\":\"AT6xzKFxL1Ghnuofr_w\"},\"5048\":{\"result\":false,\"hash\":\"AT5Kd2Kd0lgxI8MniYU\"},\"5051\":{\"result\":false,\"hash\":\"AT4vzKlaIxUNA6P4QhM\"},\"4780\":{\"result\":true,\"hash\":\"AT4j8PcaI_nN4JEOJMg\"},\"4927\":{\"result\":false,\"hash\":\"AT7hw9ACzgZsI4RBBHc\"},\"5305\":{\"result\":false,\"hash\":\"AT4MXTtvziNH7yMx4KY\"},\"4848\":{\"result\":false,\"hash\":\"AT4t3usnrmzV4AaLddY\"},\"4933\":{\"result\":false,\"hash\":\"AT4_1XEfpO_YDy2KdD8\"},\"7212\":{\"result\":false,\"hash\":\"AT6rY56rKjwdhwaG2RA\"},\"4857\":{\"result\":false,\"hash\":\"AT5XW0mFWfSFiIfam-E\"},\"5541\":{\"result\":true,\"hash\":\"AT70V-Q_zfEykznOKFk\"},\"708253\":{\"result\":true,\"hash\":\"AT5n4hBL3YTMnQWtozI\"},\"996940\":{\"result\":false,\"hash\":\"AT7opYuEGy3sjG1aTsg\"},\"1099893\":{\"result\":false,\"hash\":\"AT5kly2LSZV_DKGRSGE\"},\"1224637\":{\"result\":false,\"hash\":\"AT7JRluWxuwDm3XzPKQ\"},\"1263340\":{\"result\":false,\"hash\":\"AT5bwizWgDaFQudmRdA\"},\"443\":{\"result\":true,\"hash\":\"AT4h1HaIxHYZn6IYw-8\"},\"1426\":{\"result\":false,\"hash\":\"AT4rfyyNv13TbBZ8j7Q\"},\"1465\":{\"result\":true,\"hash\":\"AT7xYfmgiZ3heiVqMOg\"},\"1475\":{\"result\":false,\"hash\":\"AT7kEzfGQyTYdZJbFbQ\"},\"2755\":{\"result\":true,\"hash\":\"AT5UMQkR8ly2W4m1FUU\"},\"2772\":{\"result\":false,\"hash\":\"AT5Eu244WIce7iwqxLk\"},\"3752\":{\"result\":false,\"hash\":\"AT6eS5UTkkMp_xbPSFc\"},\"3831\":{\"result\":false,\"hash\":\"AT4W23lQ0XxAZniMqsQ\"},\"4075\":{\"result\":false,\"hash\":\"AT4_ZQi0sTjSt-Rx6JI\"},\"4166\":{\"result\":false,\"hash\":\"AT7yrb5QuQ92736u4MM\"},\"4180\":{\"result\":false,\"hash\":\"AT6ZBPDX_t1nVduVoKE\"},\"4638\":{\"result\":false,\"hash\":\"AT5RMJE1yJSepmApf4E\"},\"4639\":{\"result\":false,\"hash\":\"AT6fuwnCZ25Hjx2lQN4\"},\"5173\":{\"result\":true,\"hash\":\"AT719vu1BCC8wvN0SHw\"},\"6196\":{\"result\":false,\"hash\":\"AT79LaB9hNdhYgx4a6w\"},\"6751\":{\"result\":false,\"hash\":\"AT4_Q5AqWq6jnR2COqc\"},\"6830\":{\"result\":false,\"hash\":\"AT6WoYIwb5Y6x569QBk\"},\"7126\":{\"result\":false,\"hash\":\"AT6zxeBPQBB-VYg0o9Y\"},\"8126\":{\"result\":false,\"hash\":\"AT4U7qG06p9sF6u8DUA\"},\"676837\":{\"result\":false,\"hash\":\"AT4N8wBZA8ctCdHwKq4\"},\"678680\":{\"result\":false,\"hash\":\"AT4Y-6Ul9ZZckQZnzBM\"},\"1018547\":{\"result\":false,\"hash\":\"AT5OYJhHTg1FexdZhCk\"},\"1167394\":{\"result\":false,\"hash\":\"AT7BpN-tlUPwbIIFFOE\"},\"1217157\":{\"result\":false,\"hash\":\"AT6B7YmllOsArnK6hd0\"},\"1407308\":{\"result\":false,\"hash\":\"AT6g20u7kv9f37jOlQ0\"},\"1501502\":{\"result\":false,\"hash\":\"AT7iuJThg2U6GkqTQuQ\"},\"1554827\":{\"result\":false,\"hash\":\"AT7zueGLhGo0cT5xJsE\"},\"1738486\":{\"result\":false,\"hash\":\"AT4cX37oQco6DwhUrY8\"},\"1778371\":{\"result\":false,\"hash\":\"AT6HtWXGEXFDQ5JjkBc\"},\"1902022\":{\"result\":false,\"hash\":\"AT7WD_stYlEMqW8c6Iw\"},\"1912204\":{\"result\":false,\"hash\":\"AT72FnwJF9IKaIf-yn4\"},\"1914427\":{\"result\":false,\"hash\":\"AT7r7RL9lwTjh6wxXrE\"},\"451\":{\"result\":false,\"hash\":\"AT4ag1FobPr8nMWrYkM\"},\"986\":{\"result\":false,\"hash\":\"AT5-Af8bmYxtGf1lCHE\"},\"1459\":{\"result\":false,\"hash\":\"AT60sF8lwSNwCEwZz44\"},\"1705\":{\"result\":false,\"hash\":\"AT45JGOqDPcAMbr3giY\"},\"2116\":{\"result\":false,\"hash\":\"AT7vcO-xd-_PhMpSXNA\"},\"2460\":{\"result\":false,\"hash\":\"AT7ffZvWU_0qVGTWSLg\"},\"2979\":{\"result\":true,\"hash\":\"AT52_r3YZvW6Gxvh63Q\"},\"3446\":{\"result\":false,\"hash\":\"AT5Jr6UXVhj3ffyy0YQ\"},\"5383\":{\"result\":false,\"hash\":\"AT6qiZkZUP-oosQ1dbM\"},\"5403\":{\"result\":false,\"hash\":\"AT5zCIAplAr2jSMZYF4\"},\"5945\":{\"result\":false,\"hash\":\"AT75NnnIUkzdzhWf6PY\"},\"7566\":{\"result\":false,\"hash\":\"AT6zeouo_ZVHZdMOUJ8\"},\"7670\":{\"result\":true,\"hash\":\"AT7dQ8VUCWdRClRGWow\"},\"7761\":{\"result\":false,\"hash\":\"AT6LA2nzmCK672tuSoY\"},\"7762\":{\"result\":false,\"hash\":\"AT4u0kGjAskdaKROawQ\"},\"1070695\":{\"result\":false,\"hash\":\"AT711tHzdMfRy3F3s-Y\"},\"1616314\":{\"result\":false,\"hash\":\"AT6Zl4nWIeZ_AYDrO28\"},\"1642984\":{\"result\":false,\"hash\":\"AT71oE1xc4ID8xb49uw\"},\"1690028\":{\"result\":false,\"hash\":\"AT7vV-7CyHNNfGJoSt0\"},\"1703328\":{\"result\":true,\"hash\":\"AT49L03pP2X9HmsnxoU\"},\"1721477\":{\"result\":true,\"hash\":\"AT70IfYeUvLOKY5Yr8E\"},\"1861546\":{\"result\":true,\"hash\":\"AT7TDKkMR4gPryZg-BY\"},\"1863055\":{\"result\":false,\"hash\":\"AT7ONu9dmdwXlowbMfE\"},\"1902661\":{\"result\":true,\"hash\":\"AT48eoL9MpGKmdHLLRs\"},\"1934926\":{\"result\":false,\"hash\":\"AT46kKhfIFLWq906GyY\"},\"157\":{\"result\":true,\"hash\":\"AT4iLFeITcgQsXY_KHQ\"},\"227\":{\"result\":true,\"hash\":\"AT5yXnJxXfkiddJSkYI\"},\"229\":{\"result\":true,\"hash\":\"AT6ACjjf9sN9o2h--dw\"},\"231\":{\"result\":true,\"hash\":\"AT5RtBjo7qezdTuhVCM\"},\"233\":{\"result\":true,\"hash\":\"AT7HvkjZGXZeuumhE28\"},\"235\":{\"result\":true,\"hash\":\"AT4gizq47dTbAJ5jQak\"},\"265\":{\"result\":true,\"hash\":\"AT5gL3y76QX973hpgoM\"},\"680\":{\"result\":true,\"hash\":\"AT4j6gtWFSIkh2pHPnw\"},\"751\":{\"result\":false,\"hash\":\"AT7TXp0TTlIecYKJORw\"},\"1292\":{\"result\":true,\"hash\":\"AT6KRRnA6-Re_k9KHKk\"},\"1365\":{\"result\":true,\"hash\":\"AT4nD_Goixr7-KaJjYA\"},\"1485\":{\"result\":false,\"hash\":\"AT4WNLTpxBYFwessFuQ\"},\"1682\":{\"result\":true,\"hash\":\"AT4jNPAkujFdMYkDY-I\"},\"1813\":{\"result\":false,\"hash\":\"AT4X9tsJ0F2VTaGTQ1A\"},\"1937\":{\"result\":true,\"hash\":\"AT4Z51p0HN014AEPKlM\"},\"2030\":{\"result\":true,\"hash\":\"AT77OC0fYHb5VHYBxZc\"},\"2254\":{\"result\":true,\"hash\":\"AT4NaskuQ6OBD3qCmpc\"},\"2448\":{\"result\":true,\"hash\":\"AT7EwlgtPzpIx-1QMDA\"},\"2458\":{\"result\":true,\"hash\":\"AT5Dy7G1iL0c6SKnpT0\"},\"2581\":{\"result\":false,\"hash\":\"AT4iw_6E9ISmVfQLwK0\"},\"2878\":{\"result\":false,\"hash\":\"AT60M6erIws33tuMoY0\"},\"2891\":{\"result\":true,\"hash\":\"AT4zXmx2THniTTphpR0\"},\"2914\":{\"result\":false,\"hash\":\"AT5lCo9g877PS-Mti4c\"},\"2918\":{\"result\":true,\"hash\":\"AT4ga0oGMpCrx7tjn-w\"},\"3140\":{\"result\":false,\"hash\":\"AT5-c9fjLEKqfwwAwB4\"},\"3400\":{\"result\":false,\"hash\":\"AT5LV5sAIJng7-zcNxs\"},\"3587\":{\"result\":true,\"hash\":\"AT77w5IYSPt6bAQqv1M\"},\"3598\":{\"result\":false,\"hash\":\"AT4R-V-zd8OVuUkTQeM\"},\"3621\":{\"result\":false,\"hash\":\"AT77rRhVv9YO-zVZOo8\"},\"3644\":{\"result\":false,\"hash\":\"AT7MMG5fbtaxY0c2v5s\"},\"3662\":{\"result\":false,\"hash\":\"AT425nnr7oiZH9yMDgI\"},\"3663\":{\"result\":false,\"hash\":\"AT5L-vX64jrJbYFhenI\"},\"3799\":{\"result\":true,\"hash\":\"AT7faoER21EJi6FSYQ0\"},\"3849\":{\"result\":false,\"hash\":\"AT7ORu3G5CIVsH-JXB0\"},\"4096\":{\"result\":true,\"hash\":\"AT7lTOdcZzbiGpSliuQ\"},\"4138\":{\"result\":false,\"hash\":\"AT6AOrFOG4QbAvJehzQ\"},\"5205\":{\"result\":false,\"hash\":\"AT4tOojq3gzI7IFZZVQ\"},\"5509\":{\"result\":true,\"hash\":\"AT4bcT4-bwXgcPCdMKo\"},\"5564\":{\"result\":false,\"hash\":\"AT6p7zxz4X9cAT6CaPs\"},\"5574\":{\"result\":false,\"hash\":\"AT7t8_-pqYHCqFfTu70\"},\"5735\":{\"result\":false,\"hash\":\"AT55xkQWRLxMd5Tjk0I\"},\"6098\":{\"result\":false,\"hash\":\"AT66f_Ky9tZPqwuh7UQ\"},\"7849\":{\"result\":false,\"hash\":\"AT7m5s5gN6uIZK_JhY4\"},\"894204\":{\"result\":false,\"hash\":\"AT7MWh7MKvvrwCN_bA4\"},\"938288\":{\"result\":false,\"hash\":\"AT60802ujA6R5kZSIRA\"},\"947903\":{\"result\":true,\"hash\":\"AT5C_9W30waBxHKUdyk\"},\"976093\":{\"result\":true,\"hash\":\"AT6Tnn67lHNTT5CpsLc\"},\"1133447\":{\"result\":false,\"hash\":\"AT6gnU9itzgx89tyWpM\"},\"1151941\":{\"result\":false,\"hash\":\"AT4VtFw2xNGXhISyxqM\"},\"1163255\":{\"result\":false,\"hash\":\"AT4p5wUSMH_kRx_dgio\"},\"1243442\":{\"result\":false,\"hash\":\"AT6H-KKvL_2kq8U29eM\"},\"1249968\":{\"result\":false,\"hash\":\"AT5AlPmWHlKvEcrjExs\"},\"1250838\":{\"result\":false,\"hash\":\"AT7z1NkFlLfUKocWCt4\"},\"1299319\":{\"result\":false,\"hash\":\"AT7zRIpVRWl8hiUYLoc\"},\"1352928\":{\"result\":false,\"hash\":\"AT7bJwS1VNOxBUhslGM\"},\"1382775\":{\"result\":false,\"hash\":\"AT7D5sd_gmE2NRtmKhY\"},\"1383502\":{\"result\":false,\"hash\":\"AT51zMR8DxFUUVJ89uk\"},\"1388683\":{\"result\":false,\"hash\":\"AT63PwzAsKGj12Q6vdQ\"},\"1470120\":{\"result\":false,\"hash\":\"AT7hoNhuKStHslT513s\"},\"1564135\":{\"result\":true,\"hash\":\"AT7iTOcLJuIIpIfCmuo\"},\"1613919\":{\"result\":false,\"hash\":\"AT7bXvwviv8GGfF3BGw\"},\"1621604\":{\"result\":false,\"hash\":\"AT50POWWzLfBx_Vm2h0\"},\"1626006\":{\"result\":true,\"hash\":\"AT4_TZlW-MUS84RE4dE\"},\"1657807\":{\"result\":true,\"hash\":\"AT5GneaEpFhH-amrY0w\"},\"1661552\":{\"result\":false,\"hash\":\"AT5w2VaBMxRPfMyWalY\"},\"1707273\":{\"result\":false,\"hash\":\"AT5oTb36da_qc9QIBIY\"},\"1723588\":{\"result\":false,\"hash\":\"AT485K2jwU-S2ruRjIY\"},\"1806005\":{\"result\":false,\"hash\":\"AT4tOLFFU6SFy7iTdnU\"},\"1809663\":{\"result\":false,\"hash\":\"AT7aaCUO35jSxYX-twg\"},\"1842356\":{\"result\":true,\"hash\":\"AT7H5I-MCN88RbrZzgU\"},\"1872325\":{\"result\":false,\"hash\":\"AT4WDV07rUK5enGi6gM\"},\"1969466\":{\"result\":true,\"hash\":\"AT5pb0-O1YUbvm8nvrA\"},\"4240\":{\"result\":false,\"hash\":\"AT6WMihLvltJm0UjQts\"},\"1787898\":{\"result\":true,\"hash\":\"AT5WGsLz9GCUYq8UG1U\"},\"1924645\":{\"result\":false,\"hash\":\"AT7xqjINkJcipyjZ_Hc\"},\"437\":{\"result\":false,\"hash\":\"AT5Wtli8NHvdh5idyxw\"},\"2654\":{\"result\":false,\"hash\":\"AT6t4lweBphRM2rXShQ\"},\"6017\":{\"result\":false,\"hash\":\"AT6VK36mN-p0kfQg8Ms\"},\"950768\":{\"result\":false,\"hash\":\"AT434vVJ93bUu52yP6k\"},\"1293035\":{\"result\":false,\"hash\":\"AT6f-b10jzF6b9M9R1I\"},\"1537962\":{\"result\":false,\"hash\":\"AT6YWgGMjb0fUWs1WEo\"},\"4309\":{\"result\":false,\"hash\":\"AT4gPlTz1LN9a-kueb0\"},\"6364\":{\"result\":false,\"hash\":\"AT6-IPpgGUVfvP6-e34\"},\"4139\":{\"result\":false,\"hash\":\"AT4LbxUvoUGPs9scU24\"},\"7997\":{\"result\":true,\"hash\":\"AT6K4DRNH52GDaFqICY\"},\"4034\":{\"result\":false,\"hash\":\"AT5mbn3qxCu0rIpMJR8\"},\"517\":{\"result\":false,\"hash\":\"AT6nhZGTa49R4qYbXAM\"},\"1703425\":{\"result\":false,\"hash\":\"AT5M5FNRBAvWiZomQh8\"},\"1427308\":{\"result\":false,\"hash\":\"AT4N7BzUkGfi0OG1ibE\"},\"2257\":{\"result\":false,\"hash\":\"AT5Mac_Q9jALVGtdm0A\"},\"6862\":{\"result\":false,\"hash\":\"AT68ofpcSp7CAzMdd9M\"},\"1291023\":{\"result\":false,\"hash\":\"AT519LseIG1nwq3oRkg\"},\"1399218\":{\"result\":true,\"hash\":\"AT6guCW1eyIkOV1E31E\"},\"1401060\":{\"result\":true,\"hash\":\"AT5aetN5Gb3reIXVIgo\"},\"1596063\":{\"result\":false,\"hash\":\"AT7JHuDWtaOqRuBUQx0\"},\"1722014\":{\"result\":false,\"hash\":\"AT6_M5gpc6RLrHjcgW8\"},\"1778302\":{\"result\":false,\"hash\":\"AT65fisZhmc2X92EYXw\"},\"1840809\":{\"result\":false,\"hash\":\"AT5nYctoTsr7alRin0k\"},\"1848749\":{\"result\":false,\"hash\":\"AT5GsH9Kb-3W-taZ0M4\"}},\"ixData\":{\"303380\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yr\\/r\\/28x0bk6AFyo.png\",\"width\":96,\"height\":96},\"701592\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-173px -72px\",\"sz\":\"auto\"},\"702721\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-120px -246px\",\"sz\":\"auto\"},\"897949\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-180px -208px\",\"sz\":\"auto\"},\"1739808\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-177px -84px\",\"sz\":\"auto\"},\"162687\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/G_yyNuxdk-F.png\",\"width\":192,\"height\":96},\"162985\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yN\\/r\\/vYZ-cWnQBuU.png\",\"width\":90,\"height\":72},\"162986\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/dRVgh4McYBM.png\",\"width\":90,\"height\":72},\"162987\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yT\\/r\\/DtjqdeBieqM.png\",\"width\":90,\"height\":72},\"162988\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/r\\/p5l9c5zF5rO.png\",\"width\":90,\"height\":72},\"162991\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/S4AiHXvyZbY.png\",\"width\":90,\"height\":72},\"162992\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/hjlUOCeAPgV.png\",\"width\":90,\"height\":72},\"162994\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/LlAAxsz8baJ.png\",\"width\":142,\"height\":35},\"162995\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/V4xamCor5vc.png\",\"width\":160,\"height\":30},\"162996\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ye\\/r\\/kYahnENm9WA.png\",\"width\":90,\"height\":72},\"162997\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/_iW8nyl4elS.png\",\"width\":90,\"height\":72},\"162998\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yE\\/r\\/aQN-NK__goD.png\",\"width\":56,\"height\":56},\"162999\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/SNf2dNNPCMW.png\",\"width\":90,\"height\":72},\"163000\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/nBMTFjFGPyY.png\",\"width\":90,\"height\":72},\"478232\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":16,\"h\":16,\"p\":\"-34px -229px\",\"sz\":\"auto\"},\"478233\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"0 -166px\",\"sz\":\"auto\"},\"502062\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-126px -124px\",\"sz\":\"auto\"},\"512647\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-167px -99px\",\"sz\":\"auto\"},\"514454\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-21px -124px\",\"sz\":\"auto\"},\"222729\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/KfWslvUGSoF.png\",\"width\":76,\"height\":76},\"222730\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/qkRylMqLXNE.png\",\"width\":175,\"height\":51},\"222731\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/_iOF0aB8dD5.png\",\"width\":175,\"height\":51},\"478231\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":12,\"h\":12,\"p\":\"-138px -84px\",\"sz\":\"auto\"}},\"qexData\":{\"290\":{\"r\":null},\"468\":{\"r\":null},\"495\":{\"r\":null},\"501\":{\"r\":null},\"606\":{\"r\":false},\"756\":{\"r\":false},\"1838\":{\"r\":false},\"1841\":{\"r\":true},\"89\":{\"r\":5},\"446\":{\"r\":false},\"556\":{\"r\":null},\"953\":{\"r\":true},\"958\":{\"r\":false},\"959\":{\"r\":false},\"961\":{\"r\":false},\"1013\":{\"r\":true},\"1220\":{\"r\":false},\"1244\":{\"r\":false},\"1247\":{\"r\":false},\"1953\":{\"r\":false},\"554\":{\"r\":null},\"695\":{\"r\":false},\"260\":{\"r\":\"default\"},\"281\":{\"r\":false},\"1339\":{\"r\":null},\"450\":{\"r\":true,\"l\":\"J{\\\"u\\\":\\\"ig_web_reels_video_merge_v2\\\",\\\"t\\\":\\\"ig_django\\\",\\\"gks\\\":[],\\\"qe\\\":null}\"},\"877\":{\"r\":false},\"723\":{\"r\":null},\"6\":{\"r\":null},\"177\":{\"r\":null},\"230\":{\"r\":null},\"534\":{\"r\":null},\"590\":{\"r\":null},\"719\":{\"r\":null},\"20\":{\"r\":null},\"32\":{\"r\":null},\"49\":{\"r\":null},\"181\":{\"r\":null},\"239\":{\"r\":false},\"240\":{\"r\":0},\"246\":{\"r\":null},\"258\":{\"r\":null},\"410\":{\"r\":null},\"415\":{\"r\":null},\"645\":{\"r\":null},\"720\":{\"r\":null},\"768\":{\"r\":null},\"806\":{\"r\":null},\"858\":{\"r\":null},\"932\":{\"r\":null},\"954\":{\"r\":null},\"956\":{\"r\":false},\"957\":{\"r\":false},\"966\":{\"r\":null},\"976\":{\"r\":null},\"1020\":{\"r\":null},\"1022\":{\"r\":null},\"1028\":{\"r\":null},\"1034\":{\"r\":null},\"1164\":{\"r\":null},\"1242\":{\"r\":false},\"1322\":{\"r\":null},\"1637\":{\"r\":null},\"1638\":{\"r\":null},\"1639\":{\"r\":null},\"1640\":{\"r\":null},\"1641\":{\"r\":null},\"1642\":{\"r\":null},\"1643\":{\"r\":null},\"1644\":{\"r\":null},\"1645\":{\"r\":null},\"1646\":{\"r\":null},\"1647\":{\"r\":null},\"2085\":{\"r\":null},\"2086\":{\"r\":null},\"2087\":{\"r\":null},\"2088\":{\"r\":null},\"2089\":{\"r\":null},\"2090\":{\"r\":null},\"2091\":{\"r\":null},\"2092\":{\"r\":null},\"83\":{\"r\":null},\"193\":{\"r\":null},\"388\":{\"r\":null},\"664\":{\"r\":null},\"752\":{\"r\":null},\"644\":{\"r\":null},\"647\":{\"r\":null},\"124\":{\"r\":null},\"429\":{\"r\":null},\"1375\":{\"r\":null},\"445\":{\"r\":null}},\"qplData\":{\"21\":{\"r\":1},\"192\":{\"r\":2000},\"1597\":{\"r\":1},\"5270\":{\"r\":1},\"6287\":{\"r\":1},\"6915\":{\"r\":1},\"8327\":{\"r\":1},\"334\":{\"r\":2000},\"955\":{\"r\":6},\"1217\":{\"r\":1},\"1360\":{\"r\":100},\"1411\":{\"r\":10000},\"2172\":{},\"2401\":{},\"2410\":{\"r\":1},\"3796\":{\"r\":6},\"5252\":{\"r\":6},\"6204\":{\"r\":1},\"6310\":{\"r\":1},\"6702\":{\"r\":1},\"13076\":{\"r\":6},\"152\":{\"r\":10},\"4342\":{}},\"justknobxData\":{\"48\":{\"r\":false},\"84\":{\"r\":true},\"87\":{\"r\":true},\"144\":{\"r\":true},\"379\":{\"r\":true},\"380\":{\"r\":true},\"450\":{\"r\":true},\"643\":{\"r\":true},\"71\":{\"r\":false},\"76\":{\"r\":false},\"77\":{\"r\":true},\"80\":{\"r\":true},\"83\":{\"r\":true},\"138\":{\"r\":false},\"306\":{\"r\":true},\"341\":{\"r\":false},\"356\":{\"r\":true},\"494\":{\"r\":true},\"589\":{\"r\":true},\"624\":{\"r\":true},\"653\":{\"r\":20000},\"713\":{\"r\":true},\"815\":{\"r\":true},\"887\":{\"r\":true},\"904\":{\"r\":true},\"905\":{\"r\":true},\"906\":{\"r\":true},\"82\":{\"r\":true},\"471\":{\"r\":false},\"757\":{\"r\":false},\"55\":{\"r\":true},\"73\":{\"r\":25000}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"RaA31FN\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/l\\/0,cross\\/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":14,144,151,0\",\"nc\":1},\"LGJRwGF\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yH\\/l\\/0,cross\\/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"Zx0r1CJ\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/l\\/0,cross\\/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"kWwybab\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/l\\/0,cross\\/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"f7Ym7Sv\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/l\\/0,cross\\/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1}}})});</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/l/0,cross/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/l/0,cross/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/l/0,cross/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yk/l/0,cross/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yH/l/0,cross/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yG/r/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yG/r/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"vLAMZRo\" async=\"1\" data-p=\":1\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;vLAMZRo&quot;]=1\" onerror=\"_btldr[&quot;vLAMZRo&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3imDI4/yD/l/en_US/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3imDI4/yD/l/en_US/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"wYUxKHn\" async=\"1\" data-p=\":15,138,110,13,181,166,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;wYUxKHn&quot;]=1\" onerror=\"_btldr[&quot;wYUxKHn&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y-/r/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y-/r/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"68MbJvY\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;68MbJvY&quot;]=1\" onerror=\"_btldr[&quot;68MbJvY&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ihtU4/yy/l/en_US/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ihtU4/yy/l/en_US/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bgEvhmj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bgEvhmj&quot;]=1\" onerror=\"_btldr[&quot;bgEvhmj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y_/r/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y_/r/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"JYW18Ti\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;JYW18Ti&quot;]=1\" onerror=\"_btldr[&quot;JYW18Ti&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_sF4/ym/l/en_US/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_sF4/ym/l/en_US/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"GBulvfh\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;GBulvfh&quot;]=1\" onerror=\"_btldr[&quot;GBulvfh&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iFMc4/yP/l/en_US/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iFMc4/yP/l/en_US/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"AsuDyfD\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;AsuDyfD&quot;]=1\" onerror=\"_btldr[&quot;AsuDyfD&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iZ3g4/yH/l/en_US/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iZ3g4/yH/l/en_US/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"oZORzhP\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;oZORzhP&quot;]=1\" onerror=\"_btldr[&quot;oZORzhP&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iJIK4/yK/l/en_US/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iJIK4/yK/l/en_US/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ICkzBzx\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ICkzBzx&quot;]=1\" onerror=\"_btldr[&quot;ICkzBzx&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iss64/yb/l/en_US/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iss64/yb/l/en_US/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"oEUvNGb\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;oEUvNGb&quot;]=1\" onerror=\"_btldr[&quot;oEUvNGb&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/r/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yR/r/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Up8o120\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;Up8o120&quot;]=1\" onerror=\"_btldr[&quot;Up8o120&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iqfe4/yO/l/en_US/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iqfe4/yO/l/en_US/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"RgUx6NB\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;RgUx6NB&quot;]=1\" onerror=\"_btldr[&quot;RgUx6NB&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iwkF4/y3/l/en_US/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iwkF4/y3/l/en_US/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"pm3z9kc\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;pm3z9kc&quot;]=1\" onerror=\"_btldr[&quot;pm3z9kc&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ms3f9xJ\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ms3f9xJ&quot;]=1\" onerror=\"_btldr[&quot;ms3f9xJ&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"pp/2fvu\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;pp\\/2fvu&quot;]=1\" onerror=\"_btldr[&quot;pp\\/2fvu&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iTf14/yj/l/en_US/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iTf14/yj/l/en_US/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ShQo0xA\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ShQo0xA&quot;]=1\" onerror=\"_btldr[&quot;ShQo0xA&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yl/r/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yl/r/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"aVqoX25\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;aVqoX25&quot;]=1\" onerror=\"_btldr[&quot;aVqoX25&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"gpD7gKM\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;gpD7gKM&quot;]=1\" onerror=\"_btldr[&quot;gpD7gKM&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yW/r/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yW/r/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"dioMJ9z\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;dioMJ9z&quot;]=1\" onerror=\"_btldr[&quot;dioMJ9z&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iLf44/ye/l/en_US/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iLf44/ye/l/en_US/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"G83kG5B\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;G83kG5B&quot;]=1\" onerror=\"_btldr[&quot;G83kG5B&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ihe24/yg/l/en_US/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ihe24/yg/l/en_US/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"cOGwS2G\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;cOGwS2G&quot;]=1\" onerror=\"_btldr[&quot;cOGwS2G&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i4NY4/y-/l/en_US/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i4NY4/y-/l/en_US/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"SagIiXi\" async=\"1\" data-p=\":0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;SagIiXi&quot;]=1\" onerror=\"_btldr[&quot;SagIiXi&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ijPr4/yv/l/en_US/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ijPr4/yv/l/en_US/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"UaJ6Fae\" async=\"1\" data-p=\":0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;UaJ6Fae&quot;]=1\" onerror=\"_btldr[&quot;UaJ6Fae&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iUce4/yS/l/en_US/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iUce4/yS/l/en_US/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"obEmI58\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;obEmI58&quot;]=1\" onerror=\"_btldr[&quot;obEmI58&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iow94/yJ/l/en_US/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iow94/yJ/l/en_US/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"WYJHsrI\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;WYJHsrI&quot;]=1\" onerror=\"_btldr[&quot;WYJHsrI&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iGsb4/y5/l/en_US/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iGsb4/y5/l/en_US/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"YYCsR5a\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;YYCsR5a&quot;]=1\" onerror=\"_btldr[&quot;YYCsR5a&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ivkL4/yP/l/en_US/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ivkL4/yP/l/en_US/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"yxuOpZn\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;yxuOpZn&quot;]=1\" onerror=\"_btldr[&quot;yxuOpZn&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ideN4/yh/l/en_US/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ideN4/yh/l/en_US/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"lA0A1O8\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;lA0A1O8&quot;]=1\" onerror=\"_btldr[&quot;lA0A1O8&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iXZ54/yZ/l/en_US/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iXZ54/yZ/l/en_US/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"CbVciYk\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;CbVciYk&quot;]=1\" onerror=\"_btldr[&quot;CbVciYk&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iogo4/yZ/l/en_US/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iogo4/yZ/l/en_US/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bSZaoMi\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bSZaoMi&quot;]=1\" onerror=\"_btldr[&quot;bSZaoMi&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iGYw4/yu/l/en_US/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iGYw4/yu/l/en_US/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"SsSrcC4\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;SsSrcC4&quot;]=1\" onerror=\"_btldr[&quot;SsSrcC4&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ye/r/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ye/r/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"iE2l7jW\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;iE2l7jW&quot;]=1\" onerror=\"_btldr[&quot;iE2l7jW&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_954/yI/l/en_US/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_954/yI/l/en_US/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"rDzHHGL\" async=\"1\" data-p=\":0,0,0,27,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;rDzHHGL&quot;]=1\" onerror=\"_btldr[&quot;rDzHHGL&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/r/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yp/r/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"8aTFOzW\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;8aTFOzW&quot;]=1\" onerror=\"_btldr[&quot;8aTFOzW&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"/xWlKkI\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;\\/xWlKkI&quot;]=1\" onerror=\"_btldr[&quot;\\/xWlKkI&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3isHT4/yE/l/en_US/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3isHT4/yE/l/en_US/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ImCNdhg\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ImCNdhg&quot;]=1\" onerror=\"_btldr[&quot;ImCNdhg&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"1BRKNYj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;1BRKNYj&quot;]=1\" onerror=\"_btldr[&quot;1BRKNYj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/r/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yu/r/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"f0Nl9pe\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;f0Nl9pe&quot;]=1\" onerror=\"_btldr[&quot;f0Nl9pe&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3itX54/yU/l/en_US/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3itX54/yU/l/en_US/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"PJevOFh\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;PJevOFh&quot;]=1\" onerror=\"_btldr[&quot;PJevOFh&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3izF44/yn/l/en_US/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3izF44/yn/l/en_US/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"iuENYaU\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;iuENYaU&quot;]=1\" onerror=\"_btldr[&quot;iuENYaU&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3in5G4/yN/l/en_US/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3in5G4/yN/l/en_US/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"DsWfgKJ\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;DsWfgKJ&quot;]=1\" onerror=\"_btldr[&quot;DsWfgKJ&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iumd4/yp/l/en_US/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iumd4/yp/l/en_US/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"lgaAFHU\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;lgaAFHU&quot;]=1\" onerror=\"_btldr[&quot;lgaAFHU&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ys/r/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ys/r/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"8MwX2jo\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;8MwX2jo&quot;]=1\" onerror=\"_btldr[&quot;8MwX2jo&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i3xT4/y5/l/en_US/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i3xT4/y5/l/en_US/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"6KCwpsF\" async=\"1\" data-p=\":152,3,2,25,114,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;6KCwpsF&quot;]=1\" onerror=\"_btldr[&quot;6KCwpsF&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ikjM4/yo/l/en_US/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ikjM4/yo/l/en_US/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"/cMNGhx\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;\\/cMNGhx&quot;]=1\" onerror=\"_btldr[&quot;\\/cMNGhx&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iSdl4/yn/l/en_US/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iSdl4/yn/l/en_US/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Nx6u9Jq\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;Nx6u9Jq&quot;]=1\" onerror=\"_btldr[&quot;Nx6u9Jq&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iPVh4/yv/l/en_US/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iPVh4/yv/l/en_US/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"TQAZkKv\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;TQAZkKv&quot;]=1\" onerror=\"_btldr[&quot;TQAZkKv&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iLxq4/yI/l/en_US/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iLxq4/yI/l/en_US/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"gxHwpBE\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;gxHwpBE&quot;]=1\" onerror=\"_btldr[&quot;gxHwpBE&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iuVg4/yI/l/en_US/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iuVg4/yI/l/en_US/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"nQecA5e\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;nQecA5e&quot;]=1\" onerror=\"_btldr[&quot;nQecA5e&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e8bJQ8q\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e8bJQ8q&quot;]=1\" onerror=\"_btldr[&quot;e8bJQ8q&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yS/r/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yS/r/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"+vXa6Lj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;+vXa6Lj&quot;]=1\" onerror=\"_btldr[&quot;+vXa6Lj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iga04/yD/l/en_US/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iga04/yD/l/en_US/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"DCNucsL\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;DCNucsL&quot;]=1\" onerror=\"_btldr[&quot;DCNucsL&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yZ/r/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yZ/r/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"xivIod5\" async=\"1\" data-p=\":0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;xivIod5&quot;]=1\" onerror=\"_btldr[&quot;xivIod5&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yD/r/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yD/r/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"m4q5gIa\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;m4q5gIa&quot;]=1\" onerror=\"_btldr[&quot;m4q5gIa&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_tA4/yO/l/en_US/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_tA4/yO/l/en_US/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bsXsmKk\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bsXsmKk&quot;]=1\" onerror=\"_btldr[&quot;bsXsmKk&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i5iB4/y7/l/en_US/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i5iB4/y7/l/en_US/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"51fcjGV\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;51fcjGV&quot;]=1\" onerror=\"_btldr[&quot;51fcjGV&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n</head><body class=\"_a3wf _-kb\"><div id=\"splash-screen\" style=\"position:fixed;z-index:100;background:#fff;top:0;left:0;width:100%;height:100%\"><style type=\"text/css\" nonce=\"7DXsYBtw\">html{overflow-y:scroll!important}</style><img width=\"80px\" height=\"80px\" style=\"position:absolute;top:50%;left:50%;margin:-40px 0 0 -40px\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACgCAYAAACLz2ctAAAtXklEQVR4AezBAQ0AAAjAoNu/tDl0QAAAAAAAAG9NRy179gDrX9NdcfyzZ8793b9r27Zt2wqqoHYb1rYdt1Hj1AhqI6jdPrafizO7uHOSnfMi+uvFTlZm73XO9TdrZnK/TB6/Ctef5jqudm4MbgTXBofGUXAYHJaLvq/GUee4GR2tGz2tndaa80a2hWhAdCPCiAA0dBmBBQ1bH4BONqFJi8ggm6FrGWRnXKwxmrHS1kWsYYyDOBucdLk27Sycnod2cixOhzw7Fs8NnljFk8PZ01fFs087fRzPegmt+HP3uNvrF7325eD1lu6t1/SW2bxWX71x8iqRDskRjoNlqk9FoyW9yUjZQvYwgmxdIqMRzRoNNuiEjmYIIqQmNQQaltJvft/gFLnNDX3OIbLJ7FKIPBIjZAbTjzUYTeairawjGOToYm2chHG6cIa1y8eSe7r492Y8EM7/7Ez7rzf1mg8j3eUVKd1N9ZVXvUY786qteUfpnYKPkN5QuhaJokgCEEUNCbM34QlDQxhCCpu/gjb9xtTQUOHr6ucMCzbfXKN4Md+pMIbQ6rtzbnLO1Ln21QspdjPDBaT53138NeN3mvO/Pji+7xW95n04eTmAu/o8Lr3qVW++nnmj1ny08B6R3ly6DJEYhLnu4bPv9zCOCVAW+NjgaxID6QghN1AnHEOvMBTgluLt4eo28KI+n37Od7MAOHQNSQGvzb4CGGWtgDLUPlg79zTrn5G/162//4z1P/Cwu6DiHv/gTtYPXXnzj8nwYdL7S6/b0qtFIIkJm6TC15JaHQqE6h+spF2Xcs6b39VkTItkex/toi/gbT52oDW0CZitl5svsGy9nE5qWMQOMKImq6SAW1O5wvjCNbbPfTqs/975S/JXbzj/VTxyhxPw79yJ+porb/lOwee15qMNryNdikQWgCaEkpizCWAgC2hKH1BTrEC1zNSLDawCYNsDKAuYUYBlQYgKjIOgAlfTUmyfRxdy9il1sYdOg33i1c+/B466Fo0pQnIxn+L+kP/cjB++4t9+Eyd3CMBfdbvqy33U8ZVr3uucL4z0icHV2GCaYBlAywLclKyAAYGOKGogS/LVs9+qTfBM4FqBsU3IzHWhwBuipGDIOdNFScU9gAG7rbSeA4HYVAGsniFEAW0gNCkk068/nwmhzZt92a7PG3966vQHw8kf4H63seJpf+p21Ld4t9d03cdKXxe8uQRiEGqylXMeYi3PVQBfeGLsz0nNqtU0nOnX59z3aWctZ7cJZwGws9/6LKKAVS8eKbQdTKFJrSTh5sf0a5rZIBUlybBPPpA7GPdKrAIqjFKzPtT4le78m/EftzEB/9KtrPBO8Q3XvLX0tcJH49UlMWjq9nohaGP6VfUP/GLUqYmmGxiaUdJt1LSbIG694pkfF/UWLMo2u78Zd20DYoNM7OA0e+X2awO39HsQ61wvUknxxsTa7JXkI6zswdxAtEr5W+SPd9d/43ZsywvX3cr62uveE98ZvLdwsMHUaImYwAUxoIJHY5cEBKAVlWQoyTV0Y65ZUs0GqAWBmLAu5VmBtMC9hzxmHxobQOy2zQ3YCiepUdIaCPbPZIFYgc8ujbMmIxW0zdGo6VfW0OQH4fV48rVYfgHP3OIE/Bu3or7a218+vuGTpZ8P84JRoAJoFbpBjN35zy79CgTFL/2oAAprmdOypSETsGGRYurIoKRdLynSRAVYF0xvQlWSDxtYWgEidhenALETkPXzU8BUkpDcz4LiZz0DCuaawpBztUlOnf8SR1+Mh29hAp7dgvPeu1w5vILPaekbpEsRBCJQt9S5GrsLRdIrpFDhm4K2B3N3QyypNZUl8WYKTmjJAtiw1PcpICsA24ShFcBil3pRe+qtlro9S9if7+TuZ8MuxVRApdwl6/Y5kqKo0FH6+DTO/pHTn8F/3RIAb3bCfu+rvv/10xOfsaRvD149AogoIGUBcqWNDcjZ7858ClgNSt/ZATGmN0aT502eLPL5Lk/TOFt4Pi78sRgZcjTySGaTSbrw6bJAPdLs65bbNGFomkZJGtGY7wUiJkzRBTQyQosmG9nJQ4hLF2seB5dCLEFLIwJ250AAsgK+AwwGCLn1yJ0A9R3rVxOvyvrt+O9bAOBwM+uZUx/bYsKHTZIAtCAqaBt8Zd4lWvXOgoeDexb+Jbmn8dTCk8RzXTzfrKchnj/iJLVnunyuy/O0JrkGo4tMq8vkKZCLwBlIHEgO4OAUADFdDhKBVIuDI8Cp0zhsroMzZ3E014OG8yDi3HkPrR85tHB6vFquNC43ebxwPOQxcSXEFdZXaNorhnxL8nXxWuRlYBQIYZQ+i/aVRYGBuIxP4+ghjn4Yj7iJFelP3Kz6thvv/m5n/FGjB5Rz3P4/Gm0q7NOvbquexn0L/xn8Ef7mwJ/8J/dgeHkB+Cb/8uosb8r6/ng3vBnj1cnXICuMU1l6Zc6ptXjrXP0wH/h1OL/r/hf8Lde8re6HpA+NknaSmDJoCmQD6/RMKP+nvbsAsuS4En7/y6y63T2sscVMRsmklekz4zIzM++alzf8DIvGb3ntZd41My2ZmS1ZMglHjMPdfavyPLobcSNj6k231Hem50X/I9JZWdcjaWb+fbLOqcy8RMMefBIfSfxnw6dX/iC8wU+5fjMH70d5IL6HuBf9mUQzLeNEsqlWKumgn5a2p3sq/msNBXznGsj31BOb7EWJ74iwJcHUtBpBiinJpt9wFGIiZmY586+JdxY+cCs3YNkGdyMyfuJ4tj6A7htI3045qxKuuu6hjnwIdCifoPwsPrZGAr7d3eGnfc3o9O2+PfOX2JICpoUjBYFcJRmCpp+IyheDP5znjTu4Ab01YYPvJHHJiYzOZPnFlMfhUBJOtXock9YvEf9G+yzctgYC/oe7w28d96THN+HvU3FGSvifCAf/IyDERLhCiknrydyY+MfEi3GzmbLBz/jsFnwH/dOIB1JawnSjryJifd9BumfR/A2W3A3auzvDjXrflzgjBSYt+Z+ePB0Ro46Cbiv8Pv4y2GfmbPCnHrj/5/h7Pn496bnEo1FFvPj/aFA2kX6Cuffi80ctAr5k+5MeGsV7EpvS/0gGUMiTPiFNop9g8hy4C7/1U7wSYYOjwCfuS/+PlK869FQcA9lxZ3L9J/gFd4OWPe4qUfxEEzZJ1AJCE5QgIwc5kXqasBsvnecf/4GwwVHiqy7/QR/6Tfwu8WCmZQMD2XEgkL6XO5+Dxbsh4G6snpct/MgT5nhiQhRSIiEVpmUc1e96w0147k/wFwgbHGUe+Q4+fAfxvykPIzI9oAy0MOnvwfZn8u2/h7B6pLB6Xi3mbtrs5Sn5sQgLSbWkatKmi8uTscQf7eZXcNCas8Ezvbvl8QXFqnj3D5BeTjkeKAh0iCEBUT7M8ndil9Wj5R+tlju2uE/LIxULkKaXyBcgFUzX/oAvBr+zc83k2+BHvLvl+LPIj6C7F8edxqfvIK4gfwSfsiJueS0n3Jf4jfr57zDlmvNpvwZ/afVoaa2W1Dmn4XyJBIjpwnKaqgGaXBN4GW60hmxwwq9RvonxaaQt2ExZxh7KbYxfQ/c3uNowOO0gy39M/AJlx7CEdYISx1Eexc5/wNLqBbTdavhLX3vSiG+IsC0FEUAytZOtLsEg8erCW91tNvh+Ep+9AC8mvoaAaTFaYjNOJi6g+S76X2P5nVg0zI2MX0D8LjFHDwiUqkFB1+Iibn0wPrJ6Ad1qNcxxai4eHQGYFhASqQDQIrE38/pXcYM1YEPAz56G36U8GXWNDuoodT/S8xjdjvcxDPvfTvP9lItI9T8HtYSBOBfn88MfRaxSwB9cnYCNe0fvPEFKlCDXElKv5/vomA98G70N7hbf4/072fKDpKcQLQWgFqNuD6a8BA+HYfIV9K+iPIho6BEDq2QAbKW/iL99K+5cpYB/azXk/kceHswlCDIyYmB7IQ4kPnEJ11kDNthxOuMfJOZRiRCAGGpfRX4gPmuQrUvc8UnKtTi7WpwKCEBfCT4+EXfOdEn+HF8TyAAIqASckvLaxFsuplgDNlj8avL9KIgB6aD+HEpD+Wme8AsIg/zrpcxfQpxFn+hR/3N7FCT0iIfhFHxxdQKugjf7yc0tZ0NGVPIFciUjri9cYo3YoFwwLF2soJUL+MBW7DXI99zAqy8jPYV+nnoKdqhVMlspZ8HMIuAmzgo2FWRAqabfDIAEfBx3WCM2iJOGhTPdDxSO02b27MCwgN4epI8xvgWnD5dkahnLg/H3M9sTMuK+BRCVcBmBaRqM+Yg1ZINYImCVURCgD+bGDsuey4jbiNOHM2G15OfBzARsuH9jOPpFJR+6OAYFfLzntzxxJ8sn0J1EeybpfOJsnEyzhbSVmCN1OEDsJe0hfYX8JdI1uIXxjYx2Y681IT6PbyENyFeqe10lpi/x/lscnks478vEg6YEq/95VSJS7s0zE2IVAj7dSpnztJNV0tXPgYXpJOS2TexyjPBwb93JwoU88t4cfCjNA0kX0G8nIwH6gTO5AgkF+SBxC6P3Uz5N8wl8BVe7W5QPkfZQtquj23Ckmr73bi4qVsRtV2LgmY9DTM1n8+LN2L8KAV9sJVzqOXMjzquTj4I8rPzV1jkXeXXD9nPIT2busXQXEWeQNtNVUqmrnJWMaToz3EQ6k/77SN9FXE+5Fm+ifT+nfBKLVs1VHye/nfLdpAEpoK8kgbiNxTdaMeVSkuGl+lGPF0jHr1LAZCU0bJvjOFUZsq1ELEiA4ErrmAd59VZ2/CK+hTiP2EG0h87vA1DXAFLVZ6hp6c/EmaQL6Xex693EX+OTVset9K/Co4nTCBRAfV2P/THzt1gx+2+mQ1nhwoSCvMMqaAkrIbF9nvlUBfYetcKBhLQOp9/7+sSIvWcx/kG2/zDlLHowTKr6HpCqBqrPVJ+lHaQduAA/T7yS9FqWP4LdDk+H1+E4PJu4PzH0Cg4RlP3EbzP3Cqti6WYMRL4ykJAsn4nPrkLARSthM1sKTVRTboMYKEon9lhHnO9dW0jfhB+nfyxGFBh4omW41G7g84QwLKb6n/dTxBOZ/1PiDVY+a/w1i7dQXkicjy1EJYegfIzyRtJfs3yHVbG4l3mE4c3ttfjNCVZBS2MlNOxomB+uPEEoSAKhiH3WCed673l4GuPvxQnDZ6IEatJQZKtamRZw4CVlOdT4fMoL8D3EL+KjVkT7Zrov0T2O8hjiQspxpH3EV/BRvIM9l2LRqsn7h1ZEDz8P2rpKAXsrYYGtPaNAUSf+RZKEkIWEUIxYtA44zdvuw/yLiSdStgy/Sciokw1VRKsFrZ/7Sh3l6ux4oGgcW/Ew0h9R/pw7/gnLDs/luJodb2O8g36ebky5kxNuxz6Oc9f43BJ9ITKl2hNiYP/IeH4m2zLn2DoWIwghEDAZhYl4QhECSRxVAU/23/PEj9I8j+6kQz+k90iADlDLFnW0q8WqBE7V/TTV90iGSQ/Dg9j5ABb/DF9yeA6yfC2upUUL2OfusXSAdomyiVRHv4FIaPNM3gXPMUfJvZBMu19AL1Bk01OwJUeJk3xsK/13kX6H2AnUf4BQhkRAUlELWY3LgLihFnGYgHnS02jPIn4GtzgqfHSRh+8nNlWSGX43bG4mWXCxON9KuQGhTPUhZFAUoUGIEuKoCHgP795G87P0v0jsJAB1/m4Vz3x1qyVMA2MwICTDlAbfRtxG8zu4yhHnx3ou2Uscf4joNzSen8kzYKOMktQEQkgC5CkZCWXSB306CgJu8x9zLHwt/a9jO/3AEWSqWt40xbBYeXjZxWDtMCE5PAG1sN9Hl7jjN3CzI07spx8Qrr6H1QtYrISRMhfkiWAaTK6r/y0ClOVes98RJ/8Y49+nbAf6SQMoA283IEE9bRbSftxOvpP+StIdxD7yMrnFZspO0imkE0nbsRNzwyWbmgQOURbagh9nxyLxu7jeEWXXvrrkQgcDUs5IQEqbRGoUYCrpgDKRL5mMlMVWHHAEGXn3ReT/g7J9+Cd2qGqpyoZjiXQV5VLyJ3AJzRWcdDk6NW5pWLwnWy4gX0g8jHQf3B9bKMgwLKQ0VBpK+Bnsxm86opRu+NwYtXwo7YwEXG5JmQAUWSCEkGEiYRGwFEo5cvL99zmMns/4ZMrA0nGqzw6VTCzRf47mX0kfJ11G3Aws41oD9LiZ/Tfjv8nb2Xwy6VGUb8YT6LeTVjr9Vr2W8jTKu/BeR4wY061gCi6AaGeShNC15HyoZ6hUnbieBCwnpXdE+OI8fob+CRQUAHQoVXSpM9UMcID8+/SvYv+VPG0Z4a6xB3t4xZWc+F7KE/DTpItxuGRkoNRfthG/Oim5XOmI0HcUGBSvOnW1nUkSQpln3BAw8MK7TAlZlmh6M+e/R7TfTfMz9Fsoh4l41NMhcYD4N+LFuAxo8CfuPt2Y67+Cr+AvOen5xPeTziHl4cjHwL6Pp5Key95n4Q4zZ7w8sD1zoKRVmllNwQ0lkVBgOB0H/ZiDYeake1N+kNhen940vGgzoSDgKtp/Yv5Pcb2ZU36PuJz8y7iQaOsSDQWgvkY0eCJbH8kV70AxWwqljnrDPyCkGW1KGjeUVE+/hkschQgzp5s8X6kLowNLZ/O0iLfgl1l8G/Y7Itx+kP3/xoVfon8uvpEAVT+QFRc4k/gxzv4MrjNTLi8YXo5FNe5XGwG7VQgYiYCBkGw6AsXsBdw1R/l5+oYyvDFHqqMh3E7zq+x+PTpHlsIlH+fcp9OeiwtI9azCcFYMTyEeidcc6Qg4fNI+RJ5RErKcKYkY2nlVR6CgMzueknjRc2hOreUjBgrK0CHfSv+DvOs/0DlqvPtKfvTbGP0B/VORMTSj1AJsJ36bfW/FQTOjKwTDEa/+wUkzEnCpQaoLuZSBelBfEGbG755FfCNjFBiIFnVxOd1G/Cm3vIeHdI46n/4iD34p6QLSGQQMJFF1K/dm68PwHjMjKgHL4X5A0qySkEwkykAELNW9PujNjvSNjM+hh+FFAVQSegvNn3PPg9YNu9/H9j8g/QZlp2kUGK7DGf8wt70PxUzoAVBqCatmlknIUgJKbT76+g8HHZowEy7ZTHk45QTyQCG3ALIpxjQvoLvBuuL2JY77B7rH4RsBiBVUHOLBnHghPmsm3BlDq6AH9iWnGT8DFtONhA4JBWOAoJgN+x9CfhTy8JQbaNAjkArNCyhXWJd84WZOewZzT8BWyko3nd+Lpe9i9yUo1pjhVTAG6oBhRoXoA4mMfmhXPAJ9Jeda8+9znH0/ysmESRt4n9sBMspn8Vbrmmuu4Nx3EN+BoWhT/6VvpVzAju2405pzaxDqBkP3ZzUFO3QZpp/qTfXdjJ4Bd96T5YuJheHlVPXSqTQm/QP7v2Td0/8Z6bHEiYYjTl0YPoflc/Apa04fAMRK2sySkFS9dhvYoNyhwIyqA/M7WXooCeozuSohCxLSdbQfZmGfdU/+MuP3kL7zEAIOTXsnUE42E8LKBYQwqzIMukSYbnSgfg1GxGySkIMnEvcjIWD4iEyBHDSfYvFSxwQ7r+Pmd9B/AzYNr+yJ6Xunku7H1v/CkjUnqjZc9pphErI/kwY2KB9qDL0ZCHg67SYSDCyNzwBIeyZns+x2TPDfPff5Iul6nFdFuuEvmOZc9m1dewH7ICGqZrCf1btgBMpKzolDMRvKvRgPlJxyJWNG3IJPOaboryZfSTkPKCvIPMvkaBG3WXOGi8+kIzUFj4cPpdHX0/AMBezOJw1MtwW5zoj3E19yTLH3FrZeg57SAFG3eja6B2nBmhPD8lHdM8sIeBDQVxKODe8ZXbb2jE8CciVcroTMKChX849fdGyxyO9dTTpAbKMADEU/lJOIzdacWjrDEW+2Ai7XG1PqcsykQcywDthvJpChPnUAqnHcyvcWxxyxm1geWARQtQI7sXl2CYjDyzf7OqCq3jf49U3oka09461AGmj1ocH2OybpD5K64XfB6vEm4jgzo5buiEfA8QoOKIR+xlNwN0+CAfmqEwr1Y8ckpUMhBt4Fq68TJc8uATG8n/rITcGDGXA1Lkhmw7ibFpAGkAfOaGkbxyQl0+eBetxQRIwjF/nqa7POghcBECs4rgvC2tPtJ9VvO5CR62VYGC84JukXiDy8UUm9FnOZvN9MGH7mIw2M1/iIXvqBBah9/dM44yjY76egqZKNfkrABmFyfQ/enhCOKR60jTQi1G0gIdlN7JmtgBjeT400yym4q4QrlZhRj1GsOW23Vx8IZCKTAlCIBhAAp/KtJ+BmxxTlnqQFihV+M9LtdEuOCInhkx1mJeBiJVUtYy1dmY2Ao/GXzSNlSiIyMZWEJERBpmRKd4L2zgfgPx0rLF54AuVCYiKgAQGhB5SbWT5ozekHdhemgag3uwg4fCzD8DQ8AwG7L2shI5mIRkqUIAXREJPr5XI8zQXHlIDyKfQnDhR/h1ZHX2smZ/GU4chGJeZsyzCBOuoNL8tXMLbmbO6uJC1LaY6Ehkjkhr4QGcVESprmOBEXm9u0Bfutd256V+Ih96GcP7wxCaJuX2LuTmvO/kQc5uR/dzkitmQrowsi6BFqGetFqRo0ZhEBbyHdSDqTZBpNAgSBSEhZOFcsnonLrHuesYNyMf1WwIB0pvuD+Ap/st+a8/0D34liqI8ZZcHjoFTSqYvSpDE5MZKUkqw180s30rwP3y9lSiElIkiJUtCgEJM+8oM1HuaM0ZfQWc/c0N+b8h1IdfQzPCVfzdKX+KGwNqzyKyoS0qyTkPHA9FtIQS4o5J45jLokj609N96iPfHT5O+lyVKQEwUp0QalEBmBhrCFpW9xg3/H9dY1/ROJc4cTDyj1ZzfS3GomjBPJMLneCGYm3xPCUmBqCu6RyD1NT4vU0wajjjZIyZqz7+Qlxy9/Rso3iO40elKLnmiJQpPRolACmWieKo2/Fn9lvXLZA+5B9wtAgMMnIg7gM1y1y0w4KQ1Mt1WDPMskpA+KSSMVYNTT9pPIF5PrMcnsjgdM469o5i8jnSaj9GiJ+nSpTEHKsFnE09a1gOLHKaetUsBbKO/m9M5MWK7lg+Hvx5djRknIUlBC0wFtz6jQFEY9uaMtNGNSIfdJU5JZcMAV7tF/UEoPp91GQ5kjjYlR/SaEaIkg8gMVzzfuX4x91gufvzTxI99I/Bx9Ld/hZPwMt7/dzDgOUYtXSQcNEtLMBOylCKMeE/lGhXZMM6YJUtD05CAjzI7UvUPje6Vum2hpOmJERilEQUMKCkog0zQ/aS5/3scueRXCuuCHziY9i/5sYhWLAaC8ix1LZkdCteLc8HQsm42A+WAY9cwXck9TaCdRL8ekIaFFIwuzY59PON47iXsxJsboUWhaYo4oRJCD6NEiThbNr/tfD74CH3O0+eD9zyJ+lfhfh5evjopuorzKTGkzkAcEy9PRb4ZT8Gipt2kcmn6SaAQ5SMhTrTG5lnSSWRGW8UqNXwABY1KPEQXRokz6BkFEEum+YvwrlvMv4wpHl5+l/36MMCTc0PU/4RYzJdKhI15GnhZvxgJu39/LitZUpKt+AFokJJCMzJY7fM5J/lryYwAULKEnMjYREwlToSD6OdF+u1Fzb73v8P7Lv4ziiPINx7PwHMa/Mlx3g6KGQPo45S/NnNyQh954VBI2UGaTBc/ppSnhagnrSJglRTJrWn8peRzOAwUJOqDAGCNiRELKRFD6B8ijV3rivX5bGb8Pi2bNu+854qwziF+ifPfq1tIFIPaT/4buajNnLqOWDhmpatD0s6kDNopGqabaQ7eERntEBEw+qfEKyQuwAMIUy0SHnuiJQEtpaDIRj1Gav9DO/4kyfiV2myXbT/9O4+6nLHmEkuZXt5wpAN5LeS3pgJmTUi0goBYSzQyn4EYnC83AlNtM9RnJSJLNmjstOdWb9b4WT4BaQgplmdRROmKOPE80RMqaOEuJZ2rai/XxvJm8M/7cOSfSfr+2e7rkTFkyTiyvZiVxIF2DV/Lmmx0RvndUvemokpGmFrDMJgJmi0Z6DXIlW1MnRMgWJK0jwa0ut9MLzNumuJh61TqaIHpyj2WMKS0WJiK2p4j2u6TR10heL+JfLHZf4Oxd6KyWd787Of2RO21fuJel9I02lR9nfLJRok+M0SCjS/SIertpjTH5hXgDX+fIECPS0HTLtBCgHa9SwNaKWNBRTcGVfJWAc8iOFLu924leqvEPQguo65EUKMQyuSeCmEPQF3K/XTQ/rG+fYvPcx6Qb3qRvvqhbvMa5O2/A2BCv/ETyqEedYpxOcNGj7qNrL9b7OnNxgVIokMiJhAajxBiLiR59N7zOTnor7/hrR5TvGZEcfitsRoPoZrMpKes0QlMnHBwyOUkWJAuOJP/mVX7Ak/BjQh4+YQx6So+eWCbmaEaUEdHQ9KeK5puV0ddq+2u07TV27b9aP7pSTnt16aDIYyU1+rSgNNs86mHH099XTidr8rlSt02TspLoEwWRgJQm8iElErpgKdMHoea/6H+HxxVHlNSQTFE9c6kEaLqZRMCJgH2VaNQCkqYiYNjsSPJUxdjvWdAKP8Jhvv8lIfVTb046SiLK5F5DLnMin68058vRyQ6KtCw3HRFI5EZjTmdOlAUyqRAT8QIyGWlyDyJNP0MzTuTCGEuIBPBF2hey+9OOPJtMU0/Bcp2QjGdUiLYsK3XCUUsoIaExwiZHmn2+YovfAHynbIsY2F8NPXKgI3piTLSUeZNnQ7T0LaFV2m1kcksgZ5O9JzQNXSISgT6TEyUBMn2iR5PoJn2LLjEXLCVGGE3uHfTf+DW6j7DJkSe2oYo4qml30oyQlmazILWxLCkydSJCPR0jazDvaHCL693T8805iJ9B0iCGv4wIlKD06Mn9RMRJ/VBHNKRAJhUik1BaSiYK8kRApMl1n0goicgkpEwO+kyXaJAQiRbAZyx4Pj7iaLGYN5OQB9YApvovfnE2WXA7EXB6uq2lqxsLjha7XeUeftOcLfgezLGS3Y2AMomIZZItx4hoiYls0VAaSqb0yJOIlymJkkmJSKRJK4k86ROTMSmRUSbXPaT/Iv2+kfc4Wtx+1ibSdhIMFYCrZ8K8PKs64KKkG5Stvt+AOUeT3W53gt/U+KLsGcLxSv1dNkNf+ghB6smFGBMN/Yg8R8nkZhIh00S4TExE7Cdy9ZmUJtdpWk76oM8wERTyIt4jNb/qlP5SR5Pb2wUsEEgDG9PriDR30CpoV+xI2K2xrKmKz81gHRAWHG1udy1+2+k+KjxbeDzmFUAMtAYFEEEEpdCMKYvE3ETIhhhREhq6TGpIk3GbpoWkoCRSppnKjrtUhF2a/Dxf/NzfobjKUeZ+C2hJpptagukoqCzO5pT8ZI9kXEW6OvFQfb7VeuFG/+4UXxaeK3mi7EzB8D7vKQlLvfemYJFIpBHRURoiEy0pkZvJvYSJkGUiXMoIIgHZPpp369K/GvX/5KL7Wxd8cmkL80N7QAZqgXOLs4mA2V6NcZ35Dj8SgO3WEze50vF+zoKnCD8gfJ2wRUGqIl8ACsPfTBHkZcoypaEk8iQalnZyryHlqc8nEuZMZLJ36/MbpMVXO+uam6wnPnnxNkotHKA5ZMQhbptNIXqrg3qdNCBfQqbKkndYb9zpoLO8w6JLJG+U/YrGA8SAdAlNdQhXqc/hRN+TEP1Eskxu6FpSQz9PDpMISO96pXmNfv5PjZevwUG7Tre+KDum/2JRC3eotyE3zCYLXnankT1VtKt+EKraIPe3HtllGVfgCsd5gzmPl30bHoLzhG1CEuiRBs7krCNnTO3fz4XSkZcoLXm8JNxA8xmpfZPF/o24Td7LZuuU/hRaRCVa/TzYTo3jptlEwHe9bL9vfNZV1TvfYfkykrOsd/baj7c6xTv17oNvFx4iOUdxkuQkIUnIdeRDqqboyViPZK/karpb6D6jaz5g1L8D+8w7FrjvlFiH2QvSIHeUO2eThEDj2mqarWWsxTzZvHvgduud3Tpc6mU+7/l24ky9E4w8WHGG5FzFCXonY4dksyTphGJZuBO3GbtZcp3kK8a+LFwh3OgG19F3jinSvYk6+YCB/cB5F6ffsUoBz7Rikptq+WoB6xUxevfFBx0rPF3g9kmj8X47bNPZppg3sklnq2y70KBoHTC2W7Zo3kFL9tlvr/McRAH3dmzxvG88HtVDaRp46A9kpGu4oV+lgDdYMdlH6ihXPwNq6+K4x+GDjl0O2uMgbgZLaihoALAwaXscw8xfhFPISAPymRKgRXMZzCYJgd6VRjpZO7Ai5lDtYbZYwKINjiGai4idBAKQDvPdfPFZmE0SAm/4ozt9/y/eIDtjuPxSPx+6t0X3w6dscGzwe1+/ExeTjqsEA0BSRcclRl9avYBGVkX2CdkZlWhDWTDZ8bJHHksCbrD1NJxP5HqaIwHUUfFa4tbZRkDI3i77Jo2sGYx6JJNrJ8qegtfgZhusb5730BHjR9Hed7qmRD7MUvzyPtrrYTYrogFan5bdJDtl+L1wHR09WHL/Y0HADU45C1+H+eFDMVPdOvLHOXjn6gV00KrYZJex92t8Zx35BiNidqbk62Wfwm4brGPKwylPBNJKN8tfQ3wOS6sXcLXc5FYneLfsWzXaQ0XBQ2TGWfYdslfhYzZYx6SfIW8dPp63PhEVfIX5y6weLfNWxatfsexpP/1pXC67UFtJV19ntEjOxkslX42DNlhfPGs+85gfJx5Nj4wGgQDkQ61Nu4PmnSzdavVoWbJqGpcLl0kuQJKQVrBTrvEY2dfhtTZYZzzqYtqfhuHzanq09TfVX4P/Apj9FAwv/8PbPetpb9F6rMZJh5x6m4FpufG7sr14lw3WBz/9xPNIz6VcMPxVEACpkjN/gNs/dzcEvN1dInmb7CekWsDhpkFyjuTXzbkNn7DB0eVHnngy3S/QPJk8kPnWfQAKuj9noXMXySy4S+2lv3er7PclRR54H9xUPTRajccp/kj4GsFGO0rtFy48yejAHxDPIKbkA+gBkOpr5DfQf47eXW0tvbvMnLcrLpE9UKIWsX4WZPozj5S9VNiFSxxZNnjOheebm/t5Ed+lFPo8fCi6glLddz3jV7ibpPA8d4vnPe+7ZK/QOE5T1wLRHLZE8ynJy23yBuy1wWx5wUUjtx+8WJd/RTf3eEujHbqGgyO6FqNJm0Mz6UeYRzvpRz2jF9G+DLfC7JOQYd6t8Q+yXxwWbaAlZA/UeKGxBwkvwY02mA0vPjvZv+cnjfLPyc19pGh1iMQIfRCBqNaYRdV8gfKvPO+2NYiAa8Dvuw/+QOPJGo1m4OiQKjs+xPgmxcvxDsnVvsVuhA3uOg9Ic+6xcLKDm59kvPB9utGT9S3jecYtXctiO+lHLI3QYH6qn5uKjPNX0D4Db7YGpPAca8KLXvKtsj80cnq9YHWF2fH0GTSflbxR8kHh8/a7Bb0NVs4rHC8508HRRcrCN+vnHqOb22E8oowYz9G1jBu6EYtzLDfsn0eekm5uqrUYvRDPNcysC9EDHPBW222S/ZNUZ8ArOFMQMrI5ycWSB0luknzeTp+aLAO7zC0uq2XcAL8qe7CTLblIcn+Ni3XO1XT3Y3mzQGppglToe3LDKJGCvkdmuafLRKm+kLxD8zqal1lDUniGNeMV/3uzsb/S+J7B9YFtdZ0MrvqetJDtx63Yq3EZdglflFxv5EadfTbZZ9GiHQ643RI6a0UjORz7HI7hx/Ul7AcsT9qWSX8AT5C8yYJiXmezYrODtuM4vVONnas4z9g5xk5V3FNvm142Rsl0mxlvopunTKbcbp5uxHgSCccjDoxYHtGNMJqOfJ+geQbev8YC/tgah/6/Pl7xbK2f1th5yKRkZHJ9uL66hjS8OUvSC8uS/diL/RN5x4pO0gnLsl4RKCiSgkAIAQJQBIACQqkqFNBD9U8rU+OCTlIkk15IOo3epNfqjPSTVsxZtl1nm85WvTmdkQ5jdOgnrTC5T48OBcuIxHiefp7lzZSWfo7xHOMR/YguT8YtB0YszhMjjJZp3kf78/iCNaZl2Zry0z9wq7/+xz/Vu4fkB2WbpgXSACDVAtUSDok2eL+RbJJsEo6XAJBhYBxqSIhqL3Cu+vqfU6rPUr1/p+pLFfXrxLPUfxZT9+oEtT65ISOQEEHuJ30hCqmQe9pMZHKiKfQYoevpEpHfTXoBy18wA5rnuS/6tW1vvGCPb7r001rLssfK1eaple0nGfgqsvrXDoibhzbyV2OHuVb9Mw0cEqAaD/0AlcEvHq/GU00luWm5phoUpKHPE9FSEjEiT+RLiciYjFOmz6T0AX1+Fv3H6M2itSybCT/5Lbu84g1/YKvjZD8jaWVAMtys4p76eqoF6s+h/jxXf2n1rxtaDFzLkRGVeHVUSmiq6FpgIPJNmrb69dDXP5T1hrXqB7gUdKSgDXT0GUhIQQ6aQilhLv7DUnqhhfGnzZAUC19vprzorfNO8lTZL8keKlsYPl1/OIoMnRA7LOXgtDp8LwAO9y35A/cC9cFFZar11XWPbqovU/0YPZaZ3J+Mq8/HKFhGX///qnvjhrIwef5bYJKE6OfoJ4nHuPmCfuFvHPAK3GnGpDju8Y4If/nui7V+UfLtki1TEq5MwPoahjdqrZZhAROiaqpxLWUcRryYEqNDUcs4fD1GX40nvVJ93mM89Vk/STTKiH7LRL55xv9Pv2zcXGLc/J5rPvo69MyeFI4gr3NPje/S+DHZQySN5lDPcQNjh5u6hyQcmlprKukMSjcsYR0J+1UK2A3IOK7v121KuB4F40rAwPKIfoGyQDeiW6Af7TKe/1vj5m34kCNIivMf4ojyG59acLIHCN8t+wHZSZoBqepkhGEpwYCIUY9XEQUZFhAKYiXT8ICM40rIMeopNyZ9merHA5Gy/mcsI6Y/z5RN9JvoR2F54dW60d8po/e69NL9iCMroKPI22y3yc/qfbXs3rKTZK00FAWrxnCvygZV1xCwwnEMjAtU4qkiYKnFq6fdKmr1dUQbeCbsUI/rX9erx7fq5m5W5t9mPP+v+ISjSIqHH++o8uFbk/9yJp6o8RjJIzROk2yXhhOSgRpfLd4AqxDycBGxwGGm4BiKgJU0dTG5FqnDUvVrp5KPQXE7S4qr9a6w5D/wHjf7LJYdZVLc3/rheTY51X1wgeSrJs+JD5bskKRVZb9phVmwVdwrqBMTA5GvAOpMuKvGQ+L0hrPeOtKN1fKGzgG9qy15r3ApPmXRNbjWOiLFU60/fk2rsdOc4ySn4GxcqHFv2b1wFrbIsAIJoxJwSMSEAitIRADq+329kLiOgPUUXD+jUQs5uQ7Tny+bFrbTu87Y1RZ9QXKpzuUW3WLO9Tp3YNk6JMV3Ora4QPY9ttjteK1tGmfKTsAWybx+0mfzipF20tNKWiEjS7IyuSbJCAmUybhM3WO4LggqAXskoUcPQqATOhShCJ0i9DpFr1jS6U2asbFFnWWdJWOLegd1Dhq7TXGj3k16d9hlN3orZ0PADTbI/v/KBhsCbrDBhoAbbAi4wQYbAm6wIeAGG2wIuMGGgBtssCHgBhsCbrDB/wlKajuIhIz6AQAAAABJRU5ErkJggg==\" /><span style=\"position:absolute;bottom:32px;left:50%;margin:-36px 0 0 -36px;\"><img width=\"72px\" height=\"37px\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAABKCAYAAABU493xAAAS4ElEQVR4Ae3bV39Vd9739/f3vwXGNjOW7yu9eXOl12HSj2Jxn6THdp6ARXo3Tu+I9A6kHiKeQAand+Qc5SiD07s36XUsrmJjo72+WSl6BbCQZV9ze4bM/qzXe/f9Xwv0U9eOl7i//G/5Rz6QvEt3oM3hutNV3LPpe2nrL/6b/2EvY1uLcVN7jTou6fZItn1vbRpjxMvm3Jh2tNdAp9uxvjTL7NLrjz+/N7Px/diaT7xsfXHhtXcBBzKu1XFW8302fX+N+T/cy4b8CKof12b7RW6jXr7tl6dNW16SXnv8xfbjC69sQw2QeiOZlp5tBXDh8Zf/93Pm80PM+K0Lr+zEYpn0EPdO3NcXX2z/9vGnSdR6dfHxlw9w6AXN+1nC0/v67XPnLlvMkPRwXvfgpDWOj+l4XzjwkpS/5G/9B70MxWJ3cMc3tLa+ggMYxl7kOg5ifbW27tAdxxFPFevlCY85TpNbr33x2zdweMLXZZ9iOXF1YX1w4jpxWL2BW9Dk8phy84T9rZp+iHt+yRsjw8sgUw+xwgxoHWL1nBOrxX268/Rznh+eqVs/pTugeYD9xj2sIO21eVB+im0vKPLW8b6O1yAHoLbT3Jw67YxOy6xzn+6Qg2cexzJyZ3Razvwy2xqdvBQN9zCjtu7THentsuephuGEdkCn2699+XgPh55tex6M+0m36Sqmq+IAUsftTl3cTCznx/4EV5xQ0mvaw5iuiAMct6zFfSwXFtfLMpkOY3qPZx83dfHTsN3mGma/vI02XjbfpeqNJtc+v/Dq4czT/t+vd5YQ0xUc+Hr7I+sPATtr69n/tzmutqeR99ZjcTDzlFWn3gbstLZfsK/VSG+DMd6f+WU2jOGl863rKuwFJxnNB4D9WqxmXuD404xF8+7MsWcGbfJg5mvGdA8gce9F+xrro3ugtl/94vPtmV9WYz7xsvn2ZUW8UHoZOvWjmdPQT6BjvD1z7LiJj2dOsrZYAayt785O3KbFOAR48vrFN2Z+WY35xMvm51mslwDTmA5nTtOpK0htzxz7VW04bpOsp8OZ0zzTps0A1WLluMW5yzOnycgSsLLJsAk5gNG+M3MavAM6fTJz7Fe1YZM4uguSd9eZdmZOkozrWELSWzPHflUbNqnFvnoAC4s7sdidOTb/Hmx72Lpe3QOdbrdZzRz7VW3LJpCs3zv+SfHgTpubSR+I7c9feX0Z3YbGPRnXPFfqV7JhE6jFKtZXqndbh0m3saMuJ91uHTb9kL5HPe9XtfzVf8c/ZtPX+6rT5cW03oZTflG76a+Y/5xjY+M72gzQxmaANjYDtLEZoI3NAG1sbAZoYzNAG5sB2tgM0MbGZoA2NgO0sRmgjc0AbWxsBmhjM0AbmwHa2AzQxsZmgDY2A7SxGaCNzQBt/OrKfOIs/XP//e0dIz9ylG0GR/nEV4sDHPq2HW7vmBY/ItvWHs0e4MBL16b0T/+Tndof899eN+XabFtTHTHFjA6m7HviBla+qd/e/sBkz5Q3TlhnpYs93PU76X/+vbetx03rMA1miqkf4Z7fYY//jz9geW6M6zDBtFCcd34PD/2Klfo7nNjuP7O0tfUTUy5rmMbTb+yZ6sjs+PKHuO2k/o9p27kf/ISx8+zQHJ+bDRo6Dny5voqV79Lh77d0ND59Zu0OmpUnj3+MQ75768PlnSa7hKYVk5EaV3Dge+yz8eu3Mo03iInZdPf7Pobx31t6nr9iHp7z4z69TGnRUhStJCiF4Ja6rjzjt88vXXj9p4YdbZnFc+shCNhxbuvfwdJ3rgRKgsLSeO3azHe1PvyD3pXuUo6LJHD0vRtT35HuVncTuzGWM9+n8fwNf9Bf8Tct1X26pBVEERREKBFP11w3jdlg5mfTtjHu4y1KBI/oDaa/0MgVna5hRWlR0kvOnb/Phe2ZbweB9mtDFB+YPt+e+S6SxU3HtaUgbf2iaoVq/SLa8nzpfc0SJFEkEQe4y7SSc9syvaPdFSQoQbNnAjdcfOWOqUsJBQ+cy3tYAUdwwPq237qwp65rS6LT0qI3cdW3rpVES0KLYHrDeO0D3PAtWz/6td2YlppKAj0+j6hfTEGJ1C+g4an+wL/qw+vS5QxQUkw3jPUV5472nT86cP6Ley58eZUnl8jK0wXJdR0/Ie8CJV15Mq54bDXzNVuP99SeiLYC2bXuzsyZAQGUogURumealjPfxphcJzIXiERpS/1iqiCoZqGd+T6N4wt/4F/xVy+N7oEgoHTPmGaTr7n41UpyxbACEZ2KiHdpBemnxrTjtS8PZ17odz26gQMBpIzFnZkzg0ArBXgkOJbFnZkzO/xd1+mSclxbVSp+caVpTUlYS2a+T1trAV5ZXLcuCVNJiU/EDaf1w0crv/HGFfFT7baMUISIYurfg4fOVK9K/hstUvqWqbvYd+aKBKXoXckHGiDdMY0dHPimDi8uxS6VplMatZ+M3YJQdYYeu7g9jN3wduVyMpZtMDrxMXnAdBsrJ3Tk4nUGsyMydLuaSKfK0HcqS7Y6mcIwjK4tPsE9L+hL53a2xtb705QdxrLS8kgWD9rexT6sjSVb7w/DkSkM+Y/92/6Ya3/u0rT4VMMUs+oILmHlLP1v2++Sf15HTKFhGjMf4V3fpv/9125p/rpZTIMpB7jiLH325lL7qWl46t9zRXPdNN42hY7oGdd89IM77dglKhirqdNV2br/1G3Wdeq38cNr7xxl3Kos27QZIYgea8igYw83PNfaK1MjFbropGFoQgfSSkgnCaPNXLOPq57ricWSc3cqOwwVjDbCOD6eTu3DSa5uWXQtB00wqjGGATtSTxXD/mw1cya/7+E96W1KQAXJOzpdnjmzhX2EEMQO4+2Zb4a2lLYCWPcGjYRAdnS8PfNCn/1gqXYDCEbtbUkDCKjTmrx2/WjkXllWiWipzgElAaR7E3dmnlZNi0JFCpFSIkJJQhAwfc0T5y8nW/9+2QGKEpQq0GZuOeR+5d1QRRuaQan3UUqQ1uTuzLeSvCvQ54w7M2e2/X88EAeUY+mVmW8EcSyO23JAZg1QTPszL7RwHdUWcNBMd0FbKtRpjQvXY7pumkQFCg6jn0QO2j5AtaKqBu/jpqcLAVpNZwntlNA5ZglQDfV8T5xbRn+i3gwgSYEpdNV2JYVqBTVdExKoYvxR1373tmGHEijJymI6mDmzn20ff6FZTxckl3Vcmzkz0z0pQNXbyjcCQgu0jlvkqkBJSZam7M18zW+9uiN9XxCh0u7OgEiq1cTJPba17NQ9SVDtLJ+FD4e+GdOPh6MrW45+XP11yaplNG2ayAeTaWdmMjnq0aUji0tr49cnuRRWVUnA4NqXvrr0ZR9f+qq99MR06UnX8/n6w5lji+QOlqJUgvbhMK6N9s2F6dI560u/1SdvVv8isiqEdkpbEGxZnN8xtZJoEfRj36b/4/UlvU4gtJJQqpKIv9vnX+zj0Fma3vxYABHtjmb7TM8Pijz/9j1a6dYeZlAyPpDFra+tO3LH1KASmezTh3CkCSB0arH2fBecv45WM2eSR5or+MRznfNk9aTTj3ntfjNdThdtmoWt6ziABSseO+5JX5GmTVPB9OiCxQp44qSOvLoz1Q6lCGpFrjCtPNU2h3y1j3tPvHoT7zdzBaqGuoygqJT4SDi78/elEQTxEV2hkgDedOG1mzNn8muHD3AoRVGSH82cCrQiCK2tI44dPb6NQwHotmn6YMaxx2MXS0EEHptuzMxsSQORSkR8rQtLsUtBiU43ePLJzEnOWR+y/jBNmylabS+ntmeeB4hC4wzV4oNEk5AmVb66wuPVzAscnvPFh20fhkoVMMSPBBoRcPTkwcyZ/OwH1+lSoCjT9KHkmghFCWKXaWfmbKwcl9BemjkVRE78OgguOpTe1pYSxDVffbWcMSPXKQpM3bvAambmSFMFWoNuSWeOYYcSiRaHiVszpzmfzw+aPkyRSGyv2Zl5HqAJsD4D8XbbqGpF7w6L1czpnhyW29ooUdSQvgUo4NC5xWrmGx1uL8ke9VQ3bFlZHH1EDwSBEnRxc+ZM0geCwGT21szpHgNaL+ro8S3xUAK0bzj3yvUZ47XrWAoSWOGuF5RQQkMdG8k7aRtaSUwfz5yF9mOBqgo/Cp4HTGkrqYXRmRfh3GXtmwENTPrRzFksjJ9WJQhJuoVLgggYXTlr58ZNUzFoSVaO7Dsu45p6ACgluayu4ZYzVRKEkaUz1RIU6vkuOvSFD+lPJETorvXigO5KqGpDb1hYeaqt9bmWThpVSY48W3S7EdBi/Bni06khw9SoIBgkKgjJNihJlKUTStC0RGGKU1p47Y0ppRVpNaxXztgWJtEitM2gbwClLTkkvtFnP3yfvgMUmKYbzq1XM2a2vvhEp1u0IpIZ5Lov18uZU8VD0FacvUAJRuKkXv3invaAAlSmfemSkkasLOzPPANtAUVt8Yy2SwUE6ZutZZIlliMzZnkr6ZIuw5JZuz1DtRNeoFVN4kw90UsKVBMpX61mzuLIOlKUFjUkkRJEmHyjRz9YSvcQgRIrW/ZnnjGObohHFAVi2ytbd2ZONU0VRChnLyJAkRJf094QKBrHBW112pv5Gt98TCMOg7SNgmi1TZUSpPFUqcYsAUlElvH1DRK0nOlTGAIpRfOKH74xcxYcgYRIgy2KAOpMjfV16/GWlCqhveqkLhwd+u0LH9I7QBGandkHuO1FDbRQSdQZa0EaTWmc1MXHB3779QOxoyqiUDI+tnDXCR09aRbSEpFo6/m6klxuG02Z/t1J7tBM1nSBCcN6xnHFoEdiYV0WfOaEqiJIVdamOKXhqwft+UoRpV/28Zt46EydpwXVVGxJV9olSGiWTuu3Ln6gdilCRLpv0QMv6oe/se/RD96X7khoCZo9T8ZHWDmpkcvWiGhLH/mmLuBJogBFvLCur7L4VBLtU4M63/6Ctqw7WSSiZsRzpVa0MlKSjj9kwV1qAY4cd85364nfj5Y0Gqy/4fHnVltoG1KaYbGDB75NiVSRoVao42JpOvrRzNc8emVJbwmiAlbavZlTbeUqPaTEsW1bvTNzovayACIyfTpzKtAKIOK0Lj5ekfckN8Tfw7QnvWphNXOip0qnOqG16SNJHJdeIm8TPzeJSLWCWLwx8yKvenJIPwmlSBvvzJxFbL2foCUiDMmBNIJAa2ztzTzjN19fOjfu03qm3rDow5lT/eBwhT2gBYq+TW9Sz/j81V2x1KkUGNPHM6eCCEgBR6e7eHjPxZ/t+eFs+2c3vPm/78+8yJFFQqlGhtZzbTk6oIcUBTXtP/ab2zPf5ImL7z/22nLmRdIeThpAw+XgNPQjRIQmtdO6NnOao77xfnVXC7SCYfgYBApR75rGHdPibV/Nvjx33Sv5qViKUCJM+8b/zZn82me3pQciWoKIKR+Y9+do7Hh8fsdXF64b65uUkQjSleSBs/8kmrZSv0dqzaq0Tq69pQRthbfOu3ifC8uZk21vj/H73Zxin8WdmReZ9JOESGmi70zWy5kXOXJ0S3ymQFXkJq55QZPXP6j1fpVEArST/Gf+dX/k3/Tn3tfsPP03NE+9XCemQWdr1REN01gZix089G36H95YGuO+KcunXtJTTUwDs3Voakpm1RFxFfu+qcMfLh2NTzUcH/O6vxsHfk4d/ffLnUXcJ3qsufL8Pn6L7Vdz4SetHUaJChmm9u5k8VE4hNh6q8PlaRq7jDdKZGhzCx86oSde2WXcIWRoRyceDjmYjIO1ZLA9cYh9gDr/QS1ulhDNoFFjRQ7WfLyQThaXsduM7TaeOv4SU5NBWBwdf31SQCkRxykBtCsdV6z7cOZb+f0OV3hPHFIgggo6EWgEQbqi+9Q3Q0BBElv8PG05QmnrlC5y2LqKlUg1VDWR90f8JMl9Gfeb7reuhTekgVTpu2xtzzzvnPU9spJoCxLLKXbDnaF3KjdjvD1zbDi6Te8GSRop0CXdXSR3yr70g+q2KkUPQJvOokbUf/EP/esrI9ekoahnSgGNMa0s1u8593g18538gf/jA+kVunJchEIpgcJDeoU6G2hFaAVH6czPDdI5AqFe0JbHK1xJe09ATvw5UlN1HGEy/ZN8/mMeHc6c4PCcxbtMh8AUraBpIOqkFr66Wr2taCMkgCqozKHBjS1jL6FASQdB/Bf/yL9813pxCQdGIhwDKXHP6BULD2Z+R/6QeYhy7ophX1qKPj9IB+oKVr5NSSgRsNXM/NxIG0laigZOG6KFL96bOl2VPBgUIihVaaD6SHur7RV6jVcOZ17ss0/WXfw4HAiRaqmCU4f7q2tr/YuqK60ZqAZC5w5qfYWjPUCDEJr85/51z/dHXHtnaeo7LN40jZry0PnFPRz6PdF/tlx64rLOpgErj88fYOX/hz3+9/6s5RNHl2PrsoEprTwcFg+eeLLC4Xda1++7HHp5srjM6OzhkWl1ZOvBN6/5+mXMspwwjBXjAWYv7v8Et4Nz+w5xmR4AAAAASUVORK5CYII=\" /></span></div><div id=\"mount_0_0_AQ\"></div><script>qpl_inl(\"7191084768081846440\",\"splash_screen_show\");</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"splash_screen_show\"]]]}</script>\n\n<link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/l/0,cross/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"RaA31FN\" data-p=\":14,144,151,0\" data-c=\"1\" onload=\"_btldr[&quot;RaA31FN&quot;]=1\" onerror=\"_btldr[&quot;RaA31FN&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/l/0,cross/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Zx0r1CJ\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;Zx0r1CJ&quot;]=1\" onerror=\"_btldr[&quot;Zx0r1CJ&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/l/0,cross/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"kWwybab\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;kWwybab&quot;]=1\" onerror=\"_btldr[&quot;kWwybab&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yk/l/0,cross/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"f7Ym7Sv\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;f7Ym7Sv&quot;]=1\" onerror=\"_btldr[&quot;f7Ym7Sv&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yH/l/0,cross/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"LGJRwGF\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;LGJRwGF&quot;]=1\" onerror=\"_btldr[&quot;LGJRwGF&quot;]=1\" /><script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"injectQPLTagsServerJSIntoWindow\",\"injectQPLTagsServerJSIntoWindow\",null,[]]]}</script>\n<script type=\"application/json\" data-content-len=\"97\" data-sjs>{\"require\":[[\"injectQPLTimingsServerJSIntoWindow\",\"injectQPLTimingsServerJSIntoWindow\",null,[]]]}</script>\n<script>var hc=navigator&&navigator.hardwareConcurrency;null!=hc&&4>hc&&document.documentElement.classList.add(\"_8ykn\");</script>\n<script>requireLazy([\"replaceNativeTimer\"],function(j){j()})</script>\n<script>requireLazy([\"bootstrapWebSession\"],function(j){j(1674304895)})</script>\n<script type=\"application/json\" data-content-len=\"98\" data-sjs>{\"require\":[[\"qplTagServerJS\",null,null,[[\"react_fizz\",\"comet_aa_coinflip:false\",\"logged_out\"]]]]}</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierOne\");</script>\n<script type=\"application/json\" data-content-len=\"80\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierOne\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierOne\",202);</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierOne\",202]]]}</script>\n<script>requireLazy([\"JSScheduler\"],function(j){j.makeSchedulerGlobalEntry(null,false)})</script>\n<script>requireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierOneBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierOneInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"IntlCurrentLocale\",[],{\"code\":\"en_US\"},5954],[\"CometPersistQueryParams\",[],{\"relative\":{},\"domain\":{\"instagram.com\":{}}},6231],[\"CookieDomain\",[],{\"domain\":\"instagram.com\"},6421],[\"CurrentAdAccountInitialData\",[],{\"AD_ACCOUNT_ID\":null},6828],[\"BootloaderConfig\",[],{\"deferBootloads\":false,\"jsRetries\":[200,500],\"jsRetryAbortNum\":2,\"jsRetryAbortTime\":5,\"silentDups\":true,\"hypStep4\":true,\"phdOn\":false,\"btCutoffIndex\":1187,\"translationRetries\":[200,500],\"translationRetryAbortNum\":3,\"translationRetryAbortTime\":50},329],[\"CSSLoaderConfig\",[],{\"timeout\":5000,\"modulePrefix\":\"BLCSS:\"},619],[\"CookieCoreConfig\",[],{\"dpr\":{\"t\":604800},\"ds_user_id\":{\"t\":7776000},\"locale\":{\"t\":604800}},2104],[\"CurrentCommunityInitialData\",[],{},490],[\"CurrentEnvironment\",[],{\"facebookdotcom\":true,\"messengerdotcom\":false,\"workplacedotcom\":false,\"instagramdotcom\":true,\"workdotmetadotcom\":false},827],[\"CurrentUserInitialData\",[],{\"ACCOUNT_ID\":\"0\",\"USER_ID\":\"0\",\"NAME\":\"\",\"SHORT_NAME\":null,\"IS_BUSINESS_PERSON_ACCOUNT\":false,\"HAS_SECONDARY_BUSINESS_PERSON\":false,\"IS_FACEBOOK_WORK_ACCOUNT\":false,\"IS_MESSENGER_ONLY_USER\":false,\"IS_DEACTIVATED_ALLOWED_ON_MESSENGER\":false,\"IS_MESSENGER_CALL_GUEST_USER\":false,\"IS_WORK_MESSENGER_CALL_GUEST_USER\":false,\"IS_WORKROOMS_USER\":false,\"APP_ID\":\"936619743392459\",\"IS_BUSINESS_DOMAIN\":false,\"NON_FACEBOOK_USER_ID\":\"0\",\"IG_USER_EIMU\":\"0\"},270],[\"DTSGInitialData\",[],{},258],[\"ISB\",[],{},330],[\"LSD\",[],{\"token\":\"AVrh0l1XgEU\"},323],[\"RelayAPIConfigDefaults\",[],{\"accessToken\":\"\",\"actorID\":\"0\",\"customHeaders\":{\"X-IG-App-ID\":\"936619743392459\",\"X-IG-D\":\"www\"},\"enableNetworkLogger\":false,\"fetchTimeout\":30000,\"graphBatchURI\":\"\\/api\\/graphqlbatch\\/\",\"graphURI\":\"\\/api\\/graphql\\/\",\"retryDelays\":[1000,3000],\"useXController\":true,\"xhrEncoding\":null,\"subscriptionTopicURI\":null,\"withCredentials\":false,\"isProductionEndpoint\":false},926],[\"ServerNonce\",[],{\"ServerNonce\":\"gPoPZKHclhQDe-6QIBGEq7\"},141],[\"SiteData\",[],{\"server_revision\":1006847381,\"client_revision\":1006847381,\"tier\":\"\",\"push_phase\":\"C3\",\"pkg_cohort\":\"HYP:comet_loggedout_pkg\",\"haste_session\":\"19378.HYP:comet_loggedout_pkg.2.1.0.0.0\",\"pr\":1,\"haste_site\":\"www\",\"manifest_base_uri\":\"https:\\/\\/static.cdninstagram.com\",\"manifest_origin\":null,\"manifest_version_prefix\":null,\"be_one_ahead\":true,\"is_rtl\":false,\"is_comet\":true,\"is_experimental_tier\":false,\"is_jit_warmed_up\":true,\"hsi\":\"7191084768081846440\",\"semr_host_bucket\":\"6\",\"bl_hash_version\":2,\"skip_rd_bl\":true,\"comet_env\":3,\"wbloks_env\":false,\"spin\":4,\"__spin_r\":1006847381,\"__spin_b\":\"trunk\",\"__spin_t\":1674304895,\"vip\":\"31.13.65.174\"},317],[\"SprinkleConfig\",[],{\"param_name\":\"jazoest\",\"version\":2,\"should_randomize\":false},2111],[\"PromiseUsePolyfillSetImmediateGK\",[],{\"www_always_use_polyfill_setimmediate\":false},2190],[\"KSConfig\",[],{\"killed\":{\"__set\":[\"MLHUB_FLOW_AUTOREFRESH_SEARCH\",\"NEKO_DISABLE_CREATE_FOR_SAP\",\"EO_DISABLE_SYSTEM_SERIAL_NUMBER_FREE_TYPING_IN_CPE_NON_CLIENT\",\"MOBILITY_KILL_OLD_VISIBILITY_POSITION_SETTING\",\"WORKPLACE_DISPLAY_TEXT_EVIDENCE_REPORTING\",\"BUSINESS_INVITE_FLOW_WITH_SELLER_PROFILE\",\"BUY_AT_UI_LINE_DELETE\",\"BUSINESS_GRAPH_SETTING_APP_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_BU_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_ESG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_PRODUCT_CATALOG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_SESG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_WABA_ASSIGNED_USERS_NEW_API\",\"ADS_PLACEMENT_FIX_PUBLISHER_PLATFORMS_MUTATION\",\"FORCE_FETCH_BOOSTED_COMPONENT_AFTER_ADS_CREATION\",\"VIDEO_DIMENSIONS_FROM_PLAYER_IN_UPLOAD_DIALOG\",\"SNIVY_GROUP_BY_EVENT_TRACE_ID_AND_NAME\",\"ADS_STORE_VISITS_METRICS_DEPRECATION\",\"AD_DRAFT_ENABLE_SYNCRHONOUS_FRAGMENT_VALIDATION\",\"SEPARATE_MESSAGING_COMACTIVITY_PAGE_PERMS\",\"LAB_NET_NEW_UI_RELEASE\",\"POCKET_MONSTERS_CREATE\",\"POCKET_MONSTERS_DELETE\",\"WORKPLACE_PLATFORM_SECURE_APPS_MAILBOXES\",\"POCKET_MONSTERS_UPDATE_NAME\",\"IC_DISABLE_MERGE_TOOL_FEED_CHECK_FOR_REPLACE_SCHEDULE\",\"ADS_EPD_IMPACTED_ADVERTISER_MIGRATE_XCONTROLLER\",\"RECRUITING_CANDIDATE_PORTAL_ACCOUNT_DELETION_CARD\",\"BIZ_INBOX_POP_UP_TIP_NAVIGATION_BUG_FIX\",\"SRT_REVIEW_DISABLE_FELLOWSHIP_REVIEW\",\"EO_STORE_HOME_PAGE_COVID19_BANNER\"]},\"ko\":{\"__set\":[\"3OsLvnSHNTt\",\"1G7wJ6bJt9K\",\"9NpkGYwzrPG\",\"3oh5Mw86USj\",\"8NAceEy9JZo\",\"7FOIzos6XJX\",\"rf8JEPGgOi\",\"4j36SVzvP3w\",\"4NSq3ZC4ScE\",\"53gCxKq281G\",\"3yzzwBY7Npj\",\"1onzIv0jH6H\",\"8PlKuowafe8\",\"1ntjZ2zgf03\",\"4SIH2GRVX5W\",\"2dhqRnqXGLQ\",\"2WgiNOrHVuC\",\"amKHb4Cw4WI\",\"8rDvN9vWdAK\",\"5BdzWGmfvrA\",\"DDZhogI19W\",\"acrJTh9WGdp\",\"1oOE64fL4wO\",\"5XCz1h9Iaw3\",\"7r6mSP7ofr2\",\"6DGPLrRdyts\",\"aWxCyi1sEC7\",\"9kCSDzzr8fu\",\"awYA7fn2Bse\",\"aBMlJ8QRPWE\",\"Fl3bH3ozLe\"]}},2580],[\"TimeSliceInteractionSV\",[],{\"on_demand_reference_counting\":true,\"on_demand_profiling_counters\":true,\"default_rate\":1000,\"lite_default_rate\":100,\"interaction_to_lite_coinflip\":{\"ADS_INTERFACES_INTERACTION\":0,\"ads_perf_scenario\":0,\"ads_wait_time\":0,\"Event\":1},\"interaction_to_coinflip\":{\"ADS_INTERFACES_INTERACTION\":1,\"ads_perf_scenario\":1,\"ads_wait_time\":1,\"Event\":100},\"enable_heartbeat\":true,\"maxBlockMergeDuration\":0,\"maxBlockMergeDistance\":0,\"enable_banzai_stream\":true,\"user_timing_coinflip\":50,\"banzai_stream_coinflip\":0,\"compression_enabled\":true,\"ref_counting_fix\":false,\"ref_counting_cont_fix\":false,\"also_record_new_timeslice_format\":false,\"force_async_request_tracing_on\":false},2609],[\"JSErrorLoggingConfig\",[],{\"appId\":936619743392459,\"extra\":[],\"reportInterval\":50,\"sampleWeight\":null,\"sampleWeightKey\":\"__jssesw\",\"projectBlocklist\":[]},2776],[\"CookieCoreLoggingConfig\",[],{\"maximumIgnorableStallMs\":16.67,\"sampleRate\":9.7e-5,\"sampleRateClassic\":1.0e-10,\"sampleRateFastStale\":1.0e-8},3401],[\"ImmediateImplementationExperiments\",[],{\"prefer_message_channel\":true},3419],[\"DTSGInitData\",[],{\"token\":\"\",\"async_get_token\":\"\"},3515],[\"UriNeedRawQuerySVConfig\",[],{\"uris\":[\"dms.netmng.com\",\"doubleclick.net\",\"r.msn.com\",\"watchit.sky.com\",\"graphite.instagram.com\",\"www.kfc.co.th\",\"learn.pantheon.io\",\"www.landmarkshops.in\",\"www.ncl.com\",\"s0.wp.com\",\"www.tatacliq.com\",\"bs.serving-sys.com\",\"kohls.com\",\"lazada.co.th\",\"xg4ken.com\",\"technopark.ru\",\"officedepot.com.mx\",\"bestbuy.com.mx\",\"booking.com\",\"nibio.no\"]},3871],[\"WebConnectionClassServerGuess\",[],{\"connectionClass\":\"EXCELLENT\"},4705],[\"CometAltpayJsSdkIframeAllowedDomains\",[],{\"allowed_domains\":[\"https:\\/\\/live.adyen.com\",\"https:\\/\\/integration-facebook.payu.in\",\"https:\\/\\/facebook.payulatam.com\",\"https:\\/\\/secure.payu.com\",\"https:\\/\\/facebook.dlocal.com\",\"https:\\/\\/buy2.boku.com\"]},4920],[\"QuickMarkersConfig\",[],{\"pageLoadEventId\":\"7191084768081846440\",\"pageLoadScriptPath\":\"XPolarisProfileController\",\"sampleWeight\":null},4953],[\"BootloaderEndpointConfig\",[],{\"debugNoBatching\":false,\"endpointURI\":\"https:\\/\\/www.instagram.com\\/ajax\\/bootloader-endpoint\\/\"},5094],[\"USIDMetadata\",[],{\"browser_id\":\"?\",\"tab_id\":\"\",\"page_id\":\"Prou5xblsa71y\",\"transition_id\":0,\"version\":6},5888],[\"ServerTimeData\",[],{\"serverTime\":1674304895196,\"timeOfRequestStart\":1674304895138.1,\"timeOfResponseStart\":1674304895138.1},5943],[\"InstagramUserAgent\",[],{\"is_chrome\":false,\"is_edge\":false,\"is_edge_chromium_based\":false,\"is_edge_legacy\":false,\"is_firefox\":false,\"is_ig_carbon\":false,\"is_ig_lite\":false,\"is_ig_webview\":false,\"is_igtv_webview\":false,\"is_in_app_browser\":false,\"is_ipad\":false,\"is_macos\":false,\"is_mobile\":false,\"is_mobile_safari\":false,\"is_oculus_browser\":false,\"is_opera\":false,\"is_safari\":false,\"is_supported_browser\":false,\"is_twitter_webview\":false,\"is_uc_browser\":false,\"is_vapid_eligible\":false,\"is_webview\":false,\"user_agent\":\"WordPress\\/6.1.1; http:\\/\\/demo.kevkem.chiefsoft.net\"},6088],[\"IntlVariationHoldout\",[],{\"disable_variation\":false},6533],[\"FbtQTOverrides\",[],{\"overrides\":{}},551],[\"FbtResultGK\",[],{\"shouldReturnFbtResult\":true,\"inlineMode\":\"NO_INLINE\"},876],[\"IntlPhonologicalRules\",[],{\"meta\":{\"\\/_B\\/\":\"([.,!?\\\\s]|^)\",\"\\/_E\\/\":\"([.,!?\\\\s]|$)\"},\"patterns\":{\"\\/\\u0001(.*)(\'|&#039;)s\\u0001(?:\'|&#039;)s(.*)\\/\":\"\\u0001$1$2s\\u0001$3\",\"\\/_\\u0001([^\\u0001]*)\\u0001\\/\":\"javascript\"}},1496],[\"IntlViewerContext\",[],{\"GENDER\":3,\"regionalLocale\":null},772],[\"LinkshimHandlerConfig\",[],{\"supports_meta_referrer\":false,\"default_meta_referrer_policy\":\"default\",\"switched_meta_referrer_policy\":\"origin\",\"non_linkshim_lnfb_mode\":\"ie\",\"link_react_default_hash\":\"AT3oslNZsInoQANT_t_eNJR7eVrbkjaQxl2UrohHCb9D0ybydzH57Ehrs8X7PHJTDBxhjmaWx3boagpWGVMkUa8bDtgwPxQZiZr_gLm3fZ8Bep2cKKhEw58PzHOrfQ95cELkObzyTQt8JqJi\",\"untrusted_link_default_hash\":\"AT2zIoS4M4S-7qFm3lscq5q0I-vvv0rxW6TPCtVFNVLVr6uVredDY2T46b6hThcN3gkauJ8PHZJOdpfPBHGJBNL9F4VAvcF3h6liW0pReInxJUzH1q14gLtRwM-9ZkaN5th540P7Vb7p-lfe\",\"linkshim_host\":\"l.instagram.com\",\"linkshim_path\":\"\\/\",\"linkshim_enc_param\":\"e\",\"linkshim_url_param\":\"u\",\"use_rel_no_opener\":false,\"always_use_https\":false,\"onion_always_shim\":true,\"middle_click_requires_event\":false,\"www_safe_js_mode\":\"hover\",\"m_safe_js_mode\":null,\"ghl_param_link_shim\":false,\"click_ids\":null,\"is_linkshim_supported\":false,\"current_domain\":\"instagram.com\",\"blocklisted_domains\":[\"ad.doubleclick.net\",\"ads-encryption-url-example.com\",\"bs.serving-sys.com\",\"ad.atdmt.com\",\"adform.net\",\"ad13.adfarm1.adition.com\",\"ilovemyfreedoms.com\",\"secure.adnxs.com\"],\"is_mobile_device\":false},27],[\"NumberFormatConfig\",[],{\"decimalSeparator\":\".\",\"numberDelimiter\":\",\",\"minDigitsForThousandsSeparator\":4,\"standardDecimalPatternInfo\":{\"primaryGroupSize\":3,\"secondaryGroupSize\":3},\"numberingSystemData\":null},54],[\"UserAgentData\",[],{\"browserArchitecture\":\"32\",\"browserFullVersion\":null,\"browserMinorVersion\":null,\"browserName\":\"Unknown\",\"browserVersion\":null,\"deviceName\":\"Unknown\",\"engineName\":\"Unknown\",\"engineVersion\":null,\"platformArchitecture\":\"32\",\"platformName\":\"Unknown\",\"platformVersion\":null,\"platformFullVersion\":null},527],[\"IntlNumberTypeConfig\",[],{\"impl\":\"if (n === 1) { return IntlVariations.NUMBER_ONE; } else { return IntlVariations.NUMBER_OTHER; }\"},3405],[\"FBDomainsSVConfig\",[],{\"domains\":{\"__map\":[[\"www.facebook.com\",1],[\"tfbnw.net\",1],[\"m.beta.facebook.com\",1],[\"touch.beta.facebook.com\",1],[\"www.dev.facebook.com\",1],[\"fb.me\",1],[\"s.fb.com\",1],[\"m.fbjs.facebook.com\",1],[\"facebook.com.es\",1],[\"www.fbjs.facebook.com\",1],[\"m.facebook.com\",1],[\"facebook.fr\",1],[\"fbsbx.com\",1],[\"embed.fbsbx.com\",1],[\"attachment.fbsbx.com\",1],[\"lookaside.fbsbx.com\",1],[\"web.facebook.com\",1],[\"fb.com\",1],[\"messenger.com\",1],[\"secure.facebook.com\",1],[\"secure.my-od.facebook.com\",1],[\"www.my-od.facebook.com\",1]]}},3828],[\"ClickIDDomainBlacklistSVConfig\",[],{\"domains\":[\"craigslist\",\"tfbnw.net\",\"flashtalking.com\",\"canadiantire.ca\",\"o2.co.uk\",\"archive.org\",\"reddit.com\",\"redd.it\",\"gmail.com\",\"cvk.gov.ua\",\"electoralsearch.in\",\"yahoo.com\",\"cve.mitre.org\",\"usenix.org\",\"ky.gov\",\"voteohio.gov\",\"vote.pa.gov\",\"oversightboard.com\",\"wi.gov\",\"pbs.twimg.com\",\"media.discordapp.net\",\"vastadeal.com\",\"theaustralian.com.au\",\"alloygator.com\",\"elsmannimmobilien.de\",\"news.com.au\",\"dennisbonnen.com\",\"stoett.com\",\"investorhour.com\",\"perspectivasur.com\",\"bonnegueule.fr\",\"firstent.org\",\"twitpic.com\",\"kollosche.com.au\",\"nau.edu\",\"arcourts.gov\",\"lomberg.de\",\"network4.hu\",\"balloonrace.com\",\"awstrack.me\",\"ic3.gov\",\"sos.wyo.gov\",\"cnpq.br\",\"0.discoverapp.com\"]},3829],[\"WebDriverConfig\",[],{\"isTestRunning\":false,\"isJestE2ETestRun\":false,\"isXRequestConfigEnabled\":false,\"auxiliaryServiceInfo\":{},\"testPath\":null,\"originHost\":null},5332],[\"WebBloksVersioningID\",[],{\"versioningID\":\"e7c1f05400c7b80a9d5c48ffbe8b26641f6e0f506bb0eba02f2a06ef377d3058\"},6636],[\"AsyncRequestConfig\",[],{\"retryOnNetworkError\":\"1\",\"useFetchStreamAjaxPipeTransport\":false},328],[\"SessionNameConfig\",[],{\"seed\":\"0aGN\"},757],[\"ZeroCategoryHeader\",[],{},1127],[\"ZeroRewriteRules\",[],{\"rewrite_rules\":{},\"whitelist\":{\"\\/hr\\/r\":1,\"\\/hr\\/p\":1,\"\\/zero\\/unsupported_browser\\/\":1,\"\\/zero\\/policy\\/optin\":1,\"\\/zero\\/optin\\/write\\/\":1,\"\\/zero\\/optin\\/legal\\/\":1,\"\\/zero\\/optin\\/free\\/\":1,\"\\/about\\/privacy\\/\":1,\"\\/about\\/privacy\\/update\\/\":1,\"\\/privacy\\/explanation\\/\":1,\"\\/zero\\/toggle\\/welcome\\/\":1,\"\\/zero\\/toggle\\/nux\\/\":1,\"\\/zero\\/toggle\\/settings\\/\":1,\"\\/fup\\/interstitial\\/\":1,\"\\/work\\/landing\":1,\"\\/work\\/login\\/\":1,\"\\/work\\/email\\/\":1,\"\\/ai.php\":1,\"\\/js_dialog_resources\\/dialog_descriptions_android.json\":0,\"\\/connect\\/jsdialog\\/MPlatformAppInvitesJSDialog\\/\":0,\"\\/connect\\/jsdialog\\/MPlatformOAuthShimJSDialog\\/\":0,\"\\/connect\\/jsdialog\\/MPlatformLikeJSDialog\\/\":0,\"\\/qp\\/interstitial\\/\":1,\"\\/qp\\/action\\/redirect\\/\":1,\"\\/qp\\/action\\/close\\/\":1,\"\\/zero\\/support\\/ineligible\\/\":1,\"\\/zero_balance_redirect\\/\":1,\"\\/zero_balance_redirect\":1,\"\\/zero_balance_redirect\\/l\\/\":1,\"\\/l.php\":1,\"\\/lsr.php\":1,\"\\/ajax\\/dtsg\\/\":1,\"\\/checkpoint\\/block\\/\":1,\"\\/exitdsite\":1,\"\\/zero\\/balance\\/pixel\\/\":1,\"\\/zero\\/balance\\/\":1,\"\\/zero\\/balance\\/carrier_landing\\/\":1,\"\\/zero\\/flex\\/logging\\/\":1,\"\\/tr\":1,\"\\/tr\\/\":1,\"\\/sem_campaigns\\/sem_pixel_test\\/\":1,\"\\/bookmarks\\/flyout\\/body\\/\":1,\"\\/zero\\/subno\\/\":1,\"\\/confirmemail.php\":1,\"\\/policies\\/\":1,\"\\/mobile\\/internetdotorg\\/classifier\\/\":1,\"\\/zero\\/dogfooding\":1,\"\\/xti.php\":1,\"\\/zero\\/fblite\\/config\\/\":1,\"\\/hr\\/zsh\\/wc\\/\":1,\"\\/ajax\\/bootloader-endpoint\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/education_page\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/feature_switch\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/settings_page\\/\":1,\"\\/aloha_check_build\":1,\"\\/upsell\\/zbd\\/softnudge\\/\":1,\"\\/mobile\\/zero\\/af_transition\\/\":1,\"\\/mobile\\/zero\\/af_transition\\/action\\/\":1,\"\\/mobile\\/zero\\/freemium\\/\":1,\"\\/mobile\\/zero\\/freemium\\/redirect\\/\":1,\"\\/mobile\\/zero\\/freemium\\/zero_fup\\/\":1,\"\\/privacy\\/policy\\/\":1,\"\\/privacy\\/center\\/\":1,\"\\/data\\/manifest\\/\":1,\"\\/4oh4.php\":1,\"\\/autologin.php\":1,\"\\/birthday_help.php\":1,\"\\/checkpoint\\/\":1,\"\\/contact-importer\\/\":1,\"\\/cr.php\":1,\"\\/legal\\/terms\\/\":1,\"\\/login.php\":1,\"\\/login\\/\":1,\"\\/mobile\\/account\\/\":1,\"\\/n\\/\":1,\"\\/remote_test_device\\/\":1,\"\\/upsell\\/buy\\/\":1,\"\\/upsell\\/buyconfirm\\/\":1,\"\\/upsell\\/buyresult\\/\":1,\"\\/upsell\\/promos\\/\":1,\"\\/upsell\\/continue\\/\":1,\"\\/upsell\\/h\\/promos\\/\":1,\"\\/upsell\\/loan\\/learnmore\\/\":1,\"\\/upsell\\/purchase\\/\":1,\"\\/upsell\\/promos\\/upgrade\\/\":1,\"\\/upsell\\/buy_redirect\\/\":1,\"\\/upsell\\/loan\\/buyconfirm\\/\":1,\"\\/upsell\\/loan\\/buy\\/\":1,\"\\/upsell\\/sms\\/\":1,\"\\/wap\\/a\\/channel\\/reconnect.php\":1,\"\\/wap\\/a\\/nux\\/wizard\\/nav.php\":1,\"\\/wap\\/appreg.php\":1,\"\\/wap\\/birthday_help.php\":1,\"\\/wap\\/c.php\":1,\"\\/wap\\/confirmemail.php\":1,\"\\/wap\\/cr.php\":1,\"\\/wap\\/login.php\":1,\"\\/wap\\/r.php\":1,\"\\/zero\\/datapolicy\":1,\"\\/a\\/timezone.php\":1,\"\\/a\\/bz\":1,\"\\/bz\\/reliability\":1,\"\\/r.php\":1,\"\\/mr\\/\":1,\"\\/reg\\/\":1,\"\\/registration\\/log\\/\":1,\"\\/terms\\/\":1,\"\\/f123\\/\":1,\"\\/expert\\/\":1,\"\\/experts\\/\":1,\"\\/terms\\/index.php\":1,\"\\/terms.php\":1,\"\\/srr\\/\":1,\"\\/msite\\/redirect\\/\":1,\"\\/fbs\\/pixel\\/\":1,\"\\/contactpoint\\/preconfirmation\\/\":1,\"\\/contactpoint\\/cliff\\/\":1,\"\\/contactpoint\\/confirm\\/submit\\/\":1,\"\\/contactpoint\\/confirmed\\/\":1,\"\\/contactpoint\\/login\\/\":1,\"\\/preconfirmation\\/contactpoint_change\\/\":1,\"\\/help\\/contact\\/\":1,\"\\/survey\\/\":1,\"\\/upsell\\/loyaltytopup\\/accept\\/\":1,\"\\/settings\\/\":1,\"\\/lite\\/\":1,\"\\/zero_status_update\\/\":1,\"\\/operator_store\\/\":1,\"\\/upsell\\/\":1,\"\\/wifiauth\\/login\\/\":1}},1478],[\"DataStoreConfig\",[],{\"expandoKey\":\"__FB_STORE\",\"useExpando\":true},2915],[\"CometCustomKeyCommands\",[],{\"customCommands\":{},\"areSingleKeysDisabled\":null,\"modifiedKeyboardShortcutsPreference\":4},4521],[\"GqlsUseCaseSamplingRateMap\",[],{\"GqlsUseCaseSamplingRateMap\":{\"default\":10000,\"test_blade_runner_actualized_subscribe\":1}},6497],[\"CometUrlTransformsConfig\",[],{\"should_remove_trailing_slash\":false},6589],[\"RtiWebRequestStreamClient\",[],{\"ThrottledMethods\":{}},6639],[\"RTISubscriptionManagerConfig\",[],{\"config\":{},\"autobot\":{},\"assimilator\":{},\"unsubscribe_release\":true,\"bladerunner_www_sandbox\":null,\"is_intern\":false},1081],[\"CometRelayConfig\",[],{\"gc_release_buffer_size\":50},4685],[\"TimeSpentWWWCometConfig\",[],{\"CONFIG\":{\"0_delay\":0,\"0_timeout\":8,\"delay\":1000,\"timeout\":64}},4748],[\"CometMaxEnqueuedToastsSitevarConfig\",[],{\"max\":2},4763],[\"MqttWebDeviceID\",[],{\"clientID\":\"a9d8d9fe-a52f-4249-a066-c452a4d48b71\"},5003],[\"LiveQueryWebRelayKillList\",[],{\"liveQueryWebRelayKillList\":[\"test_example_config_id_to_be_killed\",\"data_studio_nav_pane_collections_section\",\"work_recruiting_home_tasks\"]},5050],[\"LiveQueryWebClientPollingSwitchList\",[],{\"liveQueryWebClientPollingSwitchList\":{\"example_config_id_to_be_switched\":10000}},5842],[\"TransportSelectingClientContextualConfig\",[],{\"rawConfig\":\"{\\\"name\\\":\\\"rti\\/web_rs_transport_selecting_client\\\",\\\"cctype\\\":\\\"dense\\\",\\\"version\\\":1,\\\"policy_id\\\":\\\"static\\\",\\\"sample_rate\\\":1000,\\\"contexts\\\":[{\\\"name\\\":\\\"method\\\",\\\"type\\\":\\\"STRING\\\",\\\"callsite\\\":true,\\\"buckets\\\":[{\\\"name\\\":\\\"rollout_group_1\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"FBGQLS:FEEDBACK_LIKE_SUBSCRIBE\\\",\\\"Falco\\\",\\\"FBLQ:comet_notifications_live_query_experimental\\\"]},{\\\"name\\\":\\\"rollout_group_6\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"FBGQLS:COMMENT_CREATE_SUBSCRIBE\\\",\\\"FBGQLS:COMMENT_LIKE_SUBSCRIBE\\\",\\\"FBGQLS:FEEDBACK_COMMENT_PERMISSION_TOGGLE_SUBSCRIBE\\\",\\\"FBGQLS:FEEDBACK_TYPING_SUBSCRIBE\\\"]},{\\\"name\\\":\\\"rollout_group_4\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"FBGQLS:.*\\\"]},{\\\"name\\\":\\\"rollout_group_3\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"FBLQ:.*\\\"]},{\\\"name\\\":\\\"skywalker\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"SKY:test_topic\\\",\\\"live\\/api\\/copyright\\\",\\\"intern_notify\\\",\\\"locplat\\/ttm\\\",\\\"rti_widget_dashboard\\\",\\\"srt\\/user_metrics_counter\\\",\\\"media_manager_instagram_composer_create_update\\\",\\\"cubism_annotations\\/fleet_health\\\",\\\"srt\\/notifications\\\",\\\"ads\\/reporting\\/snapshot\\\",\\\"unidash\\/widget\\\",\\\"cubism_annotations\\\",\\\"ads\\/reporting\\/export\\\",\\\"pubx\\/notification\\/update\\\",\\\"ads\\/powereditor\\/import\\\",\\\"lwi_async_create\\\",\\\"video_edit\\\",\\\"metric_graph_realtime\\\",\\\"vcc_video_posting_www\\\",\\\"cms\\/object_archive_copy_created\\\",\\\"cms\\/branch_updated\\\",\\\"cms\\/object_saved\\\",\\\"codeless_event_tracking\\\",\\\"srt\\/job_updated\\\",\\\"video_broadcast\\\",\\\"video\\/broadcast\\/error\\\",\\\"vcpanel\\/api\\\",\\\"lwi_everywhere_plugin\\\",\\\"commercial_break_v2\\\",\\\"advanced_analytics\\/query\\\",\\\"cubism_annotations\\/ads_mastercook_models\\\",\\\"gqls\\/comment_like_subscribe\\\",\\\"live\\/api\\/copyright\\\",\\\"shiba\\/mock_bot_error\\\",\\\"shiba\\/save_state\\\",\\\"video_list_publishing_progress_update\\\",\\\"assistant_wizard\\\",\\\"gizmo\\/manage\\\",\\\"collab\\/presentation\\/request\\\",\\\"snaptu\\/push_notif\\\"]},{\\\"name\\\":\\\"skywalker_bulletin\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"www\\/sr\\/hot_reload\\\"]},{\\\"name\\\":\\\"rollout_group_5\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"Collabri|RealtimeClientSync:.*\\\"]},{\\\"name\\\":\\\"default\\\",\\\"strategy\\\":\\\"catch_all\\\"}]}],\\\"outputs\\\":[{\\\"name\\\":\\\"group\\\",\\\"type\\\":\\\"STRING\\\"},{\\\"name\\\":\\\"dgwUpsampleMultiplier\\\",\\\"type\\\":\\\"FLOAT\\\"}],\\\"vector\\\":[\\\"group1\\\",\\\"0.01\\\",\\\"group6\\\",\\\"0.001\\\",\\\"group4\\\",\\\"1.0\\\",\\\"group3\\\",\\\"1.0\\\",\\\"skywalker\\\",\\\"1.0\\\",\\\"skywalker_bulletin\\\",\\\"1.0\\\",\\\"group5\\\",\\\"1.0\\\",\\\"default_group\\\",\\\"1.0\\\"],\\\"vectorDefaults\\\":[\\\"default_group\\\",\\\"1.0\\\"],\\\"timestamp\\\":1663366072}\"},5968],[\"AnalyticsCoreData\",[],{\"device_id\":\"$^|AcbHCzGYW6tDxTUxyOfdK3OR4sK01arWfMsw1M26SR1Yz5qk5BP8Kgap5Y5NpBKRA23w9yOVHlSf7f_X67yReZg56b6s6dw|\\u0040sdig:AQ_dPjRV4b2mnLhXQUjMQgDJzsQorF1kiY48qow-3YblH4zy75yStl2Tyuy6uRTkD5I6uPOnW7xgOy-XaMCORvLPas41JXA5BM55ZrgI\",\"app_id\":\"936619743392459\",\"enable_bladerunner\":false,\"enable_ack\":true,\"push_phase\":\"C3\",\"enable_observer\":false,\"enable_dataloss_timer\":false,\"enable_fallback_for_br\":true,\"fix_br_init_rc\":true,\"queue_activation_experiment\":true,\"max_delay_br_queue\":60000,\"max_delay_br_queue_immediate\":3,\"use_critical_for_fallback_from_immediate\":false,\"impression_experiment_flag\":1},5237],[\"InitialCookieConsent\",[],{\"deferCookies\":false,\"initialConsent\":{\"__set\":[1,2]},\"noCookies\":false,\"shouldShowCookieBanner\":false},4328],[\"CookieConsentIFrameConfig\",[],{\"consent_param\":\"FQAREhIA.ARaTkXpof6Xi6oQ3Be3fdkpapEGtRX73NWOKHKZSJdA0CqJL\",\"allowlisted_iframes\":[]},5540],[\"XIGSharedData\",[],{\"raw\":\"{\\\"config\\\":{\\\"csrf_token\\\":\\\"twx0P57yoM3gX9aC2d2ONyBLLnSz2LcH\\\",\\\"viewer\\\":null,\\\"viewerId\\\":null},\\\"country_code\\\":\\\"\\\",\\\"entry_data\\\":{},\\\"is_whitelisted_crawl_bot\\\":false,\\\"connection_quality_rating\\\":\\\"UNKNOWN\\\",\\\"deployment_stage\\\":\\\"C3\\\",\\\"platform\\\":\\\"web\\\",\\\"mid_pct\\\":66.82159,\\\"zero_data\\\":{},\\\"cache_schema_version\\\":3,\\\"server_checks\\\":{},\\\"to_cache\\\":{},\\\"browser_push_pub_key\\\":\\\"BIBn3E_rWTci8Xn6P9Xj3btShT85Wdtne0LtwNUyRQ5XjFNkuTq9j4MPAVLvAFhXrUU1A9UxyxBA7YIOjqDIDHI\\\",\\\"encryption\\\":{\\\"key_id\\\":\\\"254\\\",\\\"public_key\\\":\\\"de4752f9479ed29171693e5d9106fb1b139b55895f80e5fee4141833bbc4e05b\\\",\\\"version\\\":\\\"10\\\"},\\\"is_dev\\\":false,\\\"is_e2e\\\":false,\\\"signal_collection_config\\\":{\\\"bbs\\\":100,\\\"ctw\\\":null,\\\"dbs\\\":100,\\\"fd\\\":60,\\\"hbc\\\":{\\\"hbbi\\\":30,\\\"hbcbc\\\":2,\\\"hbi\\\":60,\\\"hbv\\\":\\\"c3d6940c58f107d3c550814f524342d6\\\",\\\"hbvbc\\\":0},\\\"i\\\":60,\\\"rt\\\":null,\\\"sbs\\\":1,\\\"sc\\\":{\\\"c\\\":[[30000,838801],[30001,838801],[30002,838801],[30003,838801],[30004,838801],[30005,838801],[30006,573585],[30007,838801],[30008,838801],[30009,838801],[30010,838801],[30012,838801],[30013,838801],[30015,806033],[30018,806033],[30019,806033],[30040,806033],[30093,806033],[30094,806033],[30095,806033],[30100,541591],[30101,541591],[30102,541591],[30103,541591],[30104,541591],[30106,806039],[30107,806039],[38000,541427],[38001,806643]],\\\"t\\\":1618437631},\\\"sid\\\":-1},\\\"www_routing_config\\\":{\\\"frontend_and_proxygen_routes\\\":[{\\\"path\\\":\\\"\\/service-worker-prerelease-metro.js\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/robots.txt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads.txt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/BingSiteAuth.xml\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bimi-vmc.pem\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/images\\/bimi\\/ig-logo.svg\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/static\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/config-test\\/routes\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/.well-known\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/apple-app-site-association\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/403invalidnonce\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/404html\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/embed.js\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/collections\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/collections\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/guide\\/*\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/guide\\/*\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/false_information\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/caption\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/false_information\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/reels\\/audio_page\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/false_information\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/c\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/c\\/*\\/r\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/caption\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/configure_to_igtv\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/drafts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/upload\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/upload\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/all\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/c\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/collection\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/p\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop2\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/f\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/follow\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/access_tool\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/_n\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/_u\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/a\\/r\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/about-ads\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/about\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/login\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/onetap\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/emailsignup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/phone\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/email\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/privacy_and_security\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/blocked_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/muted_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/restricted_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/story_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/message_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/professional_account_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/activity\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/confirm_phone\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/confirm_phone\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/contact_history\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/cookie_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/digital_wallets\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/edit\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/fbsignup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/menu\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/change\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/reset\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/reset\\/confirm\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password_reset\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/report\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/emailpreferences\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/new_terms_confirm\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/recovery\\/landing\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/remove\\/request\\/temporary\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/remove\\/request\\/post\\/temporary\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/account_recovery\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/comment_filter\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/data_controls_support\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/supervision\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/suspended\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/two_factor_authentication\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/what_you_see\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/who_can_see_your_content\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/how_others_can_interact_with_you\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/manage_access\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/your_data_and_media\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/hacked\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/support\\/chat\\/embed\\/ig\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/home\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/profiles\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/service\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/acredirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads\\/settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/ads\\/activity\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/ads\\/preferences\\/ad_topics\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/affiliate_management\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ajax\\/bz\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/api\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/app\\/hyperlapse\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/*\\/push\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/shopping\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/assisted_account_recovery\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/authenticity\\/authenticity\\/location\\/get_location_verification\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/authenticity\\/authenticity\\/location\\/set_location_verification\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/badges_milestones_management\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bfad3e85bc\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bfad3e85bc_cheap\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/business\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/categories\\/accounts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/categories\\/accounts\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/client_error\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/coming_soon\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/componentexplorer\\/embeds\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/componentexplorer\\/react\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/concurrent_request\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/create\\/configure_to_story\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/create\\/configure\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dogfoodnow\\/whitelist_add\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dogfoodnow\\/whitelist_remove\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/live\\/*\\/comment\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/comment\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/live\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/experiments\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/manifest.json\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/qe_params\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/shared_data\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/developer\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/digital_collectibles\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/direct_v2\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/suggested\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/checkout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/redirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/ecp_checkout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/ecp_redirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/download\\/request\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/download\\/request_download_data_ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/download\\/confirm\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/download\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/dyi\\/download\\/auth\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dyi\\/lookaside_auth\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/emails\\/emails_sent\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/emails\\/preferences\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/emails\\/unsubscribe\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/embed_logger\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/current\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/snooze\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/undo\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/403\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/404\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/500\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/facebook_pay\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/facebook_pay\\/connect_learn_more\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/connect\\/ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/create\\/ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/create\\/ajax\\/attempt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fbsurvey\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fbsurvey\\/confirm_user\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fxcal\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fxcal\\/disclosure\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/getapp\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/graphql\\/query\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/help\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/configure_to_igtv\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/drafts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/upload\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/upload\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv_revshare_onboarding\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/instagramstickers\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/intern\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/internal\\/ig_product_principles\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/interstitial\\/covid19\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/invites\\/contact\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/legal\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/legal\\/cookies\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/legal\\/terms\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linking\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/linking\\/fundraiser\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linking\\/professional_dashboard\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linkshim\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/linkshim\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/local\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/local\\/dev\\/transaction_tool_selector\\/redirect\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/location_search\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/grid\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/map\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/search\\/keyword\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/logging\\/falco\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/comment\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/appeal_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/dismiss_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/dispute_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/restore_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/ridge_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/am_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/appeal\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/delete\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/dismiss_am\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/dispute_am\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/done\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/delete\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/edit\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/product\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/product\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/*\\/story_poll_vote\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/*\\/story_slider_vote\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/mixi\\/oauth_callback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/oauth\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/qp\\/batch_fetch_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/n\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/nametag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p-ng\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/payments\\/paypal_close\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/press\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/privacy\\/activity_center\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/privacy\\/checks\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/privacy\\/consent\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/publicapi\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/preferences\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/removetoken\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/get_push_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/register\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/update_settings\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/raters\\/summary\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/realtime\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/*\\/flag\\/hacked\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/*\\/flag\\/hacked\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/flag_hacked_user\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/submit_reporter_appeal\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/common\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/media\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/user\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/user_report_support_feedback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/get_frx_prompt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/handle_guided_action\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/notify_guardian\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/log_tag_selected\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/repute\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/restriction\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/s\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/security\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sem\\/campaign\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sem\\/campaign\\/emailsignup\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/seo\\/google_widget\\/crawler\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/avow_login\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/disavow_login_activity\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/logout_session\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/undo_avow_login\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/cart\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/cart\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/products\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/shopping\\/bag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shopping\\/home\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sitemap\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/stories\\/tags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/location\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/suggested_users\\/remove_from_suggested\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/suggested_users\\/remove_from_suggested_confirm\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/support\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/survey\\/us2020\\/consent_withdraw\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/switcher\\/placeholder\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tags\\/*\\/qr\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/terms\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/terms\\/accept\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/test_users\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/testing\\/indigo_logging\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/testing\\/validate_client_input\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/thirdparty\\/static\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/topics\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/topics\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/two_factor\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/uid\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\/options\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report_celebrity\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report_underage\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/merchant\\/*\\/product\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/merchant\\/*\\/product\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/self\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/set_disallow_story_reshare_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/set_feed_post_reshare_disabled_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/verification\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/video_call\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/votinginfocenter\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/watch_together\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/web\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\/loggedin\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\/loggedout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\/loggedin\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\/loggedout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/weibo\\/oauth_callback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/wifiauth\\/login\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/xwoiynko\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/zr\\/diagnostics\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/zr\\/nux\\/update_preference\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\\",\\\"destination\\\":\\\"WWW\\\"}],\\\"frontend_only_routes\\\":[{\\\"path\\\":\\\"\\/create\\/(story|style|details|location|tag|advanced-settings|advanced-settings\\/alt-text)\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/accounts\\/login\\/two_factor\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/explore\\/search\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/direct\\/t\\/?.*\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/stories\\/tags\\/?.*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/location\\/?.*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/?.*\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/similar_accounts\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/related_profiles\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/(following|hashtag_following|followers)\\/?(mutualOnly|mutualFirst)?\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"}],\\\"proxygen_request_handler_only_routes\\\":[{\\\"paths\\\":[\\\"^\\/$\\\",\\\"^$\\\"],\\\"destination\\\":\\\"WWW\\\",\\\"in_vpn_dogfooding\\\":false,\\\"in_qe\\\":false}]},\\\"bundle_variant\\\":\\\"wwwig\\\",\\\"frontend_env\\\":\\\"C3\\\",\\\"probably_has_app\\\":null,\\\"rollout_hash\\\":\\\"1006847381\\\"}\",\"native\":{\"browser_push_pub_key\":\"BIBn3E_rWTci8Xn6P9Xj3btShT85Wdtne0LtwNUyRQ5XjFNkuTq9j4MPAVLvAFhXrUU1A9UxyxBA7YIOjqDIDHI\",\"bundle_variant\":\"wwwig\",\"entry_data\":{},\"should_show_digital_collectibles_privacy_notice\":false,\"config\":{\"csrf_token\":\"\",\"viewerId\":null},\"cache_schema_version\":3,\"deployment_stage\":\"C3\",\"frontend_env\":\"C3\",\"gatekeepers\":{},\"qe\":{},\"is_on_vpn\":false,\"is_e2e\":false,\"rollout_hash\":\"1006847381\",\"server_checks\":{\"hfe\":true},\"www_routing_config\":{\"frontend_only_routes\":[{\"path\":\"\\/create\\/(story|style|details|location|tag|advanced-settings|advanced-settings\\/alt-text)\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/accounts\\/login\\/two_factor\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/explore\\/search\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/direct\\/t\\/?.*\",\"destination\":\"BOTH\"},{\"path\":\"\\/stories\\/tags\\/?.*\",\"destination\":\"DISTILLERY\"},{\"path\":\"\\/stories\\/location\\/?.*\",\"destination\":\"DISTILLERY\"},{\"path\":\"\\/stories\\/?.*\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/similar_accounts\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/related_profiles\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/(following|hashtag_following|followers)\\/?(mutualOnly|mutualFirst)?\\/?\",\"destination\":\"BOTH\"}]},\"consent_dialog_config\":{\"is_user_linked_to_fb\":false,\"should_show_consent_dialog\":false},\"locale\":\"en_US\",\"language_code\":\"en\",\"hostname\":\"www.instagram.com\",\"nonce\":\"P4atEFu9+Wo3ZLP+uqW6Mw==\",\"device_id\":\"46749EC6-93BF-448F-B7A9-9502CB1F16F7\",\"signal_collection_config\":{\"sid\":-1},\"privacy_flow_trigger\":null,\"platform_install_badge_links\":{\"ios\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yt\\/r\\/Yfc020c87j0.png\",\"android\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/c5Rp7Ym-Klz.png\",\"windows_nt_10\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/EHY6QnZYdNX.png\"},\"country_code\":\"US\"}},6186],[\"WebDevicePerfClassData\",[],{\"deviceLevel\":\"unknown\",\"yearClass\":null},3665],[\"cr:70\",[\"FBInteractionTracingDependencies\"],{\"__rc\":[\"FBInteractionTracingDependencies\",\"Aa0Qj1b9XT66Or8qjJH6njV7vMo0mlOgTB8HForhIQJx9g8fZSohKGYxoQqyCKji8LhLe3UKJkZIuAQOuCg0554utr5RHjiGDg\"]},-1],[\"cr:686\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:2695\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:11531\",[\"CometNavigationTracingQPLEvents\"],{\"__rc\":[\"CometNavigationTracingQPLEvents\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:683059\",[\"CometVisualCompletion\"],{\"__rc\":[\"CometVisualCompletion\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:696703\",[\"JSScheduler\"],{\"__rc\":[\"JSScheduler\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:717822\",[\"TimeSliceSham\"],{\"__rc\":[\"TimeSliceSham\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:719780\",[],{\"__rc\":[null,\"Aa0uI4MR6rpGQhmskNXV94ZdpXXKe7YlvwfL_Q8fcqM5LBaxJCJpdueAHlDhw3OW6licpdtKNxu-JiuAtU0\"]},-1],[\"cr:806696\",[\"clearTimeoutComet\"],{\"__rc\":[\"clearTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:807042\",[\"setTimeoutComet\"],{\"__rc\":[\"setTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:896461\",[\"setIntervalComet\"],{\"__rc\":[\"setIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:896462\",[\"setIntervalComet\"],{\"__rc\":[\"setIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:925100\",[\"RunComet\"],{\"__rc\":[\"RunComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:986633\",[\"setTimeoutComet\"],{\"__rc\":[\"setTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1003267\",[\"clearIntervalComet\"],{\"__rc\":[\"clearIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1106516\",[],{\"__rc\":[null,\"Aa3MWODbyvJa4u3k2Gh8lSS8VGkR-LncsM4VHoK7sjZkWHhndQFAXqXP4x5ZlSIpwjDrkb4dlNKjgQVh\"]},-1],[\"cr:1108857\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1294158\",[\"React.classic\"],{\"__rc\":[\"React.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:1294159\",[\"ReactDOM.classic\"],{\"__rc\":[\"ReactDOM.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:1540330\",[],{\"__rc\":[null,\"Aa1CpVBOV_pwu-siLYxJWqgUZYvJWF0xHgg-Y4VM1o_-OpuDyNslGGXQus0RWIdtoJBlCMRYMnpNDrnyeLdZvBMi6yEQI6aXDdNJRcS56C-v_BD34w\"]},-1],[\"cr:1703077\",[],{\"__rc\":[null,\"Aa0Q9mpUh7pSI1ToNasW57H1f-6eyNCsSc8bI6Ltn8Pl03KjSVIUSV0yG8mNo1hekp8qgBqq5Vv69Sr_WfbhOB40f0T7bg\"]},-1],[\"cr:1791501\",[\"CometVCTracker\"],{\"__rc\":[\"CometVCTracker\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:1984081\",[],{\"__rc\":[null,\"Aa0nfXSdRKA1Lw8LFR1ydKwppCyrWV00JKiMr8-FVt7RV7UvNc1Je3XMDvKyz2iqRPzs67wPO0XQz3Ar8crTnIWBVVC3\"]},-1],[\"cr:2010754\",[],{\"__rc\":[null,\"Aa3mcjBCcd2-jda3b5ouk9HCulxpqD5Va7A1cLRKvWu_ybo3PwHDbV1KszNbCIxVVw2IcBG0HvQLQgpoNHf5ZsXhMMcafCc\"]},-1],[\"cr:284\",[],{\"__rc\":[null,\"Aa0Ev_RTgTTpIJoFZ7hgU9bTKfiDy1L1BlFV4dk4UyT5XcO81mGJCzP9f-f3FGkuIlJy2JKOalQiw-jyKHD8\"]},-1],[\"cr:796\",[],{\"__rc\":[null,null]},-1],[\"cr:976\",[],{\"__rc\":[null,\"Aa2ks6Uz-1dG5fPwh-UwqiVQD-k8Xk-qpCU1ZtGN77z1wpvvh6yHpJoaSHhqXp8EPleGpkVyMmZzjerlkv9D\"]},-1],[\"cr:2222\",[\"PolarisShell_DEPRECATED.react\"],{\"__rc\":[\"PolarisShell_DEPRECATED.react\",null]},-1],[\"cr:4150\",[\"PolarisLoggedOutLoginModal.react\"],{\"__rc\":[\"PolarisLoggedOutLoginModal.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:4319\",[\"PolarisODSImpl\"],{\"__rc\":[\"PolarisODSImpl\",\"Aa1viVXPp4vDuUp3tU57a2MYXUQEcA2_6IWEB3nJEl8UT-xow3pfTqUqjToFOuharT1h1jEnAgwy_mZLZFapX-2o\"]},-1],[\"cr:4865\",[\"ReactDOMLegacy_DEPRECATED\"],{\"__rc\":[\"ReactDOMLegacy_DEPRECATED\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:5041\",[],{\"__rc\":[null,\"Aa0Ev_RTgTTpIJoFZ7hgU9bTKfiDy1L1BlFV4dk4UyT5XcO81mGJCzP9f-f3FGkuIlJy2JKOalQiw-jyKHD8\"]},-1],[\"cr:11054\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:694370\",[\"requestIdleCallbackComet\"],{\"__rc\":[\"requestIdleCallbackComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1064332\",[],{\"__rc\":[null,\"Aa0DGI75E0Ljo7UR1IiyYQ0A9i0EqqbQdFEeIvDUSZW0ovF4RJlY1Uuh0RmbCCBZW-JZDP_bOlUbJ0w\"]},-1],[\"cr:1183579\",[\"InlineFbtResultImplComet\"],{\"__rc\":[\"InlineFbtResultImplComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1522191\",[\"CometLinkTrackingUtils.facebook\"],{\"__rc\":[\"CometLinkTrackingUtils.facebook\",\"Aa24BQXusyzP_yTXysD1z2jmFAvRCPlEmUcsGyZPaQJPkzHyigzZdpFgUsgrnQkFeMmKS2FVw0hQ2mXazthM0bjVKYDRbpOX9BdTgQ\"]},-1],[\"cr:1645510\",[],{\"__rc\":[null,\"Aa2VOpiS_cUMHKKNynVxLs1eEUb32pfblwWofxXBBluM6Z-iXcAULI4grzRRvvCSBbvUa9nuGCmkdlEu6CSGnPBwjjIYIw\"]},-1],[\"cr:1651548\",[\"useCometPreloaderImpl\"],{\"__rc\":[\"useCometPreloaderImpl\",\"Aa0iJX1pBKO51gws8skKZ7mswIl6Fa1cfwr6NDvqIfccXr5N-HXt-w3VZe4RF_mCmsCEOpBCnwKN-g3DAXIVFb7A5QtMwWgwSHA\"]},-1],[\"cr:53\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:522\",[],{\"__rc\":[null,\"Aa2d5UKzHe5rnNOkBoXOU8CEM0MQSOl4v6P0TdDF51K1ybGznV3nuyzvNpIqhHcVLudEjGl0doB3lNTNcljAjHD33jIBI3av\"]},-1],[\"cr:1501\",[],{\"__rc\":[null,\"Aa3XXGhrd-C6deYZ7JnDJQrPJSL2lvxSFxTOhRH9nxXsltyg4SiAvcC3lieRCeCHq0J_iqb2FG-dsUMS1FEnHVGS40rg6xktAU3dtKI\"]},-1],[\"cr:2310\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:2682\",[\"warningComet\"],{\"__rc\":[\"warningComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:3832\",[],{\"__rc\":[null,null]},-1],[\"cr:11202\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:708886\",[\"EventProfilerSham\"],{\"__rc\":[\"EventProfilerSham\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:994756\",[\"BaseCometModal.react\"],{\"__rc\":[\"BaseCometModal.react\",\"Aa3poS25lpv3RODSOJWEiKfKZb6miMkjAlUvL6ee4eTfO1JkCtNTklc2NQ8eWcPDvn1HIemKIkvEcgNvCfM\"]},-1],[\"cr:1105154\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1642797\",[\"BanzaiComet\"],{\"__rc\":[\"BanzaiComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1752405\",[\"QPLAddCometRequestHeaders\"],{\"__rc\":[\"QPLAddCometRequestHeaders\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1824473\",[],{\"__rc\":[null,\"Aa3lJKrPqcb5Eqf4hJuE1IPeCgmmHY_ggD9fAkWCAtFopjve3unK3-PpPcp3cn856quxVBuWcus7eB0riI4KmXyJ\"]},-1],[\"cr:267\",[],{\"__rc\":[null,\"Aa02hnWmjabdtHz__saAIAsErRXZWmMitOk-tCLNJj4rmvnV2ueaDKCAJ1MsFIGYndoLRNOZPwEGi9sQD3EzgJwBr8et52eqhRUVbg\"]},-1],[\"cr:641\",[\"handleCometErrorCodeSideEffects\"],{\"__rc\":[\"handleCometErrorCodeSideEffects\",\"Aa2Uu3Pnz1UYCJAs-aEOROujgd_OFC2hQLigUmdMs3QivxZvuDlIhfoycIf7UoYOjwaNWeG2Bg1hcvbB93FQNZswZxw2rRovefWTdAsX\"]},-1],[\"cr:851\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:866\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:945\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:1024\",[],{\"__rc\":[null,\"Aa1lhJ_BdlyxXC17HOX8sbCo4oqcSxLt4JxWJiPo075VDil_g2MTa_cdCVX_peIXwvsKOUjf3hGW6gqsBMGmpX0c0waetvF0YDrKswwya_WZRd3DyBppsYraH2dA\"]},-1],[\"cr:1196\",[\"handleCometReauthenticationSideEffects\"],{\"__rc\":[\"handleCometReauthenticationSideEffects\",\"Aa2Uu3Pnz1UYCJAs-aEOROujgd_OFC2hQLigUmdMs3QivxZvuDlIhfoycIf7UoYOjwaNWeG2Bg1hcvbB93FQNZswZxw2rRovefWTdAsX\"]},-1],[\"cr:1330\",[],{\"__rc\":[null,\"Aa1462W8X0UEsVWy_yPsqhw6HrxUwNvpnUw5MjalHslfw4BPTAduZ5nq1-iRX2nGBmff4HyYmQr7oGD-rcXyUBdcYZ4Cs1AMh9QPcMBaVdeshlqt_8dS0nvsLAWFxCIZxA\"]},-1],[\"cr:1565\",[],{\"__rc\":[null,\"Aa2ks6Uz-1dG5fPwh-UwqiVQD-k8Xk-qpCU1ZtGN77z1wpvvh6yHpJoaSHhqXp8EPleGpkVyMmZzjerlkv9D\"]},-1],[\"cr:1588\",[],{\"__rc\":[null,\"Aa1vU7KrtVlIX8KOUnzdT__TgraFdwNOZGNleCowpwe_7pakAeZmL-wMF3HbZcpOajNO7RtuP2aFxeXlXP1lqrOwSMQ\"]},-1],[\"cr:2011\",[\"cometFaceliftFonts\"],{\"__rc\":[\"cometFaceliftFonts\",\"Aa1vH3onGvF3Z46KNbEEhkuZ6hESUpQeDYzq0p-oLGEgjXbdHGn5rd7UGYq7eyLsm2271RnuZ9XgVZLTsA9eKVyMAdsWJE8\"]},-1],[\"cr:2099\",[],{\"__rc\":[null,\"Aa0ArHmKiGWF3H3C1X_dL5X_SIBGCQy27tsfZ0GwwVkD5ID6VZOT28Kg2DZtrriyI8BWyc6abL4fM176C8jbmp63SGZ9uXapK7zCLbcG7jaDQyJd19LwmcfA\"]},-1],[\"cr:2293\",[\"BasePopoverSVGArrowContainer.react\"],{\"__rc\":[\"BasePopoverSVGArrowContainer.react\",\"Aa0PtwYd9C-4GHnrumlskrzkMsYTgvISvrBFXwhoRE-qc2RbRfpD9KxuITi1APYIn2nIKv2aak0U_zID89_zcj3DYQsa0rLj-jc\"]},-1],[\"cr:2654\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:2928\",[\"relay-runtime\"],{\"__rc\":[\"relay-runtime\",\"Aa2WR0AH8YcazFB2BOuBgV2sAYtLfddIpxjb4vlqE2aJyJwHF8uxcnu-6Jlhp4bpOfNqCR_rGSzuWNA79OEkP-_VJuyTqNH14hx9XA\"]},-1],[\"cr:3917\",[],{\"__rc\":[null,\"Aa3lWBdi6aMCbErYNdU7xTDm7QjHe0tsVJT2tNKW_wnoGEyMg3k4Tr7V1NoeymorBD76DseOC-hV5F23elzDhqtNO94bpq6PF78\"]},-1],[\"cr:3919\",[],{\"__rc\":[null,\"Aa3xzwgVIBvOeyK6JrZ_mng_NoxHRaLvTawmrMfP8gAz2SvFoMwMgsAQ2BVeMHMijKybyhvxr2PhIyrRSJiT5iuN5E4_\"]},-1],[\"cr:4166\",[],{\"__rc\":[null,null]},-1],[\"cr:4345\",[],{\"__rc\":[null,\"Aa16-524lUKaDhZGMZZ9X5dj3pj7aLRO2K9wU0vFwt4oOej_RizfM8jkts-SzDM-40n1kioo7lhLt9flIvcpKO-TFk82krr4gVo\"]},-1],[\"cr:4506\",[\"PolarisKeyCommandNub.react\"],{\"__rc\":[\"PolarisKeyCommandNub.react\",\"Aa0mUSouYPm8JPajvl69POo_NvEFIPgqGf6lVoBUIo4VtRb7Fjbx7XOvSt2el0cfDQ7AIapX_kWEfSqeCte1MH5OmmmS8tdVjejHR8SU\"]},-1],[\"cr:4785\",[],{\"__rc\":[null,\"Aa1KB9QozIreyevKrXclhkhtk4b-7CsAJFiu197Tga3ROxnOqpkNsDBmjrurswTi3l0cMN5Fg4bt9Ud0Tc4BChnRRhw_M_h7IZ63FcsQ\"]},-1],[\"cr:4816\",[],{\"__rc\":[null,\"Aa1NSPcJR50h706LaSw21xvQ2DS1_o91eD9flxaOHX_tvu7FtkYitCcQc41ZJ3RFPwKmtCVn-hLX1CXJhEXg-G41cj-RWUDvKYtI6Q\"]},-1],[\"cr:4878\",[],{\"__rc\":[null,\"Aa0EwxBT46R5ahO4cihbyPNMIOaBB1nKM8z2BHt2eeqn6QC789ShdJ6EYZRgxEEMtIphKIoOIvdSUEQrAq8\"]},-1],[\"cr:5022\",[\"oz-player\\/strategies\\/bandwidth_estimators\\/OzBandwidthEstimatorDefault\"],{\"__rc\":[\"oz-player\\/strategies\\/bandwidth_estimators\\/OzBandwidthEstimatorDefault\",null]},-1],[\"cr:5128\",[],{\"__rc\":[null,\"Aa1ug4sam9Hpu2WOYjMNG8RVWsEyWRywQJHXrdTvpi15GzGCtMnyCdQrTt9OnK0uMJ9o4thPVpKSJ7nzhBmh4P4ScFBF3ap4\"]},-1],[\"cr:5286\",[],{\"__rc\":[null,\"Aa040wFB9zQ7zB8qwjU0iqM0dKqCe5VHJtMgtLjE-ECYVZpGvLhCStKM1SkGQJsviJvYcnf71CsfM0RwmSIpazBN\"]},-1],[\"cr:9876\",[],{\"__rc\":[null,\"Aa2cQMYdCBe7x2xihV23FSvgC44Spc_jsIiiI4X_fs7Vbgl6wSfhe1xNwTC4gqI4NSQZL24vGI1p3gTHndk\"]},-1],[\"cr:10569\",[],{\"__rc\":[null,\"Aa3MWY8PLH_f9a7YR4j-gb451CF1yyuXWN5Gr_B2AnidXXkYCNGnVBV1Su2N634BL3ZX0eHvztaI6iREvrtjJ3HIzHI-pw\"]},-1],[\"cr:10726\",[],{\"__rc\":[null,\"Aa2O9ll8hESOdGrLMLk1R_D2jsGD1pBTau5NQ1IMxwxrEJgP1wrnkphBIf9KP4KCjhrIeI4FHU5s97QrzZDdsL0\"]},-1],[\"cr:11053\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:11192\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:12338\",[\"CometErrorRoot.react\"],{\"__rc\":[\"CometErrorRoot.react\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:840411\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:844180\",[\"TimeSpentImmediateActiveSecondsLoggerComet\"],{\"__rc\":[\"TimeSpentImmediateActiveSecondsLoggerComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:869493\",[],{\"__rc\":[null,\"Aa1cqUullmgM-_zx4zgAJA8jM0OZxvk96e5EJESSpJat3F2uOKvIco5LbdD5O2pmPwkOmfiPumYr\"]},-1],[\"cr:992073\",[],{\"__rc\":[null,\"Aa0JZ6LgSPAOhuqMmgnb2rBIm8CcWqL500qzyZoLBNRibu6GIrpJT_7FOImizcTA2ZpnA-h0OZB-t1T4-h8WLIe9Riw5k8de\"]},-1],[\"cr:1011783\",[\"CometHeroInteractionImpl.react\"],{\"__rc\":[\"CometHeroInteractionImpl.react\",\"Aa2O8k93D8F04xe0_2qqjaJlEdh5PViAR6CaGbvtYr4uxM9rbLXwFU5RDEj0LVMplNedanmrs_7GDPM\"]},-1],[\"cr:1069930\",[\"cometAsyncFetch\"],{\"__rc\":[\"cometAsyncFetch\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1083116\",[],{\"__rc\":[null,\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1083117\",[\"recoverableViolation\"],{\"__rc\":[\"recoverableViolation\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1110430\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1119068\",[],{\"__rc\":[null,\"Aa2p-Qbg9qIJNpmXkjpAVlkMMjj0Uue3YVXhSo4hlaVMGvYBLqRVIQj4a_vkk__G8mQO_1cpfzNZpJAFX4mzzM5NNQ\"]},-1],[\"cr:1121434\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1132918\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1267207\",[],{\"__rc\":[null,\"Aa1jjKhyl_eAoaC5Vqy_hFTo_PhcAqHO9JC_f0fRlNms3Ktw2GJJhXr_55xfARHsbSmq7HYTTSvGCco9bWUHXCQ\"]},-1],[\"cr:1342471\",[\"ReactFlightDOMRelayClient-prod.modern\"],{\"__rc\":[\"ReactFlightDOMRelayClient-prod.modern\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1445039\",[],{\"__rc\":[null,\"Aa2A_w1_4o6HNY2bTqMTkhqJqzPvkNrLadfdLLbdZ8Dhdvq97NqrhZifBtv9cPycDTRky_GujweB0lJg6F7egxSSdf4FHVEPGqyf-NM\"]},-1],[\"cr:1465733\",[\"emptyFunction\"],{\"__rc\":[\"emptyFunction\",\"Aa23EMHfuJ4cslAjjNglxZz2NllJ83ahuPidNQTJ7Fa4v7xBq_v1z52F4C3usquBYDPqC25ysagLqMXtaRZlFErcKQ0Qrg\"]},-1],[\"cr:1467370\",[\"CometRelayScheduler\"],{\"__rc\":[\"CometRelayScheduler\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1791018\",[\"CometInteractionVC\"],{\"__rc\":[\"CometInteractionVC\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:1813330\",[],{\"__rc\":[null,\"Aa0SzTDkkMQ1TmI8skbuvgzJqMuJPCtPpjYxDL3Nm3OrmuFHXMuqtxyOLOdATyiHJ7KET2RtQDBNpilTmz58iYeQ0PU\"]},-1],[\"cr:1829844\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:1941981\",[],{\"__rc\":[null,null]},-1],[\"cr:1941982\",[],{\"__rc\":[null,null]},-1],[\"cr:1969469\",[],{\"__rc\":[null,null]},-1],[\"cr:1987488\",[\"DGWRequestStreamDeferredClient\"],{\"__rc\":[\"DGWRequestStreamDeferredClient\",\"Aa0F96noFnBAwKfE4Zc9McwdXTOFP6Di2RW26zAUL6Rmj6jgHkN5WAom_0FGxYdzEOW5YExQ_97DF0Y4OvoyzA\"]},-1],[\"cr:1999269\",[],{\"__rc\":[null,\"Aa38G6ZxfF10sePePrsoUFAamCnTBEduaflNp3PvRwQ3NO-bheuMPNIR_C-34flr7kHar_CuXIH6UboOGHDcg9G3R7mCbN9C5ojRLQMnfEPf-Dcd8-auTJ0z0g\"]},-1],[\"cr:2306\",[\"NullState404FailedLoadingFB\"],{\"__rc\":[\"NullState404FailedLoadingFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"cr:3211\",[\"NullStateGeneralFB\"],{\"__rc\":[\"NullStateGeneralFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"cr:3587\",[\"NullStatePermissionsFB\"],{\"__rc\":[\"NullStatePermissionsFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"WebLoomConfig\",[],{\"adaptive_config\":{\"interactions\":{\"modules\":{\"8448\":1},\"events\":{\"553648129.polaris.DirectInboxPage\":46.2,\"553648129.polaris.OneTapUpsellPage\":38,\"553648129.polaris.StoriesPage\":9.4,\"553648129.polaris.exploreLandingPage\":6.6,\"553648129.polaris.fbSignupPage\":2.5,\"553648129.polaris.feedPage\":270.9,\"553648129.polaris.httpErrorPage\":30.1,\"553648129.polaris.loginPage\":51.6,\"553648129.polaris.postPage\":197.6,\"553648129.polaris.profilePage\":204.3,\"553648129.polaris.resetPassword\":5.2,\"553648129.polaris.unifiedHome\":82.7,\"553648130.polaris.ActivityFeedPage\":13.7,\"553648130.polaris.DirectInboxPage\":341.5,\"553648130.polaris.SavedCollectionPage\":6.5,\"553648130.polaris.StoriesPage\":81.8,\"553648130.polaris.editProfile\":2.6,\"553648130.polaris.exploreLandingPage\":86.5,\"553648130.polaris.feedPage\":158.3,\"553648130.polaris.followList\":10,\"553648130.polaris.loginPage\":3.1,\"553648130.polaris.mobileAllCommentsPage\":9.5,\"553648130.polaris.multiStepSignupPage\":4.2,\"553648130.polaris.postPage\":102.5,\"553648130.polaris.profilePage\":350.2,\"553648130.polaris.reelsTab\":5.3,\"553648130.polaris.resetPassword\":2.2,\"553648130.polaris.tagPage\":7,\"553648130.polaris.unifiedHome\":1.5}},\"qpl\":{\"modules\":{},\"events\":{}},\"modules\":null,\"events\":null}},4171],[\"BanzaiConfig\",[],{\"MAX_SIZE\":10000,\"MAX_WAIT\":150000,\"MIN_WAIT\":null,\"RESTORE_WAIT\":150000,\"blacklist\":[\"time_spent\"],\"disabled\":false,\"gks\":{\"boosted_pagelikes\":true,\"mercury_send_error_logging\":true,\"platform_oauth_client_events\":true,\"graphexplorer\":true,\"sticker_search_ranking\":true},\"known_routes\":[\"artillery_javascript_actions\",\"artillery_javascript_trace\",\"artillery_logger_data\",\"logger\",\"falco\",\"gk2_exposure\",\"js_error_logging\",\"loom_trace\",\"marauder\",\"perfx_custom_logger_endpoint\",\"qex\",\"require_cond_exposure_logging\"],\"should_drop_unknown_routes\":true,\"should_log_unknown_routes\":false},7],[\"cr:955714\",[],{\"__rc\":[null,\"Aa1GkJfS5BrKPBLwmAL9AioLKfMm61nb1s-4ewW63-EShDYqMPSoHUqhZmY2H2Id9iLlrre-NpVv9p3_KXDM\"]},-1],[\"cr:1094133\",[],{\"__rc\":[null,\"Aa0Y_belJkc-QRnbdoKiWAXkEz38xtqS4GdXkHCeoCKU4h7ovwPH_IGgo71PkRBji_xkUKC2ExmmWz64X2ktUzOtImQ\"]},-1],[\"cr:1808490\",[],{\"__rc\":[null,\"Aa0EaViHuaqck5VGFhqVDaUy8ihq7oMUNKZ2sb5aQS4wQT2W4GoYZi5yGl2wTb6Ph06ZuriWRLqBuaXDXkpJiH-PCpukPfI\"]},-1],[\"cr:1292365\",[\"React-prod.classic\"],{\"__rc\":[\"React-prod.classic\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:5277\",[\"ReactDOM.classic.prod-or-profiling\"],{\"__rc\":[\"ReactDOM.classic.prod-or-profiling\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:662\",[\"PolarisBrowserCookieConsentModal.react\"],{\"__rc\":[\"PolarisBrowserCookieConsentModal.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:777\",[],{\"__rc\":[null,\"Aa00g8cnT4aDvWivoTqTgbuOou1uPDUX7d6UceNucaKEbwYUpd-8MWiS96qiELbT7mbv-Hgd-RrGM2syCPAXlfmaYY_ln4RM-2iJOzk\"]},-1],[\"cr:3474\",[],{\"__rc\":[null,null]},-1],[\"cr:4472\",[\"PolarisLoggedOutIntentDialog.react\"],{\"__rc\":[\"PolarisLoggedOutIntentDialog.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:4791\",[\"PolarisDesktopNav.react\"],{\"__rc\":[\"PolarisDesktopNav.react\",\"Aa0mUSouYPm8JPajvl69POo_NvEFIPgqGf6lVoBUIo4VtRb7Fjbx7XOvSt2el0cfDQ7AIapX_kWEfSqeCte1MH5OmmmS8tdVjejHR8SU\"]},-1],[\"cr:4792\",[],{\"__rc\":[null,\"Aa111sU_vGdVVZvqc22PVD4fjyOpGtvYGiwZarKzIiFBobLY-vNC9pxQhjDKHR6tCMgch5YfEW9Tfh3h6KQwmGjk7H5u_aVKQT6iulQ\"]},-1],[\"cr:1294246\",[\"ReactDOM.classic\"],{\"__rc\":[\"ReactDOM.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:983844\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072546\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072547\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072549\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:692209\",[\"cancelIdleCallbackComet\"],{\"__rc\":[\"cancelIdleCallbackComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1268629\",[\"setTimeoutCometLoggingPri\"],{\"__rc\":[\"setTimeoutCometLoggingPri\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1268630\",[\"setTimeoutCometSpeculative\"],{\"__rc\":[\"setTimeoutCometSpeculative\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:4840\",[],{\"__rc\":[null,\"Aa1IHwbw0qdyPqrdijdWiUNgC295Q58SdnPgmiBjCnsKEFkqxYBiZaO2s2zbYbl591sZYVKgJ6o5IVbIeT8-F8s0dOloqjY537xK477EdpEc1MLs\"]},-1],[\"cr:956931\",[\"useCometPrerendererImpl\"],{\"__rc\":[\"useCometPrerendererImpl\",\"Aa0iJX1pBKO51gws8skKZ7mswIl6Fa1cfwr6NDvqIfccXr5N-HXt-w3VZe4RF_mCmsCEOpBCnwKN-g3DAXIVFb7A5QtMwWgwSHA\"]},-1],[\"cr:5278\",[\"ReactDOM-prod.classic\"],{\"__rc\":[\"ReactDOM-prod.classic\",\"Aa1VWwka1-TM7O1mdvM_kYUH24wchg4wCzvk4KGNQS5UpAIjihrfqyqwb9DPAMOqTyvdb78PH3T7B0PRNEwK9A5xtQmo93iJ0g\"]},-1],[\"cr:104\",[\"PolarisDirectBadgeIcon\"],{\"__rc\":[\"PolarisDirectBadgeIcon\",null]},-1],[\"cr:4477\",[\"PolarisDesktopNavLoggedOutContainer.react\"],{\"__rc\":[\"PolarisDesktopNavLoggedOutContainer.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:1353359\",[\"CometEventListener\"],{\"__rc\":[\"CometEventListener\",\"Aa17FqHYV3crsmjEXtd8DpJzj_aMa5saLAzyyO2iln15RAvsxcZRzf2e4Wr_lsR6AdgVcGHa4cdMza3qKnyIaUTH7jn5BH8T2A\"]},-1]],\"instances\":[[\"__inst_af5d41d9_0_0_Ua\",[\"XIGCometRoutedRootConfigBuilder\"],[{\"service_worker_uri\":\"\\/www-service-worker.js?s=push&__d=www\"}],1]],\"require\":[[\"PolarisErrorRoot.entrypoint\"],[\"PolarisErrorRoot.react\"],[\"CometPlatformRootClient\",\"init\",[\"__inst_af5d41d9_0_0_Ua\",\"RequireDeferredReference\"],[{\"__m\":\"__inst_af5d41d9_0_0_Ua\"},\"mount_0_0_AQ\",\"7191084768081846440\",{\"actorID\":\"0\",\"rootView\":{\"allResources\":[{\"__dr\":\"PolarisErrorRoot.entrypoint\"},{\"__dr\":\"PolarisErrorRoot.react\"}],\"resource\":{\"__dr\":\"PolarisErrorRoot.react\"},\"props\":{\"page_logging\":{\"name\":\"httpErrorPage\",\"params\":{}}},\"entryPoint\":{\"__dr\":\"PolarisErrorRoot.entrypoint\"}},\"tracePolicy\":\"polaris.httpErrorPage\",\"meta\":{\"title\":null,\"accessory\":null,\"favicon\":null},\"prefetchable\":true,\"hostableView\":{\"allResources\":[{\"__dr\":\"PolarisErrorRoot.entrypoint\"},{\"__dr\":\"PolarisErrorRoot.react\"}],\"resource\":{\"__dr\":\"PolarisErrorRoot.react\"},\"props\":{\"page_logging\":{\"name\":\"httpErrorPage\",\"params\":{}}},\"entryPoint\":{\"__dr\":\"PolarisErrorRoot.entrypoint\"}},\"url\":\"\\/codesupplyco_demo\\/\",\"params\":{},\"routePath\":null},null,null,{\"backgroundRoute\":null,\"timeSpentMetaData\":null}]],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"IGWebBloksApp\"]]],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"CometErrorRoot.react\",\"CometKeyCommandWrapperDialog.react\",\"CometModifiedKeyCommandWrapperDialog.react\"]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"PolarisErrorRoot.entrypoint\",\"PolarisErrorRoot.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"PolarisErrorRoot.entrypoint\",\"PolarisErrorRoot.react\"],\"css\"]]]});});});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierOneEnd\");</script>\n<script type=\"application/json\" data-content-len=\"83\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierOneEnd\"]]]}</script>\n\n<script>qpl_inl(\"7191084768081846440\",\"tierTwo\");</script>\n<script type=\"application/json\" data-content-len=\"80\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierTwo\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierTwo\",296);</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierTwo\",296]]]}</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3idBq4/yL/l/en_US/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3idBq4/yL/l/en_US/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e37RKYh\" async=\"1\" data-p=\":4\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e37RKYh&quot;]=1\" onerror=\"_btldr[&quot;e37RKYh&quot;]=1\" id=\"u_0_0_71\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yM/r/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yM/r/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e577y0g\" async=\"1\" data-p=\":6\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e577y0g&quot;]=1\" onerror=\"_btldr[&quot;e577y0g&quot;]=1\" id=\"u_0_1_xu\" nonce=\"7DXsYBtw\"></script>\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"clpData\":{\"1808128\":{\"r\":1,\"s\":1}},\"gkxData\":{\"4769\":{\"result\":false,\"hash\":\"AT4BMuDcCXv_oBypYnM\"},\"3538\":{\"result\":false,\"hash\":\"AT57TGJPNDIjCAO6AM0\"},\"952052\":{\"result\":false,\"hash\":\"AT7wsJl9q10w1hpgLlA\"},\"1611172\":{\"result\":false,\"hash\":\"AT6trgho2WMoFqOj3rI\"},\"4574\":{\"result\":false,\"hash\":\"AT55qFTN_fjShHbfEaU\"},\"1073500\":{\"result\":false,\"hash\":\"AT7aJmfnqWyioxOOi7c\"},\"1857581\":{\"result\":false,\"hash\":\"AT5yTxGMp6le0PAt0IY\"}},\"ixData\":{\"1876411\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/3mD7kKai_7W.gif\",\"width\":12,\"height\":12},\"1876412\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y1\\/r\\/mHADa0fT0mI.gif\",\"width\":16,\"height\":16},\"1876413\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/ZY0eC865SgX.gif\",\"width\":20,\"height\":20},\"1876414\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y8\\/r\\/M3mvaC7u8oH.gif\",\"width\":24,\"height\":24},\"1876415\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/hVe2HmwMRpE.gif\",\"width\":32,\"height\":32},\"1876416\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/yFaaylccZ5L.gif\",\"width\":48,\"height\":48},\"1876418\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/96GJYGbUDCJ.gif\",\"width\":72,\"height\":72},\"1876419\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/NiR8M1k4AVU.gif\",\"width\":12,\"height\":12},\"1876420\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/FNERtXIk9xp.gif\",\"width\":16,\"height\":16},\"1876421\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/l2FWxc8ihQj.gif\",\"width\":20,\"height\":20},\"1876422\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/r\\/Io_N1z4MXYh.gif\",\"width\":24,\"height\":24},\"1876423\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yD\\/r\\/-1hifBvDgEQ.gif\",\"width\":32,\"height\":32},\"1876424\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/RcIiVWWukEr.gif\",\"width\":48,\"height\":48},\"1876426\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/9ISCYYcy94m.gif\",\"width\":72,\"height\":72},\"1876427\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/MStXnCtsaSe.gif\",\"width\":12,\"height\":12},\"1876428\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/dw2egiKdoVV.gif\",\"width\":16,\"height\":16},\"1876429\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yA\\/r\\/1DbfjOftY0d.gif\",\"width\":20,\"height\":20},\"1876430\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/r\\/2uPGz8a6lb6.gif\",\"width\":24,\"height\":24},\"1876431\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/60r9oPEvxiL.gif\",\"width\":32,\"height\":32},\"1876432\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/NlAFhiEx3a1.gif\",\"width\":48,\"height\":48},\"1876434\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yx\\/r\\/uzrQzxgD_Bg.gif\",\"width\":72,\"height\":72},\"1876435\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/TtXj9IXnkoK.gif\",\"width\":12,\"height\":12},\"1876436\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yy\\/r\\/HNs8yq0QiXE.gif\",\"width\":16,\"height\":16},\"1876437\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yT\\/r\\/ay_drQe6StD.gif\",\"width\":20,\"height\":20},\"1876438\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y4\\/r\\/iACDMhAROS_.gif\",\"width\":24,\"height\":24},\"1876439\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yy\\/r\\/WEhNL1y2zoZ.gif\",\"width\":32,\"height\":32},\"1876440\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/mAeZkO4yhqj.gif\",\"width\":48,\"height\":48},\"1876442\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/79uB7ciX8vY.gif\",\"width\":72,\"height\":72},\"1876443\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/dzn6it4Fw3p.gif\",\"width\":12,\"height\":12},\"1876444\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/wqjQpFb4tea.gif\",\"width\":16,\"height\":16},\"1876445\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/yy3mR2PXKrn.gif\",\"width\":20,\"height\":20},\"1876446\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/gTdm7zPKz-c.gif\",\"width\":24,\"height\":24},\"1876447\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/kdaft251gQ_.gif\",\"width\":32,\"height\":32},\"1876448\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/6-FTd4KBtOk.gif\",\"width\":48,\"height\":48},\"1876450\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yq\\/r\\/Tks_lRPtYc-.gif\",\"width\":72,\"height\":72},\"1876451\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/Bys0xcVibDa.gif\",\"width\":12,\"height\":12},\"1876452\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/Wk0dcHGH6EG.gif\",\"width\":16,\"height\":16},\"1876453\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/aOTs7vt2hEc.gif\",\"width\":20,\"height\":20},\"1876454\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yh\\/r\\/wVjfNbGZ3CH.gif\",\"width\":24,\"height\":24},\"1876455\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/oT6wM_vuQNQ.gif\",\"width\":32,\"height\":32},\"1876456\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/r\\/ac61i44rSWK.gif\",\"width\":48,\"height\":48},\"1876458\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/ZH27Vvjc9-u.gif\",\"width\":72,\"height\":72},\"1940508\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y3\\/r\\/ycQ2OPoZwUA.gif\",\"width\":64,\"height\":64},\"1940509\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/8kyIVWHZW-b.gif\",\"width\":64,\"height\":64},\"1940510\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/8gPN8wBD9yB.gif\",\"width\":64,\"height\":64},\"1940511\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/WtK_u51t3nM.gif\",\"width\":64,\"height\":64},\"1940512\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yj\\/r\\/JYwEre3ewp7.gif\",\"width\":64,\"height\":64},\"1940513\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/M2HDLLPAUWl.gif\",\"width\":64,\"height\":64},\"166735\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":16,\"h\":16,\"p\":\"0 -200px\",\"sz\":\"auto\"},\"184566\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -100px\",\"sz\":\"auto\"},\"1296473\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -25px\",\"sz\":\"auto\"},\"1346159\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -50px\",\"sz\":\"auto\"},\"1350889\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 0\",\"sz\":\"auto\"},\"1356754\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -75px\",\"sz\":\"auto\"},\"1361369\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -175px\",\"sz\":\"auto\"},\"1362297\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":16,\"h\":16,\"p\":\"0 -217px\",\"sz\":\"auto\"},\"1729923\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -125px\",\"sz\":\"auto\"},\"1795210\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -150px\",\"sz\":\"auto\"}},\"qplData\":{\"425\":{\"r\":1},\"426\":{\"r\":1}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"qpyrtMy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/r\\/iWjgLm3q1pYuS51swCRoFxKjo7wuH4tyUCgLMVNa_87hY4mW9AWSDwbkt5ZNqTBDYYCDMa1vyJXChx3OE-zbF510sKgAeHYIRShVtkcaz3UJLQCIK2Sff-gydiSFwJRR0aL3kLkiQ872P4HIf9l82a5I5HJnyNgU8sXz07m2lVw7eP9aGNcp6hty_i61mhfKb6XuDThkNqzJL7r6uGWXsTy1cksqPsx5DFVh4UeFyEAw3H8nD0EYflvVWid0IdRzXksvPgEuFBlApFBaDIqf0JxitoWHDinHwx_gNvpKTSpONS-7vdnexeT8clYB2a8vIGvk_15Lm3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"tmOAXuP\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ii2C4\\/yN\\/l\\/en_US\\/xvU3j0h4k3izoB2OwJTIlrKfQfQfz74xU3YigL2IcjwrDPxSsU9kQctw0Bqm-rmcJX.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,616,444,5,312,242\",\"m\":\"1006847381_main\",\"nc\":1},\"AaClBt7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/Dh3_ZiNNl2lFAF-iZbNu-4AG8suGnLi_4quYEqzdK43o42J6zZkMjkme8Cggdg4F4Q4w4GvxU3-11dtXg5WetJUyX15GtjI7cf_TNDq_fqV_K8NWruXH68HXtT_fAdCctbd2gPwgr_h4GtCyYaQFAfXII5m3JIIKJijPHfcazt6TOOK9I74wA3FisAX9w-k7E0tmDkK5p5RUo_8OcdvWRDHs64txPmygUU0QBmxBQnKOp32M8MotHRo9ONLb9G3HvITCuvwy_KaZtaQSOJgLH_HLJPVBv6dry4KTbkrmk43tOyd2r6sDrFoBUR-ku6945XQOXF1Nep.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"qS64MW1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5s_4\\/yC\\/l\\/en_US\\/x75gkHcI0H8qClHE3ggsTYOgQZKqBcuUWabn8-gRWN5GrfOrQmbHYEfNwbs23K9rcFY_Y9O409faUWeCOs2s5bD3tSLpUIDNQgnUVyILCpHF4l7HH-7sBTDN8YWDsVhU-nV1eOQwobyVrtvrCSAsgw1ETddc6P3uZ_OxQQX_G8INiUAxXTOFe844pcLEFG9URf2UNtSzlToPztkVNCwH1VviYmwcJbgrpQNFWhqMmRKs0GJ-S2F-5djCiZASDsc9dhNbJ4UF1vh6Zb_kR4tBXNa0gJ0GR3vYkjxO5mvIuMvUc43groPfU7DkxXrp675J2Jlp2aAem3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":212,353,632,0,298,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"UVEzwS2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0a.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388\",\"nc\":1},\"m6VVYrH\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yF\\/r\\/w0HcDFoIhg9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":21\",\"m\":\"1006847381_main\",\"nc\":1},\"GltrS7H\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUXn4\\/yu\\/l\\/en_US\\/DitlTwroUi6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23\",\"m\":\"1006847381_main\",\"nc\":1},\"6oh\\/uBh\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ibOQ4\\/ye\\/l\\/en_US\\/HEtIpHgdUd5.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":96\",\"m\":\"1006847381_main\",\"nc\":1},\"+L0X93S\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i8hs4\\/y3\\/l\\/en_US\\/i9nIgo3DWBW.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35450\",\"m\":\"1006847381_longtail\",\"nc\":1},\"MIwFPq4\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yX\\/r\\/CnnssOFlSrF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35447\",\"m\":\"1006847381_longtail\",\"nc\":1},\"kleA10d\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEsn4\\/yw\\/l\\/en_US\\/3YigL2Icjwr.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":5\",\"m\":\"1006847381_main\",\"nc\":1},\"hXjPl2V\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i46r4\\/y7\\/l\\/en_US\\/4DyzuxKfqiESrxCISTcUjcCnnssOFlSrF3NsR67xBXBm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":332,35449,35447,35440\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"iQc1shL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i4X-4\\/yH\\/l\\/en_US\\/m6OBZx8UTDj.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":118\",\"m\":\"1006847381_main\",\"nc\":1},\"hTAZzFI\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/FubvMLCRnWm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":100\",\"m\":\"1006847381_main\",\"nc\":1},\"Sboo2ZQ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yr\\/r\\/ef5d8wbITlx.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23917\",\"m\":\"1006847381_longtail\",\"nc\":1},\"pARoKZ4\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLK1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"OW1kw59\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/80BsmNKe4b8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":168\",\"m\":\"1006847381_main\",\"nc\":1},\"TJ2LIPj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yO\\/r\\/mLT6R-X0Ih2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ht8qD46\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/l\\/0,cross\\/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"nc\":1},\"3vB8LuQ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iBPb4\\/yW\\/l\\/en_US\\/iZQLDmBv2K-.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"A5prXCT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/KKZf8FX1sT4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"mlxztRz\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/HUxMHl9Lidg.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"iTm\\/k9J\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/2QF11C8Kc69.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"g4lhZxV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/0Q6fw1BN4dxYzZHJxI6mNmPmjybo1DR6m4nxjd8y7k_W5Xf4wooNJ38lStDEfqxUv3AFX6rgZMzFtmh4uWrjcXE9nU5m7BP8gNJ6ZofxF_zUUe_raXjgSDP_rP9kK5HtufSbhE241-ESLFCaASyJevaLbtkg1XYWYzRqD5TLPG-zZFryH-cTofARqjkagHlLO6wQOtGgxcq_gSZU8Bk8d32mrvXp0O9O2TEY7sZCemuu-ROBOjSywdZqsF5fdptkRuMzIdMIJgQ7Zf9KcJtVVUfbyNt52PRCodw5LPKbxSCReU8fm2krPG0HIuGAiHot4v1e_tTw5w.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"yWcJ8lq\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/1KiOU-7XoBtqVIV8ZpYpc0t8xvQZn2oY2Ic61TpIiCyqlni5-xjHWIm-71ZF2Ip2f4QD_uK79OEnYw-nvR8EUPoi6riciajppPHw4IiWnlLoEc9jwoksr6RzcCMaieNnXSbseiDBK-Vie1bK9pK6pn_KiOriQXCJovVG40ZkrZ39Nqw7hGZc8oWykeS-Ov7dBRCn_hq-OzZuxlinwlAOoUgg8dTx-fALeOzhhBcPFO3paBxCRzAAJKQyivZie0HWNuBUizwk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"sP1wABL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/9QAMoOHWPNV.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"l5HqvCB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/YT7n1sgH1lv.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":19\",\"m\":\"1006847381_main\",\"nc\":1},\"lwZReTr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/5Gtc5QsnfLa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":51\",\"m\":\"1006847381_main\",\"nc\":1},\"j5Ia\\/+m\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/KfQfQfz74xU.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":444\",\"m\":\"1006847381_main\",\"nc\":1},\"CxpEI\\/m\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/u7ilu_cVD4XIhUAaF02eRYe0zS91sDXbAUZPPOwV690IqKntHarRwTS4BdzqX1XVWV-8kvYIMlYKy1Qp21FpQF0KT0sqSRBHGz_LwT_S9iYXRldbL4y2Tyhf5KK0iB9z7GZkv2R2yk2WsTAw-XY5OcB9lFI53d8xCOiAWxhj_JTPipmx_CUMSZVXVvQcuO9hCXtYO_KWZVlgSqidtwlZlM6JrlPRZypUdyjskvMl6tsXMGY_vAw_2pO2nOuVb9JornMAZyIi0eKDK4Z-Vtq3x-hjtbDP9UPCJktzRkHP9tfMKEkkTAYOlXdG_M7GZzUWAHJFjnT2Iy.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8610,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"TWaSLum\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yq\\/r\\/hYTUgtoFzSn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":310\",\"m\":\"1006847381_main\",\"nc\":1},\"K2Zj+QB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/5sXiUdKSCUh.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"HnCMbju\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yv\\/r\\/RxXHlk7Vd6e.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"9KJrUco\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/MtTqd1FSM56.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"3gEWTNm\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/l\\/0,cross\\/o9GByEG16aT.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"nc\":1},\"GLsKCyO\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iqLF4\\/yv\\/l\\/en_US\\/kGABMab3gWl.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"nF8umvm\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/xapN3qcH79U.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"4SBVdv7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVio4\\/y2\\/l\\/en_US\\/DOun_kaVJlfQg9dZGuEzHE8oPWP2oCnuDAs_1p8rRBeAntC4AWWs1bEjD8xkthZ2_hj0FkT6Lxe2QPqRL8aiIprjcVKTOyyUnMg-XeLMmryu3vCXroHQGc7h7ocSzIxcI0Ha3k2rjCRetwpmn_h9BjGPC6MA4XwPI0UIzaRPXpYPMjuhPao0kBADf2H3yWSoedVKnIdfpIlwrqlNzUn7kVSGoM89YzkCHZTOTSvoqThs5_UY-muBKTHKIGscnSP-LysLb26Ko5xem5Mn6TxRn7iNhySEAs1ul3OTTX7aS__-4usbTK1uT8bMeO-b9qwusp1Co8L-qp.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,82,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"JbVkxQr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJ9m4\\/y9\\/l\\/en_US\\/1mfLQvApMw6BI9JbRBk3CQaorB95xIijnO9lwzzIN0sOhFEdrHpFVbBMv6VJRpCLfrBosryxGCiLxD8PmzG6pxMSQQ0fPVN_6xC5jVtOOpVRXq01iU__yMod6viC322-KoSMj6dzOhQIB3ypjN2mXJTfwKk_MdnVnhLTnFc6v8s0OAeXQcf7YeFIjkYErv_13rWADYdhOFqwQ8ygfaU2kTp6ghOY4rrBYjuiuwKNVaiqiN4gPfxPqh7us8KzchFxWZQ2w6-vkLkiQ872P4HwlzuXtB5cGzB9N6cChuSnaQIcv0fsOtqJqJcW8J7U1RVm4-h-SiH-NX.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"EyeE1V7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yv\\/r\\/k4xXknqMYN9ezD5BoTR-ersKF30l9L0dNULegSm4VYdAqCB-Bu9eoX0P9OKlRsD9mJaxsDDSHlf0bam6FnGA7Q2QGkfeBudHmLyj3wkQQc7S4_-6JNQukG-1OG8vFgzZXQJf41pJJl_0v-ZKi-Z-OmvcCfe9eqMEh0n6qg9XN4xVt_0NevXKZoF1gM7poP-zYF4v-zgkqDLAhVlb_a9Xulzr3mA62bteQPWp0XCsvkZWeA_IJy76tYDPimIe3JBC2tUpCbDdeTpfON0SZju_SVQW1558z_adgJH4VVTrZi6HhmF9jRambaCg_VU2kRyZR60nQjSvZm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"vvTbhsc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/iULO6s5_uLBcPMf180fLkhqEeIcLYEJ71iRytcqPIx_-AeRQPT3JtYCCZa8u9t513L98RFlQxjGq4C4n-qlYjxxbCwmBUHfircKM4PPazOh5HLHyuuvW08e0X9Q9mi_4If2Sq0OSEFv-gznCLKMvh0lD4geAZie4b2plnGo-cvXfgfpnxUYzhzRbQy7zvP1GT14JHc4e2oCTvQQGpd2jkC0WizqEspWvkSQzwNYYb8_7BvMiGLLtUV2KiLgORR4qw4RP-FSZyA7m0nmAyNtEwCI3PImQrIuWPzhShqiYNYEJmRq_25L4PO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"n3OReDX\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iumM4\\/yz\\/l\\/en_US\\/xvU3j0h4k3iMmM7kLQoKZH0hhzhyLC_yelsCor4e7MRSFubvMLCRnWm3YigL2IcjwrMtmXybLsMSqz2SHhyL5uF9PyHnyc07dpkLh8fzDnu3jqnZDfldGWMyOCNtzayu2o2socJJgo3RrqHlG54kCgnql96xhqpkGNnhzi9bqJHWK9oJp7uEHHMSyiK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,63,104,214,100,5,30,31,67,76,226,0,466,531,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"jkOHTTH\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/l\\/0,cross\\/WkL85HmibujL8shGqf9VoB6StuX6aUNbr7V-k9aTC8UHqyj1yeqdxHvfsLRpBUPyqi-g_gR8Im4iErBWBbRxhvYsK11Y0sl59zGlq9vwiiMIzjrlN-Nu99zMSCShcD46FIhrkah0thFhGH87R33bZ5kRtEsX2rnD8vFbx6PPmkrxPEXw_2zbBDxCXsI3nvNka5_GSp.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"bu6zhrA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3innW4\\/y0\\/l\\/en_US\\/DusWLsy96BYmhFdKvMAtz5jWrWYjexbiVoGVfiJd4vJgiOzplWNdfnNLRTNQOQnIe8NPYMVcUBqNqzmIh5eCDkGWi-MRFNzUtyi6UvBcxKvN4n0U2-YfCykCzwl6aXkTNmGoF_M9BsJc-I2sXKfp4tHOzWUDYYrKf7dHaRu7d5sf8dQhR5SpR_62N4gJnYMSxbGMa110RPGDF_pNn-h-Cg2YoQq3sTYsPEYcsqKWD7Z2q3uKhV6qjMRd2H4eYofzNT4XnUKFqySN3xK8b6UVzuX6iQ0mYdGV9AfQOki3l3EPUWTWkyJgVHAUxNWcFC27twgiU4u86u.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ev9AzR\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iQAO4\\/yj\\/l\\/en_US\\/unD3qKN_89BV1LxDhhidJTA79BMI_taI_bZHR53cpSW1Js5Fu-H7_5psGSJ8g3hWShgMgyduThzfXNPDJIIZxHGr9gyeinraNPrzYE14JGvqVYxfLlrGI6ueicki17AN05nrJz013qWXllQh40-vCFyk_RdOoX8MXEafMqjj3fQN3GE6jcs9sqSkRdaSP6zLWkdUIWSouIMKh-fH6SwJBFhQL244nV_3kn2JD9atiiq75TQraz0guCe4VSH5TiL_g2Nru2FaE5g3HsN8HkQbKF6sKYu4LzR46LYFYY7wIYndCk-YzFjygkTHs4GchPamnrGOtcF_VJ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"TSKmWI8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iT7_4\\/yv\\/l\\/en_US\\/c94KTcKyykXRbRbYA3HAZDWrt7XTEOP4W3qfkUAAtdc8uwcgQJZH5ymkBa-xiAND6sgOrGV6DgaDHJxJH06tPo1oxEd2wjQF24SmrrREqr2NepDdMUwdZttq7zGqkyUyyhyLMDPxWg7K5_HxINRE6rYcOQ7k8OdRPniU1dmaK_EegC5stlqsNPkgD8JHxc-kBx8KsCZK0FjW0tgRnHZwE5b9PBV813Evx73bw9OrbfclAHS0xaSYkFX96BNdkaZCUcO6MDDTr7DK_WpSZIM-Vh7eHvi9rK7spQHKeb-YVqevbKEyWVhXtVmd0XVqXWF4I2RgFTT69C.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ClW4KJN\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/l\\/0,cross\\/dHH1Qr5OohAShrLnCsHauEtrZAMGIi9pYyrM-Ax8lgZz13paIMTaUWbF0qdt1CKyfo6oMkPQ3oPZ7IsGQsfCTjaTwtvlxq_h7rkCBFbnTZJrRi8Ip29CQfHlzZclFoMK2l4H6q3MMBNjXC05KfHTf0DwPdcEOt42So4RYjTp-fi2XO0mm47yzior9wJmB-pP8I5TygOtE64UdcG9gBeqDiiqrTDQuA6JWQWGJcwu3rUa7y-BxovPctiscFHoaiWfTglXVTARFtPSiFza84Cr-cEckH1OTxIiKIo6GwAAZNZzG7mN50dnLePu6Cmx36klapfA6ImCYQ.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"jJljVye\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iHSO4\\/y-\\/l\\/en_US\\/OloNdVW5J56_-nHq21OpqAWyUucqz6mOjvqJSgOHjgUQJ4_bxxISS0mTNsx83vOeWWIERiLJzv5UbeU2KXUQEOtlY_Y9O409faUJP9VcmNzec3P7E_VOJ_iC-xcnLQPcLzjHWeCOs2s5bD3zdEciDMGH4oKu7ibYGSNuiUXwZ3rFFHFb7mZwNgBAbwHtSLpUIDNQgn-L5TePR4hQpvX_lDhr5MfkdMbaSlm6aiVUVyILCpHF4lCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc3tBB7awrNPa-X1TLdF9BpoFbUftdruRolDgvGMc2MIWGy7HH-7sBTDN8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"SLuMFyC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5Sp4\\/yP\\/l\\/en_US\\/frk5o133HYN9EFMjx6MT8eUEJpVyQqdGvY4mW9AWSDwbkt5ZNqTBDYYu_LZxx_DC_6CDMa1vyJXChJir3bSY_Ex8x3OE-zbF5101alrYtZnwpQa1QcHnOH1EwsKgAeHYIRShhWnrESIE2IAVtkcaz3UJLQJiC7v-Px9Kp_DSORESQquL8XSj4Sp3040n5WuCm_sBp6z_iOr22efHeCIK2Sff-gydiSFwJRR0aL3XrhG8ANfMlkClftP4j3wAA1y_8ZBWCTZi-iSnoOIYgX8jmT3oTs-nTqIf9l82a5I5HeOq33LIfj3JiKAgAeWzP0zJnyNgU8sXz0.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"3q99Ilj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5s04\\/yJ\\/l\\/en_US\\/H1itYEOEoLVYWDsVhU-nV1eOQwobyVrtvrCSAsgw1ETd49aX9NPfIAiaajPm99MQIWxBLV5miH5QGZljJSmHFgwZdc6P3uZ_OxQq-r_V4x6wC8hnvUZBbAIyTLTp3wDEC4ghWUvgyvOsyCpGSI4gJg5SEesWbc8WAAQ5ckTQHv60Pt0zQX_G8INiUAxfTRssVuQNNFxtnCz5M89kp98z1GnlBs6BbtKHy_VESiOry6X4cQysBxVB6mta42QXlXTOFe844pcLEFG9URf2UNtwJoJc-I4o35SzlToPztkVN0WKguSKnK_KXtSPhOYNlLxCwH1VviYmwc.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"uKsbV15\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVLf4\\/ya\\/l\\/en_US\\/DitlTwroUi6zoB2OwJTIlrKfQfQfz74xUw0HcDFoIhg9DPxSsU9kQctw0Bqm-rmcJXx75gkHcI0H8qClHE3ggsTYvB9taUdFJNHOgQZKqBcuUWUICWLNi60WDNOiwu8bOOqbhw35Zi01WAK_3_v6yOAVO3abn8-gRWN5GrfOrQmbHYEfEthKmVitIx3Nwbs23K9rcFhNBES6MjmQnClV5PQ6ftsNY5W9b_Y-dIhO36QDIrOK01reRzP7OJIzEW0Wc7PUxI9dzj3ndxRJdMB.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23,616,444,21,312,242,212,353,0,632,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"GirQBwl\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0a4ucdnAKp3hMLQEvrhlwNlFbXQBGUo5NgDjjbFSk9M1jf6w0lfCDjvzy1yp4PJV-Vz-bb-hwNGmfWOz6w-B6eMgH8BVo-YN2Xeh0nuCD99GG8yXQ6Jn31fd8BppOH2OrU8IaLfDjwySY1azPspnSw7Jc8DPKIst33dIS_h8DOXkSsgn_e6GK6KezKvs333bgIjXbYEClunE4cb6Hzpj2t0wq6ZgQJvZHU_BvXIWhL4OkfYnoLgttIs6yMTBtm71dkFFl7OfbngcqAbLcFaKb.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"F7Yyqnn\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3issY4\\/yr\\/l\\/en_US\\/asP4i4hSYRMzmg-O2XpObhYZU-eGYZjFI4UeMic4f7MstJC9tfu2dFG8fvT_C6-AK_HDyJ8RHd8VW7m2lVw7eP9aGNcp6hty_i6IU1tHFn46BQEBYhBGlsvGI1mhfKb6XuDT_9nMgdiPYBbAjDcdepN9q9hkNqzJL7r6uG83hsOsGxwW5BnQsPJo23wcV-UB4pz5E7Ck9PuTDtWr3GWXsTy1cksqyPiTi6WcXgCpKAOtJEXSAdOeco_GNmG-KPsx5DFVh4UeFyEAw3H8nD0WoGSsodkStYCPL4Zl90vXwEYflvVWid0IZteQi7ghzx1llwpOgkzBvQ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ECNt4aT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i9EG4\\/y7\\/l\\/en_US\\/dRzXksvPgEuxsgpGO5GUUHFBlApFBaDIqf0JxitoWHDinHwx_gNvpKTSpONS-7vdne0J0FBgPmHtGX7ncRyxILDCdvg2CafnFcbvIGvk_15Lm3xeT8clYB2a8TCHECZC83utQfysIxOmJin5m_ZnJebTW7aJPsGDe_g-DDh3_ZiNNl2lWY6-0XmluV_FAF-iZbNu-4XdNWgSoF8PPH2P4qLbOQGCAG8suGnLi_4DQZ_r4ee6EvquYEqzdK43o8GhgovABDR_4f4G610qAEETqu0qUQsk0b42J6zZkMjkme8Cggdg4F4QSYXWuz6SaCWGX8q6IpYhOk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"RtDBsbo\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/4w4GvxU3-11MSuXfyVwDCIdtXg5WetJUy9OePM1GuhzPX15GtjI7cf_VUpwARe85ptTNDq_fqV_K8b9qQYJk_fUyNWruXH68HXtT_fAdCctbd2yYaQFAfXII5gPwgr_h4GtCCXHTjxHInJhm3JIIKJijPHfcazt6TOOK9I74wA3FisAXolB-fIaIjdx9w-k7E0tmDkK5p5RUo_8OcdvWRDHs64txPmygUU0QBmxBQnKOp32M8MotHRo9ONLb9G3HvITCuvwy_KaZtaQSOJgdry4KTbkrmkLH_HLJPVBv643tOyd2r6sDrFoBUR-ku6945XQOXF1Nep.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"0o3vj9b\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ipTc4\\/yF\\/l\\/en_US\\/JbgrpQNFWhqMmRKs0GJ-S2F-5djCiZASDsc9dhNbJ4UF1vh6Zb_kR4tBXNa0gJ0GR3vYkjxO5mvIu-qkSyagmUcB4Trdh4-6cLc2EQSbzIh07mgZe4xXkmRWLUMixX4vLr0CMvUc43groPfKQMV3_upF5YVr8ZApMHDmEPwPTOt6AR6lTU7HQ9S1sdk6iQrIcWeFYnRvwbqOkULPjJ2Jlp2aAem3U7DkxXrp675yP_KGXKLvAwiWjgLm3q1pYowSkEET64PJuS51swCRoFxJHh55U9dNXhKjo7wuH4tyUCgLMVNa_87hcfsMwE5bAk8TIvzDks0PwI.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4kCFpD3\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iQAO4\\/yA\\/l\\/en_US\\/JBC2tUpCbDd_SVQW1558z_adgJH4VVTrZbaCg_VU2kRyunD3qKN_89BV1LxDhhidJTA79BMI_taI_Js5Fu-H7_5pbZHR53cpSW1sGSJ8g3hWShgMgyduThzfX9gyeinraNPrxfLlrGI6ueicki17AN05nrJz013qWXllQh40-vCFyk_RdOoX8MXEafMqjj3fQN3GE6jcs9sqSkRdaSP6zLWkdUIWSwJBFhQL244SouIMKh-fH6nV_3kn2JD9atiiq75TQraz0guCe4VSH5TE5g3HsN8HkQbKF6sKYu4LzR46LYFYY7wIYndCk-YzFjygkTHs4GchPa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"anb0L73\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yX\\/r\\/mnrGOtcF_VJiULO6s5_uLBcPMf180fLkhiRytcqPIx_-qEeIcLYEJ71CZa8u9t513LAeRQPT3JtYC98RFlQxjGq4C4n-qlYjxxbCwmBUHfircKHyuuvW08e0XM4PPazOh5HL9Q9mi_4If2Sq0OSEFv-gznCLKMvh0lD4gGo-cvXfgfpneAZie4b2plnxUYzhzRbQy7zvP1GT14JHc4e2oCTvQQGpd2jkC0WizqEspWvkSQzwNYYb8_7BvMiGLLtUV2KiLgORyA7m0nmAyNtR4qw4RP-FSZuWPzhShqiYNYEJmRq_25L4PO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"cBaTsIy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ik004\\/y3\\/l\\/en_US\\/xvU3j0h4k3iMmM7kLQoKZH0hhzhyLC_yelsCor4e7MRSFubvMLCRnWm3YigL2IcjwrMtmXybLsMSqPyHnyc07dpk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,63,104,214,100,5,30,67\",\"m\":\"1006847381_main\",\"nc\":1},\"93HC0Re\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3il_X4\\/yj\\/l\\/en_US\\/Lh8fzDnu3jqnZDfldGWMyOCNtzayu2o2socJJgo3RrqHlG54kCgnql96xhqpkGNnhzi9bqJHWK9oJp7uEHHMSyiKDOun_kaVJlfQg9dZGuEzHE8oPWP2oCnuDAs_1p8rRBeAntC4AWWs1bEjD8xkthZ2_hj0FkT6Lxe2QPqRL8aiIprj-XeLMmryu3vCXroHQGc7h7ocSzIxcI0Ha3k2rjCRetwpmn_h9BjGPC6MA4XwPI0UIzaRPXpYPMjuhPao0kBADf2H3yWSoedVKnIdfpIlwrqlNzUn7kVSGoM89YzkCHZTOTSvoqThs5_UY-muBKTHKIGscn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":76,226,0,466,531,0,0,0,0,82,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4g6DzU1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inZh4\\/yq\\/l\\/en_US\\/Rn7iNhySEAs1ul3OTTX7aS__-4usbTK1uT8bMeO-b9qwusp1Co8L-qpDusWLsy96BYmhFdKvMAtz5jWrWYjexbiVoGVfiJd4vJgiOzplWNdfnNLRTNQOQnIe8cO_Iuaw9QlNNPYMVcUBqNqi-MRFNzUtyizmIh5eCDkGWdsg2m3CI52gBteF1f538kE6UvBcxKvN4n0U2-YfCykCzwl6aXkTNmGoF_M9BsJc-I2sXKfp4tHOzW6gjdDn1D2JtRu7d5sf8dQhR5SpR_62N4gJnYMSxbGMa110RPGDF_pNn-h-Cg2YoQq3sTYsPEYcsqKWD7Z2q3uKhV.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"3UNYkPm\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3rT4\\/yX\\/l\\/en_US\\/6qjMRd2H4eYofzNT4XnUKFqySN3xK8b6UVzuX6iQ0mYd3EPUWTWkyJgGV9AfQOki3lVHAUxNWcFC2c94KTcKyykXRbRbYA3HAZDWrt7XTEOP4WU4N9OsG4Sb9vXRYSk9Aw703qfkUAAtdc8uwcgQJZH5ymkBa-xiAND6sgOrGV6DgaDHJxJH06tPo1oxEd2wjQF24SmrrREqr2NepDdMUwdZttq7zGqkyUyyhyLMDPxWg7K5_HxINRE6rYcOQ7k8OdRPniU1dmaK_EegC5stlqsNPkgD8JHxc-kBx8KsCZK0FjW0tgRnHZwE5b9PBV813Evx73bw9O.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"\\/y6k9ah\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3icI14\\/y-\\/l\\/en_US\\/rbfclAHS0xaSYkFX96BNdkaZCUcO6MDDTr7DK_WpSZIM-Vh7eHvi9rK7spQHKeb-YVqevbKEyWVhXtVmd0XVqXWF4I2RgFTT69C1mfLQvApMw6BI9JbRBk3CQaorB95xIijnhFEdrHpFVbBMv6VJRpCLfrBosryxGCiLxD8PmzG6pxMSQQ0fPVN_6xC01iU__yMod6viC322-KoSMj6dzOhQIB3ypjN2mXJTfwKk_MdnVnhLTnFc6v8s0OAeXQcf7YeFIjkYErv_13rWADYaU2kTp6ghOYdhOFqwQ8ygf4rrBYjuiuwKNVaiqiN4gPfxPqh7us8Kzc.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"g+ugZ1+\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJ674\\/yh\\/l\\/en_US\\/hFxWZQ2w6-vkLkiQ872P4HwlzuXtB5cGzB9N6cChuSnaQIcv0fsOtqJqJcW8J7U1RVm4-h-SiH-NXsKF30l9L0dNezD5BoTR-erk4xXknqMYN9ULegSm4VYdAqCB-Bu9eoX0P9OKlRsD9mJaxsDDSHlf0bam6FnGA7Q2QGkfeBudHmLyj3wkQQc7S4_-6JNQukG-1OG8vFgzZXQJf41pJJl_0v-Ze9eqMEh0n6qKi-Z-OmvcCfg9XN4xVt_0NevXKZoF1gM7poP-zYF4v-za9Xulzr3mA6gkqDLAhVlb_2bteQPWp0XCsvkZWeA_IJy76tYDPimIe3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"PwnKoR\\/\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/l\\/0,cross\\/3nvNka5_GSpShrLnCsHauEtrZAMGIi9pYyrM-Ax8lgZz13paIMTaUWbF0qdt1CKyfo6oMkPQ3oPZ7IsGQsfCTjaTwtvlxq_h7rkCBFbnTZJrRi8Ip29CQfHlzZclFoMK2l4H6q3MMBNjXC05KfHTf0DwPdcEOt42So4RYjTp-fi2XO0mm47yzior9wJmB-pP8I5TygBeqDiiqrTDQ8sL3qkM7i_LuA6JWQWGJcwu3rUa7y-BxovPctiscFHoaiWfTglXVTARFtPSiFza84Cr-cEckH1OTxIiKIo6GwAAZNZzG7mN50dnLePu6Cmx36klapfA6ImCYQ.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"erF32yE\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y0\\/l\\/0,cross\\/WkL85Hmibujw1tmvaTvNaVL8shGqf9VoB6StuX6aUNbr7V-k9aTC8UHqyj1yeqdxHvfsLRpBUPyqi-g_gR8Im4iErBWBbRxhvYslq9vwiiMIzjrlN-Nu99zMSCShcD46FIhr7R33bZ5kRtEsX2rnD8vFbx6PPmkrxPEXw_2zbBDxCXsI.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"WSrXOyK\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iMwe4\\/yV\\/l\\/en_US\\/_3_v6yOAVO3hNBES6MjmQnO36QDIrOK01J4_bxxISS0mxcnLQPcLzjHP7E_VOJ_iC-zdEciDMGH4oKu7ibYGSNui.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"W+rZutK\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/l\\/0,cross\\/4ucdnAKp3hMLQEvrhlwNlFjjbFSk9M1jf6w0lfCDjvzybb-hwNGmfWO6GK6KezKvs31dkFFl7Ofbn.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0\",\"nc\":1},\"mxLmC3V\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iMwe4\\/yV\\/l\\/en_US\\/dMbaSlm6aiVCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc3tBB7awrNPa--h-Cg2YoQq36qjMRd2H4eY49aX9NPfIAiq-r_V4x6wC8GSI4gJg5SEekTQHv60Pt0zfTRssVuQNNFXtSPhOYNlLx2EQSbzIh07mgZe4xXkmRWLRvwbqOkULPjJir3bSY_Ex8_DSORESQquLClftP4j3wAA8fvT_C6-AK_HDyJ8RHd8VWG83hsOsGxwWWoGSsodkStYCPL4Zl90vXw0J0FBgPmHtGQfysIxOmJinTqu0qUQsk0b4f4G610qAEE8GhgovABDR_MSuXfyVwDCI.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"rFlA2V8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/hw35Zi01WAK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"prUu57P\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihAX4\\/yR\\/l\\/en_US\\/NOiwu8bOOqb.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"lNcRReC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/zoB2OwJTIlr.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":616\",\"m\":\"1006847381_main\",\"nc\":1},\"b7jAzg\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/IEGo0XaunVa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"EzSlDwr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/aAAWUpeRCq7sdqK9ScNJ6_.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"7ckTzJJ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y3\\/r\\/vWk1LnCjSBN.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ZYgq4v1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/r\\/SdV_l264IXn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"6yZSQ\\/\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iiaY4\\/yS\\/l\\/en_US\\/3oMTvZOm6CzvB9taUdFJNH5rcsKFb2dUcwxeq_67EzkWmOWQYuPeRNoOnVg-JBPO-vw0-oSMKT-ov43KRWqzccCzY8AlaskAL5M-XeLMmryu3vqo-yEtCDGHzOU2Mvq8DINuo2M7YWQGNp_HlmysYlsjAliALqzb10Inxmtu_-F9cxrKJui_KhnA27AYe-x7w7LxueVmCpOKBUtN2hIT02Y-mBpWQwgeW-saYk4aQIn21rEA5xFBT-_NWTK-jUTbMa_zxG-6eTUkZcCbTcle8he1N8k1byplWNmUfnm2W_-nHq21OpqASBssTLcWQbEaJfULZAI61w.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ioLctzh\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yb\\/l\\/0,cross\\/mGFxlc3pNJ30EHA67mR7fcwCNVCqFB1QWWUXjHC9ZAAAPOiODzm28Cv8oGIAxlD6hUGQpZx2zytM7tKB2i2fdk6YX3hWotlKQYxjwCQUqUUu8RLvr5NwEWUUip5zlFlH9R6BX6kH3HeAmCbYZryQxPOERTaAkfljRjBsxht3YDAFqAOnL0JW1rw3316d7CLjUlTGsi1yp4PJV-Vz-9l03yiGTgnsz6w-B6eMgH8X141VhUN7cDxbvjgJVq4ZOzaV2pZvcpp1efGd5AF6o34pt_k7B9iybiHMzfbT27JdqItURO_NV3bV6poBvYQMY7H6f4SsDh2dHB.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"5nrAkeG\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y1\\/r\\/rZ9MNKrH0k0ZbI0G4LrOxIHPZrXg5ReZ0TYMvUwK5Uma9w4uNPsrUnOvaNelY5dvtdhRkyt3Yfi6vH3kdUJxBG-ANsNjilJ0afAGX8q6IpYhOkT_S5rq0HeYBAaIYlwNb87SCSp4KZz6HHeBvhG1lEKGsmutMKrfthU2RuzxCO9Gh_AlpYf9AKx-NgBm80lT15D-NgEwCI3PImQrI6Ve5kNR3wz8AAdI7Av9C-XPMsqpJXSbdkIs-8tKrgqiGou8tKGzJ5QGRsjzfk8IokY57gS-YG1i4nPO881yikXoZPR0jFeq5lk9a3MjIxzn551WjyvDNbsFZF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"9E2DBRy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yh\\/r\\/Cb2nWZgnWUhiSSnW4PMNlga2aWXarw1dkwle1I1TnKiqhFEdrHpFVbBV6zVufZ_jMeD8PmzG6pxMS55WJhMeNItitfLLXDtrZWLwbK0JKhNrz-TJsccjxVQoSMTUMRaLT9ChPzsN3sCvOxdi_TgxwE3eu_nyA3sW0FVCqLw_ycRVvStcrqKLBxQ_P7jlh9C0gA1PfgAkSeS2_DsuX_XZ9LI8WObQnJHlqzMAFRPIfCiJmlQOb8NoXGI0ARLOrxjq2yOHi0LqPZP5f6bVNNj_TEymI8eTCFk_MdnVnhLTnQQs74FyXGL2wIDnWqh7q7dbY6eQTwT9o8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"bcIiNV2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/l\\/0,cross\\/WU_aqaOgOui5KfHTf0DwPdACr3iloYvjsfeXjSpUc1q6EgECl_dlP71xPFQej7MzE1mcseKB8a-340hhj4zAl09LpjJRJLiCLFSQACZqkUJqh4CCYvuhEUQDGwFd3oI30VkZPwC1jt2DpXuium9VFcgQfjbPMIZphGawQWAHIVv_vtpSyq7vRUeyp1rRcLfmUHQOQOXb_Rh5zm5IRu3rUa7y-Bxomj2c4HWgOMDcr7XvB5D2u1iWfTglXVTARqkGEPsa2XVCvZHU_BvXIWhL4OkfYnoLgtquM-GFCOuDf5g4xhyjHepf97SRy71Ra5nXvyz8JVab2y.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"47qoW\\/f\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iAAL4\\/yd\\/l\\/en_US\\/hh_9PD_2PIAQLCNaF3rMKK6PcvwtEuEFW3dCSfDrxXKSRT9vXQCG3ERfOXveanvv3eGkfeBudHmLyoM3GEVUsZlrlbx1rZb6kvfKM3ib0V0VBlEBYhBGlsvGIqEHYGkVPw9ofPc8bIjFzbCeX7e0JdGswjLHJ8cVR3SaIAjDcdepN9q9Wg_eS8zpF-YuXrHmhulGBJMiiicqUENUVRCO_BFV3rQhFvrNQBQqoOG9xgy9EoOk_ZwKi3RvIsuUBOeco_GNmG-KfbxZqR_YeCDNU4ob3x41fFW2GHsNVrxjTrifq1sATFtW9rfLZ4a1-rgzqw_0sErWwF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"fSczSRB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iHeG4\\/yH\\/l\\/en_US\\/KfQfQfz74xUxX__jyeLapOCNtzayu2o2sVZHSOzZWDG2lG54kCgnql99lCmaWUnN9wI6PsK8-JGR8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":444,0,0,430,531,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"QvFDbhy\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yf\\/l\\/0,cross\\/BKGi5qNuGRpZtZXZ-vjU2Fn_mCyUwIymEW71i9CghJ8TBdoBXqu66iNbXQBGUo5NgDP_m3v26xQUyzT0JY0EkYmM-uiwjx_I5GN.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0\",\"nc\":1},\"OJGpUeV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/iL_g2Nru2FaoTRVzp7JEmeVJ5edDiOCvWBzKo4DBgDODCG3maEf0leqmSGzLcJ980NGQS5FRLrjTcXIh8VYn7YXibKF6sKYu4LzTEnvxG_bp0FKMhOlJBxgs0R46LYFYY7wIw77DAzLEZyZcow0DpskHtufgAy7YUQq0xVmKxdWHsV2fKhlVBP3yIQcG2j1mc5aNButuwda2MZUlBVslaI1GfGvDI69FydhezoYoAmEfuA5esJqEeIcLYEJ71lXvAGdK9AGeN8fmyW97uQKzL1pWaT5ZqS3l6kW76IFF6CZa8u9t513LULrbvJDzdZ598RFlQxjGq4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"XHdXHcA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iutZ4\\/yR\\/l\\/en_US\\/5hFciBnqzukGVs4NlxLnE1oGJlo6SwRvN3zGV9MktIqER6wz1U42U6Hxof12od75DdFfxGNDvdluSGLHTsyDXmPOe0LjwvRezmZAKryZxMMb3345skMfZWE_w13Evx73bw9OzPjG1Q4OhZtUMixX4vLr0CZ87kWc1R4ogA0EncZ9HbSv96JBuh1KNAlcWUMjEhsyoMHtHVeglOyokGki3el6yFZ4eTfuB2T9YHIqaWb25FgcR8wfetfxOaYXpKDZQnrL_GnGiG3toEeXA3CD3zd-SWSqAsw-LsdrzKwPdnbrS27Dg3Ra9O1WQqUGZztVnCriOxPRLv.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4oDhgvB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3io-b4\\/yE\\/l\\/en_US\\/2kSuPgqcLj2jsnFniTizDcc6BCJBGUFUUQf6bg-_1vNYrUu41wY5f9UjTbGQmh7PiKhw1afqlskiJtyzbWQ2DmSKy14o1rH5DCN2C0O9XxFpNn_nPMlytnTpdb2n842hbZ5UYA1M30ASGSvofzNT4XnUKFMlB4LkoVd2-FIFO6EQz4nrwtkji6HSgWuJqyVRokkiJzWm6VyBgS0IjxBLV5miH5QGZljJSmHFgwZ34TFITGTVyiRbRbYA3HAZDULdaDJjPcassWbc8WAAQ5cf0mexr7Eill-BU3gDEdgJlviisi6SU2mfwGOAh7uL2-tgK9ABVKgK-m.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"8VDQs1D\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ilBt4\\/yc\\/l\\/en_US\\/rFRP9D0lEV-7VAmaO9cOTQu8ySS__7hKCK7Jh58FZUReBJoR1SWhoGn7QAbZJspzaXsgvtqxwROe7kRwdxzyBP6nFEJ9Xw1QByo6Iwhzr-Ldih__-4usbTK1uxQV6kwl_Vd6zo-VBYI9ZBQxpWuCo_-3-ojAX6HsuumcKfjraGf829Lbc-PC3x-g7xxmVcMLBqMAkZpTr-PEva-iPcmlfXu79zZoUXwZ3rFFHFbxfUYnpoxRsmUJZ4YFrkqaQ6pzgfnEEwOjf3oWjgsMQ_MdFslYEmA7ad6c28WZvFQfEMHxHC479r1qkWrX3vRxpKMpJO5QBFP9GG.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"FOzv+Zj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUlg4\\/yu\\/l\\/en_US\\/Z2Dys35WO4-4rrBYjuiuwKzpnq-QQijAIt0GMpoepjsjESNmWfkdlhdX3Hj8XqpnvuyfqCmEOQUHg995qFyE9unjMmSxogAG9G2t_kMbQYANLQgBjKC2zIq8UfawicO0EWSkk5k7vcPY_jX_Sj7XCWOWbIBEspZ3jSs50tgIVQvgJGyObwWDfEHxzl7v66JGxaSCBCZ8sE_lemx-GqsQyPjex3cSmRVx9isPMmjbIqtPyCYbV0qsoplWNAOctbyejfM4Wdphwqacqqxqp0xwkVOLdB-D4aYNMp923mi9aPUi_WAEhAAQRP0R2BtPqVPsYZS9hE_MnH.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"x7h4g48\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_4T4\\/yD\\/l\\/en_US\\/MIHPzira5YVQlflzjxUnerWuUABZczVW1MXG9zxl56FnI-369-Uw2D5XYyVjYZMZUXRVPsQLjoFZTbaCg_VU2kRypMQE-01i8RlTFo7Qp9Aoo2NzF8iEAzRsCttJHebhcQA8cZh85MJVQ-GHniaZebCimMROkeYOVP4X9nkEwTbWBjvNNJeJoMwk3nBFbUCIYuzM4ozYE14JGvqVYo3wgBGWkB2D6f9K263W1be7nOp3oHKprL2pRqbfKfDOmCfKKmr20mYCIwXM19u3xsSa3tvCKCO3GSYWgqoo90uwagZaiBFi58BE3aXh6X_AutfDQZ_r4ee6Ev.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"1XKrke9\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDUr4\\/yu\\/l\\/en_US\\/j0FkT6Lxe2Q_3_v6yOAVO3PqRL8aiIprj-XeLMmryu3vRrdrv_R-BSthNBES6MjmQnt8_AM4GYgjnO36QDIrOK01hIT02Y-mBpWnktcy9_8-3pJ4_bxxISS0musp1Co8L-qpT3fnUQ2euyAP7E_VOJ_iC-xcnLQPcLzjHzdEciDMGH4oKu7ibYGSNuiGO7SbzSUxM9zmIh5eCDkGWdMbaSlm6aiVMHxHC479r1qCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc328CjMNUn1sptBB7awrNPa-3neAr1j-CX8FfGWvgrFROv-h-Cg2YoQq3sTYsPEYcsqK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"q\\/fczbW\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/l\\/0,cross\\/4ucdnAKp3hMLQEvrhlwNlFfsLRpBUPyqibXQBGUo5NgD68k021VWLiijjbFSk9M1jf6w0lfCDjvzyJr4BlFOVEsuUeo4kDtC1XA6oMkPQ3oPZ7bb-hwNGmfWO8Ip29CQfHlzuAiwRpIgDi5HkgVQZQe_Qe6poBvYQMY7Ha0cuTt9boFcuA6JWQWGJcw6GK6KezKvs3SNESTm7huvg1T3BxIhgD6aKk3oHi1d6WR1dkFFl7Ofbn97SRy71Ra5n.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"8a1mZN2\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ie924\\/yb\\/l\\/en_US\\/76tYDPimIe3adgJH4VVTrZoN5LSFO_O9CHniaZebCimMsGSJ8g3hWSh0J0FBgPmHtG_3qqZ8dtvUncki17AN05nrQfysIxOmJinh40-vCFyk_RSSrcazAWeUInV_3kn2JD9aDQZ_r4ee6Ev0guCe4VSH5TTqu0qUQsk0b4f4G610qAEE8GhgovABDR_Oa3H3hPmog7VmKxdWHsV2fD-QGoAU_GVtDm8uuzzDhfiMSuXfyVwDCI7EvUOC2wNVsiIicd8nY7iYR4qw4RP-FSZktT4NUvKINEyYaQFAfXII5uWPzhShqiYNPO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"1b2FW87\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i9gg4\\/yX\\/l\\/en_US\\/2BP8URldF_XX_XijVh6J7gxkaGZqMxJ_Dj6dzOhQIB3ymeehKaQzx0exjq2yOHi0LqIzUBMwa0zKXk_MdnVnhLTnJir3bSY_Ex8Qcf7YeFIjkYkylPW2izp0p_DSORESQquL4rrBYjuiuwKxufzWnL2VC38iYbWXdxkO4995qFyE9unjClftP4j3wAAI_1SjCLTDcPlFviBM7q3jOvqHDUCOkroX8fvT_C6-AK_HDyJ8RHd8VWb7u8TcJxMQx-r9FEck8vfmHG08uOtLTqE3tk4U7xNm7AG83hsOsGxwWevXKZoF1gM7WoGSsodkStYCPL4Zl90vXw.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"xSCpRjR\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iNO64\\/yq\\/l\\/en_US\\/6qjMRd2H4eYofzNT4XnUKF1ELiqUJdhXSNCmZLD5ebn149aX9NPfIAiol1Z2n8oFJUq-r_V4x6wC80Qfm48XgOZ6GSI4gJg5SEesWbc8WAAQ5ckTQHv60Pt0zfTRssVuQNNFj8YCyqfU-HTXtSPhOYNlLxNhe_K3WxExezGqkyUyyhyLnph6nqdFcuLFfxGNDvdluSSYkFX96BNdk2EQSbzIh07mgZe4xXkmRWLhtIqHF6L1vcTU7HQ9S1sdkBI9JbRBk3CQqchNfyPUh-Ud_guBvHTot-RvwbqOkULPjqbQlQVGfALEdUKPvF_QvRHnl7pcLVrHxd.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"Xa\\/Vyod\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ibdr4\\/ys\\/l\\/en_US\\/CNtzayu2o2slG54kCgnql9p7uEHHMSyiKNOiwu8bOOqbhw35Zi01WAK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,531,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"l8yvi67\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/MqUHzzATDrHj4IM92LiofQ95mUM7nL2d8-jHxNQsWTssDzwhn3opHxAxb12Hdbb0bL.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"AD1bWlA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/YSjaktEjbop.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"xpajmW8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iRNb4\\/y9\\/l\\/en_US\\/tnxX-ZxlkrD.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":825\",\"m\":\"1006847381_main\",\"nc\":1},\"McMbPS1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/qIRfvgy9sEM.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ccOBUXC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/if_goWIebSU.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"O8ghqVf\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/49TCMVpJQ9O.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":854\",\"m\":\"1006847381_main\",\"nc\":1},\"ueGkFVV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inoj4\\/y4\\/l\\/en_US\\/L9iclwrP2Mz9zxLl_ssB3nxudfWkGfnMS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7251,328,7250\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"8Za3h9N\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDCh4\\/yt\\/l\\/en_US\\/obNSSdwUDIq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":875\",\"m\":\"1006847381_main\",\"nc\":1},\"UrOsroS\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i0Wo4\\/yT\\/l\\/en_US\\/MtmXybLsMSq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":30\",\"m\":\"1006847381_main\",\"nc\":1},\"tsaNjL0\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/VW2QYHgKuAS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":247\",\"m\":\"1006847381_main\",\"nc\":1},\"Na1E3Dy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5Un4\\/yW\\/l\\/en_US\\/xudfWkGfnMS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7250\",\"m\":\"1006847381_longtail\",\"nc\":1},\"Is9sUvu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inf74\\/yg\\/l\\/en_US\\/H6kIOT6P8ak.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7252\",\"m\":\"1006847381_longtail\",\"nc\":1},\"M0ByNMu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDp44\\/yj\\/l\\/en_US\\/ta_DJjjl7X0.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35736\",\"m\":\"1006847381_longtail\",\"nc\":1},\"YoHC+Yu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3id_K4\\/yW\\/l\\/en_US\\/WGonvpHzAl9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":311\",\"m\":\"1006847381_main\",\"nc\":1},\"mhiCfI5\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y2\\/r\\/Cu2KVQ06AcD.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":39390\",\"m\":\"1006847381_longtail\",\"nc\":1},\"ZpmIcGw\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTHh4\\/yf\\/l\\/en_US\\/XjBRyI0ZSr_.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":834\",\"m\":\"1006847381_main\",\"nc\":1},\"x5opEZT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihzu4\\/yg\\/l\\/en_US\\/m6OBZx8UTDjVW2QYHgKuASQ1CCJPG1GhL9zxLl_ssB3nl10E0k-UWuh.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":118,247,7695,328,29860\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"8rpQEHL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ix9W4\\/yF\\/l\\/en_US\\/Gg7kK8EeOPslqsnp5OUNAOqFj_IKtOe_Nspcbd9dqmIIj6dzOhQIB3yxokvK4M2tHxQcf7YeFIjkYYMci2dckUc6HUxMHl9LidgClftP4j3wAAZttID0s5tPrGkfeBudHmLymLT6R-X0Ih2o-xu7unW-Sm76tYDPimIe3adgJH4VVTrZ-5wr-a1CvvypXXqholOWr1MRPod07iws9x7fSXs1NHO14bNiNke4Hc29yIhi7KFRadnV_3kn2JD9aXlhUsbmefqXAGOCEqZsv-0K9G_IgNc4SNA_c7oLSB0vWJ2RkjNC2Z3h1UrXITZqHLKuWPzhShqiYN.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"vddimCz\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/l\\/0,cross\\/KrcDhB2YEYufsLRpBUPyqix_a5WjBkPtGuwB3WLZnSUK6oMkPQ3oPZ78Ip29CQfHlzVosqQik2ptmPnCw1TUcSQ8uA6JWQWGJcwbHSpovBxCGp3EM7S3aMKOc.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"oJPpsv6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iu9-4\\/yJ\\/l\\/en_US\\/zglliOLRnbyrKlzUkAAyG_YOB7whma59nusp1Co8L-qp78wSZ0g2LwezmIh5eCDkGWxP0vdregVEjk2RmkA-sxlmsTYsPEYcsqKofzNT4XnUKFQhy2UO-rlQpGwV2UI9edr-4Tc-cu8XHP4Tm6UHEyfqFfGYWZafl2gcI0NZDxeN71qySYkFX96BNdkZwNoyQKO8H4BI9JbRBk3CQ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"fmKqHO6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yb\\/r\\/VSHsneAFx_p.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"cX+JuEO\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i1CO4\\/yf\\/l\\/en_US\\/p7uEHHMSyiK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"rMvrLP1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iijT4\\/y_\\/l\\/en_US\\/siZ2Q7mfsHAn8zGt7h5onZ-yRAdn27OANzKleYcveLTxhFEdrHpFVbBJHh55U9dNXhkyfcWY8oWGk9EFMjx6MT8exMZQV3Pf2rPUEJpVyQqdGvBuPECb_Q_WcT-ToG7CMAUUcbuyUQIVHxGbAdFKB-RZjOu_LZxx_DC_6VFnNot06Ay9UROyvFK0Dnh1alrYtZnwpQhfJSpcpSW7e8XSj4Sp30401y_8ZBWCTZi-iSnoOIYgX8zmg-O2XpObhWAMomf0mD7_Otr1WY8W0osIU1tHFn46BQ_9nMgdiPYBbEBYhBGlsvGIMcTuD-6022zW0KeIyygUHj.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"HHMg2kK\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ijUf4\\/yb\\/l\\/en_US\\/3YigL2IcjwrvB9taUdFJNHgROZDMpVFJgrfOrQmbHYEf5w6xLKqk6qEEthKmVitIx3geEWXcTi5qZ1gRuevHpq6aT0h7vNyvgMxHzlChpadHunBQqNfpW5XTLMpNBFYh14r5OloNdVW5J56_-nHq21OpqAHClMyh6ShpPhTF0SkaSU0ZUIHFSmds5lXeU2KXUQEOtlUXwZ3rFFHFbidK7stmVOWBhQgMDf_CxrF7mZwNgBAbwHzHz47Mrnv15.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":5,0,84,298,0,0,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"OQt4KUI\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iXXr4\\/y4\\/l\\/en_US\\/ZCAwVi2rsBDbSQ1e50Qng9BRy3-v_yeqQW7abA3P1pdDAH0-eA7qtnjgvGMc2MIWGyt1mvKZH71fAxBLV5miH5QGZljJSmHFgwZ2zcNBSoA-iWqSLdMjgonSigE_oHSQ0lw3yxsIAHswcRn4O7X_7M_IGvJ8E8InnuprX3_ehGtJkD9ybtKHy_VESiOwJoJc-I4o350WKguSKnK_KQexMsmxlBo-Im_Zf-0rsxdRg5g2T63Pd6qTSJVpox2B7-qkSyagmUcBSYkFX96BNdkYZMSzy780gRW-bSLguFou8KQMV3_upF5YVr8ZApMHDmERno4aJi9v_Z.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"W3hrXJU\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3igmh4\\/yo\\/l\\/en_US\\/BrvyYVmICUhAjDcdepN9q9JficXhU7UAfzaV-nqkDrQ4gVOILqfvP3IZteQi7ghzx1c2m_T10eGdzHlCMRFaUBduR2_MMvj8_l5hdRCl802ioDIEqSHqzVVTLxsgpGO5GUUH9wF3HY8bHcOW3P8AOj72tVNPDJIIZxHGrTCHECZC83utCc3J4Uu-rudH2P4qLbOQGCN4eREa-u6Hni_PDh_zzFVUhyDf3bgUY96FCfju7iPI9BGX8q6IpYhOkjxpPOBTLvHTOP34w62s8Ozeq2jgOO-DKUyG5pzGzAayHci6BvUc16OaGkbnqkW9br5khHLxhCIYPR.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"xCiTfbB\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yE\\/l\\/0,cross\\/BB68VSfNzsL1yp4PJV-Vz-z6w-B6eMgH80-97Ub6KlkHnuCD99GG8yX9flWAwFBOozspnSw7Jc8DPKIst33dIS_h8DOXkSsgn_e33bgIjXbYEClunE4cb6HzpQjUXQboECnsvZHU_BvXIWhL4OkfYnoLgttIs6yMTBtm7OC3pFaawyHf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"HniVJ+M\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/r\\/Oqqs0l4JHQ02MWrxszkORH3b_CXzdi38YqP62B1XwsXTTL8dTFR5gDSZmjBW8burtDkPQqHbNhoanTF3hdzBsrj_IWdGczRDltjRHENyavGFlyfWd5h9M8h9uVOJcOP86f-gw46FGNR_AFqSOacWRyVHGkxEvZ5eTdCiPqVFOwA5Htm-qY1k5_CeNlrJFKaOlKKE4KyZC2coUfGe9deFDz0FA2xuUxdC1AEtagAJr2bykU7VlS3ROf5Nks8dmC4Ll0Lto66DJiubrUiDRqh1ioS0shW0C2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"yD7sROd\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/r\\/YTWlWA9jUz9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"v8Pu5wR\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/9KR3OsAB-i2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"+VhMrk\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yN\\/r\\/8RwW0k9W8nq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"HfGZtSr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/QdF1FAOj3XM.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1}},\"compMap\":{\"IGWebBloksApp\":{\"r\":[\"RaA31FN\",\"51fcjGV\",\"yxuOpZn\",\"qpyrtMy\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"cOGwS2G\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"e8bJQ8q\",\"CbVciYk\",\"RgUx6NB\",\"tmOAXuP\",\"AsuDyfD\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"WYJHsrI\",\"PJevOFh\",\"rDzHHGL\",\"8aTFOzW\",\"gxHwpBE\",\"DsWfgKJ\",\"lgaAFHU\",\"AaClBt7\",\"qS64MW1\",\"68MbJvY\",\"LGJRwGF\",\"TQAZkKv\",\"Zx0r1CJ\",\"+vXa6Lj\",\"ImCNdhg\",\"G83kG5B\",\"gpD7gKM\",\"GBulvfh\",\"bsXsmKk\",\"oZORzhP\",\"ShQo0xA\",\"UaJ6Fae\",\"bgEvhmj\",\"Nx6u9Jq\",\"Up8o120\",\"nQecA5e\",\"aVqoX25\",\"\\/cMNGhx\",\"DCNucsL\",\"ICkzBzx\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"lA0A1O8\",\"f7Ym7Sv\",\"m4q5gIa\",\"8MwX2jo\",\"SagIiXi\",\"obEmI58\",\"pp\\/2fvu\",\"oEUvNGb\",\"bSZaoMi\",\"UVEzwS2\",\"f0Nl9pe\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometErrorRoot.react\":{\"r\":[\"rDzHHGL\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometKeyCommandWrapperDialog.react\":{\"r\":[\"rDzHHGL\",\"6oh\\/uBh\",\"+L0X93S\",\"RaA31FN\",\"wYUxKHn\",\"MIwFPq4\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometModifiedKeyCommandWrapperDialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"6oh\\/uBh\",\"hXjPl2V\",\"iQc1shL\",\"RaA31FN\",\"hTAZzFI\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"QPLInspector\":{\"r\":[\"Sboo2ZQ\"],\"be\":1},\"ODS\":{\"r\":[\"vLAMZRo\",\"6KCwpsF\"],\"be\":1},\"PolarisErrorRoot.react\":{\"r\":[\"RaA31FN\",\"Zx0r1CJ\",\"8aTFOzW\",\"LGJRwGF\",\"\\/xWlKkI\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"1BRKNYj\",\"f0Nl9pe\",\"PJevOFh\",\"iuENYaU\",\"DsWfgKJ\",\"kWwybab\",\"lgaAFHU\",\"SsSrcC4\",\"8MwX2jo\",\"\\/cMNGhx\",\"Nx6u9Jq\",\"TQAZkKv\",\"gxHwpBE\",\"rDzHHGL\",\"nQecA5e\",\"e8bJQ8q\",\"+vXa6Lj\",\"iE2l7jW\",\"DCNucsL\",\"xivIod5\",\"m4q5gIa\",\"f7Ym7Sv\",\"bsXsmKk\",\"CbVciYk\",\"bSZaoMi\",\"ShQo0xA\",\"lA0A1O8\",\"bgEvhmj\",\"JYW18Ti\",\"GBulvfh\",\"AsuDyfD\",\"oZORzhP\",\"ICkzBzx\",\"oEUvNGb\",\"Up8o120\",\"RgUx6NB\",\"pm3z9kc\",\"68MbJvY\",\"pp\\/2fvu\",\"ms3f9xJ\",\"aVqoX25\",\"gpD7gKM\",\"dioMJ9z\",\"G83kG5B\",\"cOGwS2G\",\"SagIiXi\",\"UaJ6Fae\",\"obEmI58\",\"WYJHsrI\",\"YYCsR5a\",\"vLAMZRo\",\"yxuOpZn\",\"51fcjGV\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"PolarisIncomingCall.react\"],\"r\":[\"m6VVYrH\",\"GltrS7H\",\"pARoKZ4\",\"OW1kw59\",\"TJ2LIPj\",\"ht8qD46\",\"3vB8LuQ\",\"A5prXCT\",\"mlxztRz\",\"iTm\\/k9J\"]},\"be\":1},\"PolarisHttp500UnexpectedErrorPage.react\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"G83kG5B\",\"rDzHHGL\",\"1BRKNYj\",\"ICkzBzx\",\"\\/xWlKkI\",\"wYUxKHn\",\"vLAMZRo\",\"UaJ6Fae\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisBDClientSignalCollectionTrigger\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"g4lhZxV\",\"yWcJ8lq\",\"rDzHHGL\",\"sP1wABL\",\"l5HqvCB\",\"lwZReTr\",\"wYUxKHn\",\"vLAMZRo\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisAsyncBloksIGLineChartV2\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"wYUxKHn\",\"j5Ia\\/+m\",\"CxpEI\\/m\",\"UaJ6Fae\",\"Nx6u9Jq\",\"ms3f9xJ\",\"rDzHHGL\",\"+vXa6Lj\",\"nQecA5e\",\"JYW18Ti\",\"TWaSLum\",\"K2Zj+QB\",\"oZORzhP\",\"YYCsR5a\",\"HnCMbju\",\"oEUvNGb\",\"ShQo0xA\",\"8MwX2jo\",\"dioMJ9z\",\"G83kG5B\",\"vLAMZRo\",\"m4q5gIa\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisHttp404Page.react\":{\"r\":[\"RaA31FN\",\"Zx0r1CJ\",\"8aTFOzW\",\"LGJRwGF\",\"\\/xWlKkI\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"1BRKNYj\",\"f0Nl9pe\",\"PJevOFh\",\"iuENYaU\",\"DsWfgKJ\",\"kWwybab\",\"lgaAFHU\",\"SsSrcC4\",\"8MwX2jo\",\"\\/cMNGhx\",\"Nx6u9Jq\",\"TQAZkKv\",\"gxHwpBE\",\"rDzHHGL\",\"nQecA5e\",\"e8bJQ8q\",\"+vXa6Lj\",\"iE2l7jW\",\"DCNucsL\",\"xivIod5\",\"m4q5gIa\",\"f7Ym7Sv\",\"bsXsmKk\",\"CbVciYk\",\"bSZaoMi\",\"ShQo0xA\",\"lA0A1O8\",\"bgEvhmj\",\"JYW18Ti\",\"GBulvfh\",\"AsuDyfD\",\"oZORzhP\",\"ICkzBzx\",\"oEUvNGb\",\"Up8o120\",\"RgUx6NB\",\"pm3z9kc\",\"68MbJvY\",\"pp\\/2fvu\",\"ms3f9xJ\",\"aVqoX25\",\"gpD7gKM\",\"dioMJ9z\",\"G83kG5B\",\"cOGwS2G\",\"SagIiXi\",\"UaJ6Fae\",\"obEmI58\",\"WYJHsrI\",\"YYCsR5a\",\"vLAMZRo\",\"yxuOpZn\",\"51fcjGV\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"PolarisIncomingCall.react\"],\"r\":[\"m6VVYrH\",\"GltrS7H\",\"pARoKZ4\",\"OW1kw59\",\"TJ2LIPj\",\"ht8qD46\",\"3vB8LuQ\",\"A5prXCT\",\"mlxztRz\",\"iTm\\/k9J\"]},\"be\":1},\"PolarisBugReportModal.react\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"wYUxKHn\",\"1BRKNYj\",\"ms3f9xJ\",\"PJevOFh\",\"DsWfgKJ\",\"oZORzhP\",\"LGJRwGF\",\"TQAZkKv\",\"rDzHHGL\",\"Zx0r1CJ\",\"gpD7gKM\",\"Up8o120\",\"iuENYaU\",\"xivIod5\",\"nQecA5e\",\"dioMJ9z\",\"9KJrUco\",\"gxHwpBE\",\"pp\\/2fvu\",\"aVqoX25\",\"lgaAFHU\",\"f7Ym7Sv\",\"yxuOpZn\",\"ShQo0xA\",\"\\/xWlKkI\",\"\\/cMNGhx\",\"SsSrcC4\",\"+vXa6Lj\",\"bSZaoMi\",\"DCNucsL\",\"RgUx6NB\",\"3gEWTNm\",\"obEmI58\",\"YYCsR5a\",\"ICkzBzx\",\"GLsKCyO\",\"UaJ6Fae\",\"nF8umvm\",\"vLAMZRo\",\"GBulvfh\",\"bgEvhmj\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisDesktopStoriesPage.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"4SBVdv7\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"JbVkxQr\",\"ImCNdhg\",\"EyeE1V7\",\"G83kG5B\",\"vvTbhsc\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"UaJ6Fae\",\"lgaAFHU\",\"n3OReDX\",\"DCNucsL\",\"aVqoX25\",\"GBulvfh\",\"bsXsmKk\",\"RgUx6NB\",\"jkOHTTH\",\"+vXa6Lj\",\"m4q5gIa\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"TQAZkKv\",\"gpD7gKM\",\"rDzHHGL\",\"Zx0r1CJ\",\"e8bJQ8q\",\"CbVciYk\",\"yxuOpZn\",\"Up8o120\",\"iE2l7jW\",\"f7Ym7Sv\",\"pm3z9kc\",\"SagIiXi\",\"51fcjGV\",\"bu6zhrA\",\"1BRKNYj\",\"ev9AzR\\/\",\"pp\\/2fvu\",\"iuENYaU\",\"bSZaoMi\",\"lA0A1O8\",\"TSKmWI8\",\"ShQo0xA\",\"obEmI58\",\"AsuDyfD\",\"ICkzBzx\",\"Nx6u9Jq\",\"68MbJvY\",\"oEUvNGb\",\"gxHwpBE\",\"bgEvhmj\",\"ms3f9xJ\",\"dioMJ9z\",\"WYJHsrI\",\"cOGwS2G\",\"f0Nl9pe\",\"ClW4KJN\",\"vLAMZRo\",\"8MwX2jo\",\"e577y0g\",\"e37RKYh\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"VideoPlayerSpinner.react\",\"VideoPlayerCaptionsArea.react\",\"CometTooltipDeferredImpl.react\",\"oz-player\"]},\"rds\":{\"m\":[\"PolarisODS\",\"PolarisStoryModals.react\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"VideoPlayerWithLiveVideoInterruptedOverlay.react\"],\"r\":[\"jJljVye\",\"SLuMFyC\",\"3q99Ilj\",\"uKsbV15\",\"GirQBwl\",\"F7Yyqnn\",\"ECNt4aT\",\"RtDBsbo\",\"0o3vj9b\"]},\"be\":1},\"PolarisMobileStoriesPage.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"4kCFpD3\",\"G83kG5B\",\"anb0L73\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"cBaTsIy\",\"DCNucsL\",\"aVqoX25\",\"GBulvfh\",\"bsXsmKk\",\"RgUx6NB\",\"+vXa6Lj\",\"m4q5gIa\",\"nQecA5e\",\"LGJRwGF\",\"TQAZkKv\",\"gpD7gKM\",\"rDzHHGL\",\"e8bJQ8q\",\"Up8o120\",\"iE2l7jW\",\"f7Ym7Sv\",\"93HC0Re\",\"pm3z9kc\",\"SagIiXi\",\"51fcjGV\",\"4g6DzU1\",\"1BRKNYj\",\"UaJ6Fae\",\"iuENYaU\",\"lgaAFHU\",\"bSZaoMi\",\"3UNYkPm\",\"CbVciYk\",\"pp\\/2fvu\",\"obEmI58\",\"ShQo0xA\",\"AsuDyfD\",\"ICkzBzx\",\"lA0A1O8\",\"Nx6u9Jq\",\"68MbJvY\",\"oEUvNGb\",\"\\/y6k9ah\",\"g+ugZ1+\",\"PwnKoR\\/\",\"ms3f9xJ\",\"dioMJ9z\",\"yxuOpZn\",\"erF32yE\",\"cOGwS2G\",\"oZORzhP\",\"gxHwpBE\",\"f0Nl9pe\",\"WYJHsrI\",\"Zx0r1CJ\",\"vLAMZRo\",\"bgEvhmj\",\"8MwX2jo\",\"e577y0g\",\"e37RKYh\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"VideoPlayerSpinner.react\",\"VideoPlayerCaptionsArea.react\",\"CometTooltipDeferredImpl.react\",\"oz-player\"]},\"rds\":{\"m\":[\"PolarisODS\",\"PolarisStoryModals.react\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"VideoPlayerWithLiveVideoInterruptedOverlay.react\"],\"r\":[\"jJljVye\",\"SLuMFyC\",\"3q99Ilj\",\"uKsbV15\",\"GirQBwl\",\"F7Yyqnn\",\"ECNt4aT\",\"RtDBsbo\",\"0o3vj9b\"]},\"be\":1},\"PolarisFRXReportModal.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"bsXsmKk\",\"WSrXOyK\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"DsWfgKJ\",\"YYCsR5a\",\"cOGwS2G\",\"ms3f9xJ\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"W+rZutK\",\"mxLmC3V\",\"pm3z9kc\",\"PJevOFh\",\"8aTFOzW\",\"e8bJQ8q\",\"rFlA2V8\",\"TQAZkKv\",\"DCNucsL\",\"aVqoX25\",\"WYJHsrI\",\"RgUx6NB\",\"m4q5gIa\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"gpD7gKM\",\"rDzHHGL\",\"Zx0r1CJ\",\"SagIiXi\",\"CbVciYk\",\"iE2l7jW\",\"+vXa6Lj\",\"51fcjGV\",\"gxHwpBE\",\"UaJ6Fae\",\"pp\\/2fvu\",\"G83kG5B\",\"iuENYaU\",\"oEUvNGb\",\"lgaAFHU\",\"bSZaoMi\",\"prUu57P\",\"1BRKNYj\",\"AsuDyfD\",\"lA0A1O8\",\"yxuOpZn\",\"Nx6u9Jq\",\"68MbJvY\",\"kWwybab\",\"GBulvfh\",\"f7Ym7Sv\",\"ICkzBzx\",\"ShQo0xA\",\"dioMJ9z\",\"ImCNdhg\",\"f0Nl9pe\",\"Up8o120\",\"obEmI58\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"CometTooltip.react\":{\"r\":[\"rDzHHGL\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"CometSuspenseFalcoEvent\",\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"liveQueryFetchWithWWWInitial\":{\"r\":[\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\",\"rDzHHGL\"]},\"be\":1},\"PolarisPrivacyFlowLauncher.react\":{\"r\":[\"6KCwpsF\",\"wYUxKHn\",\"lNcRReC\",\"rDzHHGL\",\"xivIod5\",\"b7jAzg\\/\",\"pp\\/2fvu\",\"EzSlDwr\",\"\\/cMNGhx\",\"UaJ6Fae\",\"vLAMZRo\",\"7ckTzJJ\",\"RaA31FN\",\"JYW18Ti\",\"\\/xWlKkI\",\"kWwybab\",\"e8bJQ8q\",\"ms3f9xJ\",\"PJevOFh\",\"Nx6u9Jq\",\"TQAZkKv\",\"DCNucsL\",\"nQecA5e\",\"f7Ym7Sv\",\"SagIiXi\",\"+vXa6Lj\",\"AsuDyfD\",\"lA0A1O8\",\"lgaAFHU\",\"oZORzhP\",\"YYCsR5a\",\"ZYgq4v1\",\"aVqoX25\",\"yxuOpZn\",\"68MbJvY\",\"51fcjGV\",\"oEUvNGb\",\"obEmI58\",\"ShQo0xA\",\"bSZaoMi\",\"ICkzBzx\",\"dioMJ9z\",\"G83kG5B\",\"m4q5gIa\",\"WYJHsrI\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisCreationModal.react\":{\"r\":[\"RaA31FN\",\"6yZSQ\\/\\/\",\"ioLctzh\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"5nrAkeG\",\"9E2DBRy\",\"DsWfgKJ\",\"YYCsR5a\",\"bcIiNV2\",\"ms3f9xJ\",\"6KCwpsF\",\"47qoW\\/f\",\"wYUxKHn\",\"ImCNdhg\",\"fSczSRB\",\"QvFDbhy\",\"OJGpUeV\",\"RgUx6NB\",\"XHdXHcA\",\"4oDhgvB\",\"8VDQs1D\",\"pm3z9kc\",\"1BRKNYj\",\"WYJHsrI\",\"FOzv+Zj\",\"PJevOFh\",\"8aTFOzW\",\"iE2l7jW\",\"UaJ6Fae\",\"xivIod5\",\"lgaAFHU\",\"TQAZkKv\",\"x7h4g48\",\"Zx0r1CJ\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"rDzHHGL\",\"gpD7gKM\",\"\\/cMNGhx\",\"e8bJQ8q\",\"SagIiXi\",\"DCNucsL\",\"ICkzBzx\",\"CbVciYk\",\"Up8o120\",\"iuENYaU\",\"m4q5gIa\",\"dioMJ9z\",\"+vXa6Lj\",\"bsXsmKk\",\"G83kG5B\",\"gxHwpBE\",\"pp\\/2fvu\",\"bSZaoMi\",\"ShQo0xA\",\"obEmI58\",\"lA0A1O8\",\"GBulvfh\",\"AsuDyfD\",\"yxuOpZn\",\"68MbJvY\",\"aVqoX25\",\"kWwybab\",\"f7Ym7Sv\",\"cOGwS2G\",\"oEUvNGb\",\"bgEvhmj\",\"51fcjGV\",\"Nx6u9Jq\",\"f0Nl9pe\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisLiveCreationModal.react\":{\"r\":[\"RaA31FN\",\"1XKrke9\",\"\\/cMNGhx\",\"bsXsmKk\",\"ms3f9xJ\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"DsWfgKJ\",\"YYCsR5a\",\"cOGwS2G\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"TQAZkKv\",\"q\\/fczbW\",\"e8bJQ8q\",\"8a1mZN2\",\"1b2FW87\",\"pm3z9kc\",\"PJevOFh\",\"8aTFOzW\",\"xSCpRjR\",\"obEmI58\",\"68MbJvY\",\"Xa\\/Vyod\",\"UaJ6Fae\",\"ImCNdhg\",\"yxuOpZn\",\"DCNucsL\",\"aVqoX25\",\"gpD7gKM\",\"rDzHHGL\",\"WYJHsrI\",\"RgUx6NB\",\"oZORzhP\",\"CbVciYk\",\"m4q5gIa\",\"nQecA5e\",\"LGJRwGF\",\"Zx0r1CJ\",\"SagIiXi\",\"ICkzBzx\",\"iE2l7jW\",\"dioMJ9z\",\"+vXa6Lj\",\"8MwX2jo\",\"G83kG5B\",\"51fcjGV\",\"gxHwpBE\",\"1BRKNYj\",\"iuENYaU\",\"kWwybab\",\"pp\\/2fvu\",\"lgaAFHU\",\"oEUvNGb\",\"bSZaoMi\",\"GBulvfh\",\"AsuDyfD\",\"lA0A1O8\",\"f7Ym7Sv\",\"Nx6u9Jq\",\"ShQo0xA\",\"bgEvhmj\",\"f0Nl9pe\",\"Up8o120\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisSwitchAccountsModal.react\":{\"r\":[\"RaA31FN\",\"TQAZkKv\",\"l8yvi67\",\"SsSrcC4\",\"JYW18Ti\",\"6KCwpsF\",\"Zx0r1CJ\",\"\\/xWlKkI\",\"YYCsR5a\",\"xivIod5\",\"wYUxKHn\",\"obEmI58\",\"WYJHsrI\",\"cOGwS2G\",\"AsuDyfD\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"lgaAFHU\",\"LGJRwGF\",\"68MbJvY\",\"Nx6u9Jq\",\"G83kG5B\",\"CbVciYk\",\"GBulvfh\",\"ImCNdhg\",\"m4q5gIa\",\"gpD7gKM\",\"rDzHHGL\",\"gxHwpBE\",\"bsXsmKk\",\"RgUx6NB\",\"oZORzhP\",\"f7Ym7Sv\",\"51fcjGV\",\"bgEvhmj\",\"Up8o120\",\"lA0A1O8\",\"ShQo0xA\",\"nQecA5e\",\"kWwybab\",\"\\/cMNGhx\",\"e8bJQ8q\",\"DCNucsL\",\"yxuOpZn\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"8MwX2jo\",\"SagIiXi\",\"UaJ6Fae\",\"pp\\/2fvu\",\"f0Nl9pe\",\"bSZaoMi\",\"AD1bWlA\",\"oEUvNGb\",\"+vXa6Lj\",\"aVqoX25\",\"ICkzBzx\",\"xpajmW8\",\"McMbPS1\",\"ccOBUXC\",\"vLAMZRo\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"SwitcherButtonTappedFalcoEvent\",\"ContextualConfig\",\"PolarisODS\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"CometToast.react\",\"CometRelayEF\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"O8ghqVf\",\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"SecuredActionChallengePasswordDialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"PJevOFh\",\"ueGkFVV\",\"8Za3h9N\",\"UrOsroS\",\"wYUxKHn\",\"RaA31FN\",\"vLAMZRo\",\"6KCwpsF\",\"tsaNjL0\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\",\"CometExceptionDialog.react\"]},\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"FBBrowserPasswordEncryption\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"CometToast.react\",\"CometRelayEF\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"SecuredActionChallengeSSODialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"PJevOFh\",\"Na1E3Dy\",\"wYUxKHn\",\"RaA31FN\",\"Is9sUvu\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\",\"CometExceptionDialog.react\"]},\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"CometToast.react\",\"CometRelayEF\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"WorkSSOReauthDialog.react\":{\"r\":[\"M0ByNMu\",\"rDzHHGL\",\"YoHC+Yu\",\"mhiCfI5\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"KeyBindDialog.react\":{\"r\":[\"kleA10d\",\"ZpmIcGw\",\"rDzHHGL\",\"x5opEZT\",\"GltrS7H\",\"UrOsroS\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisDirectInboxPopover\":{\"r\":[\"RaA31FN\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"8rpQEHL\",\"YYCsR5a\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"TQAZkKv\",\"e8bJQ8q\",\"ImCNdhg\",\"vddimCz\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"obEmI58\",\"68MbJvY\",\"UaJ6Fae\",\"yxuOpZn\",\"gpD7gKM\",\"rDzHHGL\",\"WYJHsrI\",\"bsXsmKk\",\"RgUx6NB\",\"oZORzhP\",\"oJPpsv6\",\"CbVciYk\",\"nQecA5e\",\"LGJRwGF\",\"Nx6u9Jq\",\"Zx0r1CJ\",\"\\/cMNGhx\",\"m4q5gIa\",\"DCNucsL\",\"ICkzBzx\",\"Up8o120\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"GBulvfh\",\"8MwX2jo\",\"G83kG5B\",\"SagIiXi\",\"51fcjGV\",\"gxHwpBE\",\"pp\\/2fvu\",\"lgaAFHU\",\"bSZaoMi\",\"lA0A1O8\",\"cOGwS2G\",\"AsuDyfD\",\"f7Ym7Sv\",\"aVqoX25\",\"ShQo0xA\",\"bgEvhmj\",\"+vXa6Lj\",\"fmKqHO6\",\"f0Nl9pe\",\"cX+JuEO\",\"kWwybab\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisActivityFeedBox.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"51fcjGV\",\"rMvrLP1\",\"SsSrcC4\",\"JYW18Ti\",\"HHMg2kK\",\"\\/xWlKkI\",\"YYCsR5a\",\"cOGwS2G\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"OQt4KUI\",\"AsuDyfD\",\"pm3z9kc\",\"PJevOFh\",\"rDzHHGL\",\"8aTFOzW\",\"DsWfgKJ\",\"nQecA5e\",\"lgaAFHU\",\"TQAZkKv\",\"DCNucsL\",\"bsXsmKk\",\"RgUx6NB\",\"f0Nl9pe\",\"m4q5gIa\",\"oZORzhP\",\"LGJRwGF\",\"gpD7gKM\",\"W3hrXJU\",\"Zx0r1CJ\",\"e8bJQ8q\",\"aVqoX25\",\"CbVciYk\",\"yxuOpZn\",\"iE2l7jW\",\"lA0A1O8\",\"kWwybab\",\"G83kG5B\",\"gxHwpBE\",\"1BRKNYj\",\"obEmI58\",\"UaJ6Fae\",\"pp\\/2fvu\",\"+vXa6Lj\",\"iuENYaU\",\"oEUvNGb\",\"bSZaoMi\",\"68MbJvY\",\"GBulvfh\",\"xCiTfbB\",\"SagIiXi\",\"Nx6u9Jq\",\"ms3f9xJ\",\"f7Ym7Sv\",\"ICkzBzx\",\"WYJHsrI\",\"ShQo0xA\",\"bgEvhmj\",\"dioMJ9z\",\"Up8o120\",\"vLAMZRo\",\"8MwX2jo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisDirectMQTT\":{\"r\":[\"RaA31FN\",\"HniVJ+M\",\"6KCwpsF\",\"wYUxKHn\",\"pm3z9kc\",\"yD7sROd\",\"rDzHHGL\",\"JYW18Ti\",\"xivIod5\",\"pp\\/2fvu\",\"v8Pu5wR\",\"\\/cMNGhx\",\"+VhMrk\\/\",\"HfGZtSr\",\"bSZaoMi\",\"TQAZkKv\",\"UaJ6Fae\",\"e8bJQ8q\",\"vLAMZRo\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1}},\"rsrcTags\":[\"u_0_0_71\",\"u_0_1_xu\"]})});\nrequireLazy([\"CometResourceScheduler\"],function(c){c.registerHighPriHashes([\"e37RKYh\",\"e577y0g\"])});\nrequireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierTwoBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierTwoInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"cr:964538\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1]],\"require\":[[\"CometTooltipDeferredImpl.react\"],[\"maybeRemoveElement\"],[\"GlobalVideoPortsImpl.react\"],[\"CometExceptionDialog.react\"],[\"CometCalloutImpl.react\"],[\"emptyFunction\",\"thatReturns\",[\"RequireDeferredReference\"],[[{\"__dr\":\"CometTooltipDeferredImpl.react\"},{\"__dr\":\"maybeRemoveElement\"},{\"__dr\":\"GlobalVideoPortsImpl.react\"},{\"__dr\":\"CometExceptionDialog.react\"},{\"__dr\":\"CometCalloutImpl.react\"}]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"CometTooltipDeferredImpl.react\",\"maybeRemoveElement\",\"GlobalVideoPortsImpl.react\",\"CometExceptionDialog.react\",\"CometCalloutImpl.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"CometTooltipDeferredImpl.react\",\"maybeRemoveElement\",\"GlobalVideoPortsImpl.react\",\"CometExceptionDialog.react\",\"CometCalloutImpl.react\"],\"css\"]]]});});});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierTwoEnd\");</script>\n<script type=\"application/json\" data-content-len=\"83\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierTwoEnd\"]]]}</script>\n\n<script>qpl_inl(\"7191084768081846440\",\"tierThree\");</script>\n<script type=\"application/json\" data-content-len=\"82\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierThree\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierThree\",327);</script>\n<script type=\"application/json\" data-content-len=\"93\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierThree\",327]]]}</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ya/l/0,cross/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"bxData\":{\"6022\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yZ\\/r\\/WuT1LYDBD4A.m4a\"}},\"clpData\":{\"1949898\":{\"r\":1,\"s\":1},\"1743887\":{\"r\":1,\"s\":1},\"1828945\":{\"r\":100,\"s\":1},\"1848815\":{\"r\":10000,\"s\":1},\"819\":{\"r\":1,\"s\":1},\"1744057\":{\"r\":500,\"s\":1},\"1744058\":{\"r\":5000,\"s\":1},\"1744059\":{\"r\":10000,\"s\":1},\"1744060\":{\"r\":1000,\"s\":1},\"1857112\":{\"r\":1,\"s\":1},\"1828905\":{\"r\":1,\"s\":1},\"1871697\":{\"r\":1,\"s\":1},\"1764786\":{\"r\":1,\"s\":1},\"1823926\":{\"r\":1,\"s\":1},\"1755537\":{\"r\":1,\"s\":1},\"1873550\":{\"r\":10000,\"s\":1},\"1743095\":{\"r\":1,\"s\":1}},\"gkxData\":{\"307\":{\"result\":true,\"hash\":\"AT5dPMZBMiNY0f7uLC4\"},\"762\":{\"result\":false,\"hash\":\"AT7XePNdehhQhxt4pQY\"},\"2795\":{\"result\":false,\"hash\":\"AT5ilL0A5sDVhuaBELo\"},\"2810\":{\"result\":false,\"hash\":\"AT7dAsBSsZL01JO_QJo\"},\"5639\":{\"result\":true,\"hash\":\"AT5SF61ZadJ9LozlPn8\"},\"778292\":{\"result\":false,\"hash\":\"AT574OhXHwX0kRP2qlA\"},\"832242\":{\"result\":false,\"hash\":\"AT7QZmREZ7b0HQdOF18\"},\"945829\":{\"result\":true,\"hash\":\"AT6KFs8jy_GkmgnU0Aw\"},\"968609\":{\"result\":true,\"hash\":\"AT7nKteWCVYK6uN6DUI\"},\"1001007\":{\"result\":false,\"hash\":\"AT54HpnriRBxXJ_M4lU\"},\"1066746\":{\"result\":false,\"hash\":\"AT55_E5b8Sj7u5rUCzA\"},\"1166607\":{\"result\":false,\"hash\":\"AT7xrOkGBcaF8I5uKoY\"},\"1196\":{\"result\":false,\"hash\":\"AT7JN3eRi_TkojttTEU\"},\"6258\":{\"result\":false,\"hash\":\"AT5ZFurVOaTLk7IyvfU\"},\"1341692\":{\"result\":false,\"hash\":\"AT6ztF4pPshu3yZQCUc\"},\"1334580\":{\"result\":false,\"hash\":\"AT6P8Id36DnRE-rxbYM\"},\"5269\":{\"result\":false,\"hash\":\"AT7dQXDqO_qPX5n-kFk\"},\"574\":{\"result\":false,\"hash\":\"AT5l2P5ytV2bv8xHNxQ\"},\"871\":{\"result\":true,\"hash\":\"AT4vyfQGHTBrTQa9woI\"},\"1626\":{\"result\":false,\"hash\":\"AT6XwrJGGF9CvtwsosI\"},\"1799\":{\"result\":false,\"hash\":\"AT6Id9SGNjhz9Osh00M\"},\"2674\":{\"result\":false,\"hash\":\"AT6LknPzbQEjKsuxQNE\"},\"2819\":{\"result\":false,\"hash\":\"AT77OwnXENquugNcSNY\"},\"1652843\":{\"result\":false,\"hash\":\"AT6uh9NWRY4QEQoY_Jg\"},\"1352\":{\"result\":true,\"hash\":\"AT5QIimySNH929zXv4c\"}},\"ixData\":{\"485124\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":24,\"h\":24,\"p\":\"-100px -99px\",\"sz\":\"auto\"}},\"qexData\":{\"37\":{\"r\":null},\"130\":{\"r\":null},\"131\":{\"r\":null},\"656\":{\"r\":null},\"657\":{\"r\":null},\"660\":{\"r\":null},\"19\":{\"r\":null},\"245\":{\"r\":null},\"296\":{\"r\":null},\"379\":{\"r\":null},\"478\":{\"r\":null},\"1742\":{\"r\":null},\"633\":{\"r\":null}},\"justknobxData\":{\"317\":{\"r\":16}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"gNzyyn\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEwU4\\/y-\\/l\\/en_US\\/KKZf8FX1sT4ozwG_xmxgK87lOXZygpG8_2QF11C8Kc69HUxMHl9LidgmLT6R-X0Ih2WchIFc77ydpiZQLDmBv2K-_nOseCHUKy2h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLKhsU-pEZX1mw1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"lOLXvja\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/z3tBjWqvW0-.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":39365\",\"m\":\"1006847381_longtail\",\"nc\":1},\"PxF2nsc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/Dy8CTDeaF7j.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":546\",\"m\":\"1006847381_main\",\"nc\":1},\"e5d6Ztw\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/qClHE3ggsTY.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":353\",\"m\":\"1006847381_main\",\"nc\":1},\"kfpwlze\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/PE87llWkhUd.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":714\",\"m\":\"1006847381_main\",\"nc\":1},\"pPp+jIc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/Qg9dZGuEzHE.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":82\",\"m\":\"1006847381_main\",\"nc\":1},\"SkFr2Ae\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVNy4\\/yM\\/l\\/en_US\\/5PVc6Qpbasq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":58\",\"m\":\"1006847381_main\",\"nc\":1},\"W5crAoY\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTQy4\\/yT\\/l\\/en_US\\/X7C_iLj0yRa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":710\",\"m\":\"1006847381_main\",\"nc\":1},\"eivexpP\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0aW9AeuaFOnx_.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388,743\",\"nc\":1},\"TETat5y\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iPvu4\\/yw\\/l\\/en_US\\/w3u7PbaKnVZ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":177\",\"m\":\"1006847381_main\",\"nc\":1},\"kho7\\/jW\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iK1C4\\/ye\\/l\\/en_US\\/w3u7PbaKnVZYhiQUqTmFFHKWg4P5lmhwJqClHE3ggsTYDy8CTDeaF7j_mTNodGA1yKQg9dZGuEzHEg1UC9KyubLfPE87llWkhUdbSqxIEuBnPF2KtBqbM9U8F14xtbHg3WbC6P9n2F2AKCIJJdX6BV3dPz8c0H7ihoY7nxRdJbjnMUA7AD0vIwbJotB.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":177,42,126,353,546,770,82,109,714,24571,30537,25361,24726,24915,24783,24582,24725\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"pz9YUL2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/l\\/0,cross\\/eShCSGw11YpGm7TiUB88U6D3LZcWILYuplGwdDxZWs8d2mma9gOZ0yhRP1ehFw2w0aW9AeuaFOnx_2OHDOK2lZe-ySOd8EEugVVzHJWgay9vgV.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":461,572,530,1049,141,388,743,967,1071,24724\",\"nc\":1},\"yP6nl4x\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/SkVQ6fLU1EJ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":40\",\"m\":\"1006847381_main\",\"nc\":1},\"c4jwoso\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i2TV4\\/y5\\/l\\/en_US\\/aPSIKWlVJZP.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":373\",\"m\":\"1006847381_main\",\"nc\":1},\"ixymreW\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3izyN4\\/yR\\/l\\/en_US\\/RDR1tSXNcuC.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":1132\",\"m\":\"1006847381_main\",\"nc\":1},\"H7A1\\/vo\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3XV4\\/ym\\/l\\/en_US\\/B-73iZvdSs6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":1070\",\"m\":\"1006847381_main\",\"nc\":1},\"qiPpWo6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLl54\\/y4\\/l\\/en_US\\/uRty0IB2ck6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":379\",\"m\":\"1006847381_main\",\"nc\":1},\"uen0LVB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i7664\\/y8\\/l\\/en_US\\/ktG5_klR3PO.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":947\",\"m\":\"1006847381_main\",\"nc\":1},\"grEoa8Y\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3if094\\/ys\\/l\\/en_US\\/Woh9q-loyHP.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":431\",\"m\":\"1006847381_main\",\"nc\":1},\"Pfkc54B\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/YBirLTG403L.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37184\",\"m\":\"1006847381_longtail\",\"nc\":1},\"sD3z2ST\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/OgQZKqBcuUW.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":632\",\"m\":\"1006847381_main\",\"nc\":1},\"+ClWygH\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/r611P2Lt7hb.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37192\",\"m\":\"1006847381_longtail\",\"nc\":1},\"n2UPpV0\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/xKJiMS7RGt4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37177\",\"m\":\"1006847381_longtail\",\"nc\":1}},\"compMap\":{\"CometProfileVideoSection.react\":{\"r\":[\"rDzHHGL\",\"PJevOFh\",\"wYUxKHn\",\"lOLXvja\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]}},\"Dialog\":{\"r\":[\"PxF2nsc\",\"kleA10d\",\"e5d6Ztw\",\"kfpwlze\",\"pPp+jIc\",\"SkFr2Ae\",\"W5crAoY\",\"eivexpP\",\"TETat5y\",\"rDzHHGL\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"ExceptionDialog\":{\"r\":[\"kho7\\/jW\",\"kleA10d\",\"pz9YUL2\",\"rDzHHGL\",\"yP6nl4x\",\"c4jwoso\",\"SkFr2Ae\",\"ixymreW\",\"H7A1\\/vo\",\"wYUxKHn\",\"qiPpWo6\",\"RaA31FN\",\"uen0LVB\",\"vLAMZRo\",\"6KCwpsF\",\"grEoa8Y\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"QuickSandSolver\":{\"r\":[\"PxF2nsc\",\"Pfkc54B\",\"pPp+jIc\",\"wYUxKHn\",\"sD3z2ST\",\"vLAMZRo\",\"6KCwpsF\",\"+ClWygH\",\"rDzHHGL\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"ConfirmationDialog\":{\"r\":[\"PxF2nsc\",\"pPp+jIc\",\"n2UPpV0\",\"rDzHHGL\",\"wYUxKHn\",\"vLAMZRo\"],\"be\":1},\"TransportSelectingClientSingleton\":{\"r\":[\"wYUxKHn\",\"vLAMZRo\"],\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\",\"6KCwpsF\",\"rDzHHGL\"]},\"be\":1},\"RequestStreamCommonRequestStreamCommonTypes\":{\"r\":[\"wYUxKHn\"],\"be\":1}},\"sotUpgrades\":[\"m6VVYrH\",\"GltrS7H\",\"gNzyyn\\/\",\"lwZReTr\",\"kleA10d\",\"OW1kw59\",\"ht8qD46\",\"l5HqvCB\"]})});\nrequireLazy([\"CometResourceScheduler\",\"JSScheduler\",\"Bootloader\"],function(c,s,b){c.onHighPriComplete(function(){s.scheduleLoggingPriCallback(function(){b.loadResources([\"m6VVYrH\",\"GltrS7H\",\"gNzyyn\\/\",\"lwZReTr\",\"kleA10d\",\"OW1kw59\",\"l5HqvCB\"])})})});\nrequireLazy([\"Bootloader\"],function(b){b.loadResources([\"ht8qD46\"],{onAll:function(){requireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierThreeBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierThreeInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"MarauderConfig\",[],{\"app_version\":\"1.0.0.0 (1006847381)\",\"gk_enabled\":false},31],[\"MqttWebConfig\",[],{\"fbid\":\"0\",\"appID\":219994525426954,\"endpoint\":\"wss:\\/\\/edge-chat.facebook.com\\/chat\",\"pollingEndpoint\":\"https:\\/\\/edge-chat.facebook.com\\/mqtt\\/pull\",\"subscribedTopics\":[],\"capabilities\":10,\"clientCapabilities\":3,\"chatVisibility\":false,\"hostNameOverride\":\"\"},3790],[\"MqttPublishTimeoutConfig\",[],{\"mqttPublishTimeoutMs\":90000},4266],[\"RequestStreamE2EClientSamplingConfig\",[],{\"sampleRate\":100000,\"methodToSamplingMultiplier\":{\"RTCSessionMessage\":10000,\"Presence\":0.01,\"FBGQLS:VOD_TICKER_SUBSCRIBE\":0.01,\"FBGQLS:HUDDLE_USERS_REQUESTED_TO_SPEAK_COUNT_SUBSCRIBE\":1000,\"FBGQLS:FEEDBACK_LIKE_SUBSCRIBE\":1}},4501],[\"WebDevicePerfInfoData\",[],{\"needsFullUpdate\":true,\"needsPartialUpdate\":false,\"shouldLogResourcePerf\":false},3977],[\"CometRouteActorToasterBlocklist\",[],{\"route_trace_policies\":[\"comet.jobs.composer\",\"comet.jobs.detailView\",\"comet.compat.XCometPageJobOpeningDetailViewController\",\"comet.offer.create\",\"comet.offers.offer_details\",\"comet.crisis.safety_check\",\"comet.crisis.home_page\"]},5542],[\"TrackingConfig\",[],{\"domain\":\"https:\\/\\/pixel.facebook.com\"},325],[\"WebStorageMonsterLoggingURI\",[],{\"uri\":null},3032],[\"DGWWebConfig\",[],{\"appId\":\"936619743392459\",\"appVersion\":\"0\",\"dgwVersion\":\"2\",\"endpoint\":\"\",\"fbId\":\"0\",\"authType\":\"\"},5508],[\"cr:1094907\",[],{\"__rc\":[null,\"Aa0-AXU7QQ_i030JU71shuMhgRJP-F94XW55rErXmKgEYY3ct2H0uGF-bdI6wohC5MLNm-R1Taqblv5rH-p29_c\"]},-1],[\"cr:1351741\",[\"CometEventListener\"],{\"__rc\":[\"CometEventListener\",\"Aa0jgCZvYvIxj3voBdBfyJUBmAC11MlyS62vnQgB9R6ke1pf1FHNWDj6mZviKNgwfh8rvplPuNyK_kWRXvTZGWD8NFlS9OqupxmJg_izy5Jgo1iKgcZm\"]},-1],[\"cr:3024\",[],{\"__rc\":[null,\"Aa1q4dC3lNmbE9_dpUbNzD4ldsQUa-b3Tr19KBcTt42H2TBoGblbeOPbkYaMh8C_RNUBejHGdUiKpYo\"]},-1],[\"cr:2046346\",[],{\"__rc\":[null,null]},-1],[\"cr:653\",[],{\"__rc\":[null,\"Aa0R7jt7o1oxJqfpXA2k6YVuPFeTqShAPFN119DkY8MsBlo6a72pb0Xw7mV3S0u833UAab4DLlZr1oXEctWZ4IxmmqyrwB4iUw\"]},-1],[\"cr:2718\",[],{\"__rc\":[null,\"Aa3aJm-A00RAAaWbovzHGMZSfh5xZ4EH1a_XSMWSS-fL6EsUN3Uk5YynExathSheUVHhmO0yXAlxhjCuAGHELmGJZzYkHrg\"]},-1],[\"cr:10026\",[],{\"__rc\":[null,\"Aa0r588aIW3G0zjGZ1_sJQwEZYv0bIcC0KlGJulKyR_-zIt0mkUSIYEVkWRTydxgsUOj8VxNkhI306DaB1ykctrfarGRC7Jm4iIJdg\"]},-1],[\"cr:1201738\",[],{\"__rc\":[null,\"Aa2vSygTQLc_smVEJFepv_lubOCo9cNOzrIDmhQrk8mR9Z9TaBfOatUar6jf5AXzRMV3Zott8m7YEXhOPM8SIgwDQCpFTSF9rOHLzjZQSdQb\"]},-1],[\"cr:1332233\",[],{\"__rc\":[null,\"Aa13GZ_kwGKanhwBLTb0AOSm_18LC0233aiEWzcFC7DXd_lV7SRV7jt61jKRU9hupXIpgV6HLNOcVHSE_wWNplQXEgLaWH5aXg\"]},-1],[\"cr:1345969\",[\"AccessibilityWebAssistiveTechTypedLoggerLite\"],{\"__rc\":[\"AccessibilityWebAssistiveTechTypedLoggerLite\",\"Aa3uX3Ib7H-V1I0ETB7IpwARTI8wB94PLL6DDVvl6zaeNbsS2jeRn_7is4fXMidUcgvaMGVCyNE\"]},-1],[\"cr:1516609\",[\"BDCometSignalCollectionTrigger\"],{\"__rc\":[\"BDCometSignalCollectionTrigger\",\"Aa2mfIryioyhsV-cPbL5eMg9hC2eJLx80oken9MY1vV39pngTgAKMrs4EbEN28_9sL5cLoFlwxVpExnCKU_7Q_-SqXX3xIwKkFidvh0ZWrN1CxmdtaxmfQ8O6w\"]},-1],[\"cr:1634616\",[\"CometUserActivity\"],{\"__rc\":[\"CometUserActivity\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:3473\",[],{\"__rc\":[null,null]},-1],[\"BDSignalCollectionData\",[],{\"sc\":\"{\\\"t\\\":1659080345,\\\"c\\\":[[30000,838801],[30001,838801],[30002,838801],[30003,838801],[30004,838801],[30005,838801],[30006,573585],[30007,838801],[30008,838801],[30012,838801],[30013,838801],[30015,806033],[30018,806033],[30021,540823],[30022,540817],[30040,806033],[30093,806033],[30094,806033],[30095,806033],[30101,541591],[30102,541591],[30103,541591],[30104,541591],[30106,806039],[30107,806039],[38000,541427],[38001,806643]]}\",\"fds\":60,\"fda\":60,\"i\":60,\"sbs\":1,\"dbs\":100,\"bbs\":100,\"hbi\":60,\"rt\":262144,\"hbcbc\":2,\"hbvbc\":0,\"hbbi\":30,\"sid\":-1,\"hbv\":\"7799648998567260803\"},5239]],\"instances\":[[\"__inst_af5d41d9_0_0_Ua\",null,null,1]],\"require\":[[\"BanzaiScuba_DEPRECATED\"],[\"PolarisODS\"],[\"FbtLogging\"],[\"LynxAsyncCallbackFalcoEvent\"],[\"CometSuspenseFalcoEvent\"],[\"IntlQtEventFalcoEvent\"],[\"AsyncRequest\"],[\"ContextualConfig\"],[\"IGDSPrivateToaster.react\"],[\"BladeRunnerClient\"],[\"CometErrorLogging\"],[\"SkywalkerUtils\"],[\"CometToast.react\"],[\"WebDevicePerfInfoLogging\"],[\"CometPixelRatioUpdater\"],[\"CometUncaughtError.react\"],[\"CometBrowserDimensionsLogger\"],[\"CometToasterView_DO_NOT_USE.react\"],[\"CometRelayEF\"],[\"CometRouteActorToaster.react\"],[\"CometOnBeforeUnloadDialog.react\"],[\"ClientConsistencyFalcoEvent\"],[\"ODS\"],[\"CometRootDeferredShared\"],[\"FalcoLoggerTransports\"],[\"PolarisIncomingCall.react\"],[\"DGWRequestStreamClient\"],[\"emptyFunction\",\"thatReturns\",[\"RequireDeferredReference\"],[[{\"__dr\":\"BanzaiScuba_DEPRECATED\"},{\"__dr\":\"PolarisODS\"},{\"__dr\":\"FbtLogging\"},{\"__dr\":\"LynxAsyncCallbackFalcoEvent\"},{\"__dr\":\"CometSuspenseFalcoEvent\"},{\"__dr\":\"IntlQtEventFalcoEvent\"},{\"__dr\":\"AsyncRequest\"},{\"__dr\":\"ContextualConfig\"},{\"__dr\":\"IGDSPrivateToaster.react\"},{\"__dr\":\"BladeRunnerClient\"},{\"__dr\":\"CometErrorLogging\"},{\"__dr\":\"SkywalkerUtils\"},{\"__dr\":\"CometToast.react\"},{\"__dr\":\"WebDevicePerfInfoLogging\"},{\"__dr\":\"CometPixelRatioUpdater\"},{\"__dr\":\"CometUncaughtError.react\"},{\"__dr\":\"CometBrowserDimensionsLogger\"},{\"__dr\":\"CometToasterView_DO_NOT_USE.react\"},{\"__dr\":\"CometRelayEF\"},{\"__dr\":\"CometRouteActorToaster.react\"},{\"__dr\":\"CometOnBeforeUnloadDialog.react\"},{\"__dr\":\"ClientConsistencyFalcoEvent\"},{\"__dr\":\"ODS\"},{\"__dr\":\"CometRootDeferredShared\"},{\"__dr\":\"FalcoLoggerTransports\"},{\"__dr\":\"PolarisIncomingCall.react\"},{\"__dr\":\"DGWRequestStreamClient\"}]]],[\"CometPlatformRootClient\",\"initDeferred\",[\"__inst_af5d41d9_0_0_Ua\"],[{\"__m\":\"__inst_af5d41d9_0_0_Ua\"},{\"sketchInfo\":null,\"userID\":0,\"deferredCookies\":{\"_js_ig_did\":{\"value\":\"46749EC6-93BF-448F-B7A9-9502CB1F16F7\",\"expiration_for_js\":31536000000,\"expiration_for_http\":1705840895,\"path\":\"\\/\",\"domain\":\".instagram.com\",\"secure\":true,\"http_only\":true,\"first_party_only\":true,\"add_js_prefix\":true,\"same_site\":\"None\"},\"_js_datr\":{\"value\":\"f93LY3Ufmyi8a2tcIQxxt_Sm\",\"expiration_for_js\":63072000000,\"expiration_for_http\":1737376895,\"path\":\"\\/\",\"domain\":\".instagram.com\",\"secure\":true,\"http_only\":true,\"first_party_only\":true,\"add_js_prefix\":true,\"same_site\":\"None\"}},\"blLoggingCavalryFields\":{\"bl_sample_rate\":0,\"hr_sample_rate\":0,\"parent_lid\":\"7191084768081846440\"}}]],[\"MqttLongPollingRunner\"],[\"AcfToastImpressionFalcoEvent\"],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"CometProfileVideoSection.react\"]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"BanzaiScuba_DEPRECATED\",\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"AsyncRequest\",\"ContextualConfig\",\"IGDSPrivateToaster.react\",\"BladeRunnerClient\",\"CometErrorLogging\",\"SkywalkerUtils\",\"CometToast.react\",\"WebDevicePerfInfoLogging\",\"CometPixelRatioUpdater\",\"CometUncaughtError.react\",\"CometBrowserDimensionsLogger\",\"CometToasterView_DO_NOT_USE.react\",\"CometRelayEF\",\"CometRouteActorToaster.react\",\"CometOnBeforeUnloadDialog.react\",\"ClientConsistencyFalcoEvent\",\"ODS\",\"CometRootDeferredShared\",\"FalcoLoggerTransports\",\"PolarisIncomingCall.react\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"CometExceptionDialog.react\",\"AcfToastImpressionFalcoEvent\",\"CometTooltipDeferredImpl.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"BanzaiScuba_DEPRECATED\",\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"AsyncRequest\",\"ContextualConfig\",\"IGDSPrivateToaster.react\",\"BladeRunnerClient\",\"CometErrorLogging\",\"SkywalkerUtils\",\"CometToast.react\",\"WebDevicePerfInfoLogging\",\"CometPixelRatioUpdater\",\"CometUncaughtError.react\",\"CometBrowserDimensionsLogger\",\"CometToasterView_DO_NOT_USE.react\",\"CometRelayEF\",\"CometRouteActorToaster.react\",\"CometOnBeforeUnloadDialog.react\",\"ClientConsistencyFalcoEvent\",\"ODS\",\"CometRootDeferredShared\",\"FalcoLoggerTransports\",\"PolarisIncomingCall.react\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"CometExceptionDialog.react\",\"AcfToastImpressionFalcoEvent\",\"CometTooltipDeferredImpl.react\"],\"css\"]]]});});});}})});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierThreeEnd\");</script>\n<script type=\"application/json\" data-content-len=\"85\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierThreeEnd\"]]]}</script>\n\n<script>window.pldmp = {\"7191084768081846440\":{\"css\\/6edbtep1nmgwooos.pkg,css\\/k6jsgg508hwks4gc.pkg,css\\/643znbe8uuww0sk4.pkg,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePopover.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/l\\/0,cross\\/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/buapdyfyycgk4w8s.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationIcon,js\\/instagram\\/polaris\\/modules\\/styles\\/Polarisglobal,js\\/instagram\\/polaris\\/core\\/XIGPage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreMegaphoneHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/lists\\/PolarisIGCoreListItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualGrid,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACImagePicker,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDivider,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentBrowserList,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupEmailSuggestionDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionFooter,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisMiddleDot,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOverlay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCondensedMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPBloksRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopoverContentContainer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallLink,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileMenuItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPHelperModule,js\\/instagram\\/polaris\\/adapters\\/ui\\/RouteLoadingBar,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisBaseShell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/hooks\\/usePolarisHideOutline,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericNavBackButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisImageFileForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutIconUtils.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yH\\/l\\/0,cross\\/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetPostFromMediaDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/PolarisuserReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimLoginForm.react,js\\/5hsowgzfkx8o004s.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalConversion\\/PolarisProfessionalConversionActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetPostFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentStrings.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/comment\\/PolariscommentReducer,js\\/27mp1a1v9am8go00.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/ui\\/PolarisFollowingActionsModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutIntentDialog.react,shared\\/third-party-bundles\\/normalizr-3.3.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTwoFactorForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisReportStrings,shared\\/third-party-bundles\\/css-in-js-utils-3.1.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellInnerContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutAppSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryAPIActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfileEditStrings,shared\\/third-party-bundles\\/react-spring-rafz-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalConversionCardTypeConfigs.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreMetaLogoPrimaryIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mobileStoryCreation\\/PolarisstoryCreationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisnavigationSelectors,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisPostRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInstagramWordmarkIcon,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/country_names\\/PolarisCountryNamesConfigJSModule.en_US.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_954\\/yI\\/l\\/en_US\\/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/6shsxta4034s0o4k.pkg,js\\/96g6scpfwy880owg.pkg,js\\/781zxh1eih0ksos8.pkg,js\\/6zfd06dvlpsskgs0.pkg,js\\/8k3memnucccg84wo.pkg,js\\/1bcvj230rclc88sk.pkg,shared\\/third-party-bundles\\/react-spring-core-9.4.5.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3imDI4\\/yD\\/l\\/en_US\\/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/clincp2mt1s888kw.pkg,js\\/3ysyndwrdn28ks04.pkg,js\\/ciqxk7hor3ksgg08.pkg,js\\/wzcw46dyrqoscgow.pkg,js\\/40g1sv7zr4ow84oo.pkg,shared\\/third-party-bundles\\/react-spring-shared-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryActions,js\\/20drax5dbjggwoww.pkg,shared\\/third-party-bundles\\/react-redux-8.0.1,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarispaymentsCheckoutReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarisSignupActions,js\\/instagram\\/polaris\\/www_schema_components\\/PolarisMobileNavMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsStrings,shared\\/third-party-bundles\\/babel-runtime-7.14.6,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisEmojiConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisConsentModal.react,shared\\/third-party-bundles\\/inline-style-prefixer-5.1.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarispostReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisdirectReducer,shared\\/third-party-bundles\\/react-spring-web-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisstoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisstorySelectors,shared\\/third-party-bundles\\/react-spring-animated-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/PolarissettingsReducer,js\\/70oshkhfatc0w8sc.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisrelationshipReducer,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedTimelineRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthFormCard.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedRootPaginationQuery_subscribe.graphql.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3xT4\\/y5\\/l\\/en_US\\/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksApply,shared\\/facebook\\/isInstagramBlobURI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisdebounce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedParallel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/pendingComment\\/PolarisPendingCommentState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionSetProfessionalAccountStatusForUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenUserDetail,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayActions,js\\/instagram\\/polaris\\/error\\/PolarisErrorRoot.entrypoint,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetImageResourceFromGraphImageResource,shared\\/js\\/__generated__\\/JSEnumMeerkatStep\\/single_source\\/PolarisFeedVariants\\/JSEnumArtifact\\/PolarisFeedVariants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/gating\\/IGWeb2023H1Gating,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisJavascriptWebErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGStringEncryptPassword,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberMul,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisMultiStepSignupController\\/JSRouteBuilderArtifact\\/XPolarisMultiStepSignupControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationLayoutContext,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToasterContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksInsertChildrenAfter,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisTimer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetFollowRequests,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncLoadV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelatedMediaFromGraphMediaInterface,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnExplorePage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberDiv,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionGating,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberGt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberAdd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberSub.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ye\\/r\\/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreTooltip,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisConsentModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenBulletListInterstitial,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreTextInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOneTapLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericMobileHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthFormCard,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNav,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCheckbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisIconSnackbar,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreSearchInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlayBase,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNav,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericDesktopHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFooter,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisLabeledTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenInterstitial,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimSignupForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisCheckboxToggle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDOBFieldSelect,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheet.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/l\\/0,cross\\/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSaveFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartGallerySessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndGallerySessionEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateConsentState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndPostCaptureSession,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchBackPressedFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGalleryStartEditSession,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFXAuthenticationLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveCommentImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointSnapshot,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/hasPolarisBugReporting,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramThumbnailClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisWellbeingCommentCoverFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/utils\\/PolarisScreenTimeEnforcementState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisSignupTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/trackFBRegistrationConversion,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebAgeCollectionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchViewportViewFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramClearSearchHistoryFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchResultsPageFalcoEvent,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnProfilePage,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramAdVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraShareMediaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelatedVideoMediaFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFBInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgWebImageLoadingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartCameraSessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebRegistrationFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/r\\/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisZeroIgWebCarrierSignalPingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisPlatformBadge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebStoriesLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetTaggedUserFromGraphTaggedUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followList\\/PolarisFollowListState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisMiniToast.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateConsentDob,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentpermalink\\/PolarisCommentPermalinkUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedRefreshFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebComponentPerfEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/incomingCall\\/PolarisIncomingCallActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebResourceTimingEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGalleryStartShareSessionEvent,js\\/instagram\\/polaris\\/adapters\\/ui\\/RouteLoadingBar,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebCacheLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebClientConnectionInfoFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEmailValidator,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/trimPolarisLinkTrackingData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetAccountBadgeData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenUrlV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetMappedOwnerTypeFromReelDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchSessionInitiatedFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisInteractionTracingExtensions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarissetPageTitle,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisBaseModel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartPostCaptureSession,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIStoryPollVote,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraGallerySelectMediaEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGallerySelectMultipleEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisOneTraceQPLLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsFormUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/actions\\/PolarisPostActionPostLoadedV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFeedTimeline,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogo.react,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGCometPushViewCloseButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisErrorBoundary.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisStopDeletionDialogStrings,js\\/instagram\\/polaris\\/feed\\/usePolarisFeedVariantScrollRestore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePinPanoFilled24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetCommentFromCommentDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisCheckboxToggle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIExtractTwoFactorChallengeIfPresent,js\\/instagram\\/polaris\\/core\\/initXIGRuntime,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisCookieConsentFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAdminSpinner.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreWarningPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogoWithTitle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePhotoGridPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolaristransformReelEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHashtagPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLogoutActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsListContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/post\\/PolarisPostModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalFooter,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisHashtagMediaModel.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3isHT4\\/yE\\/l\\/en_US\\/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisnormalizeActivityFeedItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCoreHoverCardConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetVideoResourceFromGraphVideoResource,js\\/instagram\\/polaris\\/core\\/PolarisSplashScreen.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/embed\\/PolarisEmbedState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisgetPageTitle,shared\\/js\\/__generated__\\/JSEnumMeerkatStep\\/single_source\\/IGAutomatedLoggingInteractionGestureType\\/JSEnumArtifact\\/IGAutomatedLoggingInteractionGestureType,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenBottomSheetOrDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIVerifyAge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSuggestedUserFromGraphSuggestedUser,js\\/instagram\\/polaris\\/error\\/PolarisErrorRoot.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisavatarConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisgetReelIdFromReelType,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFXSSOLinkedUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSharingFrictionInfoFromGraphMediaSharingFrictionInfo,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIApproveFollowRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIIgnoreFollowRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPICheckNewFeedPostsExist,js\\/instagram\\/polaris\\/core\\/relay\\/relayPolarisGetDataID,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformActivityFeedUserEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisTimeSpentScreenTimeFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGTVIndicator.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenDiscoverPeople,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchParentalConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisSEOEventsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayDispatch,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnAdsActivityPage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/centralizedUpsell\\/PolariscentralizedUpsellSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisPaymentsConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchUnconsentedConsents.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksRotate3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayClone,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayConcat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayRemove,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetAttr,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberSub,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisCurrentLocale,shared\\/third-party-bundles\\/inline-style-prefixer-grid,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapUpdate,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGridConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisLoginConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberAdd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayLength,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberMul,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberEq,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaModelBase,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringLength,shared\\/third-party-bundles\\/inline-style-prefixer-flex,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisSnackbarConstants,shared\\/third-party-bundles\\/css-in-js-utils-resolveArrayValue,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolNot,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarismemoizeLast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberGt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringConcat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberLt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksConstNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksInflateSync.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksInternalShadow,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGLineChartV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlayContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetProfilePosts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisnormalizeFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/desktop\\/PolarisDesktopStoriesGalleryConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisguidesReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGLanguageSwitcher,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreChevronDownPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisStrategicWebTraffic,js\\/ezemckykhb4gww8c.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/ActivityFeed\\/activity_feed_box\\/PolarisActivityFeedBoxLoader.react,shared\\/third-party-bundles\\/hyphenate-style-name-1.0.4,shared\\/third-party-bundles\\/redux-thunk-2.3.0,js\\/instagram\\/polaris\\/adapters\\/ui\\/Portal,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/upsell\\/PolarisUpsellActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFooterBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisLiveHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOAuthPermissionResultCallbackDoNotUse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSavePanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSavePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScalarNativePropsStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/PolarisisEligibleForFacebookLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/location\\/PolarisLocationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisScrollPositionManager.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisMemoizedBindContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/newPostsPill\\/usePolarisLightweightNewPostsPillCheck.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3itX54\\/yU\\/l\\/en_US\\/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksImage,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromUserInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHeartPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/PolarisuserSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionRemoveCloseFriendUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginFromCredentialManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionFollowUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionAddCloseFriendUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/discoverChaining\\/PolarisdiscoverChainingReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaAccountOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAcceptTermsOfUseForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFacebookLoginLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisInteractionsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksCollection,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGScreen,shared\\/third-party-bundles\\/merge-1.2.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationBannerIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisTransform3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNewPostPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404PageBase.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/usePolarisHoverCardDelay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopoverContentContainer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisTrackingLinkClickHandler,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFocusTrap.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentLikeLists\\/PolariscommentLikeListsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarislogReelPlaybackEntry,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreStarPanoFilledGradientIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404Page.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3izF44\\/yn\\/l\\/en_US\\/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileMenuItems.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimTextInput.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksPrimitives,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSearchResultsFromSearchResultsData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthTypeSwitcher.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisStoryRing.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlay.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisFBConnectHelpers,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryCache,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisGenericStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisResponsiveImage.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLoggedInAppBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisPaginationUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/__private__\\/PolarisLoginActionBaseLogin,shared\\/third-party-bundles\\/stackblur-1.0.0,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisOpenInApp,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisLocalesConstants,shared\\/third-party-bundles\\/tabbable-5.1.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginWithFBAccessToken,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/buildIGWWWCometRouterStateProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksNavbar,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPhoto.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreSearchInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisEmailConfirmationForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGrid.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectMediaHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetTappableObjectsFromMediaDict.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3in5G4\\/yN\\/l\\/en_US\\/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveBadge,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/stories\\/PolarisUserAvatarLivePulse,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenu,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisActivityIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupChangeNumberForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisMiniToast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroLoggedOutUpsell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisNavWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreToast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGConfirmationCode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisUserAvatarWithStories,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAdminSpinner,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcher,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericOnboardingUnit,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTwoFactorForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLoadingBar,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookAccountPicker,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCorePhoneNumberInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuSection,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullStateSection,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuLink,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupConfirmForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisLandingForm,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialogCircleMedia.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/l\\/0,cross\\/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPageMetadata.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGAnnotateTTIEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisProfileLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisreducerRegistry,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetMediaDictFromDynamicExploreGridItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolariscreateSelectorWithArg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisIgLiteCarbonUpsellsUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/emptyFeed\\/PolarisemptyFeedReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisnormalizeUserDicts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisIsFeedItemWithOldAdDataModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTOSStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSponsorItemsFromSponsorTagsDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisDiscoverLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/Birthday\\/PolarisBirthdayHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/processPolarisFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisnewPostsPillSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGAnchor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFBConnectStatus,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSubtitleFromUserData,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisMisinformationConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionGetUserInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDivider,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisNetworkInfo,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXSettingLogClick,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelViewerAppAttributionClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGClearChallenge,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksAction,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelationshipInfoFromRelationshipInfoDict.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iumd4\\/yp\\/l\\/en_US\\/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisSentryFeedbackDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCheckbox,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisMediaConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/shopping\\/PolarisshoppingReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisStoriesStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopover,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/displayProperties\\/PolarisDisplayPropertiesActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileIconV2.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisExploreIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGConfirmationCode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksFlexbox,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisGradientSpinnerSpecs,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisfollowRequestReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarissearchSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDevicePhonePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/charitableGiving\\/PolarisCGCheckoutUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveStrings,js\\/instagram\\/polaris\\/modules\\/styles\\/PolarisSizing,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialogButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXAccountCenterEntrypointInformation.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultHashtagItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNavigationalHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheStateGetters,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksApp,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisExternalLink.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisKnownQEParams,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayViewpointManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionBuildFeedPageLoadedActionV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisnormalizeMediaDicts.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iGYw4\\/yu\\/l\\/en_US\\/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenActionSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksBooleanUtils,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisFeedController\\/JSRouteBuilderArtifact\\/XPolarisFeedControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMatchesRegex,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReflow,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGToast,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisPostRootQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGResumeStoryPlayback,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenShareSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGLogEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksExecutor,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseModalWithResult,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksRemoveChildrenBetween,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetVariable2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksVisibilityContextHasSeenBefore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksClipboardSetString,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberRand,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksSessionStoreGet,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectCacheConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDangerouslyGetTreeFromParseResult,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksLogEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingContent\\/PolarisTrendingContentSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDismissBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenSendMessage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayRemoveAndGet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayPutAndGet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksShareText.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramThumbnailImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelComposeMessageFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisInteractionsStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroDataStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackEntryFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/usePolarisGetDeepLink,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackExitFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebResourceTransferSizeEventsFalcoEvent,shared\\/facebook\\/isInstagramCDNURI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebDiscoverPostLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebProfileChainedLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelTrayRefreshFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebReelTrayRefreshFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromGuideOwnerOrCommentUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisSignupAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelSendMessageFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGEndTTIEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelMediaPauseFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/live\\/PolarisnormalizeLiveUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksInternalMerge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchUserCancelButtonTapFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/postRemoveComments\\/PolarispostRemoveCommentsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishasLinkParent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicCarouselVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/lib\\/redux\\/PolarisReactRedux,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISendParentalConsentEmail,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveViewerEndScreenImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFalcoErrorEventUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisIGLiteHelpers.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ikjM4\\/yo\\/l\\/en_US\\/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDataSaverConfig,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisfrxWebReportReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadSULV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tag\\/PolaristagReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followList\\/PolarisfollowListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGFollowButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksNode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisScrollPerfMonitor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramMediaOverlayFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisReduxStaging,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScreenManager,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisSearchLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisadMediaItemSchema,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisKeyCommands,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisreadImageFile,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenInterstitial.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksAppLoader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupFormFields.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisUseAppPill.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullState.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutPaypalUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/seenState\\/PolarisSeenStateManager,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksLayout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisIconSnackbar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/PolarisProfessionalConversionUtils.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iSdl4\\/yn\\/l\\/en_US\\/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisnormalizeSuggestions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksParseEmbedded,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreate,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/sentryFeedback\\/PolarisSentryFeedbackActions,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACStickyHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIQuery,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionReloadInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLogoutModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/PolarisSettingsActionsStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisLockOrientation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarisPostReducerHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectActionConstants,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/static_upstream\\/utils\\/Polaristhrottle,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreChevronUpPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/incomingCall\\/PolarisincomingCallReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisexifOrientations,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisKeyCommandNub.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/lib\\/PolarisIGCoreConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIListCollections,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreChevronIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionOneTapLoginRemove,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolarisgetProfilePostsFromNativeResponse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAnimationFunctions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/uploadProgress\\/PolarisuploadProgressReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisBatchDOM,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationMediaFromGraphLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxSSO\\/PolarisfxSSOReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/call\\/PolarisCallGatingHelpers.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iPVh4\\/yv\\/l\\/en_US\\/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserCirclePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemMediaIndicator.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/PolarisVolumeControlsManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionFavoriteUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxAuth\\/PolarisfxAuthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLocationPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolarisgetProfilePostsFromGraphQLResponse,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramPushTokenRegistrationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGGradientText,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFXCALAuthLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/getPolarisKeyCommandConfig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLicensingPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionGoToTwoFactorLogin,js\\/instagram\\/igds\\/IGDSDialog\\/IGDSControlledUserBlockingDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagFromGraphHashtag,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAdPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesType,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolariswithDataSaver,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGActionSheetItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGNavbarButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionLoadThread,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisViewpointActionUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaCarouselFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDeviceDesktopPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHeartFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisAsyncLiveCreationModal,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSMediaCarouselFilledIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLxq4\\/yI\\/l\\/en_US\\/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualGrid.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnfollowUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/helpers\\/PolarisIGCoreModalBackdrop,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLiveAppInstallSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButtonContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisPrioritizedTask,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionMuteOrUnmuteUser,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/www_schema_components\\/PolarisMobileNavMenuQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisConnectionsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisNavChain,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisFollowRequestActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisImageFileForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/supervision\\/PolarisSupervisionModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSidecarChildFromMediaDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisClearSearchHistoryButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalConversionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultInformModuleItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/usePolarisHoverCardPosition,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationNavMenu.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUsersFromGraphMedia,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionBlockUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisSearchBoxTextInput.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisCIXWarningScreensFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksScreenWrapper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavBackButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisLabeledTextInput.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iuVg4\\/yI\\/l\\/en_US\\/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSReelsFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISkipParentalConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndCameraSessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebOspFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisExploreHomeImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportState,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleSeeResultsClickFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleSeeResultsClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchResultsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMakeFlat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModalWithModalObject,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgBloksSettingsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSensitivityFrictionInfoFromGraphMediaSensitivityFrictionInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisExploreHomeClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishashCode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebLoginFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisreducerWithCache,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleClickFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleButtonClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetPaginationInfoFromPageInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisUpcomingEventTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionFetchInboxPresence,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetUsernameSuggestions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchAccountRecoveryOptions,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramWellbeingCommentCoverFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramWellbeingCommentCoverEventFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionThreadLoaded,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/usePolarisViewpointSanityCheck,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisactivityUtils,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarissetTimeoutAcrossTransitions,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleImpressionFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleImpressionFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y9\\/r\\/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/PrivacyPolicy\\/PolarisShouldUserSeePrivacyPolicy,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisRelationshipState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGStartTTIEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisCreationTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSubmitErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironmentContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountTapComponentFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISendTwoFactorLoginSms,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksAnchor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountStartStepFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/__private__\\/PolarisLoginActionGetErrorDescription,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFetchDataFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayCenterButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/sentryFeedback\\/PolarissentryFeedbackReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksNode,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIOneTapLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/comments\\/PolarisnormalizeMicroUserDicts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSubmitFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/effects\\/PolarisAREffectsState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetDynamicExploreGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFunctionalityTracker,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountCancelFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisCookieModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSkipFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisALTrackingData,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/clips\\/PolarisClipsState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreForm.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialogHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisCaptchaSignupForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDisappearingTooltip.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/effects\\/PolarisarEffectsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultKeywordItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/twoFactor\\/PolaristwoFactorReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxSSO\\/PolarisFXSSOActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLiveLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReelsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisQuickLogModules,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScriptParser,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/usePolarisViewport,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksDecoration,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultKeywordSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutLoginModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGPopover,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSidecarChildFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionInitFeed,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsFormFieldInputConfigs,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetPreviewImageCanvas,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEmojiHelper,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGCometRoutedRootConfigBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSettingsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccount\\/PolarisProfessionalAccountLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReelsPanoFilledIcon,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSReelsPanoFilledIcon,js\\/instagram\\/igds\\/IGDSCheckboxOrToggle\\/IGDSCheckboxOrToggle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentNavigationLogger.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iga04\\/yD\\/l\\/en_US\\/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchBatchQuickPromotions,js\\/csa9qir353c4goc0.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginTwoFactor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/isPolarisFeedAdItemMediaTypeSupported,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisNormalizeStoryAds,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/upsell\\/PolarisupsellReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisFilterDuplicateFeedItems,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisCommentModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/hooks\\/usePolarisDirectFeatures,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerTranslations,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/live\\/PolarisLiveGating,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mediaPrefetch\\/PolarismediaPrefetchReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/zero\\/PolariszeroReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIRequestSignupSMSCode,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionBuildPastPostsAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMoreHorizontalPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellMobileHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutNUXUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPinnedPostIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisSidecarIcon.react,js\\/instagram\\/polaris\\/core\\/PolarisBaseThemeDisplayModeWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisUserModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenChallengeUrl,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisReelModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/autoConfirmEmail\\/PolarisautoConfirmEmailReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/profilePosts\\/PolarisProfilePostsModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisVideoIndicator.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/core\\/relay\\/bootstrapPolarisRelayEnvironment,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReduce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksDummyComponent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisErrorBoundaryWithHoldout.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksRenderContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/boost\\/PolarisBoostEligibilityReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksNumberUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/Challenge\\/ui\\/constants\\/PolarisBirthdayConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisCacheLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLoggedInCtaLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisLayoutIntervals,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/unsupportedBrowserToast\\/PolarisUnsupportedBrowserToastReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksEventLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisCreationUtils,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/static_upstream\\/core\\/PolarisdebounceCore,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLoggedOutCtaLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenVoterInformationCenter,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginWithFB,js\\/instagram\\/polaris\\/core\\/PolarisSplashScreenController,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackNavigationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIOneTapGetNonce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginWithFXIGSSO,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/state\\/PolarisCreationV2State,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/PolarisVideoConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisNewPostsPillActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedPageExtrasLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedNextPageLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelSessionSummaryFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yD\\/r\\/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellContent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisSnackbar,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastWrapper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogoWithTitle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBirthdaysAdditionalInfoModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileIconV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreBorderedIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAppsellUnit,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlay,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupFormFields,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLoggedInAppBanner,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemMediaIndicator,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNavigationalHeader,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisSearchBoxTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBanner,js\\/instagram\\/polaris\\/modules\\/styles\\/Polaristypography,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogo,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisTopNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIconButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDoubleTappable,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPreviewPhoto,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavPopover,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationsBannerV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPhoto,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellMobileHeader.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/l\\/0,cross\\/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/contactHistory\\/PolariscontactHistoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchContext,js\\/instagram\\/polaris\\/core\\/query\\/preloading\\/PolarisQueryPreloaderCache,js\\/instagram\\/polaris\\/core\\/PolarisVideoPlayerGlobalComponents.react,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFxcalAuthTwoFactorLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupSeamlessLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/oneTap\\/PolarisoneTapReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSuspenseWithErrorBoundary.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisLoggedOutCtaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/FbSdkConsts,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionCreateDirectInboxLoaded,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisIGViewpoint.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisLoggedInCtaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCoreHoverCardProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGScreenSpinner,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-animate\\/PolarisshouldAnimate,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisClipIndicator.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404PageDeferred.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolaristoastReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarishandleOpenInApp,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialogCircleMedia,js\\/instagram\\/polaris\\/modules\\/consumer\\/GroupProfile\\/lib\\/PolarisGroupProfileUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisSEOEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromLocationDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionGetRelationshipInfoWithViewerByUserId,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisSizeCache,js\\/instagram\\/polaris\\/modules\\/consumer\\/UpcomingEvents\\/ui\\/PolarisUpcomingEventIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCommentPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsIconButton.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_tA4\\/yO\\/l\\/en_US\\/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tagMedia\\/PolaristagMediaReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarispostSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisCentralizedUpsellDataHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavLoggedOutContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolarisCookieModalActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisprofileMediaEdgesReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisUserAvatar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisSharedAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDoubleTappable,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisliveSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/ui\\/PolarisdynamicExploreSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisBirthdaySignupForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarissearchReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellFooter.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedOut.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModalOptionsMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisRedirectHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcher.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/scrolling\\/PolarisScrollPositionHistory,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisautoGeneratedPrefixData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookAccountPicker.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEntrypointHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksTextStyle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisUnfollowDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreWhatsappLogoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlayBase.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreLogoColoredOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksText.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iXZ54\\/yZ\\/l\\/en_US\\/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavPopover.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXAuthenticationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/displayProperties\\/PolarisdisplayPropertiesReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutContextualLoginText.react,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBaseDOMContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisMiddleDot.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentNavigation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericDesktopHeader.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetCommentFromGraphComment,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionInitCacheWithLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisFeedHelpers,js\\/instagram\\/polaris\\/core\\/bootstrapReduxNavigationState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisnormalizeGridItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/accountRecovery\\/PolarisaccountRecoveryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/gender\\/PolarisgenderReducer,shared\\/security\\/trusted_types\\/policies\\/default_policies\\/TrustedTypesIGWWWAliteSiteDefaultPolicyOptions,js\\/instagram\\/polaris\\/video\\/PolarisFeedAutoplayProvider.react,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsAPIActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWhile,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACRecaptcha.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolaristransformProfilePostsEntities,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisgenerateOfflineThreadingId,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/Direct\\/PolarisDirectInboxPopoverLoader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFavoritesStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBodyScrollLock,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisTransformInjectedStoryUnitsEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/usePolarisBaseViewpoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/business\\/data\\/PolarisBusinessUserAccessTokenReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromGraphLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/privacy\\/PolarisprivacyFlowReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iogo4\\/yZ\\/l\\/en_US\\/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreModalLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutPaymentMethodUtils,js\\/instagram\\/polaris\\/modules\\/customersupport\\/ui\\/PolarisBloksCCSSupportUserChatThread.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/PolarisloginReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAdsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisStoriesContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksGlobalStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisNormalizeEndOfFeedDemarcator,js\\/instagram\\/polaris\\/core\\/XIGSharedDataHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentBitArray,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutNetzDGReportLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXAccountCenterStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fbConnect\\/PolarisfbConnectReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFXCalLinkingLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisMediaOverlayInfoTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDateStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationTooltip.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionFetchFeedDataFromNative,js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolariswithRemountOnChange,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisCreationLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/exploreModule\\/state\\/PolarisLoggedOutExploreModuleReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectMQTTInstance,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksTextSpan,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisTopNavigation.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNewPostPanoOutlineIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTf14\\/yj\\/l\\/en_US\\/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisUserAvatarWithStories.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/PolarisBloksPrimitives,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisauthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualList.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionConnectToMqtt,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisinitServiceWorker,shared\\/third-party-bundles\\/css-in-js-utils-2.0.1,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisInt64,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsActions,shared\\/third-party-bundles\\/emoji-regex-7.0.3,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/ui\\/PolarisdirectSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisPerformanceLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarissignupReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisfeedReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationActions,js\\/instagram\\/polaris\\/core\\/ConsumerEntrypoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisPaymentsCheckoutConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/threadedComment\\/PolaristhreadedCommentReducer,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOneTapLoginForm.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedTimelineFragmentQuery_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/dynamicExplore\\/PolarisDynamicExploreActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBox.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShell_DEPRECATED.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsList.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutStickyBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFooter.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ideN4\\/yh\\/l\\/en_US\\/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPrintf,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisClickEventLoggerContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisgetDisplayName,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentValue,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeRootQuery,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisTestAccountTypeConsts,js\\/instagram\\/polaris\\/modules\\/styles\\/PolarisThemeStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWriteLocalState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentCloseDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksFindComponentContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisHomepageImmersiveBackgroundExperimentProvider,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadViewerData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGViewpointExtensionContextGetPercentVisible,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavLabelDisplayTypeContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceChild,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapMake,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedStart,js\\/instagram\\/polaris\\/modules\\/consumer\\/DesktopCreateStory\\/PolarisDesktopCreateStoryGating,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/creation\\/PolarisCreationMode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceEmbeddedChild,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPPRLoggedPostsGridItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetState,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBasePortalTargetContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisNormalizeInFeedStories,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayUpdate,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagFollowList\\/PolarisHashtagFollowListState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/gender\\/PolarisGenderState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGLogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/helpers\\/PolarisAccountPrivacyHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarisLocationPostsTypes.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihtU4\\/yy\\/l\\/en_US\\/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberMod,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksTakeLast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberAdd,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIMarkDiscoverPageSeen,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisFollowRequestState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolaristransformEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksVisibilityContextGetTimeSinceLastImpressionInMS,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolariswithDirectAPIEndpoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPHelpers,js\\/instagram\\/polaris\\/core\\/logXIGPageView,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisNotificationPermission,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/unsupportedBrowserToast\\/PolarisUnsupportedBrowserToastActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/devtools\\/PolarisDevtoolsContext.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisGuidesState,js\\/instagram\\/polaris\\/core\\/getXIGRoutePageLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSponsorFromGraphSponsorTag,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionUnblockDirectUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModalWithResult,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/consts\\/PolarisManageApplicationsStatus,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupDryRunExitError,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsTabDesktopFragment,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksT3DFromArray,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolarisToastActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisFeedState,js\\/instagram\\/polaris\\/adapters\\/helpers\\/xigRequireInterop,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionBlockDirectUser,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisArchivePageController\\/JSRouteBuilderArtifact\\/XPolarisArchivePageControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenScreen,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/mobile\\/PolarisMobileStoriesConstants.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y_\\/r\\/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePressable,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/filters\\/PolarisisWebGLSupported,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLivePanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksOnMount,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/likedByList\\/PolarislikedByListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisNotificationClientLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisBloksOpenBottomSheetV3,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationMediaFromNativeLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/actions\\/PolarisSavedPostsActionRequestNextSavedCollections,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginWithFBJSSDK,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisIgWebOneTrace,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/save\\/PolarisnormalizeCollections,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/embed\\/PolarisembedReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisPhoneCommonStrings,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBannerQuery.graphql,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSUserFollowPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarissignupSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIQueryWWWGraphQL,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisDOMRectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDOMListener.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisnormalizeSuggestedUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisautoplayReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUsersPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisTrustedDevicesUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCardOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreShoppingBagPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisShakeListener,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisRegistrationLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisPPRUtil.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_sF4\\/ym\\/l\\/en_US\\/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarismediaOverlayInfoUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/clips\\/PolarisclipsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGButton.react,js\\/instagram\\/polaris\\/core\\/PolarisAppWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksRenderer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/PolarisfbReady,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisDynamicExploreTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/ui\\/PolarisDirectPresenceHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutCallToAction.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedInButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisStoriesLoggingUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalConversion\\/PolarisprofessionalConversionReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPHelperModule.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAccountPrivacyForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTermsPrivacyPolicyBlurb.react,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayFeed,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGNavbar,js\\/instagram\\/polaris\\/core\\/relay\\/XIGRelayEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisActivityIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISignup,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAnimationScheduler,js\\/instagram\\/polaris\\/modules\\/consumer\\/MobileStoryCreationPages\\/ui\\/PolarisStoryCreationUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/lib\\/PolarisDynamicExploreMediaHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/taggedPosts\\/PolaristaggedPostsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAppsellUnit.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAcceptTermsOfUseBody.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iFMc4\\/yP\\/l\\/en_US\\/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeFragment_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookLoginForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/lib\\/PolarisLoggedOutLoginConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/dynamicExplore\\/PolarisdynamicExploreReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisprofilePostsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromGraphUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutMegaphone.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopFragment_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectStringHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutUpsellStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionLoadFeedPageExtras,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/twoFactor\\/PolarisTwoFactorActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupConfirmForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisnavigationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieSettingsContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/utils\\/PolarisScreenTimeUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisCountryCallingCodes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisReduxCache,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/creation\\/PolariscreationReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDismissEntry,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisHoverCardPositioner,shared\\/third-party-bundles\\/focus-visible-5.2.0,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisExploreLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisRecaptcha,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStoryActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksDataBinding,shared\\/third-party-bundles\\/body-scroll-lock-3.1.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisCreationAPI,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutWebLoginModal.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iZ3g4\\/yH\\/l\\/en_US\\/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/rating\\/PolarisratingReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingContent\\/PolarisTrendingContentReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigationContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisConsentLogger,js\\/instagram\\/polaris\\/adapters\\/lib\\/replaceURL,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisHashtagModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisNftMediaIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisgetBlobFromCanvas,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupGetAPISignupFields,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/suggestedDirectory\\/PolarissuggestedDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAsyncComponent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagsDirectory\\/PolarishashtagsDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/deactivateAccount\\/PolarisdeactivateAccountReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilesDirectory\\/PolarisprofilesDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentBrowserList.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisonlyHandleSingleClick,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionMessageFromProfile,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisPopoverPlacementProvider,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISetPrivateAccount,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPageTitle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthConstants,js\\/instagram\\/polaris\\/video\\/usePolarisFeedAutoplayRules,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/hooks\\/usePolarisHideOutline,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/exploreMap\\/PolarisexploreMapReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/wifiAuth\\/PolariswifiAuthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisClickableProps,js\\/instagram\\/polaris\\/modules\\/consumer\\/Clips\\/ui\\/PolarisClipsConstants,js\\/instagram\\/igds\\/IGDSDialog\\/IGDSDialogPlaceholder.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIReelSeen.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJIK4\\/yK\\/l\\/en_US\\/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisClipboard,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisResponsiveBlock.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relatedInterestMedia\\/PolarisRelatedInterestMediaReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/pendingComment\\/PolarispendingCommentReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisPreBlockConfirmDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisAdsGatingHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisAsyncCreationModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreShieldPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisBirthdayFormInput.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnblockUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNftPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/businessProfileDirectoryPage\\/PolarisbusinessProfileDirectoryPageReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCompassPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAppContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisProfileStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/phoneConfirm\\/PolarisphoneConfirmReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreKeyPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisSupervisionStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolariscookieModalReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-animate\\/components\\/PolarisIGAnimated.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLinkPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGActionSheet,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLogoutButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisCountryCodeUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreRotatePanoOutlineIcon,js\\/instagram\\/polaris\\/core\\/relay\\/buildSubscriptionForQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/live\\/PolarisnormalizeLiveBroadcasts.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iss64\\/yb\\/l\\/en_US\\/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisSelector,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisisPhoneNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapClone,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksIndexOfChild,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisCountryNames,www\\/__virtual__\\/relay\\/PolarisFXPreTransitionBannerQuery_instagramRelayOperation,shared\\/js\\/__generated__\\/StaticServerJSModuleMeerkatStep\\/single_source\\/PolarisPreloadConstantsJSModule\\/StaticServerJSModuleArtifact\\/PolarisPreloadConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGridConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisPreloadImage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisStagingState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGTTIEventConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayPut,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisNavBarConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberDiv,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingNodesContext,shared\\/third-party-bundles\\/inline-style-prefixer-backgroundClip,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksJsonEncode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolOr,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingCodeContext,js\\/instagram\\/polaris\\/adapters\\/ui\\/StylesManifest,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGReloadPage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarisSignupActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/wifiAuth\\/PolarisWifiAuthState,js\\/instagram\\/polaris\\/shared\\/ui\\/shell\\/PolarisConditionalPageLayoutHandler.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32Convert,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringValueOfNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksCurrentTimeMillis,js\\/instagram\\/polaris\\/modules\\/consumer\\/Challenge\\/ui\\/PolarisChallengeRoutes,shared\\/third-party-bundles\\/inline-style-prefixer-flexboxOld,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksTranslate3D.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/r\\/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/bugReport\\/PolarisBugReportSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetCookiesFromServer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/addToHomeScreen\\/PolarisaddToHomeScreenReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateNewUserConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/PolarisAutoplayContextProvider.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromNativeLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformSuggestionEntities,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLoadingBar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisRefUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIValidateSignupSMSCode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXSettingsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisnormalizeReels,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFBPixel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInterestAccountEnterFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/seenState\\/PolarisSeenState.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksSetAttr,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetTaggedUsersFromUserTagInfosDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/webReport\\/PolarisWebReportActionConstants,shared\\/third-party-bundles\\/isobject-3.0.1,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisrequestIdleCallback,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEncryptionUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIConnectAccountToFB,shared\\/third-party-bundles\\/react-spring-types-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisTrendingContentOn404Header.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFinishStepFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFetchDataErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksCheckoutGetCreditCardToken,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/isPolarisAdLink,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/comments\\/PolarisnormalizeComments,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisClickEventLogger.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iqfe4\\/yO\\/l\\/en_US\\/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieSettingsContentBody.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectDeltaHandlers,js\\/instagram\\/polaris\\/adapters\\/ui\\/LegacyIGCoreModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisOrganicThumbnailImpression,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/lists\\/PolarisIGCoreListItem,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisresourceTimings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisAuthActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksExecutor,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarislocationPostsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisCompactKeyCommandDisplay.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionOneTapLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenBulletListInterstitial.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisNavWrapper.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisVpvdImpressionAction,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGRoutedBuildRoot,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisAgeCollectionHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisliveReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBoxContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFrameDropWatcher,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisOneTapLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardMegaphone.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutRedirectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCondensedMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentMethodUtils.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDOBFieldSelect.react,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportStrings,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisadsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksDrawable,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisstagingReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iwkF4\\/y3\\/l\\/en_US\\/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/comment\\/PolarisCommentActionConstants,shared\\/third-party-bundles\\/inline-style-prefixer-flexboxIE,shared\\/third-party-bundles\\/inline-style-prefixer-imageSet,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/PolarisProfilePageContext,shared\\/third-party-bundles\\/inline-style-prefixer-crossFade,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisVideoResource,www\\/__virtual__\\/relay\\/PolarisMobileNavMenuQuery_instagramRelayOperation,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisdevtoolsEnhancer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPattern,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/PolarisLoginActionConstants,shared\\/third-party-bundles\\/inline-style-prefixer-transition,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisRamClassContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32Convert,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayIndexOf,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenUrl,shared\\/third-party-bundles\\/inline-style-prefixer-gradient,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksToast,shared\\/third-party-bundles\\/inline-style-prefixer-logical,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectActionsLogger,shared\\/third-party-bundles\\/inline-style-prefixer-position,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseScreen,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDelay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapKeys,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksScale3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayAppend,shared\\/third-party-bundles\\/inline-style-prefixer-filter,shared\\/third-party-bundles\\/inline-style-prefixer-cursor,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPopBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAddChild,shared\\/third-party-bundles\\/inline-style-prefixer-sizing.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastConstants,js\\/instagram\\/polaris\\/adapters\\/third-party-wrappers\\/css-in-js-utils-resolveArrayValue-wwwig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberAnd,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/init\\/PolarisInitAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberMod,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayGet,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisDateFormatConfig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberOr,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapGet,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarisSavedPostsActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarisLocationPostsActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tagMedia\\/PolarisTagMediaActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDefault,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/shell\\/PolarisShell,shared\\/third-party-bundles\\/strip-variation-selectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDummy,shared\\/third-party-bundles\\/inline-style-prefixer,js\\/instagram\\/polaris\\/adapters\\/third-party\\/react-spring-wwwig,shared\\/third-party-bundles\\/emoji-regex-text,shared\\/third-party-bundles\\/tabbable,shared\\/third-party-bundles\\/body-scroll-lock,js\\/529myxqorq4gkcgw.pkg,js\\/instagram\\/polaris\\/adapters\\/third-party\\/react-redux-wwwig,js\\/instagram\\/polaris\\/adapters\\/third-party\\/redux-wwwig,js\\/instagram\\/polaris\\/adapters\\/third-party-wrappers\\/redux-thunk-wwwig,shared\\/third-party-bundles\\/focus-visible,shared\\/third-party-bundles\\/redux-thunk,shared\\/third-party-bundles\\/merge,shared\\/third-party-bundles\\/normalizr,shared\\/third-party-bundles\\/stackblur.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOrBar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOptionalOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksErrorRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreBusinessPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedOutUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/SEOCategoryPage\\/PolarisSEOCategoryPageReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetMappedReelTypeFromReelDict,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCalendarPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSpinner,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisgetReelDictFromAdMediaItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/utils\\/PolarisvideoMergeUtils,shared\\/third-party-bundles\\/strip-variation-selectors-1.0.0,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserFollowingPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreToast,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccountSettings\\/PolarisprofessionalAccountSettingsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreEyePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagFromNativeHashtag,js\\/instagram\\/polaris\\/core\\/bootstrapPolarisPreloader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisIGCoreClockDottedPanoOutline24Icon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksErrors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisClickEventAuditLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/payments\\/PolarisPaymentsLoggerConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDirectPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnfavoriteUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpFbql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockOutline96Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionFooter.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksStyles,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreBorderedIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksRenderLifecycleExtension,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIPostInboxSeenData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetAymlData,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/likedByList\\/PolarisLikedByListState,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnFeedPage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayMake,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenURL,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionCloseChatTabNewMessage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/lib\\/PolariswithForwardRef,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetInboxData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberLt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberEq,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIClearUserSearchHistory,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisDOMRect,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisAnalyticsContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWriteGlobalConsistencyStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionClearStopDeletionNonce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisTriggerRender,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentLikeLists\\/PolarisCommentLikeListsState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mediaPrefetch\\/PolarisMediaPrefetchActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarissupportsCredentialManagement,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceChildren,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/PolarisProfileQEHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionOpenChatTabThread,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisStoriesArchiveController\\/JSRouteBuilderArtifact\\/XPolarisStoriesArchiveControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberSub,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentOpenDialogAsScreenOnMobileDoNotUse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksRemoveChild,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisHideNavQueryParam.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGEndTTIEventV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/threadedComment\\/PolarisThreadedCommentActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64ConstNumber,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisFeedActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksTextInputGetText,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeLoggedOutRootQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncActionWithDataManifest,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentOpenDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentDimensionValue,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisViewer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/types\\/PolarisReelTypes,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeFragment,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishasDirect,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisgetCrossOriginAttribute,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenReportUser,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisFeedTimelineFragmentQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/PolarisBugReportContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDirectInteropGatingManager,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentColorValue,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateCubicBezier,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolAnd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentCloseAllPrompts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/getPolarisALGestureType,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/businessProfileDirectoryPage\\/PolarisBusinessProfileDirectoryPageActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPushBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentFlowCompletionCallback,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisSettingsTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/common\\/PolarisDailyLimitEnforcementContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisprefix,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDismissKeyboard.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y9\\/r\\/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthTestIDs,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebAdEventsAuditFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreGetIconColor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveReactionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadUserPreferences,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolarisCookieModalEnums,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMatch,js\\/instagram\\/polaris\\/core\\/relay\\/PolarisRelayEnvironmentContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisscrollTo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebNotificationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksChildAtIndex,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/getPolarisPostIdFromNativeId,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisFeedQueryConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisstagingSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisAuthActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGenerateCreditCardToken,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramWebAdEventsAuditFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramWebAdEventsAuditFalcoEvent,js\\/instagram\\/polaris\\/clips\\/desktop\\/hasClipsDesktopTab,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisFeedTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionCreatePendingThreadsLoaded,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/polarisCanRageShake,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisLoginController\\/JSRouteBuilderArtifact\\/XPolarisLoginControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/PolarisFeedPageConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBindWithArrayV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisReduxUpdateUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseToScreen,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisFollowingActionsContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisShouldLogLinkClick,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironmentUtils,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnDirectPage.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/r\\/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisCreationCameraLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellContent.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPreviewPhoto.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGShoppingNavBar,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/PolarisBugReportProvider.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisgetDirectCacheState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisqe,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreMegaphoneHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/lib\\/PolarisLoggedOutLoginStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccount\\/PolarisProfessionalAccountLoggerUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404TrendingContentPage.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarissavedPostsSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/actions\\/PolarisSettingsActionSetPrivateAccount,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxAuth\\/PolarisFXAuthActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/transition\\/PolarisTransition.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullStateSection.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetImageUrlFromPreviewData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPTooltipComponent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupChangeNumberForm.react,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACImagePicker.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisQEHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBirthdaysAdditionalInfoModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksComponentContext,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/payments\\/PolarisFBPayCheckoutWebFunnelConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisUnexpectedErrorIcon.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLf44\\/ye\\/l\\/en_US\\/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/lib\\/PolarisDynamicExploreGridPositionUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/location\\/PolarisLocationMediaModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroLoggedOutUpsell.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisGetCreationModalDimensions,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellModalNavBar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserPanoOutlineIcon,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayMedia,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLoggingOutDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksStyle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericNavBackButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingUsers\\/PolarisTrendingUserReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEventListener,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisAsyncSwitchAccountsModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCompassPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltipExtension,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisRelationshipTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mentalWellBeing\\/PolarisscreenTimeReducer,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsTabDesktop,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDirectPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisStopDeletionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericOnboardingUnit.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisBlockDialogContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInfoPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagFollowList\\/PolarishashtagFollowListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFeedLogger,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBasePortal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInsightsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMailPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreArrowCcwPanoOutlineIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihe24\\/yg\\/l\\/en_US\\/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisformatDate,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisrootReducer,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeLoggedOutRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/consent\\/PolarisConsentActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/actions\\/PolarisSignupActionSignup,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopQuery.graphql,js\\/5sifmyhjlfwooggs.pkg,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopPaginationQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNav.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisUserCookieConsentStrings,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeRootQuery.graphql,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabRootPaginationQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisLiveActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarisSearchActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisCanvasGradientSpinner,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fbConnect\\/PolarisFBConnectActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisReportConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarissavedPostsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/Direct\\/PolarisDirectBadgeIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCorePhoneNumberInput,js\\/2e440z8p5ykgcg80.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/actions\\/PolarisSignupActionMaybeConsentAndSignup,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisAccessDataStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutIconUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisMobileSearchBox.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisLandingForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/multisignup\\/PolarismultiSignupReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i4NY4\\/y-\\/l\\/en_US\\/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/AddToHomeScreen\\/PolarisAddToHomeScreen.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSearch,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/date_formats\\/PolarisDateFormatConfig.en_US,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutPhysicalAddressUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBanner.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/live\\/PolarisLiveAPI,js\\/6k7qj261wgco8k8w.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieConsentModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolaristransformFeedItemListEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fncr\\/PolarisLoginQPL,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryFullscreenManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/actions\\/PolarisSettingsActionLogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationsBannerV2.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolariswithPPRLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisQueryParams,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisStagingActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisguideReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp500UnexpectedErrorPage.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheetOrModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationPopover.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisfilterUnsupportedNativeFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDateHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsumerDataCache,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreTooltip,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointReact.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisrelationshipSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksShadowContext.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ijPr4\\/yv\\/l\\/en_US\\/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionRefreshPendingInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisProfileUtils,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSNewStoryPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentBitArrayLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSvgIconWithCircularBackground.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/utils\\/PolarisContainerModuleUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisUnsupportedBrowserSnackbar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisFeedItemModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksRichText,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsValidators,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAccountPrivacyBody.react,js\\/instagram\\/polaris\\/www_schema_components\\/usePolarisFXCalSettings.react,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSAddFriendOutline96Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relatedProfile\\/PolarisrelatedProfileReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisPushAPI,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/PolarisPanavisionQEHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/webReport\\/PolariswebReportReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateDimension,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEventLoop,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksOpenScreen,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectThreads,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformActivityFeedItemEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAppMessengerPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksViewTransformsExtensionWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSwitch,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationTooltipWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateColor,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTextInput.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUce4\\/yS\\/l\\/en_US\\/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisOneTapLoginModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationsDirectory\\/PolarislocationsDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEmailDomainHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericMobileHeader.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCorePortalPositionProvider,js\\/instagram\\/igds\\/IGDSToast\\/IGDSToasterProvider.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetFeedItemFromFeedItemDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisLoginLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXCalLinkingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksQPClick,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisObjectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAppMessengerPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarisSearchAPI,js\\/instagram\\/igds\\/IGDSBadge\\/IGDSBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisSearchConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisVirtualizedWithScrollLogging.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisSnackbar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/stories\\/PolarisUserAvatarLivePulse.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButtonGroup,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsNormalizers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultPlaceItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetReelFromReelDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentCollapsible.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGPhoneNumberInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisConfirmDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisRemoveSupervisionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppStoreLauncher.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisUserPreferences,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserFollowingFilledIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iow94\\/yJ\\/l\\/en_US\\/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisnewPostsPillReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisPostBlockConfirmDialog.react,js\\/instagram\\/polaris\\/core\\/initIGWebJSErrorLogging,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTooManyAccountsDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolaristoastMiddleware,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButtonContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisReelConstants,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsLoggedOutHome,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenBottomSheetV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksDataBinding,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsHome,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisViewpointUtils,js\\/instagram\\/igds\\/IGDSToast\\/useIGDSToast\\/IGDSToasterUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIconButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStorySelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolariscacheMiddleware,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCircleCheckPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp500UnexpectedErrorPageDeferred.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePlayPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisContextTooltip.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksLocalStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksCommerceGetCreditCardMetadata,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHomePanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavToggleThemeButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHomePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagMediaFromGraphHashtag.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iGsb4\\/y5\\/l\\/en_US\\/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationConstants,js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionLoadFeedPageFromNative,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/consent\\/PolarisconsentReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisIDBKeyValStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcherLanguageContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultUserItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsListItems.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGrid.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetInstallAppHref,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisBaseShell.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionLoadInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalAccountSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/suggestedUser\\/PolarissuggestedUserReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisnormalizeSignupResponse,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionInitInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisgetReelFromGraphReel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromUserDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePopover,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPBloksRenderer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/credentialmanager\\/PolarisCredentialManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupEmailSuggestionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEncryptionHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksTextInput.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ivkL4\\/yP\\/l\\/en_US\\/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionCreateThread,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFollowDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/maps\\/PolarisMapReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarissendLogoutRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisnormalizeSectionalItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXCalSettingsCLFooter.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksSwitch,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/www_schema_components\\/usePolarisFXCalSettings.graphql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksDatetimeTextProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagMediaFromNativeHashtag,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionGetInteropStatus,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerLoggingParams,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/centralizedUpsell\\/PolariscentralizedUpsellReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelationshipFromUserDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/oneTap\\/PolarisOneTapActions,js\\/instagram\\/polaris\\/adapters\\/lib\\/IGRouter,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionLoadActivityFeedRelationships,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisBlockDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisLiveConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMoonIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisConsumerReduxStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreStarPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReportPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroCarrierSignalPixel.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5iB4\\/y7\\/l\\/en_US\\/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/ebgei4gu4pc8ggo0.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3idBq4\\/yL\\/l\\/en_US\\/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierTwo\"]},\"js\\/7kmm5os4dkkccs0k.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierTwo\"]},\"js\\/89ky0idroy8sosks.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yF\\/r\\/w0HcDFoIhg9.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/9mk9w177n9s88w4c.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUXn4\\/yu\\/l\\/en_US\\/DitlTwroUi6.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCall.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToaster.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToast.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCallFilled24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreVideoChatFilled24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/call\\/PolarisCallNavigator,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateActionableToastContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCallBlinkingTitle.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateActionableToast.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/hooks\\/usePolarisMQTT,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/useBlinkDocumentTitle,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisCallController\\/JSRouteBuilderArtifact\\/XPolarisCallControllerRouteBuilder,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToastContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/Calling\\/IGWebPreCallContext.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEwU4\\/y-\\/l\\/en_US\\/KKZf8FX1sT4ozwG_xmxgK87lOXZygpG8_2QF11C8Kc69HUxMHl9LidgmLT6R-X0Ih2WchIFc77ydpiZQLDmBv2K-_nOseCHUKy2h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLKhsU-pEZX1mw1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/e16nnvrxf5csw888.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/5Gtc5QsnfLa.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/1037sw9494usok0w.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEsn4\\/yw\\/l\\/en_US\\/3YigL2Icjwr.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/81cjnzja8dsswk4c.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/80BsmNKe4b8.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCall.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/l\\/0,cross\\/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/djeihiulvfkgcccw.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/YT7n1sgH1lv.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]}}};</script>\n<script type=\"application/json\" data-content-len=\"69\" data-sjs>{\"require\":[[\"qplTagServerJS\",null,null,[[\"lastServerTagFlushed\"]]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"cometPageRender\",51);</script>\n<script type=\"application/json\" data-content-len=\"98\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"cometPageRender\",51]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierOneHasteResponseStart\",109);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierOneHasteResponseStart\",109]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierOneHasteResponseEnd\",197);</script>\n<script type=\"application/json\" data-content-len=\"110\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierOneHasteResponseEnd\",197]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierTwoHasteResponseStart\",210);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierTwoHasteResponseStart\",210]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierTwoHasteResponseEnd\",293);</script>\n<script type=\"application/json\" data-content-len=\"110\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierTwoHasteResponseEnd\",293]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierThreeHasteResponseStart\",302);</script>\n<script type=\"application/json\" data-content-len=\"114\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierThreeHasteResponseStart\",302]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierThreeHasteResponseEnd\",326);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierThreeHasteResponseEnd\",326]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"responseStart\",1);</script>\n<script type=\"application/json\" data-content-len=\"95\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"responseStart\",1]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"responseEnd\",331);</script>\n<script type=\"application/json\" data-content-len=\"95\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"responseEnd\",331]]]}</script>\n<script>window.plbs = {\"tierOne\":[234928,71200],\"tierTwo\":[73086,18419],\"tierThree\":[17990,4741]};</script>\n</body></html>\n\n\";s:3:\"raw\";s:513829:\"HTTP/1.1 200 OK\r\nVary: Accept-Encoding\r\nContent-Encoding: br\r\naccept-ch-lifetime: 4838400\r\naccept-ch: sec-ch-prefers-color-scheme\r\nreporting-endpoints: \r\ncross-origin-opener-policy: same-origin-allow-popups\r\nStrict-Transport-Security: max-age=15552000\r\nContent-Type: text/html; charset=\"utf-8\"\r\nX-FB-Debug: i6lK02kjFTUH4j1T+IDjQ0vPTR7GBv58Z2UxBBF1f7s6RQLzGpuqHPN15HltDMrOYcZgloC7HjJxCdYIYBPshQ==\r\nDate: Sat, 21 Jan 2023 12:41:35 GMT\r\nPriority: u=3,i\r\nX-FB-TRIP-ID: 1679558926\r\nAlt-Svc: h3=\":443\"; ma=86400\r\nConnection: close\r\n\r\n<!DOCTYPE html><html class=\"_9dls\" style=\"background-color: rgb(var(--ig-secondary-background))\" lang=\"en\" dir=\"ltr\"><head><link data-default-icon=\"https://static.cdninstagram.com/rsrc.php/v3/yb/r/lswP1OF1o6P.png\" rel=\"icon\" sizes=\"192x192\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yb/r/lswP1OF1o6P.png\" /><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/yv/r/BTPhT6yIYfq.ico\" rel=\"shortcut icon\" type=\"image/x-icon\" href=\"https://static.cdninstagram.com/rsrc.php/yv/r/BTPhT6yIYfq.ico\" /><meta name=\"color-scheme\" content=\"light\" /><style nonce=\"7DXsYBtw\">:root,.__ig-light-mode{--fds-black:#000000;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0, 0.5);--fds-black-alpha-60:rgba(0, 0, 0, 0.6);--fds-black-alpha-80:rgba(0, 0, 0, 0.8);--fds-blue-05:#ECF3FF;--fds-blue-30:#AAC9FF;--fds-blue-40:#77A7FF;--fds-blue-60:#1877F2;--fds-blue-70:#2851A3;--fds-blue-80:#1D3C78;--fds-button-text:#444950;--fds-comment-background:#F2F3F5;--fds-dark-mode-gray-35:#CCCCCC;--fds-dark-mode-gray-50:#828282;--fds-dark-mode-gray-70:#4A4A4A;--fds-dark-mode-gray-80:#373737;--fds-dark-mode-gray-90:#282828;--fds-dark-mode-gray-100:#1C1C1C;--fds-gray-00:#F5F6F7;--fds-gray-05:#F2F3F5;--fds-gray-10:#EBEDF0;--fds-gray-20:#DADDE1;--fds-gray-25:#CCD0D5;--fds-gray-30:#BEC3C9;--fds-gray-45:#8D949E;--fds-gray-70:#606770;--fds-gray-80:#444950;--fds-gray-90:#303338;--fds-gray-100:#1C1E21;--fds-green-55:#00A400;--fds-highlight:#3578E5;--fds-highlight-cell-background:#ECF3FF;--fds-primary-icon:#1C1E21;--fds-primary-text:#1C1E21;--fds-red-55:#FA383E;--fds-soft:cubic-bezier(.08,.52,.52,1);--fds-spectrum-aluminum-tint-70:#E4F0F6;--fds-spectrum-blue-gray-tint-70:#CFD1D5;--fds-spectrum-cherry:#F35369;--fds-spectrum-cherry-tint-70:#FBCCD2;--fds-spectrum-grape-tint-70:#DDD5F0;--fds-spectrum-grape-tint-90:#F4F1FA;--fds-spectrum-lemon-dark-1:#F5C33B;--fds-spectrum-lemon-tint-70:#FEF2D1;--fds-spectrum-lime:#A3CE71;--fds-spectrum-lime-tint-70:#E4F0D5;--fds-spectrum-orange-tint-70:#FCDEC5;--fds-spectrum-orange-tint-90:#FEF4EC;--fds-spectrum-seafoam-tint-70:#CAEEF9;--fds-spectrum-slate-dark-2:#89A1AC;--fds-spectrum-slate-tint-70:#EAEFF2;--fds-spectrum-teal:#6BCEBB;--fds-spectrum-teal-dark-1:#4DBBA6;--fds-spectrum-teal-dark-2:#31A38D;--fds-spectrum-teal-tint-70:#D2F0EA;--fds-spectrum-teal-tint-90:#F0FAF8;--fds-spectrum-tomato:#FB724B;--fds-spectrum-tomato-tint-30:#F38E7B;--fds-spectrum-tomato-tint-90:#FDEFED;--fds-strong:cubic-bezier(.12,.8,.32,1);--fds-white:#FFFFFF;--fds-white-alpha-05:rgba(255, 255, 255, 0.05);--fds-white-alpha-10:rgba(255, 255, 255, 0.1);--fds-white-alpha-20:rgba(255, 255, 255, 0.2);--fds-white-alpha-30:rgba(255, 255, 255, 0.3);--fds-white-alpha-40:rgba(255, 255, 255, 0.4);--fds-white-alpha-50:rgba(255, 255, 255, 0.5);--fds-white-alpha-60:rgba(255, 255, 255, 0.6);--fds-white-alpha-80:rgba(255, 255, 255, 0.8);--fds-yellow-20:#FFBA00;--accent:#0095F6;--always-white:#FFFFFF;--always-black:black;--always-dark-gradient:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));--always-dark-overlay:rgba(0, 0, 0, 0.4);--always-light-overlay:rgba(255, 255, 255, 0.4);--always-gray-40:#65676B;--always-gray-75:#BCC0C4;--always-gray-95:#F0F2F5;--attachment-footer-background:#F0F2F5;--background-deemphasized:#F0F2F5;--base-blue:#1877F2;--base-cherry:#F3425F;--base-grape:#9360F7;--base-lemon:#F7B928;--base-lime:#45BD62;--base-pink:#FF66BF;--base-seafoam:#54C7EC;--base-teal:#2ABBA7;--base-tomato:#FB724B;--blue-link:#00376B;--border-focused:#65676B;--card-background:#FFFFFF;--card-background-flat:#F7F8FA;--comment-background:#F0F2F5;--comment-footer-background:#F6F9FA;--dataviz-primary-1:rgb(48,200,180);--disabled-button-background:rgba(0, 149, 246, 0.3);--disabled-button-text:#FFFFFF;--disabled-icon:#BCC0C4;--disabled-text:#BCC0C4;--divider:#DBDBDB;--event-date:#F3425F;--fb-wordmark:#1877F2;--filter-accent:invert(39%) sepia(57%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(147.75%) hue-rotate(202deg) brightness(97%) contrast(96%);--filter-always-white:invert(100%);--filter-disabled-icon:invert(80%) sepia(6%) saturate(200%) saturate(120%) hue-rotate(173deg) brightness(98%) contrast(89%);--filter-placeholder-icon:invert(59%) sepia(11%) saturate(200%) saturate(135%) hue-rotate(176deg) brightness(96%) contrast(94%);--filter-primary-icon:invert(8%) sepia(10%) saturate(200%) saturate(200%) saturate(166%) hue-rotate(177deg) brightness(104%) contrast(91%);--filter-secondary-icon:invert(39%) sepia(21%) saturate(200%) saturate(109.5%) hue-rotate(174deg) brightness(94%) contrast(86%);--filter-warning-icon:invert(77%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(128%) hue-rotate(359deg) brightness(102%) contrast(107%);--filter-blue-link-icon:invert(30%) sepia(98%) saturate(200%) saturate(200%) saturate(200%) saturate(166.5%) hue-rotate(192deg) brightness(91%) contrast(101%);--filter-positive:invert(37%) sepia(61%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(115%) hue-rotate(91deg) brightness(97%) contrast(105%);--filter-negative:invert(25%) sepia(33%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(110%) hue-rotate(345deg) brightness(132%) contrast(96%);--glimmer-spinner-icon:#65676B;--hero-banner-background:#FFFFFF;--hosted-view-selected-state:rgba(45, 136, 255, 0.1);--highlight-bg:#E7F3FF;--hover-overlay:rgba(0, 0, 0, 0.05);--list-cell-chevron:#65676B;--media-hover:rgba(68, 73, 80, 0.15);--media-inner-border:rgba(0, 0, 0, 0.1);--media-outer-border:#FFFFFF;--media-pressed:rgba(68, 73, 80, 0.35);--messenger-card-background:#FFFFFF;--messenger-reply-background:#F0F2F5;--overlay-alpha-80:rgba(0, 0, 0, 0.65);--overlay-on-media:rgba(0, 0, 0, 0.6);--nav-bar-background:#FFFFFF;--nav-bar-background-gradient:linear-gradient(to top, #FFFFFF, rgba(255,255,255.9), rgba(255,255,255,.7), rgba(255,255,255,.4), rgba(255,255,255,0));--nav-bar-background-gradient-wash:linear-gradient(to top, #F0F2F5, rgba(240,242,245.9), rgba(240,242,245,.7), rgba(240,242,245,.4), rgba(240,242,245,0));--negative:hsl(350, 87%, 55%);--negative-background:hsl(350, 87%, 55%, 20%);--new-notification-background:#E7F3FF;--non-media-pressed:rgba(68, 73, 80, 0.15);--non-media-pressed-on-dark:rgba(255, 255, 255, 0.3);--notification-badge:#e41e3f;--placeholder-icon:#65676B;--placeholder-image:rgb(164, 167, 171);--placeholder-text:#65676B;--placeholder-text-on-media:rgba(255, 255, 255, 0.5);--popover-background:#FFFFFF;--positive:#31A24C;--positive-background:#DEEFE1;--press-overlay:rgba(0, 0, 0, 0.10);--primary-button-background:#0095F6;--primary-button-icon:#FFFFFF;--primary-button-pressed:#77A7FF;--primary-button-text:#FFFFFF;--primary-deemphasized-button-background:rgba(0, 149, 246, 0.1);--primary-deemphasized-button-pressed:rgba(0, 149, 246, 0.05);--primary-deemphasized-button-pressed-overlay:rgba(0, 149, 246, 0.15);--primary-deemphasized-button-text:#0095F6;--primary-icon:#262626;--primary-text:#262626;--primary-text-on-media:#FFFFFF;--primary-web-focus-indicator:#D24294;--progress-ring-neutral-background:rgba(0, 0, 0, 0.2);--progress-ring-neutral-foreground:#000000;--progress-ring-on-media-background:rgba(255, 255, 255, 0.2);--progress-ring-on-media-foreground:#FFFFFF;--progress-ring-blue-background:rgba(24, 119, 242, 0.2);--progress-ring-blue-foreground:hsl(214, 89%, 52%);--progress-ring-disabled-background:rgba(190,195,201, 0.2);--progress-ring-disabled-foreground:#BEC3C9;--rating-star-active:#EB660D;--scroll-thumb:#BCC0C4;--scroll-shadow:0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(0, 0, 0, 0.1) inset;--secondary-button-background:transparent;--secondary-button-background-floating:#ffffff;--secondary-button-background-on-dark:rgba(0, 0, 0, 0.4);--secondary-button-pressed:rgba(0, 0, 0, 0.05);--secondary-button-stroke:transparent;--secondary-button-text:#0095F6;--secondary-icon:#8E8E8E;--secondary-text:#8E8E8E;--secondary-text-on-media:rgba(255, 255, 255, 0.9);--section-header-text:#4B4C4F;--shadow-1:rgba(0, 0, 0, 0.1);--shadow-2:rgba(0, 0, 0, 0.2);--shadow-5:rgba(0, 0, 0, 0.5);--shadow-8:rgba(0, 0, 0, 0.8);--shadow-inset:rgba(255, 255, 255, 0.5);--shadow-elevated:0px 5px 12px rgba(52, 72, 84, 0.2);--shadow-persistent:0px 0px 12px rgba(52, 72, 84, 0.05);--shadow-primary:0px 5px 12px rgba(52, 72, 84, 0.2);--surface-background:#FFFFFF;--switch-active:hsl(214, 89%, 52%);--text-highlight:rgba(24, 119, 242, 0.2);--text-input-background:#FFFFFF;--toast-background:#FFFFFF;--toast-text:#1C2B33;--toast-text-link:#216FDB;--toggle-active-background:#E7F3FF;--toggle-active-icon:rgb(24, 119, 242);--toggle-active-text:rgb(24, 119, 242);--toggle-button-active-background:#E7F3FF;--wash:#FAFAFA;--web-wash:#FAFAFA;--warning:hsl(40, 89%, 52%);--fb-logo-color:#2D88FF;--dialog-anchor-vertical-padding:56px;--header-height:0px;--global-panel-width:0px;--global-panel-width-expanded:0px;--alert-banner-corner-radius:8px;--button-corner-radius:4px;--button-corner-radius-medium:10px;--button-corner-radius-large:12px;--button-height-large:40px;--button-height-medium:36px;--button-padding-horizontal-large:16px;--button-padding-horizontal-medium:16px;--button-icon-padding-large:16px;--button-icon-padding-medium:16px;--button-inner-icon-spacing-large:3px;--button-inner-icon-spacing-medium:3px;--blueprint-button-height-medium:40px;--blueprint-button-height-large:48px;--card-corner-radius:4px;--card-box-shadow:0 12px 28px 0 var(--shadow-2), 0 2px 4px 0 var(--shadow-1);--card-padding-vertical:20px;--chip-corner-radius:6px;--dialog-corner-radius:8px;--glimmer-corner-radius:8px;--image-corner-radius:4px;--input-corner-radius:4px;--nav-list-cell-corner-radius:8px;--list-cell-corner-radius:8px;--list-cell-min-height:52px;--list-cell-padding-vertical:20px;--list-cell-padding-vertical-with-addon:14px;--nav-list-cell-min-height:0px;--nav-list-cell-padding-vertical:16px;--nav-list-cell-padding-vertical-with-addon:16px;--text-input-multi-padding-between-text-scrollbar:20px;--text-input-multi-padding-scrollbar:16px;--toast-corner-radius:4px;--text-input-caption-margin-top:10px;--text-input-label-top:22px;--text-input-min-height:64px;--text-input-padding-vertical:12px;--fds-animation-enter-exit-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-enter-exit-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-swap-shuffle-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-swap-shuffle-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-move-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-move-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-passive-move-in:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-passive-move-out:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-quick-move-in:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-quick-move-out:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-fade-in:cubic-bezier(0, 0, 1, 1);--fds-animation-fade-out:cubic-bezier(0, 0, 1, 1);--fds-duration-extra-extra-short-in:100ms;--fds-duration-extra-extra-short-out:100ms;--fds-duration-extra-short-in:200ms;--fds-duration-extra-short-out:150ms;--fds-duration-short-in:280ms;--fds-duration-short-out:200ms;--fds-duration-medium-in:400ms;--fds-duration-medium-out:350ms;--fds-duration-long-in:500ms;--fds-duration-long-out:350ms;--fds-duration-extra-long-in:1000ms;--fds-duration-extra-long-out:1000ms;--fds-duration-none:0ms;--fds-fast:200ms;--fds-slow:400ms;--font-family-apple:system-ui, -apple-system, BlinkMacSystemFont, \'.SFNSText-Regular\', sans-serif;--font-family-code:ui-monospace, Menlo, Consolas, Monaco, monospace;--font-family-default:Helvetica, Arial, sans-serif;--font-family-segoe:Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;--body-font-family:Placeholder Font;--body-font-size:0.9375rem;--body-font-weight:400;--body-line-height:1.3333;--body-emphasized-font-family:Placeholder Font;--body-emphasized-font-size:0.9375rem;--body-emphasized-font-weight:600;--body-emphasized-line-height:1.3333;--headline1-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline1-font-size:1.75rem;--headline1-font-weight:700;--headline1-line-height:1.2143;--headline2-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline2-font-size:1.5rem;--headline2-font-weight:700;--headline2-line-height:1.25;--headline3-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline3-font-size:1.0625rem;--headline3-font-weight:700;--headline3-line-height:1.2941;--meta-font-family:Placeholder Font;--meta-font-size:0.8125rem;--meta-font-weight:400;--meta-line-height:1.3846;--meta-emphasized-font-family:Placeholder Font;--meta-emphasized-font-size:0.8125rem;--meta-emphasized-font-weight:600;--meta-emphasized-line-height:1.3846;--primary-label-font-family:Optimistic Display Medium, system-ui, sans-serif;--primary-label-font-size:1.0625rem;--primary-label-font-weight:500;--primary-label-line-height:1.2941;--secondary-label-font-family:Placeholder Font;--secondary-label-font-size:0.9375rem;--secondary-label-font-weight:500;--secondary-label-line-height:1.3333;--text-input-field-font-family:Placeholder Font;--text-input-field-font-size:1rem;--text-input-field-font-weight:500;--text-input-field-line-height:1.2941;--text-input-label-font-family:Placeholder Font;--text-input-label-font-size:17px;--text-input-label-font-size-scale-multiplier:0.75;--text-input-label-font-weight:400;--text-input-label-line-height:1.2941;--dataviz-primary-2:rgb(134,218,255);--dataviz-primary-3:rgb(95,170,255);--dataviz-secondary-1:rgb(118,62,230);--dataviz-secondary-2:rgb(147,96,247);--dataviz-secondary-3:rgb(219,26,139);--dataviz-supplementary-1:rgb(255,122,105);--dataviz-supplementary-2:rgb(241,168,23);--dataviz-supplementary-3:rgb(49,162,76);--dataviz-supplementary-4:rgb(50,52,54);--base-unit:4px;--blue-0:#f5fbff;--blue-2:#b3dbff;--blue-4:#47afff;--blue-5:#0095f6;--blue-6:#0074cc;--blue-7:#0057a3;--blue-8:#00376b;--blue-9:#002952;--breakpoint-medium-width:1536px;--breakpoint-small-width:1024px;--challenge-width:460px;--clr-separator:#efefef;--clr_red_dark_30:#af2634;--creation-header-height:43px;--creation-min-padding-x:32px;--creation-modal-max-height:898px;--creation-modal-min-height:391px;--creation-padding-x:64px;--creation-padding-y:112px;--creation-settings-width:340px;--cyan-5:#27c4f5;--desktop-center-feed-min-width-breakpoint:1500px;--desktop-grid-item-margin:28px;--desktop-in-feed-story-item-height:208px;--desktop-in-feed-story-item-width:116px;--desktop-nav-height:60px;--desktop-skinny-nav-height:60px;--direct-attachment-image-grid-item-size:78px;--direct-attachment-story-height:150px;--direct-attachment-story-large-height:256px;--direct-attachment-story-large-width:164px;--direct-attachment-story-width:84px;--direct-message-max-width:236px;--fb-connect-blue:#4f67b0;--fb-signup-page-profile-pic-size:88px;--feed-sidebar-padding:32px;--feed-sidebar-width:319px;--feed-width:470px;--font-family-system:-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;--font-weight-system-bold:700;--font-weight-system-extra-bold:800;--font-weight-system-extra-light:200;--font-weight-system-light:300;--font-weight-system-medium:500;--font-weight-system-regular:400;--font-weight-system-semibold:600;--footer-width-wide:1150px;--gradient-lavender:#d300c5;--gradient-orange:#ff7a00;--gradient-pink:#ff0169;--gradient-purple:#7638fa;--gradient-yellow:#ffd600;--green-4:#78de45;--green-5:#58c322;--green-6:#37a600;--grey-0:#f5f5f5;--grey-1:#efefef;--grey-2:#dbdbdb;--grey-3:#c7c7c7;--grey-4:#a8a8a8;--grey-5:#8e8e8e;--grey-6:#737373;--grey-7:#555555;--grey-8:#363636;--grey-9:#262626;--ig-badge:255, 48, 64;--ig-close-friends-refreshed:28, 209, 79;--ig-disabled-action-text:169, 219, 255;--ig-error-or-destructive:237, 73, 86;--ig-facebook-blue:53, 121, 234;--ig-full-screen-background:54, 54, 54;--ig-live-badge:255, 1, 105;--ig-primary-button:0, 149, 246;--ig-primary-button-hover:24, 119, 242;--ig-secondary-button-background:239, 239, 239;--ig-secondary-button-hover:219, 219, 219;--ig-secondary-button-focused:224, 241, 255;--ig-tertiary-button-background:255, 255, 255;--ig-tertiary-button-border:219, 219, 219;--ig-tertiary-button-hover:245, 245, 245;--ig-tertiary-button-text:38, 38, 38;--ig-subscribers-only:118, 56, 250;--ig-success:88, 195, 34;--ig-text-on-color:255, 255, 255;--ig-text-on-media:255, 255, 255;--in-feed-story-item-height:240px;--in-feed-story-item-width:135px;--in-feed-story-item-padding:12px;--input-border-radius:6px;--large-layout-min:1500px;--like-animation-duration:1000ms;--live-video-border-radius:4px;--live-video-right-col-width:336px;--media-content-card-width:350px;--media-content-card-width-small:300px;--media-info:335px;--medium-layout-max:1499px;--medium-layout-min:1080px;--medium-screen-max:875px;--medium-screen-min:736px;--mobile-grid-item-margin:2px;--mobile-nav-height:45px;--modal-backdrop-dark:rgba(0, 0, 0, 0.85);--modal-backdrop-default:rgba(0, 0, 0, 0.65);--modal-border-radius:12px;--modal-padding:16px;--modal-z-index:100;--nav-narrow-width:72px;--nav-medium-width:244px;--nav-wide-width:335px;--nav-bottom-screen-max:767px;--nav-narrow-screen-min:768px;--nav-medium-screen-min:1264px;--nav-wide-screen-min:1920px;--orange-5:#fd8d32;--photo:600px;--pink-5:#d10869;--post-step-indicator:168, 168, 168;--purple-5:#a307ba;--red-4:#ff6874;--red-5:#ed4956;--red-6:#c62330;--red-7:#a70311;--reels-large-screen-min:1366px;--refinement-section-height:50px;--revamp-nav-bottom-toolbar-height:50px;--revamp-feed-card-max-height:758px;--revamp-feed-card-min-height:615px;--revamp-feed-card-min-width:710px;--revamp-feed-card-media-min-width:390px;--revamp-feed-card-details-section-width:320px;--revamp-feed-card-details-section-width-xl:340px;--revamp-feed-horizontal-padding-small-screen:24px;--revamp-feed-horizontal-padding-large-screen:32px;--revamp-feed-vertical-padding:32px;--right-rail-width:300px;--scrollable-content-header-height-large:56px;--scrollable-content-header-height-med:49px;--scrollable-content-header-height:44px;--search-box-height:40px;--search-modal-height-expanded:450px;--search-modal-height:362px;--search-modal-top-offset:12px;--search-result-height:50px;--search-result-inline-top-offset:60px;--search-result-list-width:375px;--site-width-narrow:600px;--site-width-wide:935px;--small-layout-max:1079px;--small-layout-min:800px;--small-screen-max:735px;--small-screen-min:414px;--story-progressbar-update-tick:0.1s;--story-swap-animation-duration:350ms;--system-10-font-size:10px;--system-10-line-height:12px;--system-11-font-size:11px;--system-11-line-height:13px;--system-12-font-size:12px;--system-12-line-height:16px;--system-14-font-size:14px;--system-14-line-height:18px;--system-16-font-size:16px;--system-16-line-height:24px;--system-18-font-size:18px;--system-18-line-height:24px;--system-20-font-size:20px;--system-20-line-height:25px;--system-22-font-size:22px;--system-22-line-height:26px;--system-24-font-size:24px;--system-24-line-height:27px;--system-26-font-size:26px;--system-26-line-height:28px;--system-28-font-size:28px;--system-28-line-height:32px;--system-30-font-size:30px;--system-30-line-height:36px;--system-32-font-size:32px;--system-32-line-height:40px;--web-always-black:0, 0, 0;--web-always-white:255, 255, 255;--web-overlay-on-media:38, 38, 38;--web-secondary-action:224, 241, 255;--yellow-5:#fdcb5c;--challenge-link:54,54,54;--docpen-lightgrey:243,243,243;--ig-banner-background:255,255,255;--ig-elevated-background:255,255,255;--ig-elevated-separator:219,219,219;--ig-focus-stroke:168,168,168;--ig-highlight-background:239,239,239;--ig-link:0,55,107;--ig-primary-background:255,255,255;--ig-primary-text:38,38,38;--ig-secondary-background:250,250,250;--ig-secondary-button:38,38,38;--ig-secondary-text:142, 142, 142;--ig-separator:219,219,219;--ig-stroke:219,219,219;--ig-temporary-highlight:245,251,255;--ig-tertiary-text:199,199,199;--post-separator:239,239,239;--tos-box-shadow:0,0,0;}.__ig-dark-mode{--fds-black:black;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0, 0.5);--fds-black-alpha-60:rgba(0, 0, 0, 0.6);--fds-black-alpha-80:rgba(0, 0, 0, 0.8);--fds-blue-05:black;--fds-blue-30:black;--fds-blue-40:black;--fds-blue-60:black;--fds-blue-70:black;--fds-blue-80:black;--fds-button-text:black;--fds-comment-background:black;--fds-dark-mode-gray-35:black;--fds-dark-mode-gray-50:black;--fds-dark-mode-gray-70:black;--fds-dark-mode-gray-80:black;--fds-dark-mode-gray-90:black;--fds-dark-mode-gray-100:black;--fds-gray-00:black;--fds-gray-05:black;--fds-gray-10:black;--fds-gray-20:black;--fds-gray-25:black;--fds-gray-30:black;--fds-gray-45:black;--fds-gray-70:black;--fds-gray-80:black;--fds-gray-90:black;--fds-gray-100:black;--fds-green-55:black;--fds-highlight:black;--fds-highlight-cell-background:black;--fds-primary-icon:white;--fds-primary-text:white;--fds-red-55:black;--fds-soft:cubic-bezier(.08,.52,.52,1);--fds-spectrum-aluminum-tint-70:black;--fds-spectrum-blue-gray-tint-70:black;--fds-spectrum-cherry:black;--fds-spectrum-cherry-tint-70:black;--fds-spectrum-grape-tint-70:black;--fds-spectrum-grape-tint-90:black;--fds-spectrum-lemon-dark-1:black;--fds-spectrum-lemon-tint-70:black;--fds-spectrum-lime:black;--fds-spectrum-lime-tint-70:black;--fds-spectrum-orange-tint-70:black;--fds-spectrum-orange-tint-90:black;--fds-spectrum-seafoam-tint-70:black;--fds-spectrum-slate-dark-2:black;--fds-spectrum-slate-tint-70:black;--fds-spectrum-teal:black;--fds-spectrum-teal-dark-1:black;--fds-spectrum-teal-dark-2:black;--fds-spectrum-teal-tint-70:black;--fds-spectrum-teal-tint-90:black;--fds-spectrum-tomato:black;--fds-spectrum-tomato-tint-30:black;--fds-spectrum-tomato-tint-90:black;--fds-strong:cubic-bezier(.12,.8,.32,1);--fds-white:black;--fds-white-alpha-05:rgba(255, 255, 255, 0.05);--fds-white-alpha-10:rgba(255, 255, 255, 0.1);--fds-white-alpha-20:rgba(255, 255, 255, 0.2);--fds-white-alpha-30:rgba(255, 255, 255, 0.3);--fds-white-alpha-40:rgba(255, 255, 255, 0.4);--fds-white-alpha-50:rgba(255, 255, 255, 0.5);--fds-white-alpha-60:rgba(255, 255, 255, 0.6);--fds-white-alpha-80:rgba(255, 255, 255, 0.8);--fds-yellow-20:black;--accent:#0095F6;--always-white:white;--always-black:black;--always-dark-gradient:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));--always-dark-overlay:rgba(0, 0, 0, 0.4);--always-light-overlay:rgba(255, 255, 255, 0.4);--always-gray-40:#65676B;--always-gray-75:#BCC0C4;--always-gray-95:#F0F2F5;--attachment-footer-background:rgba(255,255,255,0.1);--background-deemphasized:rgba(255,255,255,0.1);--base-blue:#1877F2;--base-cherry:#F3425F;--base-grape:#9360F7;--base-lemon:#F7B928;--base-lime:#45BD62;--base-pink:#FF66BF;--base-seafoam:#54C7EC;--base-teal:#2ABBA7;--base-tomato:#FB724B;--blue-link:#00376B;--border-focused:#8A8D91;--card-background:#242526;--card-background-flat:#323436;--comment-background:#3A3B3C;--comment-footer-background:#4E4F50;--dataviz-primary-1:rgb(48,200,180);--disabled-button-background:rgba(255, 255, 255, 0.2);--disabled-button-text:rgba(255, 255, 255, 0.3);--disabled-icon:rgba(255, 255, 255, 0.3);--disabled-text:rgba(255, 255, 255, 0.3);--divider:#3E4042;--event-date:#F3425F;--fb-wordmark:#FFFFFF;--filter-accent:invert(40%) sepia(52%) saturate(200%) saturate(200%) saturate(200%) saturate(189%) hue-rotate(191deg) brightness(103%) contrast(102%);--filter-always-white:invert(100%);--filter-disabled-icon:invert(100%) opacity(30%);--filter-placeholder-icon:invert(59%) sepia(11%) saturate(200%) saturate(135%) hue-rotate(176deg) brightness(96%) contrast(94%);--filter-primary-icon:invert(89%) sepia(6%) hue-rotate(185deg);--filter-secondary-icon:invert(62%) sepia(98%) saturate(12%) hue-rotate(175deg) brightness(90%) contrast(96%);--filter-warning-icon:invert(77%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(128%) hue-rotate(359deg) brightness(102%) contrast(107%);--filter-blue-link-icon:invert(73%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(103.25%) hue-rotate(189deg) brightness(101%) contrast(101%);--filter-positive:invert(37%) sepia(61%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(115%) hue-rotate(91deg) brightness(97%) contrast(105%);--filter-negative:invert(25%) sepia(33%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(110%) hue-rotate(345deg) brightness(132%) contrast(96%);--glimmer-spinner-icon:white;--hero-banner-background:#E85D07;--hosted-view-selected-state:rgba(45, 136, 255, 0.1);--highlight-bg:rgba(24, 119, 242, .31);--hover-overlay:rgba(255, 255, 255, 0.1);--list-cell-chevron:#B0B3B8;--media-hover:rgba(68, 73, 80, 0.15);--media-inner-border:rgba(255, 255, 255, 0.05);--media-outer-border:#33363A;--media-pressed:rgba(68, 73, 80, 0.35);--messenger-card-background:#242526;--messenger-reply-background:#18191A;--overlay-alpha-80:rgba(0, 0, 0, 0.65);--overlay-on-media:rgba(0, 0, 0, 0.6);--nav-bar-background:#242526;--nav-bar-background-gradient:linear-gradient(to top, #242526, rgba(36,37,38,.9), rgba(36,37,38,.7), rgba(36,37,38,.4), rgba(36,37,38,0));--nav-bar-background-gradient-wash:linear-gradient(to top, #18191A, rgba(24,25,26,.9), rgba(24,25,26,.7), rgba(24,25,26,.4), rgba(24,25,26,0));--negative:hsl(350, 87%, 55%);--negative-background:hsl(350, 87%, 55%, 20%);--new-notification-background:#E7F3FF;--non-media-pressed:rgba(68, 73, 80, 0.15);--non-media-pressed-on-dark:rgba(255, 255, 255, 0.3);--notification-badge:#e41e3f;--placeholder-icon:#8A8D91;--placeholder-image:rgb(164, 167, 171);--placeholder-text:#8A8D91;--placeholder-text-on-media:rgba(255, 255, 255, 0.5);--popover-background:#3E4042;--positive:#31A24C;--positive-background:#1F3520;--press-overlay:rgba(255, 255, 255, 0.1);--primary-button-background:#0095F6;--primary-button-icon:#FFFFFF;--primary-button-pressed:#77A7FF;--primary-button-text:#FFFFFF;--primary-deemphasized-button-background:rgba(45, 136, 255, 0.2);--primary-deemphasized-button-pressed:rgba(24, 119, 242, 0.2);--primary-deemphasized-button-pressed-overlay:rgba(25, 110, 255, 0.15);--primary-deemphasized-button-text:#2D88FF;--primary-icon:#E4E6EB;--primary-text:#E4E6EB;--primary-text-on-media:white;--primary-web-focus-indicator:#D24294;--progress-ring-neutral-background:rgba(255, 255, 255, 0.2);--progress-ring-neutral-foreground:#ffffff;--progress-ring-on-media-background:rgba(255, 255, 255, 0.2);--progress-ring-on-media-foreground:#FFFFFF;--progress-ring-blue-background:rgba(45, 136, 255, 0.2);--progress-ring-blue-foreground:hsl(214, 100%, 59%);--progress-ring-disabled-background:rgba(122,125,130, 0.2);--progress-ring-disabled-foreground:#7A7D82;--rating-star-active:#FF9831;--scroll-thumb:rgba(255, 255, 255, 0.3);--scroll-shadow:0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(255, 255, 255, 0.05) inset;--secondary-button-background:rgba(255,255,255,.1);--secondary-button-background-floating:#4B4C4F;--secondary-button-background-on-dark:rgba(255, 255, 255, 0.4);--secondary-button-pressed:rgba(0, 0, 0, 0.05);--secondary-button-stroke:transparent;--secondary-button-text:#E4E6EB;--secondary-icon:#B0B3B8;--secondary-text:#B0B3B8;--secondary-text-on-media:rgba(255, 255, 255, 0.9);--section-header-text:#BCC0C4;--shadow-1:rgba(0, 0, 0, 0.1);--shadow-2:rgba(0, 0, 0, 0.2);--shadow-5:rgba(0, 0, 0, 0.5);--shadow-8:rgba(0, 0, 0, 0.8);--shadow-inset:rgba(255, 255, 255, 0.05);--shadow-elevated:0px 5px 12px rgba(28, 43, 51, 0.6);--shadow-persistent:0px 0px 12px rgba(28, 43, 51, 0.6);--shadow-primary:0px 0px 12px rgba(28, 43, 51, 0.1);--surface-background:#242526;--switch-active:hsl(214, 100%, 59%);--text-highlight:rgba(24, 119, 242, 0.45);--text-input-background:#242526;--toast-background:#242526;--toast-text:#FFFFFF;--toast-text-link:#4599FF;--toggle-active-background:rgb(45, 136, 255);--toggle-active-icon:#FFFFFF;--toggle-active-text:#FFFFFF;--toggle-button-active-background:#E6F2FF;--wash:#3E4042;--web-wash:#18191A;--warning:hsl(40, 89%, 52%);--fb-logo-color:#2D88FF;--dialog-anchor-vertical-padding:56px;--header-height:0px;--global-panel-width:0px;--global-panel-width-expanded:0px;--alert-banner-corner-radius:8px;--button-corner-radius:4px;--button-corner-radius-medium:10px;--button-corner-radius-large:12px;--button-height-large:40px;--button-height-medium:36px;--button-padding-horizontal-large:16px;--button-padding-horizontal-medium:16px;--button-icon-padding-large:16px;--button-icon-padding-medium:16px;--button-inner-icon-spacing-large:3px;--button-inner-icon-spacing-medium:3px;--blueprint-button-height-medium:40px;--blueprint-button-height-large:48px;--card-corner-radius:4px;--card-box-shadow:0 12px 28px 0 var(--shadow-2), 0 2px 4px 0 var(--shadow-1);--card-padding-vertical:20px;--chip-corner-radius:6px;--dialog-corner-radius:8px;--glimmer-corner-radius:8px;--image-corner-radius:4px;--input-corner-radius:4px;--nav-list-cell-corner-radius:8px;--list-cell-corner-radius:8px;--list-cell-min-height:52px;--list-cell-padding-vertical:20px;--list-cell-padding-vertical-with-addon:14px;--nav-list-cell-min-height:0px;--nav-list-cell-padding-vertical:16px;--nav-list-cell-padding-vertical-with-addon:16px;--text-input-multi-padding-between-text-scrollbar:20px;--text-input-multi-padding-scrollbar:16px;--toast-corner-radius:4px;--text-input-caption-margin-top:10px;--text-input-label-top:22px;--text-input-min-height:64px;--text-input-padding-vertical:12px;--fds-animation-enter-exit-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-enter-exit-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-swap-shuffle-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-swap-shuffle-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-move-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-move-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-passive-move-in:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-passive-move-out:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-quick-move-in:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-quick-move-out:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-fade-in:cubic-bezier(0, 0, 1, 1);--fds-animation-fade-out:cubic-bezier(0, 0, 1, 1);--fds-duration-extra-extra-short-in:100ms;--fds-duration-extra-extra-short-out:100ms;--fds-duration-extra-short-in:200ms;--fds-duration-extra-short-out:150ms;--fds-duration-short-in:280ms;--fds-duration-short-out:200ms;--fds-duration-medium-in:400ms;--fds-duration-medium-out:350ms;--fds-duration-long-in:500ms;--fds-duration-long-out:350ms;--fds-duration-extra-long-in:1000ms;--fds-duration-extra-long-out:1000ms;--fds-duration-none:0ms;--fds-fast:200ms;--fds-slow:400ms;--font-family-apple:system-ui, -apple-system, BlinkMacSystemFont, \'.SFNSText-Regular\', sans-serif;--font-family-code:ui-monospace, Menlo, Consolas, Monaco, monospace;--font-family-default:Helvetica, Arial, sans-serif;--font-family-segoe:Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;--body-font-family:Placeholder Font;--body-font-size:0.9375rem;--body-font-weight:400;--body-line-height:1.3333;--body-emphasized-font-family:Placeholder Font;--body-emphasized-font-size:0.9375rem;--body-emphasized-font-weight:600;--body-emphasized-line-height:1.3333;--headline1-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline1-font-size:1.75rem;--headline1-font-weight:700;--headline1-line-height:1.2143;--headline2-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline2-font-size:1.5rem;--headline2-font-weight:700;--headline2-line-height:1.25;--headline3-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline3-font-size:1.0625rem;--headline3-font-weight:700;--headline3-line-height:1.2941;--meta-font-family:Placeholder Font;--meta-font-size:0.8125rem;--meta-font-weight:400;--meta-line-height:1.3846;--meta-emphasized-font-family:Placeholder Font;--meta-emphasized-font-size:0.8125rem;--meta-emphasized-font-weight:600;--meta-emphasized-line-height:1.3846;--primary-label-font-family:Optimistic Display Medium, system-ui, sans-serif;--primary-label-font-size:1.0625rem;--primary-label-font-weight:500;--primary-label-line-height:1.2941;--secondary-label-font-family:Placeholder Font;--secondary-label-font-size:0.9375rem;--secondary-label-font-weight:500;--secondary-label-line-height:1.3333;--text-input-field-font-family:Placeholder Font;--text-input-field-font-size:1rem;--text-input-field-font-weight:500;--text-input-field-line-height:1.2941;--text-input-label-font-family:Placeholder Font;--text-input-label-font-size:17px;--text-input-label-font-size-scale-multiplier:0.75;--text-input-label-font-weight:400;--text-input-label-line-height:1.2941;--dataviz-primary-2:rgb(134,218,255);--dataviz-primary-3:rgb(95,170,255);--dataviz-secondary-1:rgb(129,77,231);--dataviz-secondary-2:rgb(168,124,255);--dataviz-secondary-3:rgb(219,26,139);--dataviz-supplementary-1:rgb(255,122,105);--dataviz-supplementary-2:rgb(241,168,23);--dataviz-supplementary-3:rgb(49,162,76);--dataviz-supplementary-4:rgb(228,230,235);--base-unit:4px;--blue-0:#f5fbff;--blue-2:#b3dbff;--blue-4:#47afff;--blue-5:#0095f6;--blue-6:#0074cc;--blue-7:#0057a3;--blue-8:#00376b;--blue-9:#002952;--breakpoint-medium-width:1536px;--breakpoint-small-width:1024px;--challenge-width:460px;--clr-separator:#efefef;--clr_red_dark_30:#af2634;--creation-header-height:43px;--creation-min-padding-x:32px;--creation-modal-max-height:898px;--creation-modal-min-height:391px;--creation-padding-x:64px;--creation-padding-y:112px;--creation-settings-width:340px;--cyan-5:#27c4f5;--desktop-center-feed-min-width-breakpoint:1500px;--desktop-grid-item-margin:28px;--desktop-in-feed-story-item-height:208px;--desktop-in-feed-story-item-width:116px;--desktop-nav-height:60px;--desktop-skinny-nav-height:60px;--direct-attachment-image-grid-item-size:78px;--direct-attachment-story-height:150px;--direct-attachment-story-large-height:256px;--direct-attachment-story-large-width:164px;--direct-attachment-story-width:84px;--direct-message-max-width:236px;--fb-connect-blue:#4f67b0;--fb-signup-page-profile-pic-size:88px;--feed-sidebar-padding:32px;--feed-sidebar-width:319px;--feed-width:470px;--font-family-system:-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;--font-weight-system-bold:700;--font-weight-system-extra-bold:800;--font-weight-system-extra-light:200;--font-weight-system-light:300;--font-weight-system-medium:500;--font-weight-system-regular:400;--font-weight-system-semibold:600;--footer-width-wide:1150px;--gradient-lavender:#d300c5;--gradient-orange:#ff7a00;--gradient-pink:#ff0169;--gradient-purple:#7638fa;--gradient-yellow:#ffd600;--green-4:#78de45;--green-5:#58c322;--green-6:#37a600;--grey-0:#f5f5f5;--grey-1:#efefef;--grey-2:#dbdbdb;--grey-3:#c7c7c7;--grey-4:#a8a8a8;--grey-5:#8e8e8e;--grey-6:#737373;--grey-7:#555555;--grey-8:#363636;--grey-9:#262626;--ig-badge:255, 48, 64;--ig-close-friends-refreshed:28, 209, 79;--ig-disabled-action-text:169, 219, 255;--ig-error-or-destructive:237, 73, 86;--ig-facebook-blue:53, 121, 234;--ig-full-screen-background:54, 54, 54;--ig-live-badge:255, 1, 105;--ig-primary-button:0, 149, 246;--ig-primary-button-hover:24, 119, 242;--ig-secondary-button-background:239, 239, 239;--ig-secondary-button-hover:219, 219, 219;--ig-secondary-button-focused:224, 241, 255;--ig-tertiary-button-background:255, 255, 255;--ig-tertiary-button-border:219, 219, 219;--ig-tertiary-button-hover:245, 245, 245;--ig-tertiary-button-text:38, 38, 38;--ig-subscribers-only:118, 56, 250;--ig-success:88, 195, 34;--ig-text-on-color:255, 255, 255;--ig-text-on-media:255, 255, 255;--in-feed-story-item-height:240px;--in-feed-story-item-width:135px;--in-feed-story-item-padding:12px;--input-border-radius:6px;--large-layout-min:1500px;--like-animation-duration:1000ms;--live-video-border-radius:4px;--live-video-right-col-width:336px;--media-content-card-width:350px;--media-content-card-width-small:300px;--media-info:335px;--medium-layout-max:1499px;--medium-layout-min:1080px;--medium-screen-max:875px;--medium-screen-min:736px;--mobile-grid-item-margin:2px;--mobile-nav-height:45px;--modal-backdrop-dark:rgba(0, 0, 0, 0.85);--modal-backdrop-default:rgba(0, 0, 0, 0.65);--modal-border-radius:12px;--modal-padding:16px;--modal-z-index:100;--nav-narrow-width:72px;--nav-medium-width:244px;--nav-wide-width:335px;--nav-bottom-screen-max:767px;--nav-narrow-screen-min:768px;--nav-medium-screen-min:1264px;--nav-wide-screen-min:1920px;--orange-5:#fd8d32;--photo:600px;--pink-5:#d10869;--post-step-indicator:168, 168, 168;--purple-5:#a307ba;--red-4:#ff6874;--red-5:#ed4956;--red-6:#c62330;--red-7:#a70311;--reels-large-screen-min:1366px;--refinement-section-height:50px;--revamp-nav-bottom-toolbar-height:50px;--revamp-feed-card-max-height:758px;--revamp-feed-card-min-height:615px;--revamp-feed-card-min-width:710px;--revamp-feed-card-media-min-width:390px;--revamp-feed-card-details-section-width:320px;--revamp-feed-card-details-section-width-xl:340px;--revamp-feed-horizontal-padding-small-screen:24px;--revamp-feed-horizontal-padding-large-screen:32px;--revamp-feed-vertical-padding:32px;--right-rail-width:300px;--scrollable-content-header-height-large:56px;--scrollable-content-header-height-med:49px;--scrollable-content-header-height:44px;--search-box-height:40px;--search-modal-height-expanded:450px;--search-modal-height:362px;--search-modal-top-offset:12px;--search-result-height:50px;--search-result-inline-top-offset:60px;--search-result-list-width:375px;--site-width-narrow:600px;--site-width-wide:935px;--small-layout-max:1079px;--small-layout-min:800px;--small-screen-max:735px;--small-screen-min:414px;--story-progressbar-update-tick:0.1s;--story-swap-animation-duration:350ms;--system-10-font-size:10px;--system-10-line-height:12px;--system-11-font-size:11px;--system-11-line-height:13px;--system-12-font-size:12px;--system-12-line-height:16px;--system-14-font-size:14px;--system-14-line-height:18px;--system-16-font-size:16px;--system-16-line-height:24px;--system-18-font-size:18px;--system-18-line-height:24px;--system-20-font-size:20px;--system-20-line-height:25px;--system-22-font-size:22px;--system-22-line-height:26px;--system-24-font-size:24px;--system-24-line-height:27px;--system-26-font-size:26px;--system-26-line-height:28px;--system-28-font-size:28px;--system-28-line-height:32px;--system-30-font-size:30px;--system-30-line-height:36px;--system-32-font-size:32px;--system-32-line-height:40px;--web-always-black:0, 0, 0;--web-always-white:255, 255, 255;--web-overlay-on-media:38, 38, 38;--web-secondary-action:224, 241, 255;--yellow-5:#fdcb5c;--challenge-link:219,219,219;--docpen-lightgrey:38,38,38;--ig-banner-background:38,38,38;--ig-elevated-background:38,38,38;--ig-elevated-separator:54,54,54;--ig-focus-stroke:85,85,85;--ig-highlight-background:38,38,38;--ig-link:224,241,255;--ig-primary-background:0,0,0;--ig-primary-text:250,250,250;--ig-secondary-background:18,18,18;--ig-secondary-button:250,250,250;--ig-secondary-text:168, 168, 168;--ig-separator:38,38,38;--ig-stroke:85,85,85;--ig-temporary-highlight:0,149,246;--ig-tertiary-text:115,115,115;--post-separator:38,38,38;--tos-box-shadow:255,255,255;}</style><style nonce=\"7DXsYBtw\"></style><script nonce=\"7DXsYBtw\">__DEV__=0;function envFlush(a){function b(b){for(var c in a)b[c]=a[c]}window.requireLazy?window.requireLazy([\"Env\"],b):(window.Env=window.Env||{},b(window.Env))}envFlush({\"useTrustedTypes\":false,\"isTrustedTypesReportOnly\":false,\"enableDefaultTrustedTypesPolicy\":true,\"defaultTrustedTypesPolicyName\":\"igwww-alite-site\",\"ig_server_override\":\"\",\"compat_iframe_token\":null});__annotator=function(f){return f};__d_stub=[];__d=function(id,deps,factory,special){__d_stub.push([id,deps,factory,special]);};__rl_stub=[];requireLazy=function(){__rl_stub.push(arguments)};now_inl=(function(){var p=window.performance;return p&&p.now&&p.timing&&p.timing.navigationStart?function(){return p.now()+p.timing.navigationStart}:function(){return new Date().getTime()};})();_btldr={};qpl_inl=(function(){var data={};return function(i,n,t){if(!i)return data;if(!data[i])data[i]={};data[i][n]=t||now_inl();}})();qpl_tag=(function(){var data=[];return function(t){if(!t)return data;data.push(t);}})();(function(a){function b(b){if(!window.openDatabase)return;b.I_AM_INCOGNITO_AND_I_REALLY_NEED_WEBSQL=function(a,b,c,d){return window.openDatabase(a,b,c,d)};window.openDatabase=function(){throw new Error()}}b(a)})(this);\"use strict\";window.__SSRInit=function(a){var b=function(){},c={total:0},d=!1,e=null,f=!1,g=[\"success_status\",\"ROOT\",\"eid\"].filter(function(b){return!a[b]});g.length>0&&j(\"Error receiving SSRData: missing keys \"+g.toString());var h=document.getElementById(a.eid),i=[];h?a.gks.mwp_ssr_enabled?u(h):l():j(\"Error locating root element: \"+a.eid);function j(a){if(k())return;d=!0;eventEmitter.emitOnce(\"FIRSTPAYLOADINJECTED\",!1);v(a,\"ERROR\")}function k(){return!!e&&e.status===\"ERROR\"||d}function l(){j(a.disabled_status)}function m(b){window.qpl_inl(a.cavalry_get_lid,b)}function n(a){p(a)||j(\"Checks for useMatchViewport failed\")}function o(b){if(k())return;var c=b[0];if(!c){j(\"Empty SSR payload received\");return}i.push.apply(i,b);r(b);b=c.fizzRootId;var d=c.payloadType,e=c.status;if(b===null||!d||e!==a.success_status){if(e===a.disabled_status||e===a.bad_preloaders_status||e===a.unknown_boundaries_status){l();return}j(\"Error processing SSR payload \"+(c.id||\"Global\")+\": \"+e);return}d===\"FIRST\"?(s(b||\"\"),f=!0):d===\"LAST\"&&(f||s(b||\"\"),m(\"ssr_injected\"),m(\"ssr_inline_injector_ready\"),v(\"\",\"INJECTED\"))}function p(a){return!window.matchMedia?!1:a.every(function(a){var b=a.dimension,c=a.numPixels,d=a.operation;a=a.result;d=q(d,b,c);return window.matchMedia(d).matches===a})}function q(a,b,c){return\"(\"+a+\"-\"+b+\": \"+c+\"px)\"}function r(a){a.forEach(function(a){m(\"ssr_received_\"+(a.id||\"global_failure\"))})}function s(b){while(h==null?void 0:h.firstChild)(h==null?void 0:h.lastChild)&&h.removeChild(h==null?void 0:h.lastChild);b=document.getElementById(b);if(h&&b){var c=b.childNodes;while(c.length){var d=c[0],e=d.nodeType===Node.ELEMENT_NODE?d.dataset:null;if(e!=null&&(e.rxi!=null||e.rri!=null||e.rci!=null||e.rsi!=null)&&d.nodeName.toLowerCase()===\"template\"){(e=document.body)==null?void 0:e.appendChild(d)}else h==null?void 0:h.appendChild(d)}b.remove()}a.gks.comet_ssr_wait_for_dev||t()}function t(){eventEmitter.emitOnce(\"FIRSTPAYLOADINJECTED\",!0)}function u(a){a.style.display=\"none\"}function v(d,f){window.__onSSRPayload=b,window.__onSSRViewportGuessValidation=b,a.gks.comet_ssr_wait_for_dev||t(),e={clickEvents:c,msg:d,processedPayloads:i,status:f,unbindListeners:b},eventEmitter.emitOnce(\"ALLPAYLOADSINJECTED\",e)}window.__isReactFizzContext=!0;window.__onSSRPayload=o;window.__SSREventEmitter=eventEmitter;window.__invalidateSSR=j;window.__logSSRQPL=m;window.__onSSRViewportGuessValidation=n;window.__shouldIgnoreSSRStaticId=a.should_ignore_static_id;a.gks.comet_ssr_wait_for_dev&&(window.__comet_ssr_continue=function(){t()});typeof window.requireLazy===\"function\"&&window.requireLazy([\"ReactDOMComet\"],function(a){m(\"ssr_reactdom_ready\")})};var eventEmitter={emit:function(a,b){eventEmitter.events[a]&&eventEmitter.events[a].map(function(a){return a&&typeof a===\"function\"&&a(b)}),eventEmitter.eventsEmitted[a]={args:b}},emitOnce:function(a,b){a in eventEmitter.eventsEmitted||eventEmitter.emit(a,b)},events:{},eventsEmitted:{},on:function(a,b){var c=eventEmitter.eventsEmitted[a];if(c){b&&typeof b===\"function\"&&b(c.args);return}!eventEmitter.events[a]?eventEmitter.events[a]=[b]:eventEmitter.events[a].push(b)}};</script><script>qpl_inl(\"7191084768081846440\",\"htmlStart\");</script>\n<script type=\"application/json\" data-content-len=\"82\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"htmlStart\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"htmlStart\",52);</script>\n<script type=\"application/json\" data-content-len=\"92\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"htmlStart\",52]]]}</script>\n<title>Instagram</title>\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"bxData\":{\"1160057\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y7\\/r\\/s_LXY1yMsCT.svg\"},\"1160058\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yN\\/r\\/MnQWcWb6SrY.svg\"},\"1160060\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y5\\/r\\/Mszq4yIBziR.svg\"},\"1160061\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yu\\/r\\/Ddk-AuWE7VS.svg\"},\"6339\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/y4\\/r\\/wsw1pPOceFo.mp4\"},\"6019\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/ym\\/r\\/uVpL7VtNVaZ.svg\"},\"6381\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yV\\/r\\/d2iYGdGZRSp.svg\"}},\"clpData\":{\"1744178\":{\"r\":1,\"s\":1},\"1836368\":{\"r\":1,\"s\":1},\"1838142\":{\"r\":1,\"s\":1},\"1791\":{\"r\":1},\"3949\":{\"r\":1},\"3950\":{\"r\":1},\"1801\":{\"r\":1,\"s\":1},\"1802\":{\"r\":1,\"s\":1},\"2514\":{\"r\":1,\"s\":1},\"3707\":{\"r\":1,\"s\":1},\"3719\":{\"r\":1,\"s\":1},\"1743656\":{\"r\":1,\"s\":1},\"1744234\":{\"r\":1},\"1744251\":{\"r\":100,\"s\":1},\"1744552\":{\"r\":10000,\"s\":1},\"1814852\":{\"r\":1,\"s\":1},\"1829320\":{\"r\":1,\"s\":1},\"1829321\":{\"r\":1,\"s\":1},\"1837559\":{\"r\":1,\"s\":1},\"1743690\":{\"r\":1,\"s\":1},\"1843988\":{\"r\":1,\"s\":1},\"3255\":{\"r\":1,\"s\":1},\"3257\":{\"r\":1,\"s\":1},\"3258\":{\"r\":1,\"s\":1}},\"gkxData\":{\"2644\":{\"result\":true,\"hash\":\"AT7mI6K8vTz0G2gqpaY\"},\"4796\":{\"result\":false,\"hash\":\"AT7JKBdiRaGFqZ88gyI\"},\"4813\":{\"result\":true,\"hash\":\"AT4zaM5H_8ZI6H51YAg\"},\"4845\":{\"result\":false,\"hash\":\"AT6-8cuRKcjFa5sIiyk\"},\"4875\":{\"result\":true,\"hash\":\"AT5AG1zOFgrramfXbS0\"},\"4876\":{\"result\":false,\"hash\":\"AT7cmpbRk0Dldi5ByL0\"},\"4877\":{\"result\":true,\"hash\":\"AT5wj393VxTj6wfmVmg\"},\"4878\":{\"result\":true,\"hash\":\"AT74ERqdGcPDXpMb7Zk\"},\"4879\":{\"result\":true,\"hash\":\"AT6AjtS5NIA02L6sfd8\"},\"4880\":{\"result\":true,\"hash\":\"AT6R9leZJM8MgClxOkM\"},\"4882\":{\"result\":true,\"hash\":\"AT5vlOTujqD_jUh08vE\"},\"4884\":{\"result\":false,\"hash\":\"AT7mcUh9w-SGaS9YZ4k\"},\"4923\":{\"result\":false,\"hash\":\"AT7GCq770dmAOAKCUBY\"},\"4931\":{\"result\":false,\"hash\":\"AT6b_gSTxvg1HJMVgS4\"},\"4932\":{\"result\":false,\"hash\":\"AT63ZfOTmA-AgnQ2hnM\"},\"4942\":{\"result\":false,\"hash\":\"AT6vxnt_djcMW8SQA1Q\"},\"4946\":{\"result\":false,\"hash\":\"AT50Gg5yts-BmFrdGVw\"},\"4950\":{\"result\":true,\"hash\":\"AT7EhmBWKm11fsotUCA\"},\"4951\":{\"result\":true,\"hash\":\"AT6fL3tAjP3geUI2-3Y\"},\"4954\":{\"result\":false,\"hash\":\"AT74fI-Ee9aScI8hA1M\"},\"4955\":{\"result\":false,\"hash\":\"AT4Ze_o5uVratxr2Rs4\"},\"4956\":{\"result\":false,\"hash\":\"AT6I_8AWh5srRaciM4M\"},\"4957\":{\"result\":false,\"hash\":\"AT7g0zmn8Cwbwp_5zoM\"},\"5207\":{\"result\":false,\"hash\":\"AT73ouJpUXGI2U-T5bU\"},\"5284\":{\"result\":true,\"hash\":\"AT4_oeZCyvBeJCQ6unA\"},\"1397\":{\"result\":false,\"hash\":\"AT4keGCEVCr_Dt41iOE\"},\"1405\":{\"result\":true,\"hash\":\"AT6JmwhMEw9Z9JM-tis\"},\"1407\":{\"result\":true,\"hash\":\"AT580PbjBSL9srk9uQE\"},\"2179\":{\"result\":true,\"hash\":\"AT5LDXs7IpycvWv3b9w\"},\"2638\":{\"result\":true,\"hash\":\"AT6h30Fyo1GLSOJ6Hco\"},\"2645\":{\"result\":false,\"hash\":\"AT6JcCzTcHgDIElHc-s\"},\"2652\":{\"result\":false,\"hash\":\"AT5y-3A6LTipALn1TYc\"},\"2677\":{\"result\":false,\"hash\":\"AT4uB5a6eJ1PzGnwoLE\"},\"3359\":{\"result\":true,\"hash\":\"AT7CTrEkPHjnp7PERmg\"},\"4779\":{\"result\":false,\"hash\":\"AT73sz8ZxFnpaT_SLF8\"},\"4815\":{\"result\":false,\"hash\":\"AT7jwZaquWirnJ5hcjk\"},\"4824\":{\"result\":true,\"hash\":\"AT63XkdVPHzi7R2HI2k\"},\"4846\":{\"result\":true,\"hash\":\"AT5ZRgQH8tD_lYX0Cqc\"},\"4860\":{\"result\":true,\"hash\":\"AT7_JZm4qmZFnyt4mHc\"},\"4868\":{\"result\":false,\"hash\":\"AT5lOt3U1CPcve7N4wI\"},\"4869\":{\"result\":true,\"hash\":\"AT4zpSsNwJyA3fAm9Jg\"},\"4871\":{\"result\":true,\"hash\":\"AT7xq9nantMspv3yP9Q\"},\"4885\":{\"result\":false,\"hash\":\"AT6Scis3t-QrqdQgTX4\"},\"4903\":{\"result\":false,\"hash\":\"AT7rihaWP14WHO-E-nc\"},\"4911\":{\"result\":true,\"hash\":\"AT6zHevjrn8t5OOuy3Q\"},\"4948\":{\"result\":false,\"hash\":\"AT6gVHtPuQBd_0kr5IM\"},\"4958\":{\"result\":true,\"hash\":\"AT7xIi4TsNUu5r7yc9A\"},\"4959\":{\"result\":true,\"hash\":\"AT7vrCtcejFxS7KJL6k\"},\"4960\":{\"result\":false,\"hash\":\"AT62tJ9oyfxSfEjszSA\"},\"4974\":{\"result\":true,\"hash\":\"AT6t4EbirBETU7BIaho\"},\"4977\":{\"result\":false,\"hash\":\"AT5S9_tzgpD4nyajcoA\"},\"5016\":{\"result\":true,\"hash\":\"AT5AbYrMvy8aHBiOEX4\"},\"7251\":{\"result\":true,\"hash\":\"AT6m28fp1IRRRbh1ZJo\"},\"2262\":{\"result\":true,\"hash\":\"AT7m1lpTcig1NOC2iKQ\"},\"3472\":{\"result\":false,\"hash\":\"AT45yZhwPzVLLzf1ymM\"},\"4904\":{\"result\":false,\"hash\":\"AT7rOlF7veVioclvyF4\"},\"4905\":{\"result\":false,\"hash\":\"AT6Ho94zve9DYrTqKmQ\"},\"4912\":{\"result\":false,\"hash\":\"AT6Cu6qnyU9nPQisuFo\"},\"4915\":{\"result\":false,\"hash\":\"AT4Buika8WvVKOXSEZo\"},\"4916\":{\"result\":false,\"hash\":\"AT5pUaLkBqG1KoiPuzg\"},\"4937\":{\"result\":true,\"hash\":\"AT721QPuIPyzp34tdIQ\"},\"5978\":{\"result\":false,\"hash\":\"AT6R0t7E9kYf7qwTnaY\"},\"4849\":{\"result\":false,\"hash\":\"AT7944xa7OdHpsOGw2E\"},\"4913\":{\"result\":false,\"hash\":\"AT6xzKFxL1Ghnuofr_w\"},\"5048\":{\"result\":false,\"hash\":\"AT5Kd2Kd0lgxI8MniYU\"},\"5051\":{\"result\":false,\"hash\":\"AT4vzKlaIxUNA6P4QhM\"},\"4780\":{\"result\":true,\"hash\":\"AT4j8PcaI_nN4JEOJMg\"},\"4927\":{\"result\":false,\"hash\":\"AT7hw9ACzgZsI4RBBHc\"},\"5305\":{\"result\":false,\"hash\":\"AT4MXTtvziNH7yMx4KY\"},\"4848\":{\"result\":false,\"hash\":\"AT4t3usnrmzV4AaLddY\"},\"4933\":{\"result\":false,\"hash\":\"AT4_1XEfpO_YDy2KdD8\"},\"7212\":{\"result\":false,\"hash\":\"AT6rY56rKjwdhwaG2RA\"},\"4857\":{\"result\":false,\"hash\":\"AT5XW0mFWfSFiIfam-E\"},\"5541\":{\"result\":true,\"hash\":\"AT70V-Q_zfEykznOKFk\"},\"708253\":{\"result\":true,\"hash\":\"AT5n4hBL3YTMnQWtozI\"},\"996940\":{\"result\":false,\"hash\":\"AT7opYuEGy3sjG1aTsg\"},\"1099893\":{\"result\":false,\"hash\":\"AT5kly2LSZV_DKGRSGE\"},\"1224637\":{\"result\":false,\"hash\":\"AT7JRluWxuwDm3XzPKQ\"},\"1263340\":{\"result\":false,\"hash\":\"AT5bwizWgDaFQudmRdA\"},\"443\":{\"result\":true,\"hash\":\"AT4h1HaIxHYZn6IYw-8\"},\"1426\":{\"result\":false,\"hash\":\"AT4rfyyNv13TbBZ8j7Q\"},\"1465\":{\"result\":true,\"hash\":\"AT7xYfmgiZ3heiVqMOg\"},\"1475\":{\"result\":false,\"hash\":\"AT7kEzfGQyTYdZJbFbQ\"},\"2755\":{\"result\":true,\"hash\":\"AT5UMQkR8ly2W4m1FUU\"},\"2772\":{\"result\":false,\"hash\":\"AT5Eu244WIce7iwqxLk\"},\"3752\":{\"result\":false,\"hash\":\"AT6eS5UTkkMp_xbPSFc\"},\"3831\":{\"result\":false,\"hash\":\"AT4W23lQ0XxAZniMqsQ\"},\"4075\":{\"result\":false,\"hash\":\"AT4_ZQi0sTjSt-Rx6JI\"},\"4166\":{\"result\":false,\"hash\":\"AT7yrb5QuQ92736u4MM\"},\"4180\":{\"result\":false,\"hash\":\"AT6ZBPDX_t1nVduVoKE\"},\"4638\":{\"result\":false,\"hash\":\"AT5RMJE1yJSepmApf4E\"},\"4639\":{\"result\":false,\"hash\":\"AT6fuwnCZ25Hjx2lQN4\"},\"5173\":{\"result\":true,\"hash\":\"AT719vu1BCC8wvN0SHw\"},\"6196\":{\"result\":false,\"hash\":\"AT79LaB9hNdhYgx4a6w\"},\"6751\":{\"result\":false,\"hash\":\"AT4_Q5AqWq6jnR2COqc\"},\"6830\":{\"result\":false,\"hash\":\"AT6WoYIwb5Y6x569QBk\"},\"7126\":{\"result\":false,\"hash\":\"AT6zxeBPQBB-VYg0o9Y\"},\"8126\":{\"result\":false,\"hash\":\"AT4U7qG06p9sF6u8DUA\"},\"676837\":{\"result\":false,\"hash\":\"AT4N8wBZA8ctCdHwKq4\"},\"678680\":{\"result\":false,\"hash\":\"AT4Y-6Ul9ZZckQZnzBM\"},\"1018547\":{\"result\":false,\"hash\":\"AT5OYJhHTg1FexdZhCk\"},\"1167394\":{\"result\":false,\"hash\":\"AT7BpN-tlUPwbIIFFOE\"},\"1217157\":{\"result\":false,\"hash\":\"AT6B7YmllOsArnK6hd0\"},\"1407308\":{\"result\":false,\"hash\":\"AT6g20u7kv9f37jOlQ0\"},\"1501502\":{\"result\":false,\"hash\":\"AT7iuJThg2U6GkqTQuQ\"},\"1554827\":{\"result\":false,\"hash\":\"AT7zueGLhGo0cT5xJsE\"},\"1738486\":{\"result\":false,\"hash\":\"AT4cX37oQco6DwhUrY8\"},\"1778371\":{\"result\":false,\"hash\":\"AT6HtWXGEXFDQ5JjkBc\"},\"1902022\":{\"result\":false,\"hash\":\"AT7WD_stYlEMqW8c6Iw\"},\"1912204\":{\"result\":false,\"hash\":\"AT72FnwJF9IKaIf-yn4\"},\"1914427\":{\"result\":false,\"hash\":\"AT7r7RL9lwTjh6wxXrE\"},\"451\":{\"result\":false,\"hash\":\"AT4ag1FobPr8nMWrYkM\"},\"986\":{\"result\":false,\"hash\":\"AT5-Af8bmYxtGf1lCHE\"},\"1459\":{\"result\":false,\"hash\":\"AT60sF8lwSNwCEwZz44\"},\"1705\":{\"result\":false,\"hash\":\"AT45JGOqDPcAMbr3giY\"},\"2116\":{\"result\":false,\"hash\":\"AT7vcO-xd-_PhMpSXNA\"},\"2460\":{\"result\":false,\"hash\":\"AT7ffZvWU_0qVGTWSLg\"},\"2979\":{\"result\":true,\"hash\":\"AT52_r3YZvW6Gxvh63Q\"},\"3446\":{\"result\":false,\"hash\":\"AT5Jr6UXVhj3ffyy0YQ\"},\"5383\":{\"result\":false,\"hash\":\"AT6qiZkZUP-oosQ1dbM\"},\"5403\":{\"result\":false,\"hash\":\"AT5zCIAplAr2jSMZYF4\"},\"5945\":{\"result\":false,\"hash\":\"AT75NnnIUkzdzhWf6PY\"},\"7566\":{\"result\":false,\"hash\":\"AT6zeouo_ZVHZdMOUJ8\"},\"7670\":{\"result\":true,\"hash\":\"AT7dQ8VUCWdRClRGWow\"},\"7761\":{\"result\":false,\"hash\":\"AT6LA2nzmCK672tuSoY\"},\"7762\":{\"result\":false,\"hash\":\"AT4u0kGjAskdaKROawQ\"},\"1070695\":{\"result\":false,\"hash\":\"AT711tHzdMfRy3F3s-Y\"},\"1616314\":{\"result\":false,\"hash\":\"AT6Zl4nWIeZ_AYDrO28\"},\"1642984\":{\"result\":false,\"hash\":\"AT71oE1xc4ID8xb49uw\"},\"1690028\":{\"result\":false,\"hash\":\"AT7vV-7CyHNNfGJoSt0\"},\"1703328\":{\"result\":true,\"hash\":\"AT49L03pP2X9HmsnxoU\"},\"1721477\":{\"result\":true,\"hash\":\"AT70IfYeUvLOKY5Yr8E\"},\"1861546\":{\"result\":true,\"hash\":\"AT7TDKkMR4gPryZg-BY\"},\"1863055\":{\"result\":false,\"hash\":\"AT7ONu9dmdwXlowbMfE\"},\"1902661\":{\"result\":true,\"hash\":\"AT48eoL9MpGKmdHLLRs\"},\"1934926\":{\"result\":false,\"hash\":\"AT46kKhfIFLWq906GyY\"},\"157\":{\"result\":true,\"hash\":\"AT4iLFeITcgQsXY_KHQ\"},\"227\":{\"result\":true,\"hash\":\"AT5yXnJxXfkiddJSkYI\"},\"229\":{\"result\":true,\"hash\":\"AT6ACjjf9sN9o2h--dw\"},\"231\":{\"result\":true,\"hash\":\"AT5RtBjo7qezdTuhVCM\"},\"233\":{\"result\":true,\"hash\":\"AT7HvkjZGXZeuumhE28\"},\"235\":{\"result\":true,\"hash\":\"AT4gizq47dTbAJ5jQak\"},\"265\":{\"result\":true,\"hash\":\"AT5gL3y76QX973hpgoM\"},\"680\":{\"result\":true,\"hash\":\"AT4j6gtWFSIkh2pHPnw\"},\"751\":{\"result\":false,\"hash\":\"AT7TXp0TTlIecYKJORw\"},\"1292\":{\"result\":true,\"hash\":\"AT6KRRnA6-Re_k9KHKk\"},\"1365\":{\"result\":true,\"hash\":\"AT4nD_Goixr7-KaJjYA\"},\"1485\":{\"result\":false,\"hash\":\"AT4WNLTpxBYFwessFuQ\"},\"1682\":{\"result\":true,\"hash\":\"AT4jNPAkujFdMYkDY-I\"},\"1813\":{\"result\":false,\"hash\":\"AT4X9tsJ0F2VTaGTQ1A\"},\"1937\":{\"result\":true,\"hash\":\"AT4Z51p0HN014AEPKlM\"},\"2030\":{\"result\":true,\"hash\":\"AT77OC0fYHb5VHYBxZc\"},\"2254\":{\"result\":true,\"hash\":\"AT4NaskuQ6OBD3qCmpc\"},\"2448\":{\"result\":true,\"hash\":\"AT7EwlgtPzpIx-1QMDA\"},\"2458\":{\"result\":true,\"hash\":\"AT5Dy7G1iL0c6SKnpT0\"},\"2581\":{\"result\":false,\"hash\":\"AT4iw_6E9ISmVfQLwK0\"},\"2878\":{\"result\":false,\"hash\":\"AT60M6erIws33tuMoY0\"},\"2891\":{\"result\":true,\"hash\":\"AT4zXmx2THniTTphpR0\"},\"2914\":{\"result\":false,\"hash\":\"AT5lCo9g877PS-Mti4c\"},\"2918\":{\"result\":true,\"hash\":\"AT4ga0oGMpCrx7tjn-w\"},\"3140\":{\"result\":false,\"hash\":\"AT5-c9fjLEKqfwwAwB4\"},\"3400\":{\"result\":false,\"hash\":\"AT5LV5sAIJng7-zcNxs\"},\"3587\":{\"result\":true,\"hash\":\"AT77w5IYSPt6bAQqv1M\"},\"3598\":{\"result\":false,\"hash\":\"AT4R-V-zd8OVuUkTQeM\"},\"3621\":{\"result\":false,\"hash\":\"AT77rRhVv9YO-zVZOo8\"},\"3644\":{\"result\":false,\"hash\":\"AT7MMG5fbtaxY0c2v5s\"},\"3662\":{\"result\":false,\"hash\":\"AT425nnr7oiZH9yMDgI\"},\"3663\":{\"result\":false,\"hash\":\"AT5L-vX64jrJbYFhenI\"},\"3799\":{\"result\":true,\"hash\":\"AT7faoER21EJi6FSYQ0\"},\"3849\":{\"result\":false,\"hash\":\"AT7ORu3G5CIVsH-JXB0\"},\"4096\":{\"result\":true,\"hash\":\"AT7lTOdcZzbiGpSliuQ\"},\"4138\":{\"result\":false,\"hash\":\"AT6AOrFOG4QbAvJehzQ\"},\"5205\":{\"result\":false,\"hash\":\"AT4tOojq3gzI7IFZZVQ\"},\"5509\":{\"result\":true,\"hash\":\"AT4bcT4-bwXgcPCdMKo\"},\"5564\":{\"result\":false,\"hash\":\"AT6p7zxz4X9cAT6CaPs\"},\"5574\":{\"result\":false,\"hash\":\"AT7t8_-pqYHCqFfTu70\"},\"5735\":{\"result\":false,\"hash\":\"AT55xkQWRLxMd5Tjk0I\"},\"6098\":{\"result\":false,\"hash\":\"AT66f_Ky9tZPqwuh7UQ\"},\"7849\":{\"result\":false,\"hash\":\"AT7m5s5gN6uIZK_JhY4\"},\"894204\":{\"result\":false,\"hash\":\"AT7MWh7MKvvrwCN_bA4\"},\"938288\":{\"result\":false,\"hash\":\"AT60802ujA6R5kZSIRA\"},\"947903\":{\"result\":true,\"hash\":\"AT5C_9W30waBxHKUdyk\"},\"976093\":{\"result\":true,\"hash\":\"AT6Tnn67lHNTT5CpsLc\"},\"1133447\":{\"result\":false,\"hash\":\"AT6gnU9itzgx89tyWpM\"},\"1151941\":{\"result\":false,\"hash\":\"AT4VtFw2xNGXhISyxqM\"},\"1163255\":{\"result\":false,\"hash\":\"AT4p5wUSMH_kRx_dgio\"},\"1243442\":{\"result\":false,\"hash\":\"AT6H-KKvL_2kq8U29eM\"},\"1249968\":{\"result\":false,\"hash\":\"AT5AlPmWHlKvEcrjExs\"},\"1250838\":{\"result\":false,\"hash\":\"AT7z1NkFlLfUKocWCt4\"},\"1299319\":{\"result\":false,\"hash\":\"AT7zRIpVRWl8hiUYLoc\"},\"1352928\":{\"result\":false,\"hash\":\"AT7bJwS1VNOxBUhslGM\"},\"1382775\":{\"result\":false,\"hash\":\"AT7D5sd_gmE2NRtmKhY\"},\"1383502\":{\"result\":false,\"hash\":\"AT51zMR8DxFUUVJ89uk\"},\"1388683\":{\"result\":false,\"hash\":\"AT63PwzAsKGj12Q6vdQ\"},\"1470120\":{\"result\":false,\"hash\":\"AT7hoNhuKStHslT513s\"},\"1564135\":{\"result\":true,\"hash\":\"AT7iTOcLJuIIpIfCmuo\"},\"1613919\":{\"result\":false,\"hash\":\"AT7bXvwviv8GGfF3BGw\"},\"1621604\":{\"result\":false,\"hash\":\"AT50POWWzLfBx_Vm2h0\"},\"1626006\":{\"result\":true,\"hash\":\"AT4_TZlW-MUS84RE4dE\"},\"1657807\":{\"result\":true,\"hash\":\"AT5GneaEpFhH-amrY0w\"},\"1661552\":{\"result\":false,\"hash\":\"AT5w2VaBMxRPfMyWalY\"},\"1707273\":{\"result\":false,\"hash\":\"AT5oTb36da_qc9QIBIY\"},\"1723588\":{\"result\":false,\"hash\":\"AT485K2jwU-S2ruRjIY\"},\"1806005\":{\"result\":false,\"hash\":\"AT4tOLFFU6SFy7iTdnU\"},\"1809663\":{\"result\":false,\"hash\":\"AT7aaCUO35jSxYX-twg\"},\"1842356\":{\"result\":true,\"hash\":\"AT7H5I-MCN88RbrZzgU\"},\"1872325\":{\"result\":false,\"hash\":\"AT4WDV07rUK5enGi6gM\"},\"1969466\":{\"result\":true,\"hash\":\"AT5pb0-O1YUbvm8nvrA\"},\"4240\":{\"result\":false,\"hash\":\"AT6WMihLvltJm0UjQts\"},\"1787898\":{\"result\":true,\"hash\":\"AT5WGsLz9GCUYq8UG1U\"},\"1924645\":{\"result\":false,\"hash\":\"AT7xqjINkJcipyjZ_Hc\"},\"437\":{\"result\":false,\"hash\":\"AT5Wtli8NHvdh5idyxw\"},\"2654\":{\"result\":false,\"hash\":\"AT6t4lweBphRM2rXShQ\"},\"6017\":{\"result\":false,\"hash\":\"AT6VK36mN-p0kfQg8Ms\"},\"950768\":{\"result\":false,\"hash\":\"AT434vVJ93bUu52yP6k\"},\"1293035\":{\"result\":false,\"hash\":\"AT6f-b10jzF6b9M9R1I\"},\"1537962\":{\"result\":false,\"hash\":\"AT6YWgGMjb0fUWs1WEo\"},\"4309\":{\"result\":false,\"hash\":\"AT4gPlTz1LN9a-kueb0\"},\"6364\":{\"result\":false,\"hash\":\"AT6-IPpgGUVfvP6-e34\"},\"4139\":{\"result\":false,\"hash\":\"AT4LbxUvoUGPs9scU24\"},\"7997\":{\"result\":true,\"hash\":\"AT6K4DRNH52GDaFqICY\"},\"4034\":{\"result\":false,\"hash\":\"AT5mbn3qxCu0rIpMJR8\"},\"517\":{\"result\":false,\"hash\":\"AT6nhZGTa49R4qYbXAM\"},\"1703425\":{\"result\":false,\"hash\":\"AT5M5FNRBAvWiZomQh8\"},\"1427308\":{\"result\":false,\"hash\":\"AT4N7BzUkGfi0OG1ibE\"},\"2257\":{\"result\":false,\"hash\":\"AT5Mac_Q9jALVGtdm0A\"},\"6862\":{\"result\":false,\"hash\":\"AT68ofpcSp7CAzMdd9M\"},\"1291023\":{\"result\":false,\"hash\":\"AT519LseIG1nwq3oRkg\"},\"1399218\":{\"result\":true,\"hash\":\"AT6guCW1eyIkOV1E31E\"},\"1401060\":{\"result\":true,\"hash\":\"AT5aetN5Gb3reIXVIgo\"},\"1596063\":{\"result\":false,\"hash\":\"AT7JHuDWtaOqRuBUQx0\"},\"1722014\":{\"result\":false,\"hash\":\"AT6_M5gpc6RLrHjcgW8\"},\"1778302\":{\"result\":false,\"hash\":\"AT65fisZhmc2X92EYXw\"},\"1840809\":{\"result\":false,\"hash\":\"AT5nYctoTsr7alRin0k\"},\"1848749\":{\"result\":false,\"hash\":\"AT5GsH9Kb-3W-taZ0M4\"}},\"ixData\":{\"303380\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yr\\/r\\/28x0bk6AFyo.png\",\"width\":96,\"height\":96},\"701592\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-173px -72px\",\"sz\":\"auto\"},\"702721\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-120px -246px\",\"sz\":\"auto\"},\"897949\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-180px -208px\",\"sz\":\"auto\"},\"1739808\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":8,\"h\":8,\"p\":\"-177px -84px\",\"sz\":\"auto\"},\"162687\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/G_yyNuxdk-F.png\",\"width\":192,\"height\":96},\"162985\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yN\\/r\\/vYZ-cWnQBuU.png\",\"width\":90,\"height\":72},\"162986\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/dRVgh4McYBM.png\",\"width\":90,\"height\":72},\"162987\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yT\\/r\\/DtjqdeBieqM.png\",\"width\":90,\"height\":72},\"162988\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/r\\/p5l9c5zF5rO.png\",\"width\":90,\"height\":72},\"162991\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/S4AiHXvyZbY.png\",\"width\":90,\"height\":72},\"162992\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/hjlUOCeAPgV.png\",\"width\":90,\"height\":72},\"162994\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/LlAAxsz8baJ.png\",\"width\":142,\"height\":35},\"162995\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/V4xamCor5vc.png\",\"width\":160,\"height\":30},\"162996\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ye\\/r\\/kYahnENm9WA.png\",\"width\":90,\"height\":72},\"162997\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/_iW8nyl4elS.png\",\"width\":90,\"height\":72},\"162998\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yE\\/r\\/aQN-NK__goD.png\",\"width\":56,\"height\":56},\"162999\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/SNf2dNNPCMW.png\",\"width\":90,\"height\":72},\"163000\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/nBMTFjFGPyY.png\",\"width\":90,\"height\":72},\"478232\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":16,\"h\":16,\"p\":\"-34px -229px\",\"sz\":\"auto\"},\"478233\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"0 -166px\",\"sz\":\"auto\"},\"502062\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-126px -124px\",\"sz\":\"auto\"},\"512647\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-167px -99px\",\"sz\":\"auto\"},\"514454\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":20,\"h\":20,\"p\":\"-21px -124px\",\"sz\":\"auto\"},\"222729\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/KfWslvUGSoF.png\",\"width\":76,\"height\":76},\"222730\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/qkRylMqLXNE.png\",\"width\":175,\"height\":51},\"222731\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/_iOF0aB8dD5.png\",\"width\":175,\"height\":51},\"478231\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":12,\"h\":12,\"p\":\"-138px -84px\",\"sz\":\"auto\"}},\"qexData\":{\"290\":{\"r\":null},\"468\":{\"r\":null},\"495\":{\"r\":null},\"501\":{\"r\":null},\"606\":{\"r\":false},\"756\":{\"r\":false},\"1838\":{\"r\":false},\"1841\":{\"r\":true},\"89\":{\"r\":5},\"446\":{\"r\":false},\"556\":{\"r\":null},\"953\":{\"r\":true},\"958\":{\"r\":false},\"959\":{\"r\":false},\"961\":{\"r\":false},\"1013\":{\"r\":true},\"1220\":{\"r\":false},\"1244\":{\"r\":false},\"1247\":{\"r\":false},\"1953\":{\"r\":false},\"554\":{\"r\":null},\"695\":{\"r\":false},\"260\":{\"r\":\"default\"},\"281\":{\"r\":false},\"1339\":{\"r\":null},\"450\":{\"r\":true,\"l\":\"J{\\\"u\\\":\\\"ig_web_reels_video_merge_v2\\\",\\\"t\\\":\\\"ig_django\\\",\\\"gks\\\":[],\\\"qe\\\":null}\"},\"877\":{\"r\":false},\"723\":{\"r\":null},\"6\":{\"r\":null},\"177\":{\"r\":null},\"230\":{\"r\":null},\"534\":{\"r\":null},\"590\":{\"r\":null},\"719\":{\"r\":null},\"20\":{\"r\":null},\"32\":{\"r\":null},\"49\":{\"r\":null},\"181\":{\"r\":null},\"239\":{\"r\":false},\"240\":{\"r\":0},\"246\":{\"r\":null},\"258\":{\"r\":null},\"410\":{\"r\":null},\"415\":{\"r\":null},\"645\":{\"r\":null},\"720\":{\"r\":null},\"768\":{\"r\":null},\"806\":{\"r\":null},\"858\":{\"r\":null},\"932\":{\"r\":null},\"954\":{\"r\":null},\"956\":{\"r\":false},\"957\":{\"r\":false},\"966\":{\"r\":null},\"976\":{\"r\":null},\"1020\":{\"r\":null},\"1022\":{\"r\":null},\"1028\":{\"r\":null},\"1034\":{\"r\":null},\"1164\":{\"r\":null},\"1242\":{\"r\":false},\"1322\":{\"r\":null},\"1637\":{\"r\":null},\"1638\":{\"r\":null},\"1639\":{\"r\":null},\"1640\":{\"r\":null},\"1641\":{\"r\":null},\"1642\":{\"r\":null},\"1643\":{\"r\":null},\"1644\":{\"r\":null},\"1645\":{\"r\":null},\"1646\":{\"r\":null},\"1647\":{\"r\":null},\"2085\":{\"r\":null},\"2086\":{\"r\":null},\"2087\":{\"r\":null},\"2088\":{\"r\":null},\"2089\":{\"r\":null},\"2090\":{\"r\":null},\"2091\":{\"r\":null},\"2092\":{\"r\":null},\"83\":{\"r\":null},\"193\":{\"r\":null},\"388\":{\"r\":null},\"664\":{\"r\":null},\"752\":{\"r\":null},\"644\":{\"r\":null},\"647\":{\"r\":null},\"124\":{\"r\":null},\"429\":{\"r\":null},\"1375\":{\"r\":null},\"445\":{\"r\":null}},\"qplData\":{\"21\":{\"r\":1},\"192\":{\"r\":2000},\"1597\":{\"r\":1},\"5270\":{\"r\":1},\"6287\":{\"r\":1},\"6915\":{\"r\":1},\"8327\":{\"r\":1},\"334\":{\"r\":2000},\"955\":{\"r\":6},\"1217\":{\"r\":1},\"1360\":{\"r\":100},\"1411\":{\"r\":10000},\"2172\":{},\"2401\":{},\"2410\":{\"r\":1},\"3796\":{\"r\":6},\"5252\":{\"r\":6},\"6204\":{\"r\":1},\"6310\":{\"r\":1},\"6702\":{\"r\":1},\"13076\":{\"r\":6},\"152\":{\"r\":10},\"4342\":{}},\"justknobxData\":{\"48\":{\"r\":false},\"84\":{\"r\":true},\"87\":{\"r\":true},\"144\":{\"r\":true},\"379\":{\"r\":true},\"380\":{\"r\":true},\"450\":{\"r\":true},\"643\":{\"r\":true},\"71\":{\"r\":false},\"76\":{\"r\":false},\"77\":{\"r\":true},\"80\":{\"r\":true},\"83\":{\"r\":true},\"138\":{\"r\":false},\"306\":{\"r\":true},\"341\":{\"r\":false},\"356\":{\"r\":true},\"494\":{\"r\":true},\"589\":{\"r\":true},\"624\":{\"r\":true},\"653\":{\"r\":20000},\"713\":{\"r\":true},\"815\":{\"r\":true},\"887\":{\"r\":true},\"904\":{\"r\":true},\"905\":{\"r\":true},\"906\":{\"r\":true},\"82\":{\"r\":true},\"471\":{\"r\":false},\"757\":{\"r\":false},\"55\":{\"r\":true},\"73\":{\"r\":25000}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"RaA31FN\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/l\\/0,cross\\/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":14,144,151,0\",\"nc\":1},\"LGJRwGF\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yH\\/l\\/0,cross\\/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"Zx0r1CJ\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/l\\/0,cross\\/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"kWwybab\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/l\\/0,cross\\/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"f7Ym7Sv\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/l\\/0,cross\\/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1}}})});</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/l/0,cross/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/l/0,cross/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/l/0,cross/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yk/l/0,cross/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yH/l/0,cross/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yG/r/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yG/r/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"vLAMZRo\" async=\"1\" data-p=\":1\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;vLAMZRo&quot;]=1\" onerror=\"_btldr[&quot;vLAMZRo&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3imDI4/yD/l/en_US/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3imDI4/yD/l/en_US/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"wYUxKHn\" async=\"1\" data-p=\":15,138,110,13,181,166,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;wYUxKHn&quot;]=1\" onerror=\"_btldr[&quot;wYUxKHn&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y-/r/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y-/r/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"68MbJvY\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;68MbJvY&quot;]=1\" onerror=\"_btldr[&quot;68MbJvY&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ihtU4/yy/l/en_US/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ihtU4/yy/l/en_US/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bgEvhmj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bgEvhmj&quot;]=1\" onerror=\"_btldr[&quot;bgEvhmj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y_/r/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y_/r/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"JYW18Ti\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;JYW18Ti&quot;]=1\" onerror=\"_btldr[&quot;JYW18Ti&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_sF4/ym/l/en_US/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_sF4/ym/l/en_US/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"GBulvfh\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;GBulvfh&quot;]=1\" onerror=\"_btldr[&quot;GBulvfh&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iFMc4/yP/l/en_US/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iFMc4/yP/l/en_US/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"AsuDyfD\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;AsuDyfD&quot;]=1\" onerror=\"_btldr[&quot;AsuDyfD&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iZ3g4/yH/l/en_US/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iZ3g4/yH/l/en_US/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"oZORzhP\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;oZORzhP&quot;]=1\" onerror=\"_btldr[&quot;oZORzhP&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iJIK4/yK/l/en_US/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iJIK4/yK/l/en_US/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ICkzBzx\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ICkzBzx&quot;]=1\" onerror=\"_btldr[&quot;ICkzBzx&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iss64/yb/l/en_US/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iss64/yb/l/en_US/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"oEUvNGb\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;oEUvNGb&quot;]=1\" onerror=\"_btldr[&quot;oEUvNGb&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/r/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yR/r/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Up8o120\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;Up8o120&quot;]=1\" onerror=\"_btldr[&quot;Up8o120&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iqfe4/yO/l/en_US/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iqfe4/yO/l/en_US/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"RgUx6NB\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;RgUx6NB&quot;]=1\" onerror=\"_btldr[&quot;RgUx6NB&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iwkF4/y3/l/en_US/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iwkF4/y3/l/en_US/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"pm3z9kc\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;pm3z9kc&quot;]=1\" onerror=\"_btldr[&quot;pm3z9kc&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ms3f9xJ\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ms3f9xJ&quot;]=1\" onerror=\"_btldr[&quot;ms3f9xJ&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"pp/2fvu\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;pp\\/2fvu&quot;]=1\" onerror=\"_btldr[&quot;pp\\/2fvu&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iTf14/yj/l/en_US/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iTf14/yj/l/en_US/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ShQo0xA\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ShQo0xA&quot;]=1\" onerror=\"_btldr[&quot;ShQo0xA&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yl/r/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yl/r/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"aVqoX25\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;aVqoX25&quot;]=1\" onerror=\"_btldr[&quot;aVqoX25&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"gpD7gKM\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;gpD7gKM&quot;]=1\" onerror=\"_btldr[&quot;gpD7gKM&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yW/r/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yW/r/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"dioMJ9z\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;dioMJ9z&quot;]=1\" onerror=\"_btldr[&quot;dioMJ9z&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iLf44/ye/l/en_US/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iLf44/ye/l/en_US/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"G83kG5B\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;G83kG5B&quot;]=1\" onerror=\"_btldr[&quot;G83kG5B&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ihe24/yg/l/en_US/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ihe24/yg/l/en_US/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"cOGwS2G\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;cOGwS2G&quot;]=1\" onerror=\"_btldr[&quot;cOGwS2G&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i4NY4/y-/l/en_US/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i4NY4/y-/l/en_US/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"SagIiXi\" async=\"1\" data-p=\":0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;SagIiXi&quot;]=1\" onerror=\"_btldr[&quot;SagIiXi&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ijPr4/yv/l/en_US/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ijPr4/yv/l/en_US/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"UaJ6Fae\" async=\"1\" data-p=\":0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;UaJ6Fae&quot;]=1\" onerror=\"_btldr[&quot;UaJ6Fae&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iUce4/yS/l/en_US/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iUce4/yS/l/en_US/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"obEmI58\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;obEmI58&quot;]=1\" onerror=\"_btldr[&quot;obEmI58&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iow94/yJ/l/en_US/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iow94/yJ/l/en_US/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"WYJHsrI\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;WYJHsrI&quot;]=1\" onerror=\"_btldr[&quot;WYJHsrI&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iGsb4/y5/l/en_US/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iGsb4/y5/l/en_US/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"YYCsR5a\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;YYCsR5a&quot;]=1\" onerror=\"_btldr[&quot;YYCsR5a&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ivkL4/yP/l/en_US/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ivkL4/yP/l/en_US/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"yxuOpZn\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;yxuOpZn&quot;]=1\" onerror=\"_btldr[&quot;yxuOpZn&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ideN4/yh/l/en_US/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ideN4/yh/l/en_US/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"lA0A1O8\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;lA0A1O8&quot;]=1\" onerror=\"_btldr[&quot;lA0A1O8&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iXZ54/yZ/l/en_US/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iXZ54/yZ/l/en_US/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"CbVciYk\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;CbVciYk&quot;]=1\" onerror=\"_btldr[&quot;CbVciYk&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iogo4/yZ/l/en_US/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iogo4/yZ/l/en_US/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bSZaoMi\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bSZaoMi&quot;]=1\" onerror=\"_btldr[&quot;bSZaoMi&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iGYw4/yu/l/en_US/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iGYw4/yu/l/en_US/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"SsSrcC4\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;SsSrcC4&quot;]=1\" onerror=\"_btldr[&quot;SsSrcC4&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ye/r/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ye/r/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"iE2l7jW\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;iE2l7jW&quot;]=1\" onerror=\"_btldr[&quot;iE2l7jW&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_954/yI/l/en_US/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_954/yI/l/en_US/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"rDzHHGL\" async=\"1\" data-p=\":0,0,0,27,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;rDzHHGL&quot;]=1\" onerror=\"_btldr[&quot;rDzHHGL&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/r/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yp/r/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"8aTFOzW\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;8aTFOzW&quot;]=1\" onerror=\"_btldr[&quot;8aTFOzW&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y7/r/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"/xWlKkI\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;\\/xWlKkI&quot;]=1\" onerror=\"_btldr[&quot;\\/xWlKkI&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3isHT4/yE/l/en_US/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3isHT4/yE/l/en_US/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"ImCNdhg\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;ImCNdhg&quot;]=1\" onerror=\"_btldr[&quot;ImCNdhg&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ym/r/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"1BRKNYj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;1BRKNYj&quot;]=1\" onerror=\"_btldr[&quot;1BRKNYj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/r/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yu/r/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"f0Nl9pe\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;f0Nl9pe&quot;]=1\" onerror=\"_btldr[&quot;f0Nl9pe&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3itX54/yU/l/en_US/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3itX54/yU/l/en_US/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"PJevOFh\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;PJevOFh&quot;]=1\" onerror=\"_btldr[&quot;PJevOFh&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3izF44/yn/l/en_US/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3izF44/yn/l/en_US/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"iuENYaU\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;iuENYaU&quot;]=1\" onerror=\"_btldr[&quot;iuENYaU&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3in5G4/yN/l/en_US/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3in5G4/yN/l/en_US/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"DsWfgKJ\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;DsWfgKJ&quot;]=1\" onerror=\"_btldr[&quot;DsWfgKJ&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iumd4/yp/l/en_US/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iumd4/yp/l/en_US/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"lgaAFHU\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;lgaAFHU&quot;]=1\" onerror=\"_btldr[&quot;lgaAFHU&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ys/r/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/ys/r/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"8MwX2jo\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;8MwX2jo&quot;]=1\" onerror=\"_btldr[&quot;8MwX2jo&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i3xT4/y5/l/en_US/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i3xT4/y5/l/en_US/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"6KCwpsF\" async=\"1\" data-p=\":152,3,2,25,114,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;6KCwpsF&quot;]=1\" onerror=\"_btldr[&quot;6KCwpsF&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3ikjM4/yo/l/en_US/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3ikjM4/yo/l/en_US/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"/cMNGhx\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;\\/cMNGhx&quot;]=1\" onerror=\"_btldr[&quot;\\/cMNGhx&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iSdl4/yn/l/en_US/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iSdl4/yn/l/en_US/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Nx6u9Jq\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;Nx6u9Jq&quot;]=1\" onerror=\"_btldr[&quot;Nx6u9Jq&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iPVh4/yv/l/en_US/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iPVh4/yv/l/en_US/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"TQAZkKv\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;TQAZkKv&quot;]=1\" onerror=\"_btldr[&quot;TQAZkKv&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iLxq4/yI/l/en_US/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iLxq4/yI/l/en_US/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"gxHwpBE\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;gxHwpBE&quot;]=1\" onerror=\"_btldr[&quot;gxHwpBE&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iuVg4/yI/l/en_US/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iuVg4/yI/l/en_US/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"nQecA5e\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;nQecA5e&quot;]=1\" onerror=\"_btldr[&quot;nQecA5e&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/y9/r/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e8bJQ8q\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e8bJQ8q&quot;]=1\" onerror=\"_btldr[&quot;e8bJQ8q&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yS/r/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yS/r/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"+vXa6Lj\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;+vXa6Lj&quot;]=1\" onerror=\"_btldr[&quot;+vXa6Lj&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3iga04/yD/l/en_US/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3iga04/yD/l/en_US/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"DCNucsL\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;DCNucsL&quot;]=1\" onerror=\"_btldr[&quot;DCNucsL&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yZ/r/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yZ/r/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"xivIod5\" async=\"1\" data-p=\":0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;xivIod5&quot;]=1\" onerror=\"_btldr[&quot;xivIod5&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yD/r/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yD/r/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"m4q5gIa\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;m4q5gIa&quot;]=1\" onerror=\"_btldr[&quot;m4q5gIa&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i_tA4/yO/l/en_US/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i_tA4/yO/l/en_US/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"bsXsmKk\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;bsXsmKk&quot;]=1\" onerror=\"_btldr[&quot;bsXsmKk&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3i5iB4/y7/l/en_US/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3i5iB4/y7/l/en_US/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"51fcjGV\" async=\"1\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;51fcjGV&quot;]=1\" onerror=\"_btldr[&quot;51fcjGV&quot;]=1\" nonce=\"7DXsYBtw\"></script>\n</head><body class=\"_a3wf _-kb\"><div id=\"splash-screen\" style=\"position:fixed;z-index:100;background:#fff;top:0;left:0;width:100%;height:100%\"><style type=\"text/css\" nonce=\"7DXsYBtw\">html{overflow-y:scroll!important}</style><img width=\"80px\" height=\"80px\" style=\"position:absolute;top:50%;left:50%;margin:-40px 0 0 -40px\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACgCAYAAACLz2ctAAAtXklEQVR4AezBAQ0AAAjAoNu/tDl0QAAAAAAAAG9NRy179gDrX9NdcfyzZ8793b9r27Zt2wqqoHYb1rYdt1Hj1AhqI6jdPrafizO7uHOSnfMi+uvFTlZm73XO9TdrZnK/TB6/Ctef5jqudm4MbgTXBofGUXAYHJaLvq/GUee4GR2tGz2tndaa80a2hWhAdCPCiAA0dBmBBQ1bH4BONqFJi8ggm6FrGWRnXKwxmrHS1kWsYYyDOBucdLk27Sycnod2cixOhzw7Fs8NnljFk8PZ01fFs087fRzPegmt+HP3uNvrF7325eD1lu6t1/SW2bxWX71x8iqRDskRjoNlqk9FoyW9yUjZQvYwgmxdIqMRzRoNNuiEjmYIIqQmNQQaltJvft/gFLnNDX3OIbLJ7FKIPBIjZAbTjzUYTeairawjGOToYm2chHG6cIa1y8eSe7r492Y8EM7/7Ez7rzf1mg8j3eUVKd1N9ZVXvUY786qteUfpnYKPkN5QuhaJokgCEEUNCbM34QlDQxhCCpu/gjb9xtTQUOHr6ucMCzbfXKN4Md+pMIbQ6rtzbnLO1Ln21QspdjPDBaT53138NeN3mvO/Pji+7xW95n04eTmAu/o8Lr3qVW++nnmj1ny08B6R3ly6DJEYhLnu4bPv9zCOCVAW+NjgaxID6QghN1AnHEOvMBTgluLt4eo28KI+n37Od7MAOHQNSQGvzb4CGGWtgDLUPlg79zTrn5G/162//4z1P/Cwu6DiHv/gTtYPXXnzj8nwYdL7S6/b0qtFIIkJm6TC15JaHQqE6h+spF2Xcs6b39VkTItkex/toi/gbT52oDW0CZitl5svsGy9nE5qWMQOMKImq6SAW1O5wvjCNbbPfTqs/975S/JXbzj/VTxyhxPw79yJ+porb/lOwee15qMNryNdikQWgCaEkpizCWAgC2hKH1BTrEC1zNSLDawCYNsDKAuYUYBlQYgKjIOgAlfTUmyfRxdy9il1sYdOg33i1c+/B466Fo0pQnIxn+L+kP/cjB++4t9+Eyd3CMBfdbvqy33U8ZVr3uucL4z0icHV2GCaYBlAywLclKyAAYGOKGogS/LVs9+qTfBM4FqBsU3IzHWhwBuipGDIOdNFScU9gAG7rbSeA4HYVAGsniFEAW0gNCkk068/nwmhzZt92a7PG3966vQHw8kf4H63seJpf+p21Ld4t9d03cdKXxe8uQRiEGqylXMeYi3PVQBfeGLsz0nNqtU0nOnX59z3aWctZ7cJZwGws9/6LKKAVS8eKbQdTKFJrSTh5sf0a5rZIBUlybBPPpA7GPdKrAIqjFKzPtT4le78m/EftzEB/9KtrPBO8Q3XvLX0tcJH49UlMWjq9nohaGP6VfUP/GLUqYmmGxiaUdJt1LSbIG694pkfF/UWLMo2u78Zd20DYoNM7OA0e+X2awO39HsQ61wvUknxxsTa7JXkI6zswdxAtEr5W+SPd9d/43ZsywvX3cr62uveE98ZvLdwsMHUaImYwAUxoIJHY5cEBKAVlWQoyTV0Y65ZUs0GqAWBmLAu5VmBtMC9hzxmHxobQOy2zQ3YCiepUdIaCPbPZIFYgc8ujbMmIxW0zdGo6VfW0OQH4fV48rVYfgHP3OIE/Bu3or7a218+vuGTpZ8P84JRoAJoFbpBjN35zy79CgTFL/2oAAprmdOypSETsGGRYurIoKRdLynSRAVYF0xvQlWSDxtYWgEidhenALETkPXzU8BUkpDcz4LiZz0DCuaawpBztUlOnf8SR1+Mh29hAp7dgvPeu1w5vILPaekbpEsRBCJQt9S5GrsLRdIrpFDhm4K2B3N3QyypNZUl8WYKTmjJAtiw1PcpICsA24ShFcBil3pRe+qtlro9S9if7+TuZ8MuxVRApdwl6/Y5kqKo0FH6+DTO/pHTn8F/3RIAb3bCfu+rvv/10xOfsaRvD149AogoIGUBcqWNDcjZ7858ClgNSt/ZATGmN0aT502eLPL5Lk/TOFt4Pi78sRgZcjTySGaTSbrw6bJAPdLs65bbNGFomkZJGtGY7wUiJkzRBTQyQosmG9nJQ4hLF2seB5dCLEFLIwJ250AAsgK+AwwGCLn1yJ0A9R3rVxOvyvrt+O9bAOBwM+uZUx/bYsKHTZIAtCAqaBt8Zd4lWvXOgoeDexb+Jbmn8dTCk8RzXTzfrKchnj/iJLVnunyuy/O0JrkGo4tMq8vkKZCLwBlIHEgO4OAUADFdDhKBVIuDI8Cp0zhsroMzZ3E014OG8yDi3HkPrR85tHB6vFquNC43ebxwPOQxcSXEFdZXaNorhnxL8nXxWuRlYBQIYZQ+i/aVRYGBuIxP4+ghjn4Yj7iJFelP3Kz6thvv/m5n/FGjB5Rz3P4/Gm0q7NOvbquexn0L/xn8Ef7mwJ/8J/dgeHkB+Cb/8uosb8r6/ng3vBnj1cnXICuMU1l6Zc6ptXjrXP0wH/h1OL/r/hf8Lde8re6HpA+NknaSmDJoCmQD6/RMKP+nvbsAsuS4En7/y6y63T2sscVMRsmklekz4zIzM++alzf8DIvGb3ntZd41My2ZmS1ZMglHjMPdfavyPLobcSNj6k231Hem50X/I9JZWdcjaWb+fbLOqcy8RMMefBIfSfxnw6dX/iC8wU+5fjMH70d5IL6HuBf9mUQzLeNEsqlWKumgn5a2p3sq/msNBXznGsj31BOb7EWJ74iwJcHUtBpBiinJpt9wFGIiZmY586+JdxY+cCs3YNkGdyMyfuJ4tj6A7htI3045qxKuuu6hjnwIdCifoPwsPrZGAr7d3eGnfc3o9O2+PfOX2JICpoUjBYFcJRmCpp+IyheDP5znjTu4Ab01YYPvJHHJiYzOZPnFlMfhUBJOtXock9YvEf9G+yzctgYC/oe7w28d96THN+HvU3FGSvifCAf/IyDERLhCiknrydyY+MfEi3GzmbLBz/jsFnwH/dOIB1JawnSjryJifd9BumfR/A2W3A3auzvDjXrflzgjBSYt+Z+ePB0Ro46Cbiv8Pv4y2GfmbPCnHrj/5/h7Pn496bnEo1FFvPj/aFA2kX6Cuffi80ctAr5k+5MeGsV7EpvS/0gGUMiTPiFNop9g8hy4C7/1U7wSYYOjwCfuS/+PlK869FQcA9lxZ3L9J/gFd4OWPe4qUfxEEzZJ1AJCE5QgIwc5kXqasBsvnecf/4GwwVHiqy7/QR/6Tfwu8WCmZQMD2XEgkL6XO5+Dxbsh4G6snpct/MgT5nhiQhRSIiEVpmUc1e96w0147k/wFwgbHGUe+Q4+fAfxvykPIzI9oAy0MOnvwfZn8u2/h7B6pLB6Xi3mbtrs5Sn5sQgLSbWkatKmi8uTscQf7eZXcNCas8Ezvbvl8QXFqnj3D5BeTjkeKAh0iCEBUT7M8ndil9Wj5R+tlju2uE/LIxULkKaXyBcgFUzX/oAvBr+zc83k2+BHvLvl+LPIj6C7F8edxqfvIK4gfwSfsiJueS0n3Jf4jfr57zDlmvNpvwZ/afVoaa2W1Dmn4XyJBIjpwnKaqgGaXBN4GW60hmxwwq9RvonxaaQt2ExZxh7KbYxfQ/c3uNowOO0gy39M/AJlx7CEdYISx1Eexc5/wNLqBbTdavhLX3vSiG+IsC0FEUAytZOtLsEg8erCW91tNvh+Ep+9AC8mvoaAaTFaYjNOJi6g+S76X2P5nVg0zI2MX0D8LjFHDwiUqkFB1+Iibn0wPrJ6Ad1qNcxxai4eHQGYFhASqQDQIrE38/pXcYM1YEPAz56G36U8GXWNDuoodT/S8xjdjvcxDPvfTvP9lItI9T8HtYSBOBfn88MfRaxSwB9cnYCNe0fvPEFKlCDXElKv5/vomA98G70N7hbf4/072fKDpKcQLQWgFqNuD6a8BA+HYfIV9K+iPIho6BEDq2QAbKW/iL99K+5cpYB/azXk/kceHswlCDIyYmB7IQ4kPnEJ11kDNthxOuMfJOZRiRCAGGpfRX4gPmuQrUvc8UnKtTi7WpwKCEBfCT4+EXfOdEn+HF8TyAAIqASckvLaxFsuplgDNlj8avL9KIgB6aD+HEpD+Wme8AsIg/zrpcxfQpxFn+hR/3N7FCT0iIfhFHxxdQKugjf7yc0tZ0NGVPIFciUjri9cYo3YoFwwLF2soJUL+MBW7DXI99zAqy8jPYV+nnoKdqhVMlspZ8HMIuAmzgo2FWRAqabfDIAEfBx3WCM2iJOGhTPdDxSO02b27MCwgN4epI8xvgWnD5dkahnLg/H3M9sTMuK+BRCVcBmBaRqM+Yg1ZINYImCVURCgD+bGDsuey4jbiNOHM2G15OfBzARsuH9jOPpFJR+6OAYFfLzntzxxJ8sn0J1EeybpfOJsnEyzhbSVmCN1OEDsJe0hfYX8JdI1uIXxjYx2Y681IT6PbyENyFeqe10lpi/x/lscnks478vEg6YEq/95VSJS7s0zE2IVAj7dSpnztJNV0tXPgYXpJOS2TexyjPBwb93JwoU88t4cfCjNA0kX0G8nIwH6gTO5AgkF+SBxC6P3Uz5N8wl8BVe7W5QPkfZQtquj23Ckmr73bi4qVsRtV2LgmY9DTM1n8+LN2L8KAV9sJVzqOXMjzquTj4I8rPzV1jkXeXXD9nPIT2busXQXEWeQNtNVUqmrnJWMaToz3EQ6k/77SN9FXE+5Fm+ifT+nfBKLVs1VHye/nfLdpAEpoK8kgbiNxTdaMeVSkuGl+lGPF0jHr1LAZCU0bJvjOFUZsq1ELEiA4ErrmAd59VZ2/CK+hTiP2EG0h87vA1DXAFLVZ6hp6c/EmaQL6Xex693EX+OTVset9K/Co4nTCBRAfV2P/THzt1gx+2+mQ1nhwoSCvMMqaAkrIbF9nvlUBfYetcKBhLQOp9/7+sSIvWcx/kG2/zDlLHowTKr6HpCqBqrPVJ+lHaQduAA/T7yS9FqWP4LdDk+H1+E4PJu4PzH0Cg4RlP3EbzP3Cqti6WYMRL4ykJAsn4nPrkLARSthM1sKTVRTboMYKEon9lhHnO9dW0jfhB+nfyxGFBh4omW41G7g84QwLKb6n/dTxBOZ/1PiDVY+a/w1i7dQXkicjy1EJYegfIzyRtJfs3yHVbG4l3mE4c3ttfjNCVZBS2MlNOxomB+uPEEoSAKhiH3WCed673l4GuPvxQnDZ6IEatJQZKtamRZw4CVlOdT4fMoL8D3EL+KjVkT7Zrov0T2O8hjiQspxpH3EV/BRvIM9l2LRqsn7h1ZEDz8P2rpKAXsrYYGtPaNAUSf+RZKEkIWEUIxYtA44zdvuw/yLiSdStgy/Sciokw1VRKsFrZ/7Sh3l6ux4oGgcW/Ew0h9R/pw7/gnLDs/luJodb2O8g36ebky5kxNuxz6Oc9f43BJ9ITKl2hNiYP/IeH4m2zLn2DoWIwghEDAZhYl4QhECSRxVAU/23/PEj9I8j+6kQz+k90iADlDLFnW0q8WqBE7V/TTV90iGSQ/Dg9j5ABb/DF9yeA6yfC2upUUL2OfusXSAdomyiVRHv4FIaPNM3gXPMUfJvZBMu19AL1Bk01OwJUeJk3xsK/13kX6H2AnUf4BQhkRAUlELWY3LgLihFnGYgHnS02jPIn4GtzgqfHSRh+8nNlWSGX43bG4mWXCxON9KuQGhTPUhZFAUoUGIEuKoCHgP795G87P0v0jsJAB1/m4Vz3x1qyVMA2MwICTDlAbfRtxG8zu4yhHnx3ou2Uscf4joNzSen8kzYKOMktQEQkgC5CkZCWXSB306CgJu8x9zLHwt/a9jO/3AEWSqWt40xbBYeXjZxWDtMCE5PAG1sN9Hl7jjN3CzI07spx8Qrr6H1QtYrISRMhfkiWAaTK6r/y0ClOVes98RJ/8Y49+nbAf6SQMoA283IEE9bRbSftxOvpP+StIdxD7yMrnFZspO0imkE0nbsRNzwyWbmgQOURbagh9nxyLxu7jeEWXXvrrkQgcDUs5IQEqbRGoUYCrpgDKRL5mMlMVWHHAEGXn3ReT/g7J9+Cd2qGqpyoZjiXQV5VLyJ3AJzRWcdDk6NW5pWLwnWy4gX0g8jHQf3B9bKMgwLKQ0VBpK+Bnsxm86opRu+NwYtXwo7YwEXG5JmQAUWSCEkGEiYRGwFEo5cvL99zmMns/4ZMrA0nGqzw6VTCzRf47mX0kfJ11G3Aws41oD9LiZ/Tfjv8nb2Xwy6VGUb8YT6LeTVjr9Vr2W8jTKu/BeR4wY061gCi6AaGeShNC15HyoZ6hUnbieBCwnpXdE+OI8fob+CRQUAHQoVXSpM9UMcID8+/SvYv+VPG0Z4a6xB3t4xZWc+F7KE/DTpItxuGRkoNRfthG/Oim5XOmI0HcUGBSvOnW1nUkSQpln3BAw8MK7TAlZlmh6M+e/R7TfTfMz9Fsoh4l41NMhcYD4N+LFuAxo8CfuPt2Y67+Cr+AvOen5xPeTziHl4cjHwL6Pp5Key95n4Q4zZ7w8sD1zoKRVmllNwQ0lkVBgOB0H/ZiDYeake1N+kNhen940vGgzoSDgKtp/Yv5Pcb2ZU36PuJz8y7iQaOsSDQWgvkY0eCJbH8kV70AxWwqljnrDPyCkGW1KGjeUVE+/hkschQgzp5s8X6kLowNLZ/O0iLfgl1l8G/Y7Itx+kP3/xoVfon8uvpEAVT+QFRc4k/gxzv4MrjNTLi8YXo5FNe5XGwG7VQgYiYCBkGw6AsXsBdw1R/l5+oYyvDFHqqMh3E7zq+x+PTpHlsIlH+fcp9OeiwtI9azCcFYMTyEeidcc6Qg4fNI+RJ5RErKcKYkY2nlVR6CgMzueknjRc2hOreUjBgrK0CHfSv+DvOs/0DlqvPtKfvTbGP0B/VORMTSj1AJsJ36bfW/FQTOjKwTDEa/+wUkzEnCpQaoLuZSBelBfEGbG755FfCNjFBiIFnVxOd1G/Cm3vIeHdI46n/4iD34p6QLSGQQMJFF1K/dm68PwHjMjKgHL4X5A0qySkEwkykAELNW9PujNjvSNjM+hh+FFAVQSegvNn3PPg9YNu9/H9j8g/QZlp2kUGK7DGf8wt70PxUzoAVBqCatmlknIUgJKbT76+g8HHZowEy7ZTHk45QTyQCG3ALIpxjQvoLvBuuL2JY77B7rH4RsBiBVUHOLBnHghPmsm3BlDq6AH9iWnGT8DFtONhA4JBWOAoJgN+x9CfhTy8JQbaNAjkArNCyhXWJd84WZOewZzT8BWyko3nd+Lpe9i9yUo1pjhVTAG6oBhRoXoA4mMfmhXPAJ9Jeda8+9znH0/ysmESRt4n9sBMspn8Vbrmmuu4Nx3EN+BoWhT/6VvpVzAju2405pzaxDqBkP3ZzUFO3QZpp/qTfXdjJ4Bd96T5YuJheHlVPXSqTQm/QP7v2Td0/8Z6bHEiYYjTl0YPoflc/Apa04fAMRK2sySkFS9dhvYoNyhwIyqA/M7WXooCeozuSohCxLSdbQfZmGfdU/+MuP3kL7zEAIOTXsnUE42E8LKBYQwqzIMukSYbnSgfg1GxGySkIMnEvcjIWD4iEyBHDSfYvFSxwQ7r+Pmd9B/AzYNr+yJ6Xunku7H1v/CkjUnqjZc9pphErI/kwY2KB9qDL0ZCHg67SYSDCyNzwBIeyZns+x2TPDfPff5Iul6nFdFuuEvmOZc9m1dewH7ICGqZrCf1btgBMpKzolDMRvKvRgPlJxyJWNG3IJPOaboryZfSTkPKCvIPMvkaBG3WXOGi8+kIzUFj4cPpdHX0/AMBezOJw1MtwW5zoj3E19yTLH3FrZeg57SAFG3eja6B2nBmhPD8lHdM8sIeBDQVxKODe8ZXbb2jE8CciVcroTMKChX849fdGyxyO9dTTpAbKMADEU/lJOIzdacWjrDEW+2Ai7XG1PqcsykQcywDthvJpChPnUAqnHcyvcWxxyxm1geWARQtQI7sXl2CYjDyzf7OqCq3jf49U3oka09461AGmj1ocH2OybpD5K64XfB6vEm4jgzo5buiEfA8QoOKIR+xlNwN0+CAfmqEwr1Y8ckpUMhBt4Fq68TJc8uATG8n/rITcGDGXA1Lkhmw7ibFpAGkAfOaGkbxyQl0+eBetxQRIwjF/nqa7POghcBECs4rgvC2tPtJ9VvO5CR62VYGC84JukXiDy8UUm9FnOZvN9MGH7mIw2M1/iIXvqBBah9/dM44yjY76egqZKNfkrABmFyfQ/enhCOKR60jTQi1G0gIdlN7JmtgBjeT400yym4q4QrlZhRj1GsOW23Vx8IZCKTAlCIBhAAp/KtJ+BmxxTlnqQFihV+M9LtdEuOCInhkx1mJeBiJVUtYy1dmY2Ao/GXzSNlSiIyMZWEJERBpmRKd4L2zgfgPx0rLF54AuVCYiKgAQGhB5SbWT5ozekHdhemgag3uwg4fCzD8DQ8AwG7L2shI5mIRkqUIAXREJPr5XI8zQXHlIDyKfQnDhR/h1ZHX2smZ/GU4chGJeZsyzCBOuoNL8tXMLbmbO6uJC1LaY6Ehkjkhr4QGcVESprmOBEXm9u0Bfutd256V+Ih96GcP7wxCaJuX2LuTmvO/kQc5uR/dzkitmQrowsi6BFqGetFqRo0ZhEBbyHdSDqTZBpNAgSBSEhZOFcsnonLrHuesYNyMf1WwIB0pvuD+Ap/st+a8/0D34liqI8ZZcHjoFTSqYvSpDE5MZKUkqw180s30rwP3y9lSiElIkiJUtCgEJM+8oM1HuaM0ZfQWc/c0N+b8h1IdfQzPCVfzdKX+KGwNqzyKyoS0qyTkPHA9FtIQS4o5J45jLokj609N96iPfHT5O+lyVKQEwUp0QalEBmBhrCFpW9xg3/H9dY1/ROJc4cTDyj1ZzfS3GomjBPJMLneCGYm3xPCUmBqCu6RyD1NT4vU0wajjjZIyZqz7+Qlxy9/Rso3iO40elKLnmiJQpPRolACmWieKo2/Fn9lvXLZA+5B9wtAgMMnIg7gM1y1y0w4KQ1Mt1WDPMskpA+KSSMVYNTT9pPIF5PrMcnsjgdM469o5i8jnSaj9GiJ+nSpTEHKsFnE09a1gOLHKaetUsBbKO/m9M5MWK7lg+Hvx5djRknIUlBC0wFtz6jQFEY9uaMtNGNSIfdJU5JZcMAV7tF/UEoPp91GQ5kjjYlR/SaEaIkg8gMVzzfuX4x91gufvzTxI99I/Bx9Ld/hZPwMt7/dzDgOUYtXSQcNEtLMBOylCKMeE/lGhXZMM6YJUtD05CAjzI7UvUPje6Vum2hpOmJERilEQUMKCkog0zQ/aS5/3scueRXCuuCHziY9i/5sYhWLAaC8ix1LZkdCteLc8HQsm42A+WAY9cwXck9TaCdRL8ekIaFFIwuzY59PON47iXsxJsboUWhaYo4oRJCD6NEiThbNr/tfD74CH3O0+eD9zyJ+lfhfh5evjopuorzKTGkzkAcEy9PRb4ZT8Gipt2kcmn6SaAQ5SMhTrTG5lnSSWRGW8UqNXwABY1KPEQXRokz6BkFEEum+YvwrlvMv4wpHl5+l/36MMCTc0PU/4RYzJdKhI15GnhZvxgJu39/LitZUpKt+AFokJJCMzJY7fM5J/lryYwAULKEnMjYREwlToSD6OdF+u1Fzb73v8P7Lv4ziiPINx7PwHMa/Mlx3g6KGQPo45S/NnNyQh954VBI2UGaTBc/ppSnhagnrSJglRTJrWn8peRzOAwUJOqDAGCNiRELKRFD6B8ijV3rivX5bGb8Pi2bNu+854qwziF+ifPfq1tIFIPaT/4buajNnLqOWDhmpatD0s6kDNopGqabaQ7eERntEBEw+qfEKyQuwAMIUy0SHnuiJQEtpaDIRj1Gav9DO/4kyfiV2myXbT/9O4+6nLHmEkuZXt5wpAN5LeS3pgJmTUi0goBYSzQyn4EYnC83AlNtM9RnJSJLNmjstOdWb9b4WT4BaQgplmdRROmKOPE80RMqaOEuJZ2rai/XxvJm8M/7cOSfSfr+2e7rkTFkyTiyvZiVxIF2DV/Lmmx0RvndUvemokpGmFrDMJgJmi0Z6DXIlW1MnRMgWJK0jwa0ut9MLzNumuJh61TqaIHpyj2WMKS0WJiK2p4j2u6TR10heL+JfLHZf4Oxd6KyWd787Of2RO21fuJel9I02lR9nfLJRok+M0SCjS/SIertpjTH5hXgDX+fIECPS0HTLtBCgHa9SwNaKWNBRTcGVfJWAc8iOFLu924leqvEPQguo65EUKMQyuSeCmEPQF3K/XTQ/rG+fYvPcx6Qb3qRvvqhbvMa5O2/A2BCv/ETyqEedYpxOcNGj7qNrL9b7OnNxgVIokMiJhAajxBiLiR59N7zOTnor7/hrR5TvGZEcfitsRoPoZrMpKes0QlMnHBwyOUkWJAuOJP/mVX7Ak/BjQh4+YQx6So+eWCbmaEaUEdHQ9KeK5puV0ddq+2u07TV27b9aP7pSTnt16aDIYyU1+rSgNNs86mHH099XTidr8rlSt02TspLoEwWRgJQm8iElErpgKdMHoea/6H+HxxVHlNSQTFE9c6kEaLqZRMCJgH2VaNQCkqYiYNjsSPJUxdjvWdAKP8Jhvv8lIfVTb046SiLK5F5DLnMin68058vRyQ6KtCw3HRFI5EZjTmdOlAUyqRAT8QIyGWlyDyJNP0MzTuTCGEuIBPBF2hey+9OOPJtMU0/Bcp2QjGdUiLYsK3XCUUsoIaExwiZHmn2+YovfAHynbIsY2F8NPXKgI3piTLSUeZNnQ7T0LaFV2m1kcksgZ5O9JzQNXSISgT6TEyUBMn2iR5PoJn2LLjEXLCVGGE3uHfTf+DW6j7DJkSe2oYo4qml30oyQlmazILWxLCkydSJCPR0jazDvaHCL693T8805iJ9B0iCGv4wIlKD06Mn9RMRJ/VBHNKRAJhUik1BaSiYK8kRApMl1n0goicgkpEwO+kyXaJAQiRbAZyx4Pj7iaLGYN5OQB9YApvovfnE2WXA7EXB6uq2lqxsLjha7XeUeftOcLfgezLGS3Y2AMomIZZItx4hoiYls0VAaSqb0yJOIlymJkkmJSKRJK4k86ROTMSmRUSbXPaT/Iv2+kfc4Wtx+1ibSdhIMFYCrZ8K8PKs64KKkG5Stvt+AOUeT3W53gt/U+KLsGcLxSv1dNkNf+ghB6smFGBMN/Yg8R8nkZhIh00S4TExE7Cdy9ZmUJtdpWk76oM8wERTyIt4jNb/qlP5SR5Pb2wUsEEgDG9PriDR30CpoV+xI2K2xrKmKz81gHRAWHG1udy1+2+k+KjxbeDzmFUAMtAYFEEEEpdCMKYvE3ETIhhhREhq6TGpIk3GbpoWkoCRSppnKjrtUhF2a/Dxf/NzfobjKUeZ+C2hJpptagukoqCzO5pT8ZI9kXEW6OvFQfb7VeuFG/+4UXxaeK3mi7EzB8D7vKQlLvfemYJFIpBHRURoiEy0pkZvJvYSJkGUiXMoIIgHZPpp369K/GvX/5KL7Wxd8cmkL80N7QAZqgXOLs4mA2V6NcZ35Dj8SgO3WEze50vF+zoKnCD8gfJ2wRUGqIl8ACsPfTBHkZcoypaEk8iQalnZyryHlqc8nEuZMZLJ36/MbpMVXO+uam6wnPnnxNkotHKA5ZMQhbptNIXqrg3qdNCBfQqbKkndYb9zpoLO8w6JLJG+U/YrGA8SAdAlNdQhXqc/hRN+TEP1Eskxu6FpSQz9PDpMISO96pXmNfv5PjZevwUG7Tre+KDum/2JRC3eotyE3zCYLXnankT1VtKt+EKraIPe3HtllGVfgCsd5gzmPl30bHoLzhG1CEuiRBs7krCNnTO3fz4XSkZcoLXm8JNxA8xmpfZPF/o24Td7LZuuU/hRaRCVa/TzYTo3jptlEwHe9bL9vfNZV1TvfYfkykrOsd/baj7c6xTv17oNvFx4iOUdxkuQkIUnIdeRDqqboyViPZK/karpb6D6jaz5g1L8D+8w7FrjvlFiH2QvSIHeUO2eThEDj2mqarWWsxTzZvHvgduud3Tpc6mU+7/l24ky9E4w8WHGG5FzFCXonY4dksyTphGJZuBO3GbtZcp3kK8a+LFwh3OgG19F3jinSvYk6+YCB/cB5F6ffsUoBz7Rikptq+WoB6xUxevfFBx0rPF3g9kmj8X47bNPZppg3sklnq2y70KBoHTC2W7Zo3kFL9tlvr/McRAH3dmzxvG88HtVDaRp46A9kpGu4oV+lgDdYMdlH6ihXPwNq6+K4x+GDjl0O2uMgbgZLaihoALAwaXscw8xfhFPISAPymRKgRXMZzCYJgd6VRjpZO7Ai5lDtYbZYwKINjiGai4idBAKQDvPdfPFZmE0SAm/4ozt9/y/eIDtjuPxSPx+6t0X3w6dscGzwe1+/ExeTjqsEA0BSRcclRl9avYBGVkX2CdkZlWhDWTDZ8bJHHksCbrD1NJxP5HqaIwHUUfFa4tbZRkDI3i77Jo2sGYx6JJNrJ8qegtfgZhusb5730BHjR9Hed7qmRD7MUvzyPtrrYTYrogFan5bdJDtl+L1wHR09WHL/Y0HADU45C1+H+eFDMVPdOvLHOXjn6gV00KrYZJex92t8Zx35BiNidqbk62Wfwm4brGPKwylPBNJKN8tfQ3wOS6sXcLXc5FYneLfsWzXaQ0XBQ2TGWfYdslfhYzZYx6SfIW8dPp63PhEVfIX5y6weLfNWxatfsexpP/1pXC67UFtJV19ntEjOxkslX42DNlhfPGs+85gfJx5Nj4wGgQDkQ61Nu4PmnSzdavVoWbJqGpcLl0kuQJKQVrBTrvEY2dfhtTZYZzzqYtqfhuHzanq09TfVX4P/Apj9FAwv/8PbPetpb9F6rMZJh5x6m4FpufG7sr14lw3WBz/9xPNIz6VcMPxVEACpkjN/gNs/dzcEvN1dInmb7CekWsDhpkFyjuTXzbkNn7DB0eVHnngy3S/QPJk8kPnWfQAKuj9noXMXySy4S+2lv3er7PclRR54H9xUPTRajccp/kj4GsFGO0rtFy48yejAHxDPIKbkA+gBkOpr5DfQf47eXW0tvbvMnLcrLpE9UKIWsX4WZPozj5S9VNiFSxxZNnjOheebm/t5Ed+lFPo8fCi6glLddz3jV7ibpPA8d4vnPe+7ZK/QOE5T1wLRHLZE8ynJy23yBuy1wWx5wUUjtx+8WJd/RTf3eEujHbqGgyO6FqNJm0Mz6UeYRzvpRz2jF9G+DLfC7JOQYd6t8Q+yXxwWbaAlZA/UeKGxBwkvwY02mA0vPjvZv+cnjfLPyc19pGh1iMQIfRCBqNaYRdV8gfKvPO+2NYiAa8Dvuw/+QOPJGo1m4OiQKjs+xPgmxcvxDsnVvsVuhA3uOg9Ic+6xcLKDm59kvPB9utGT9S3jecYtXctiO+lHLI3QYH6qn5uKjPNX0D4Db7YGpPAca8KLXvKtsj80cnq9YHWF2fH0GTSflbxR8kHh8/a7Bb0NVs4rHC8508HRRcrCN+vnHqOb22E8oowYz9G1jBu6EYtzLDfsn0eekm5uqrUYvRDPNcysC9EDHPBW222S/ZNUZ8ArOFMQMrI5ycWSB0luknzeTp+aLAO7zC0uq2XcAL8qe7CTLblIcn+Ni3XO1XT3Y3mzQGppglToe3LDKJGCvkdmuafLRKm+kLxD8zqal1lDUniGNeMV/3uzsb/S+J7B9YFtdZ0MrvqetJDtx63Yq3EZdglflFxv5EadfTbZZ9GiHQ643RI6a0UjORz7HI7hx/Ul7AcsT9qWSX8AT5C8yYJiXmezYrODtuM4vVONnas4z9g5xk5V3FNvm142Rsl0mxlvopunTKbcbp5uxHgSCccjDoxYHtGNMJqOfJ+geQbev8YC/tgah/6/Pl7xbK2f1th5yKRkZHJ9uL66hjS8OUvSC8uS/diL/RN5x4pO0gnLsl4RKCiSgkAIAQJQBIACQqkqFNBD9U8rU+OCTlIkk15IOo3epNfqjPSTVsxZtl1nm85WvTmdkQ5jdOgnrTC5T48OBcuIxHiefp7lzZSWfo7xHOMR/YguT8YtB0YszhMjjJZp3kf78/iCNaZl2Zry0z9wq7/+xz/Vu4fkB2WbpgXSACDVAtUSDok2eL+RbJJsEo6XAJBhYBxqSIhqL3Cu+vqfU6rPUr1/p+pLFfXrxLPUfxZT9+oEtT65ISOQEEHuJ30hCqmQe9pMZHKiKfQYoevpEpHfTXoBy18wA5rnuS/6tW1vvGCPb7r001rLssfK1eaple0nGfgqsvrXDoibhzbyV2OHuVb9Mw0cEqAaD/0AlcEvHq/GU00luWm5phoUpKHPE9FSEjEiT+RLiciYjFOmz6T0AX1+Fv3H6M2itSybCT/5Lbu84g1/YKvjZD8jaWVAMtys4p76eqoF6s+h/jxXf2n1rxtaDFzLkRGVeHVUSmiq6FpgIPJNmrb69dDXP5T1hrXqB7gUdKSgDXT0GUhIQQ6aQilhLv7DUnqhhfGnzZAUC19vprzorfNO8lTZL8keKlsYPl1/OIoMnRA7LOXgtDp8LwAO9y35A/cC9cFFZar11XWPbqovU/0YPZaZ3J+Mq8/HKFhGX///qnvjhrIwef5bYJKE6OfoJ4nHuPmCfuFvHPAK3GnGpDju8Y4If/nui7V+UfLtki1TEq5MwPoahjdqrZZhAROiaqpxLWUcRryYEqNDUcs4fD1GX40nvVJ93mM89Vk/STTKiH7LRL55xv9Pv2zcXGLc/J5rPvo69MyeFI4gr3NPje/S+DHZQySN5lDPcQNjh5u6hyQcmlprKukMSjcsYR0J+1UK2A3IOK7v121KuB4F40rAwPKIfoGyQDeiW6Af7TKe/1vj5m34kCNIivMf4ojyG59acLIHCN8t+wHZSZoBqepkhGEpwYCIUY9XEQUZFhAKYiXT8ICM40rIMeopNyZ9merHA5Gy/mcsI6Y/z5RN9JvoR2F54dW60d8po/e69NL9iCMroKPI22y3yc/qfbXs3rKTZK00FAWrxnCvygZV1xCwwnEMjAtU4qkiYKnFq6fdKmr1dUQbeCbsUI/rX9erx7fq5m5W5t9mPP+v+ISjSIqHH++o8uFbk/9yJp6o8RjJIzROk2yXhhOSgRpfLd4AqxDycBGxwGGm4BiKgJU0dTG5FqnDUvVrp5KPQXE7S4qr9a6w5D/wHjf7LJYdZVLc3/rheTY51X1wgeSrJs+JD5bskKRVZb9phVmwVdwrqBMTA5GvAOpMuKvGQ+L0hrPeOtKN1fKGzgG9qy15r3ApPmXRNbjWOiLFU60/fk2rsdOc4ySn4GxcqHFv2b1wFrbIsAIJoxJwSMSEAitIRADq+329kLiOgPUUXD+jUQs5uQ7Tny+bFrbTu87Y1RZ9QXKpzuUW3WLO9Tp3YNk6JMV3Ora4QPY9ttjteK1tGmfKTsAWybx+0mfzipF20tNKWiEjS7IyuSbJCAmUybhM3WO4LggqAXskoUcPQqATOhShCJ0i9DpFr1jS6U2asbFFnWWdJWOLegd1Dhq7TXGj3k16d9hlN3orZ0PADTbI/v/KBhsCbrDBhoAbbAi4wQYbAm6wIeAGG2wIuMGGgBtssCHgBhsCbrDB/wlKajuIhIz6AQAAAABJRU5ErkJggg==\" /><span style=\"position:absolute;bottom:32px;left:50%;margin:-36px 0 0 -36px;\"><img width=\"72px\" height=\"37px\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAABKCAYAAABU493xAAAS4ElEQVR4Ae3bV39Vd9739/f3vwXGNjOW7yu9eXOl12HSj2Jxn6THdp6ARXo3Tu+I9A6kHiKeQAand+Qc5SiD07s36XUsrmJjo72+WSl6BbCQZV9ze4bM/qzXe/f9Xwv0U9eOl7i//G/5Rz6QvEt3oM3hutNV3LPpe2nrL/6b/2EvY1uLcVN7jTou6fZItn1vbRpjxMvm3Jh2tNdAp9uxvjTL7NLrjz+/N7Px/diaT7xsfXHhtXcBBzKu1XFW8302fX+N+T/cy4b8CKof12b7RW6jXr7tl6dNW16SXnv8xfbjC69sQw2QeiOZlp5tBXDh8Zf/93Pm80PM+K0Lr+zEYpn0EPdO3NcXX2z/9vGnSdR6dfHxlw9w6AXN+1nC0/v67XPnLlvMkPRwXvfgpDWOj+l4XzjwkpS/5G/9B70MxWJ3cMc3tLa+ggMYxl7kOg5ifbW27tAdxxFPFevlCY85TpNbr33x2zdweMLXZZ9iOXF1YX1w4jpxWL2BW9Dk8phy84T9rZp+iHt+yRsjw8sgUw+xwgxoHWL1nBOrxX268/Rznh+eqVs/pTugeYD9xj2sIO21eVB+im0vKPLW8b6O1yAHoLbT3Jw67YxOy6xzn+6Qg2cexzJyZ3Razvwy2xqdvBQN9zCjtu7THentsuephuGEdkCn2699+XgPh55tex6M+0m36Sqmq+IAUsftTl3cTCznx/4EV5xQ0mvaw5iuiAMct6zFfSwXFtfLMpkOY3qPZx83dfHTsN3mGma/vI02XjbfpeqNJtc+v/Dq4czT/t+vd5YQ0xUc+Hr7I+sPATtr69n/tzmutqeR99ZjcTDzlFWn3gbstLZfsK/VSG+DMd6f+WU2jOGl863rKuwFJxnNB4D9WqxmXuD404xF8+7MsWcGbfJg5mvGdA8gce9F+xrro3ugtl/94vPtmV9WYz7xsvn2ZUW8UHoZOvWjmdPQT6BjvD1z7LiJj2dOsrZYAayt785O3KbFOAR48vrFN2Z+WY35xMvm51mslwDTmA5nTtOpK0htzxz7VW04bpOsp8OZ0zzTps0A1WLluMW5yzOnycgSsLLJsAk5gNG+M3MavAM6fTJz7Fe1YZM4uguSd9eZdmZOkozrWELSWzPHflUbNqnFvnoAC4s7sdidOTb/Hmx72Lpe3QOdbrdZzRz7VW3LJpCs3zv+SfHgTpubSR+I7c9feX0Z3YbGPRnXPFfqV7JhE6jFKtZXqndbh0m3saMuJ91uHTb9kL5HPe9XtfzVf8c/ZtPX+6rT5cW03oZTflG76a+Y/5xjY+M72gzQxmaANjYDtLEZoI3NAG1sbAZoYzNAG5sB2tgM0MbGZoA2NgO0sRmgjc0AbWxsBmhjM0AbmwHa2AzQxsZmgDY2A7SxGaCNzQBt/OrKfOIs/XP//e0dIz9ylG0GR/nEV4sDHPq2HW7vmBY/ItvWHs0e4MBL16b0T/+Tndof899eN+XabFtTHTHFjA6m7HviBla+qd/e/sBkz5Q3TlhnpYs93PU76X/+vbetx03rMA1miqkf4Z7fYY//jz9geW6M6zDBtFCcd34PD/2Klfo7nNjuP7O0tfUTUy5rmMbTb+yZ6sjs+PKHuO2k/o9p27kf/ISx8+zQHJ+bDRo6Dny5voqV79Lh77d0ND59Zu0OmpUnj3+MQ75768PlnSa7hKYVk5EaV3Dge+yz8eu3Mo03iInZdPf7Pobx31t6nr9iHp7z4z69TGnRUhStJCiF4Ja6rjzjt88vXXj9p4YdbZnFc+shCNhxbuvfwdJ3rgRKgsLSeO3azHe1PvyD3pXuUo6LJHD0vRtT35HuVncTuzGWM9+n8fwNf9Bf8Tct1X26pBVEERREKBFP11w3jdlg5mfTtjHu4y1KBI/oDaa/0MgVna5hRWlR0kvOnb/Phe2ZbweB9mtDFB+YPt+e+S6SxU3HtaUgbf2iaoVq/SLa8nzpfc0SJFEkEQe4y7SSc9syvaPdFSQoQbNnAjdcfOWOqUsJBQ+cy3tYAUdwwPq237qwp65rS6LT0qI3cdW3rpVES0KLYHrDeO0D3PAtWz/6td2YlppKAj0+j6hfTEGJ1C+g4an+wL/qw+vS5QxQUkw3jPUV5472nT86cP6Ley58eZUnl8jK0wXJdR0/Ie8CJV15Mq54bDXzNVuP99SeiLYC2bXuzsyZAQGUogURumealjPfxphcJzIXiERpS/1iqiCoZqGd+T6N4wt/4F/xVy+N7oEgoHTPmGaTr7n41UpyxbACEZ2KiHdpBemnxrTjtS8PZ17odz26gQMBpIzFnZkzg0ArBXgkOJbFnZkzO/xd1+mSclxbVSp+caVpTUlYS2a+T1trAV5ZXLcuCVNJiU/EDaf1w0crv/HGFfFT7baMUISIYurfg4fOVK9K/hstUvqWqbvYd+aKBKXoXckHGiDdMY0dHPimDi8uxS6VplMatZ+M3YJQdYYeu7g9jN3wduVyMpZtMDrxMXnAdBsrJ3Tk4nUGsyMydLuaSKfK0HcqS7Y6mcIwjK4tPsE9L+hL53a2xtb705QdxrLS8kgWD9rexT6sjSVb7w/DkSkM+Y/92/6Ya3/u0rT4VMMUs+oILmHlLP1v2++Sf15HTKFhGjMf4V3fpv/9125p/rpZTIMpB7jiLH325lL7qWl46t9zRXPdNN42hY7oGdd89IM77dglKhirqdNV2br/1G3Wdeq38cNr7xxl3Kos27QZIYgea8igYw83PNfaK1MjFbropGFoQgfSSkgnCaPNXLOPq57ricWSc3cqOwwVjDbCOD6eTu3DSa5uWXQtB00wqjGGATtSTxXD/mw1cya/7+E96W1KQAXJOzpdnjmzhX2EEMQO4+2Zb4a2lLYCWPcGjYRAdnS8PfNCn/1gqXYDCEbtbUkDCKjTmrx2/WjkXllWiWipzgElAaR7E3dmnlZNi0JFCpFSIkJJQhAwfc0T5y8nW/9+2QGKEpQq0GZuOeR+5d1QRRuaQan3UUqQ1uTuzLeSvCvQ54w7M2e2/X88EAeUY+mVmW8EcSyO23JAZg1QTPszL7RwHdUWcNBMd0FbKtRpjQvXY7pumkQFCg6jn0QO2j5AtaKqBu/jpqcLAVpNZwntlNA5ZglQDfV8T5xbRn+i3gwgSYEpdNV2JYVqBTVdExKoYvxR1373tmGHEijJymI6mDmzn20ff6FZTxckl3Vcmzkz0z0pQNXbyjcCQgu0jlvkqkBJSZam7M18zW+9uiN9XxCh0u7OgEiq1cTJPba17NQ9SVDtLJ+FD4e+GdOPh6MrW45+XP11yaplNG2ayAeTaWdmMjnq0aUji0tr49cnuRRWVUnA4NqXvrr0ZR9f+qq99MR06UnX8/n6w5lji+QOlqJUgvbhMK6N9s2F6dI560u/1SdvVv8isiqEdkpbEGxZnN8xtZJoEfRj36b/4/UlvU4gtJJQqpKIv9vnX+zj0Fma3vxYABHtjmb7TM8Pijz/9j1a6dYeZlAyPpDFra+tO3LH1KASmezTh3CkCSB0arH2fBecv45WM2eSR5or+MRznfNk9aTTj3ntfjNdThdtmoWt6ziABSseO+5JX5GmTVPB9OiCxQp44qSOvLoz1Q6lCGpFrjCtPNU2h3y1j3tPvHoT7zdzBaqGuoygqJT4SDi78/elEQTxEV2hkgDedOG1mzNn8muHD3AoRVGSH82cCrQiCK2tI44dPb6NQwHotmn6YMaxx2MXS0EEHptuzMxsSQORSkR8rQtLsUtBiU43ePLJzEnOWR+y/jBNmylabS+ntmeeB4hC4wzV4oNEk5AmVb66wuPVzAscnvPFh20fhkoVMMSPBBoRcPTkwcyZ/OwH1+lSoCjT9KHkmghFCWKXaWfmbKwcl9BemjkVRE78OgguOpTe1pYSxDVffbWcMSPXKQpM3bvAambmSFMFWoNuSWeOYYcSiRaHiVszpzmfzw+aPkyRSGyv2Zl5HqAJsD4D8XbbqGpF7w6L1czpnhyW29ooUdSQvgUo4NC5xWrmGx1uL8ke9VQ3bFlZHH1EDwSBEnRxc+ZM0geCwGT21szpHgNaL+ro8S3xUAK0bzj3yvUZ47XrWAoSWOGuF5RQQkMdG8k7aRtaSUwfz5yF9mOBqgo/Cp4HTGkrqYXRmRfh3GXtmwENTPrRzFksjJ9WJQhJuoVLgggYXTlr58ZNUzFoSVaO7Dsu45p6ACgluayu4ZYzVRKEkaUz1RIU6vkuOvSFD+lPJETorvXigO5KqGpDb1hYeaqt9bmWThpVSY48W3S7EdBi/Bni06khw9SoIBgkKgjJNihJlKUTStC0RGGKU1p47Y0ppRVpNaxXztgWJtEitM2gbwClLTkkvtFnP3yfvgMUmKYbzq1XM2a2vvhEp1u0IpIZ5Lov18uZU8VD0FacvUAJRuKkXv3invaAAlSmfemSkkasLOzPPANtAUVt8Yy2SwUE6ZutZZIlliMzZnkr6ZIuw5JZuz1DtRNeoFVN4kw90UsKVBMpX61mzuLIOlKUFjUkkRJEmHyjRz9YSvcQgRIrW/ZnnjGObohHFAVi2ytbd2ZONU0VRChnLyJAkRJf094QKBrHBW112pv5Gt98TCMOg7SNgmi1TZUSpPFUqcYsAUlElvH1DRK0nOlTGAIpRfOKH74xcxYcgYRIgy2KAOpMjfV16/GWlCqhveqkLhwd+u0LH9I7QBGandkHuO1FDbRQSdQZa0EaTWmc1MXHB3779QOxoyqiUDI+tnDXCR09aRbSEpFo6/m6klxuG02Z/t1J7tBM1nSBCcN6xnHFoEdiYV0WfOaEqiJIVdamOKXhqwft+UoRpV/28Zt46EydpwXVVGxJV9olSGiWTuu3Ln6gdilCRLpv0QMv6oe/se/RD96X7khoCZo9T8ZHWDmpkcvWiGhLH/mmLuBJogBFvLCur7L4VBLtU4M63/6Ctqw7WSSiZsRzpVa0MlKSjj9kwV1qAY4cd85364nfj5Y0Gqy/4fHnVltoG1KaYbGDB75NiVSRoVao42JpOvrRzNc8emVJbwmiAlbavZlTbeUqPaTEsW1bvTNzovayACIyfTpzKtAKIOK0Lj5ekfckN8Tfw7QnvWphNXOip0qnOqG16SNJHJdeIm8TPzeJSLWCWLwx8yKvenJIPwmlSBvvzJxFbL2foCUiDMmBNIJAa2ztzTzjN19fOjfu03qm3rDow5lT/eBwhT2gBYq+TW9Sz/j81V2x1KkUGNPHM6eCCEgBR6e7eHjPxZ/t+eFs+2c3vPm/78+8yJFFQqlGhtZzbTk6oIcUBTXtP/ab2zPf5ImL7z/22nLmRdIeThpAw+XgNPQjRIQmtdO6NnOao77xfnVXC7SCYfgYBApR75rGHdPibV/Nvjx33Sv5qViKUCJM+8b/zZn82me3pQciWoKIKR+Y9+do7Hh8fsdXF64b65uUkQjSleSBs/8kmrZSv0dqzaq0Tq69pQRthbfOu3ifC8uZk21vj/H73Zxin8WdmReZ9JOESGmi70zWy5kXOXJ0S3ymQFXkJq55QZPXP6j1fpVEArST/Gf+dX/k3/Tn3tfsPP03NE+9XCemQWdr1REN01gZix089G36H95YGuO+KcunXtJTTUwDs3Voakpm1RFxFfu+qcMfLh2NTzUcH/O6vxsHfk4d/ffLnUXcJ3qsufL8Pn6L7Vdz4SetHUaJChmm9u5k8VE4hNh6q8PlaRq7jDdKZGhzCx86oSde2WXcIWRoRyceDjmYjIO1ZLA9cYh9gDr/QS1ulhDNoFFjRQ7WfLyQThaXsduM7TaeOv4SU5NBWBwdf31SQCkRxykBtCsdV6z7cOZb+f0OV3hPHFIgggo6EWgEQbqi+9Q3Q0BBElv8PG05QmnrlC5y2LqKlUg1VDWR90f8JMl9Gfeb7reuhTekgVTpu2xtzzzvnPU9spJoCxLLKXbDnaF3KjdjvD1zbDi6Te8GSRop0CXdXSR3yr70g+q2KkUPQJvOokbUf/EP/esrI9ekoahnSgGNMa0s1u8593g18538gf/jA+kVunJchEIpgcJDeoU6G2hFaAVH6czPDdI5AqFe0JbHK1xJe09ATvw5UlN1HGEy/ZN8/mMeHc6c4PCcxbtMh8AUraBpIOqkFr66Wr2taCMkgCqozKHBjS1jL6FASQdB/Bf/yL9813pxCQdGIhwDKXHP6BULD2Z+R/6QeYhy7ophX1qKPj9IB+oKVr5NSSgRsNXM/NxIG0laigZOG6KFL96bOl2VPBgUIihVaaD6SHur7RV6jVcOZ17ss0/WXfw4HAiRaqmCU4f7q2tr/YuqK60ZqAZC5w5qfYWjPUCDEJr85/51z/dHXHtnaeo7LN40jZry0PnFPRz6PdF/tlx64rLOpgErj88fYOX/hz3+9/6s5RNHl2PrsoEprTwcFg+eeLLC4Xda1++7HHp5srjM6OzhkWl1ZOvBN6/5+mXMspwwjBXjAWYv7v8Et4Nz+w5xmR4AAAAASUVORK5CYII=\" /></span></div><div id=\"mount_0_0_AQ\"></div><script>qpl_inl(\"7191084768081846440\",\"splash_screen_show\");</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"splash_screen_show\"]]]}</script>\n\n<link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yR/l/0,cross/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"RaA31FN\" data-p=\":14,144,151,0\" data-c=\"1\" onload=\"_btldr[&quot;RaA31FN&quot;]=1\" onerror=\"_btldr[&quot;RaA31FN&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yu/l/0,cross/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"Zx0r1CJ\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;Zx0r1CJ&quot;]=1\" onerror=\"_btldr[&quot;Zx0r1CJ&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yp/l/0,cross/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"kWwybab\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;kWwybab&quot;]=1\" onerror=\"_btldr[&quot;kWwybab&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yk/l/0,cross/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"f7Ym7Sv\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;f7Ym7Sv&quot;]=1\" onerror=\"_btldr[&quot;f7Ym7Sv&quot;]=1\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yH/l/0,cross/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"LGJRwGF\" data-p=\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" data-c=\"1\" onload=\"_btldr[&quot;LGJRwGF&quot;]=1\" onerror=\"_btldr[&quot;LGJRwGF&quot;]=1\" /><script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"injectQPLTagsServerJSIntoWindow\",\"injectQPLTagsServerJSIntoWindow\",null,[]]]}</script>\n<script type=\"application/json\" data-content-len=\"97\" data-sjs>{\"require\":[[\"injectQPLTimingsServerJSIntoWindow\",\"injectQPLTimingsServerJSIntoWindow\",null,[]]]}</script>\n<script>var hc=navigator&&navigator.hardwareConcurrency;null!=hc&&4>hc&&document.documentElement.classList.add(\"_8ykn\");</script>\n<script>requireLazy([\"replaceNativeTimer\"],function(j){j()})</script>\n<script>requireLazy([\"bootstrapWebSession\"],function(j){j(1674304895)})</script>\n<script type=\"application/json\" data-content-len=\"98\" data-sjs>{\"require\":[[\"qplTagServerJS\",null,null,[[\"react_fizz\",\"comet_aa_coinflip:false\",\"logged_out\"]]]]}</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierOne\");</script>\n<script type=\"application/json\" data-content-len=\"80\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierOne\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierOne\",202);</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierOne\",202]]]}</script>\n<script>requireLazy([\"JSScheduler\"],function(j){j.makeSchedulerGlobalEntry(null,false)})</script>\n<script>requireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierOneBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierOneInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"IntlCurrentLocale\",[],{\"code\":\"en_US\"},5954],[\"CometPersistQueryParams\",[],{\"relative\":{},\"domain\":{\"instagram.com\":{}}},6231],[\"CookieDomain\",[],{\"domain\":\"instagram.com\"},6421],[\"CurrentAdAccountInitialData\",[],{\"AD_ACCOUNT_ID\":null},6828],[\"BootloaderConfig\",[],{\"deferBootloads\":false,\"jsRetries\":[200,500],\"jsRetryAbortNum\":2,\"jsRetryAbortTime\":5,\"silentDups\":true,\"hypStep4\":true,\"phdOn\":false,\"btCutoffIndex\":1187,\"translationRetries\":[200,500],\"translationRetryAbortNum\":3,\"translationRetryAbortTime\":50},329],[\"CSSLoaderConfig\",[],{\"timeout\":5000,\"modulePrefix\":\"BLCSS:\"},619],[\"CookieCoreConfig\",[],{\"dpr\":{\"t\":604800},\"ds_user_id\":{\"t\":7776000},\"locale\":{\"t\":604800}},2104],[\"CurrentCommunityInitialData\",[],{},490],[\"CurrentEnvironment\",[],{\"facebookdotcom\":true,\"messengerdotcom\":false,\"workplacedotcom\":false,\"instagramdotcom\":true,\"workdotmetadotcom\":false},827],[\"CurrentUserInitialData\",[],{\"ACCOUNT_ID\":\"0\",\"USER_ID\":\"0\",\"NAME\":\"\",\"SHORT_NAME\":null,\"IS_BUSINESS_PERSON_ACCOUNT\":false,\"HAS_SECONDARY_BUSINESS_PERSON\":false,\"IS_FACEBOOK_WORK_ACCOUNT\":false,\"IS_MESSENGER_ONLY_USER\":false,\"IS_DEACTIVATED_ALLOWED_ON_MESSENGER\":false,\"IS_MESSENGER_CALL_GUEST_USER\":false,\"IS_WORK_MESSENGER_CALL_GUEST_USER\":false,\"IS_WORKROOMS_USER\":false,\"APP_ID\":\"936619743392459\",\"IS_BUSINESS_DOMAIN\":false,\"NON_FACEBOOK_USER_ID\":\"0\",\"IG_USER_EIMU\":\"0\"},270],[\"DTSGInitialData\",[],{},258],[\"ISB\",[],{},330],[\"LSD\",[],{\"token\":\"AVrh0l1XgEU\"},323],[\"RelayAPIConfigDefaults\",[],{\"accessToken\":\"\",\"actorID\":\"0\",\"customHeaders\":{\"X-IG-App-ID\":\"936619743392459\",\"X-IG-D\":\"www\"},\"enableNetworkLogger\":false,\"fetchTimeout\":30000,\"graphBatchURI\":\"\\/api\\/graphqlbatch\\/\",\"graphURI\":\"\\/api\\/graphql\\/\",\"retryDelays\":[1000,3000],\"useXController\":true,\"xhrEncoding\":null,\"subscriptionTopicURI\":null,\"withCredentials\":false,\"isProductionEndpoint\":false},926],[\"ServerNonce\",[],{\"ServerNonce\":\"gPoPZKHclhQDe-6QIBGEq7\"},141],[\"SiteData\",[],{\"server_revision\":1006847381,\"client_revision\":1006847381,\"tier\":\"\",\"push_phase\":\"C3\",\"pkg_cohort\":\"HYP:comet_loggedout_pkg\",\"haste_session\":\"19378.HYP:comet_loggedout_pkg.2.1.0.0.0\",\"pr\":1,\"haste_site\":\"www\",\"manifest_base_uri\":\"https:\\/\\/static.cdninstagram.com\",\"manifest_origin\":null,\"manifest_version_prefix\":null,\"be_one_ahead\":true,\"is_rtl\":false,\"is_comet\":true,\"is_experimental_tier\":false,\"is_jit_warmed_up\":true,\"hsi\":\"7191084768081846440\",\"semr_host_bucket\":\"6\",\"bl_hash_version\":2,\"skip_rd_bl\":true,\"comet_env\":3,\"wbloks_env\":false,\"spin\":4,\"__spin_r\":1006847381,\"__spin_b\":\"trunk\",\"__spin_t\":1674304895,\"vip\":\"31.13.65.174\"},317],[\"SprinkleConfig\",[],{\"param_name\":\"jazoest\",\"version\":2,\"should_randomize\":false},2111],[\"PromiseUsePolyfillSetImmediateGK\",[],{\"www_always_use_polyfill_setimmediate\":false},2190],[\"KSConfig\",[],{\"killed\":{\"__set\":[\"MLHUB_FLOW_AUTOREFRESH_SEARCH\",\"NEKO_DISABLE_CREATE_FOR_SAP\",\"EO_DISABLE_SYSTEM_SERIAL_NUMBER_FREE_TYPING_IN_CPE_NON_CLIENT\",\"MOBILITY_KILL_OLD_VISIBILITY_POSITION_SETTING\",\"WORKPLACE_DISPLAY_TEXT_EVIDENCE_REPORTING\",\"BUSINESS_INVITE_FLOW_WITH_SELLER_PROFILE\",\"BUY_AT_UI_LINE_DELETE\",\"BUSINESS_GRAPH_SETTING_APP_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_BU_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_ESG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_PRODUCT_CATALOG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_SESG_ASSIGNED_USERS_NEW_API\",\"BUSINESS_GRAPH_SETTING_WABA_ASSIGNED_USERS_NEW_API\",\"ADS_PLACEMENT_FIX_PUBLISHER_PLATFORMS_MUTATION\",\"FORCE_FETCH_BOOSTED_COMPONENT_AFTER_ADS_CREATION\",\"VIDEO_DIMENSIONS_FROM_PLAYER_IN_UPLOAD_DIALOG\",\"SNIVY_GROUP_BY_EVENT_TRACE_ID_AND_NAME\",\"ADS_STORE_VISITS_METRICS_DEPRECATION\",\"AD_DRAFT_ENABLE_SYNCRHONOUS_FRAGMENT_VALIDATION\",\"SEPARATE_MESSAGING_COMACTIVITY_PAGE_PERMS\",\"LAB_NET_NEW_UI_RELEASE\",\"POCKET_MONSTERS_CREATE\",\"POCKET_MONSTERS_DELETE\",\"WORKPLACE_PLATFORM_SECURE_APPS_MAILBOXES\",\"POCKET_MONSTERS_UPDATE_NAME\",\"IC_DISABLE_MERGE_TOOL_FEED_CHECK_FOR_REPLACE_SCHEDULE\",\"ADS_EPD_IMPACTED_ADVERTISER_MIGRATE_XCONTROLLER\",\"RECRUITING_CANDIDATE_PORTAL_ACCOUNT_DELETION_CARD\",\"BIZ_INBOX_POP_UP_TIP_NAVIGATION_BUG_FIX\",\"SRT_REVIEW_DISABLE_FELLOWSHIP_REVIEW\",\"EO_STORE_HOME_PAGE_COVID19_BANNER\"]},\"ko\":{\"__set\":[\"3OsLvnSHNTt\",\"1G7wJ6bJt9K\",\"9NpkGYwzrPG\",\"3oh5Mw86USj\",\"8NAceEy9JZo\",\"7FOIzos6XJX\",\"rf8JEPGgOi\",\"4j36SVzvP3w\",\"4NSq3ZC4ScE\",\"53gCxKq281G\",\"3yzzwBY7Npj\",\"1onzIv0jH6H\",\"8PlKuowafe8\",\"1ntjZ2zgf03\",\"4SIH2GRVX5W\",\"2dhqRnqXGLQ\",\"2WgiNOrHVuC\",\"amKHb4Cw4WI\",\"8rDvN9vWdAK\",\"5BdzWGmfvrA\",\"DDZhogI19W\",\"acrJTh9WGdp\",\"1oOE64fL4wO\",\"5XCz1h9Iaw3\",\"7r6mSP7ofr2\",\"6DGPLrRdyts\",\"aWxCyi1sEC7\",\"9kCSDzzr8fu\",\"awYA7fn2Bse\",\"aBMlJ8QRPWE\",\"Fl3bH3ozLe\"]}},2580],[\"TimeSliceInteractionSV\",[],{\"on_demand_reference_counting\":true,\"on_demand_profiling_counters\":true,\"default_rate\":1000,\"lite_default_rate\":100,\"interaction_to_lite_coinflip\":{\"ADS_INTERFACES_INTERACTION\":0,\"ads_perf_scenario\":0,\"ads_wait_time\":0,\"Event\":1},\"interaction_to_coinflip\":{\"ADS_INTERFACES_INTERACTION\":1,\"ads_perf_scenario\":1,\"ads_wait_time\":1,\"Event\":100},\"enable_heartbeat\":true,\"maxBlockMergeDuration\":0,\"maxBlockMergeDistance\":0,\"enable_banzai_stream\":true,\"user_timing_coinflip\":50,\"banzai_stream_coinflip\":0,\"compression_enabled\":true,\"ref_counting_fix\":false,\"ref_counting_cont_fix\":false,\"also_record_new_timeslice_format\":false,\"force_async_request_tracing_on\":false},2609],[\"JSErrorLoggingConfig\",[],{\"appId\":936619743392459,\"extra\":[],\"reportInterval\":50,\"sampleWeight\":null,\"sampleWeightKey\":\"__jssesw\",\"projectBlocklist\":[]},2776],[\"CookieCoreLoggingConfig\",[],{\"maximumIgnorableStallMs\":16.67,\"sampleRate\":9.7e-5,\"sampleRateClassic\":1.0e-10,\"sampleRateFastStale\":1.0e-8},3401],[\"ImmediateImplementationExperiments\",[],{\"prefer_message_channel\":true},3419],[\"DTSGInitData\",[],{\"token\":\"\",\"async_get_token\":\"\"},3515],[\"UriNeedRawQuerySVConfig\",[],{\"uris\":[\"dms.netmng.com\",\"doubleclick.net\",\"r.msn.com\",\"watchit.sky.com\",\"graphite.instagram.com\",\"www.kfc.co.th\",\"learn.pantheon.io\",\"www.landmarkshops.in\",\"www.ncl.com\",\"s0.wp.com\",\"www.tatacliq.com\",\"bs.serving-sys.com\",\"kohls.com\",\"lazada.co.th\",\"xg4ken.com\",\"technopark.ru\",\"officedepot.com.mx\",\"bestbuy.com.mx\",\"booking.com\",\"nibio.no\"]},3871],[\"WebConnectionClassServerGuess\",[],{\"connectionClass\":\"EXCELLENT\"},4705],[\"CometAltpayJsSdkIframeAllowedDomains\",[],{\"allowed_domains\":[\"https:\\/\\/live.adyen.com\",\"https:\\/\\/integration-facebook.payu.in\",\"https:\\/\\/facebook.payulatam.com\",\"https:\\/\\/secure.payu.com\",\"https:\\/\\/facebook.dlocal.com\",\"https:\\/\\/buy2.boku.com\"]},4920],[\"QuickMarkersConfig\",[],{\"pageLoadEventId\":\"7191084768081846440\",\"pageLoadScriptPath\":\"XPolarisProfileController\",\"sampleWeight\":null},4953],[\"BootloaderEndpointConfig\",[],{\"debugNoBatching\":false,\"endpointURI\":\"https:\\/\\/www.instagram.com\\/ajax\\/bootloader-endpoint\\/\"},5094],[\"USIDMetadata\",[],{\"browser_id\":\"?\",\"tab_id\":\"\",\"page_id\":\"Prou5xblsa71y\",\"transition_id\":0,\"version\":6},5888],[\"ServerTimeData\",[],{\"serverTime\":1674304895196,\"timeOfRequestStart\":1674304895138.1,\"timeOfResponseStart\":1674304895138.1},5943],[\"InstagramUserAgent\",[],{\"is_chrome\":false,\"is_edge\":false,\"is_edge_chromium_based\":false,\"is_edge_legacy\":false,\"is_firefox\":false,\"is_ig_carbon\":false,\"is_ig_lite\":false,\"is_ig_webview\":false,\"is_igtv_webview\":false,\"is_in_app_browser\":false,\"is_ipad\":false,\"is_macos\":false,\"is_mobile\":false,\"is_mobile_safari\":false,\"is_oculus_browser\":false,\"is_opera\":false,\"is_safari\":false,\"is_supported_browser\":false,\"is_twitter_webview\":false,\"is_uc_browser\":false,\"is_vapid_eligible\":false,\"is_webview\":false,\"user_agent\":\"WordPress\\/6.1.1; http:\\/\\/demo.kevkem.chiefsoft.net\"},6088],[\"IntlVariationHoldout\",[],{\"disable_variation\":false},6533],[\"FbtQTOverrides\",[],{\"overrides\":{}},551],[\"FbtResultGK\",[],{\"shouldReturnFbtResult\":true,\"inlineMode\":\"NO_INLINE\"},876],[\"IntlPhonologicalRules\",[],{\"meta\":{\"\\/_B\\/\":\"([.,!?\\\\s]|^)\",\"\\/_E\\/\":\"([.,!?\\\\s]|$)\"},\"patterns\":{\"\\/\\u0001(.*)(\'|&#039;)s\\u0001(?:\'|&#039;)s(.*)\\/\":\"\\u0001$1$2s\\u0001$3\",\"\\/_\\u0001([^\\u0001]*)\\u0001\\/\":\"javascript\"}},1496],[\"IntlViewerContext\",[],{\"GENDER\":3,\"regionalLocale\":null},772],[\"LinkshimHandlerConfig\",[],{\"supports_meta_referrer\":false,\"default_meta_referrer_policy\":\"default\",\"switched_meta_referrer_policy\":\"origin\",\"non_linkshim_lnfb_mode\":\"ie\",\"link_react_default_hash\":\"AT3oslNZsInoQANT_t_eNJR7eVrbkjaQxl2UrohHCb9D0ybydzH57Ehrs8X7PHJTDBxhjmaWx3boagpWGVMkUa8bDtgwPxQZiZr_gLm3fZ8Bep2cKKhEw58PzHOrfQ95cELkObzyTQt8JqJi\",\"untrusted_link_default_hash\":\"AT2zIoS4M4S-7qFm3lscq5q0I-vvv0rxW6TPCtVFNVLVr6uVredDY2T46b6hThcN3gkauJ8PHZJOdpfPBHGJBNL9F4VAvcF3h6liW0pReInxJUzH1q14gLtRwM-9ZkaN5th540P7Vb7p-lfe\",\"linkshim_host\":\"l.instagram.com\",\"linkshim_path\":\"\\/\",\"linkshim_enc_param\":\"e\",\"linkshim_url_param\":\"u\",\"use_rel_no_opener\":false,\"always_use_https\":false,\"onion_always_shim\":true,\"middle_click_requires_event\":false,\"www_safe_js_mode\":\"hover\",\"m_safe_js_mode\":null,\"ghl_param_link_shim\":false,\"click_ids\":null,\"is_linkshim_supported\":false,\"current_domain\":\"instagram.com\",\"blocklisted_domains\":[\"ad.doubleclick.net\",\"ads-encryption-url-example.com\",\"bs.serving-sys.com\",\"ad.atdmt.com\",\"adform.net\",\"ad13.adfarm1.adition.com\",\"ilovemyfreedoms.com\",\"secure.adnxs.com\"],\"is_mobile_device\":false},27],[\"NumberFormatConfig\",[],{\"decimalSeparator\":\".\",\"numberDelimiter\":\",\",\"minDigitsForThousandsSeparator\":4,\"standardDecimalPatternInfo\":{\"primaryGroupSize\":3,\"secondaryGroupSize\":3},\"numberingSystemData\":null},54],[\"UserAgentData\",[],{\"browserArchitecture\":\"32\",\"browserFullVersion\":null,\"browserMinorVersion\":null,\"browserName\":\"Unknown\",\"browserVersion\":null,\"deviceName\":\"Unknown\",\"engineName\":\"Unknown\",\"engineVersion\":null,\"platformArchitecture\":\"32\",\"platformName\":\"Unknown\",\"platformVersion\":null,\"platformFullVersion\":null},527],[\"IntlNumberTypeConfig\",[],{\"impl\":\"if (n === 1) { return IntlVariations.NUMBER_ONE; } else { return IntlVariations.NUMBER_OTHER; }\"},3405],[\"FBDomainsSVConfig\",[],{\"domains\":{\"__map\":[[\"www.facebook.com\",1],[\"tfbnw.net\",1],[\"m.beta.facebook.com\",1],[\"touch.beta.facebook.com\",1],[\"www.dev.facebook.com\",1],[\"fb.me\",1],[\"s.fb.com\",1],[\"m.fbjs.facebook.com\",1],[\"facebook.com.es\",1],[\"www.fbjs.facebook.com\",1],[\"m.facebook.com\",1],[\"facebook.fr\",1],[\"fbsbx.com\",1],[\"embed.fbsbx.com\",1],[\"attachment.fbsbx.com\",1],[\"lookaside.fbsbx.com\",1],[\"web.facebook.com\",1],[\"fb.com\",1],[\"messenger.com\",1],[\"secure.facebook.com\",1],[\"secure.my-od.facebook.com\",1],[\"www.my-od.facebook.com\",1]]}},3828],[\"ClickIDDomainBlacklistSVConfig\",[],{\"domains\":[\"craigslist\",\"tfbnw.net\",\"flashtalking.com\",\"canadiantire.ca\",\"o2.co.uk\",\"archive.org\",\"reddit.com\",\"redd.it\",\"gmail.com\",\"cvk.gov.ua\",\"electoralsearch.in\",\"yahoo.com\",\"cve.mitre.org\",\"usenix.org\",\"ky.gov\",\"voteohio.gov\",\"vote.pa.gov\",\"oversightboard.com\",\"wi.gov\",\"pbs.twimg.com\",\"media.discordapp.net\",\"vastadeal.com\",\"theaustralian.com.au\",\"alloygator.com\",\"elsmannimmobilien.de\",\"news.com.au\",\"dennisbonnen.com\",\"stoett.com\",\"investorhour.com\",\"perspectivasur.com\",\"bonnegueule.fr\",\"firstent.org\",\"twitpic.com\",\"kollosche.com.au\",\"nau.edu\",\"arcourts.gov\",\"lomberg.de\",\"network4.hu\",\"balloonrace.com\",\"awstrack.me\",\"ic3.gov\",\"sos.wyo.gov\",\"cnpq.br\",\"0.discoverapp.com\"]},3829],[\"WebDriverConfig\",[],{\"isTestRunning\":false,\"isJestE2ETestRun\":false,\"isXRequestConfigEnabled\":false,\"auxiliaryServiceInfo\":{},\"testPath\":null,\"originHost\":null},5332],[\"WebBloksVersioningID\",[],{\"versioningID\":\"e7c1f05400c7b80a9d5c48ffbe8b26641f6e0f506bb0eba02f2a06ef377d3058\"},6636],[\"AsyncRequestConfig\",[],{\"retryOnNetworkError\":\"1\",\"useFetchStreamAjaxPipeTransport\":false},328],[\"SessionNameConfig\",[],{\"seed\":\"0aGN\"},757],[\"ZeroCategoryHeader\",[],{},1127],[\"ZeroRewriteRules\",[],{\"rewrite_rules\":{},\"whitelist\":{\"\\/hr\\/r\":1,\"\\/hr\\/p\":1,\"\\/zero\\/unsupported_browser\\/\":1,\"\\/zero\\/policy\\/optin\":1,\"\\/zero\\/optin\\/write\\/\":1,\"\\/zero\\/optin\\/legal\\/\":1,\"\\/zero\\/optin\\/free\\/\":1,\"\\/about\\/privacy\\/\":1,\"\\/about\\/privacy\\/update\\/\":1,\"\\/privacy\\/explanation\\/\":1,\"\\/zero\\/toggle\\/welcome\\/\":1,\"\\/zero\\/toggle\\/nux\\/\":1,\"\\/zero\\/toggle\\/settings\\/\":1,\"\\/fup\\/interstitial\\/\":1,\"\\/work\\/landing\":1,\"\\/work\\/login\\/\":1,\"\\/work\\/email\\/\":1,\"\\/ai.php\":1,\"\\/js_dialog_resources\\/dialog_descriptions_android.json\":0,\"\\/connect\\/jsdialog\\/MPlatformAppInvitesJSDialog\\/\":0,\"\\/connect\\/jsdialog\\/MPlatformOAuthShimJSDialog\\/\":0,\"\\/connect\\/jsdialog\\/MPlatformLikeJSDialog\\/\":0,\"\\/qp\\/interstitial\\/\":1,\"\\/qp\\/action\\/redirect\\/\":1,\"\\/qp\\/action\\/close\\/\":1,\"\\/zero\\/support\\/ineligible\\/\":1,\"\\/zero_balance_redirect\\/\":1,\"\\/zero_balance_redirect\":1,\"\\/zero_balance_redirect\\/l\\/\":1,\"\\/l.php\":1,\"\\/lsr.php\":1,\"\\/ajax\\/dtsg\\/\":1,\"\\/checkpoint\\/block\\/\":1,\"\\/exitdsite\":1,\"\\/zero\\/balance\\/pixel\\/\":1,\"\\/zero\\/balance\\/\":1,\"\\/zero\\/balance\\/carrier_landing\\/\":1,\"\\/zero\\/flex\\/logging\\/\":1,\"\\/tr\":1,\"\\/tr\\/\":1,\"\\/sem_campaigns\\/sem_pixel_test\\/\":1,\"\\/bookmarks\\/flyout\\/body\\/\":1,\"\\/zero\\/subno\\/\":1,\"\\/confirmemail.php\":1,\"\\/policies\\/\":1,\"\\/mobile\\/internetdotorg\\/classifier\\/\":1,\"\\/zero\\/dogfooding\":1,\"\\/xti.php\":1,\"\\/zero\\/fblite\\/config\\/\":1,\"\\/hr\\/zsh\\/wc\\/\":1,\"\\/ajax\\/bootloader-endpoint\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/education_page\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/feature_switch\\/\":1,\"\\/mobile\\/zero\\/carrier_page\\/settings_page\\/\":1,\"\\/aloha_check_build\":1,\"\\/upsell\\/zbd\\/softnudge\\/\":1,\"\\/mobile\\/zero\\/af_transition\\/\":1,\"\\/mobile\\/zero\\/af_transition\\/action\\/\":1,\"\\/mobile\\/zero\\/freemium\\/\":1,\"\\/mobile\\/zero\\/freemium\\/redirect\\/\":1,\"\\/mobile\\/zero\\/freemium\\/zero_fup\\/\":1,\"\\/privacy\\/policy\\/\":1,\"\\/privacy\\/center\\/\":1,\"\\/data\\/manifest\\/\":1,\"\\/4oh4.php\":1,\"\\/autologin.php\":1,\"\\/birthday_help.php\":1,\"\\/checkpoint\\/\":1,\"\\/contact-importer\\/\":1,\"\\/cr.php\":1,\"\\/legal\\/terms\\/\":1,\"\\/login.php\":1,\"\\/login\\/\":1,\"\\/mobile\\/account\\/\":1,\"\\/n\\/\":1,\"\\/remote_test_device\\/\":1,\"\\/upsell\\/buy\\/\":1,\"\\/upsell\\/buyconfirm\\/\":1,\"\\/upsell\\/buyresult\\/\":1,\"\\/upsell\\/promos\\/\":1,\"\\/upsell\\/continue\\/\":1,\"\\/upsell\\/h\\/promos\\/\":1,\"\\/upsell\\/loan\\/learnmore\\/\":1,\"\\/upsell\\/purchase\\/\":1,\"\\/upsell\\/promos\\/upgrade\\/\":1,\"\\/upsell\\/buy_redirect\\/\":1,\"\\/upsell\\/loan\\/buyconfirm\\/\":1,\"\\/upsell\\/loan\\/buy\\/\":1,\"\\/upsell\\/sms\\/\":1,\"\\/wap\\/a\\/channel\\/reconnect.php\":1,\"\\/wap\\/a\\/nux\\/wizard\\/nav.php\":1,\"\\/wap\\/appreg.php\":1,\"\\/wap\\/birthday_help.php\":1,\"\\/wap\\/c.php\":1,\"\\/wap\\/confirmemail.php\":1,\"\\/wap\\/cr.php\":1,\"\\/wap\\/login.php\":1,\"\\/wap\\/r.php\":1,\"\\/zero\\/datapolicy\":1,\"\\/a\\/timezone.php\":1,\"\\/a\\/bz\":1,\"\\/bz\\/reliability\":1,\"\\/r.php\":1,\"\\/mr\\/\":1,\"\\/reg\\/\":1,\"\\/registration\\/log\\/\":1,\"\\/terms\\/\":1,\"\\/f123\\/\":1,\"\\/expert\\/\":1,\"\\/experts\\/\":1,\"\\/terms\\/index.php\":1,\"\\/terms.php\":1,\"\\/srr\\/\":1,\"\\/msite\\/redirect\\/\":1,\"\\/fbs\\/pixel\\/\":1,\"\\/contactpoint\\/preconfirmation\\/\":1,\"\\/contactpoint\\/cliff\\/\":1,\"\\/contactpoint\\/confirm\\/submit\\/\":1,\"\\/contactpoint\\/confirmed\\/\":1,\"\\/contactpoint\\/login\\/\":1,\"\\/preconfirmation\\/contactpoint_change\\/\":1,\"\\/help\\/contact\\/\":1,\"\\/survey\\/\":1,\"\\/upsell\\/loyaltytopup\\/accept\\/\":1,\"\\/settings\\/\":1,\"\\/lite\\/\":1,\"\\/zero_status_update\\/\":1,\"\\/operator_store\\/\":1,\"\\/upsell\\/\":1,\"\\/wifiauth\\/login\\/\":1}},1478],[\"DataStoreConfig\",[],{\"expandoKey\":\"__FB_STORE\",\"useExpando\":true},2915],[\"CometCustomKeyCommands\",[],{\"customCommands\":{},\"areSingleKeysDisabled\":null,\"modifiedKeyboardShortcutsPreference\":4},4521],[\"GqlsUseCaseSamplingRateMap\",[],{\"GqlsUseCaseSamplingRateMap\":{\"default\":10000,\"test_blade_runner_actualized_subscribe\":1}},6497],[\"CometUrlTransformsConfig\",[],{\"should_remove_trailing_slash\":false},6589],[\"RtiWebRequestStreamClient\",[],{\"ThrottledMethods\":{}},6639],[\"RTISubscriptionManagerConfig\",[],{\"config\":{},\"autobot\":{},\"assimilator\":{},\"unsubscribe_release\":true,\"bladerunner_www_sandbox\":null,\"is_intern\":false},1081],[\"CometRelayConfig\",[],{\"gc_release_buffer_size\":50},4685],[\"TimeSpentWWWCometConfig\",[],{\"CONFIG\":{\"0_delay\":0,\"0_timeout\":8,\"delay\":1000,\"timeout\":64}},4748],[\"CometMaxEnqueuedToastsSitevarConfig\",[],{\"max\":2},4763],[\"MqttWebDeviceID\",[],{\"clientID\":\"a9d8d9fe-a52f-4249-a066-c452a4d48b71\"},5003],[\"LiveQueryWebRelayKillList\",[],{\"liveQueryWebRelayKillList\":[\"test_example_config_id_to_be_killed\",\"data_studio_nav_pane_collections_section\",\"work_recruiting_home_tasks\"]},5050],[\"LiveQueryWebClientPollingSwitchList\",[],{\"liveQueryWebClientPollingSwitchList\":{\"example_config_id_to_be_switched\":10000}},5842],[\"TransportSelectingClientContextualConfig\",[],{\"rawConfig\":\"{\\\"name\\\":\\\"rti\\/web_rs_transport_selecting_client\\\",\\\"cctype\\\":\\\"dense\\\",\\\"version\\\":1,\\\"policy_id\\\":\\\"static\\\",\\\"sample_rate\\\":1000,\\\"contexts\\\":[{\\\"name\\\":\\\"method\\\",\\\"type\\\":\\\"STRING\\\",\\\"callsite\\\":true,\\\"buckets\\\":[{\\\"name\\\":\\\"rollout_group_1\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"FBGQLS:FEEDBACK_LIKE_SUBSCRIBE\\\",\\\"Falco\\\",\\\"FBLQ:comet_notifications_live_query_experimental\\\"]},{\\\"name\\\":\\\"rollout_group_6\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"FBGQLS:COMMENT_CREATE_SUBSCRIBE\\\",\\\"FBGQLS:COMMENT_LIKE_SUBSCRIBE\\\",\\\"FBGQLS:FEEDBACK_COMMENT_PERMISSION_TOGGLE_SUBSCRIBE\\\",\\\"FBGQLS:FEEDBACK_TYPING_SUBSCRIBE\\\"]},{\\\"name\\\":\\\"rollout_group_4\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"FBGQLS:.*\\\"]},{\\\"name\\\":\\\"rollout_group_3\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"FBLQ:.*\\\"]},{\\\"name\\\":\\\"skywalker\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"SKY:test_topic\\\",\\\"live\\/api\\/copyright\\\",\\\"intern_notify\\\",\\\"locplat\\/ttm\\\",\\\"rti_widget_dashboard\\\",\\\"srt\\/user_metrics_counter\\\",\\\"media_manager_instagram_composer_create_update\\\",\\\"cubism_annotations\\/fleet_health\\\",\\\"srt\\/notifications\\\",\\\"ads\\/reporting\\/snapshot\\\",\\\"unidash\\/widget\\\",\\\"cubism_annotations\\\",\\\"ads\\/reporting\\/export\\\",\\\"pubx\\/notification\\/update\\\",\\\"ads\\/powereditor\\/import\\\",\\\"lwi_async_create\\\",\\\"video_edit\\\",\\\"metric_graph_realtime\\\",\\\"vcc_video_posting_www\\\",\\\"cms\\/object_archive_copy_created\\\",\\\"cms\\/branch_updated\\\",\\\"cms\\/object_saved\\\",\\\"codeless_event_tracking\\\",\\\"srt\\/job_updated\\\",\\\"video_broadcast\\\",\\\"video\\/broadcast\\/error\\\",\\\"vcpanel\\/api\\\",\\\"lwi_everywhere_plugin\\\",\\\"commercial_break_v2\\\",\\\"advanced_analytics\\/query\\\",\\\"cubism_annotations\\/ads_mastercook_models\\\",\\\"gqls\\/comment_like_subscribe\\\",\\\"live\\/api\\/copyright\\\",\\\"shiba\\/mock_bot_error\\\",\\\"shiba\\/save_state\\\",\\\"video_list_publishing_progress_update\\\",\\\"assistant_wizard\\\",\\\"gizmo\\/manage\\\",\\\"collab\\/presentation\\/request\\\",\\\"snaptu\\/push_notif\\\"]},{\\\"name\\\":\\\"skywalker_bulletin\\\",\\\"strategy\\\":\\\"in\\\",\\\"values\\\":[\\\"www\\/sr\\/hot_reload\\\"]},{\\\"name\\\":\\\"rollout_group_5\\\",\\\"strategy\\\":\\\"regex\\\",\\\"values\\\":[\\\"Collabri|RealtimeClientSync:.*\\\"]},{\\\"name\\\":\\\"default\\\",\\\"strategy\\\":\\\"catch_all\\\"}]}],\\\"outputs\\\":[{\\\"name\\\":\\\"group\\\",\\\"type\\\":\\\"STRING\\\"},{\\\"name\\\":\\\"dgwUpsampleMultiplier\\\",\\\"type\\\":\\\"FLOAT\\\"}],\\\"vector\\\":[\\\"group1\\\",\\\"0.01\\\",\\\"group6\\\",\\\"0.001\\\",\\\"group4\\\",\\\"1.0\\\",\\\"group3\\\",\\\"1.0\\\",\\\"skywalker\\\",\\\"1.0\\\",\\\"skywalker_bulletin\\\",\\\"1.0\\\",\\\"group5\\\",\\\"1.0\\\",\\\"default_group\\\",\\\"1.0\\\"],\\\"vectorDefaults\\\":[\\\"default_group\\\",\\\"1.0\\\"],\\\"timestamp\\\":1663366072}\"},5968],[\"AnalyticsCoreData\",[],{\"device_id\":\"$^|AcbHCzGYW6tDxTUxyOfdK3OR4sK01arWfMsw1M26SR1Yz5qk5BP8Kgap5Y5NpBKRA23w9yOVHlSf7f_X67yReZg56b6s6dw|\\u0040sdig:AQ_dPjRV4b2mnLhXQUjMQgDJzsQorF1kiY48qow-3YblH4zy75yStl2Tyuy6uRTkD5I6uPOnW7xgOy-XaMCORvLPas41JXA5BM55ZrgI\",\"app_id\":\"936619743392459\",\"enable_bladerunner\":false,\"enable_ack\":true,\"push_phase\":\"C3\",\"enable_observer\":false,\"enable_dataloss_timer\":false,\"enable_fallback_for_br\":true,\"fix_br_init_rc\":true,\"queue_activation_experiment\":true,\"max_delay_br_queue\":60000,\"max_delay_br_queue_immediate\":3,\"use_critical_for_fallback_from_immediate\":false,\"impression_experiment_flag\":1},5237],[\"InitialCookieConsent\",[],{\"deferCookies\":false,\"initialConsent\":{\"__set\":[1,2]},\"noCookies\":false,\"shouldShowCookieBanner\":false},4328],[\"CookieConsentIFrameConfig\",[],{\"consent_param\":\"FQAREhIA.ARaTkXpof6Xi6oQ3Be3fdkpapEGtRX73NWOKHKZSJdA0CqJL\",\"allowlisted_iframes\":[]},5540],[\"XIGSharedData\",[],{\"raw\":\"{\\\"config\\\":{\\\"csrf_token\\\":\\\"twx0P57yoM3gX9aC2d2ONyBLLnSz2LcH\\\",\\\"viewer\\\":null,\\\"viewerId\\\":null},\\\"country_code\\\":\\\"\\\",\\\"entry_data\\\":{},\\\"is_whitelisted_crawl_bot\\\":false,\\\"connection_quality_rating\\\":\\\"UNKNOWN\\\",\\\"deployment_stage\\\":\\\"C3\\\",\\\"platform\\\":\\\"web\\\",\\\"mid_pct\\\":66.82159,\\\"zero_data\\\":{},\\\"cache_schema_version\\\":3,\\\"server_checks\\\":{},\\\"to_cache\\\":{},\\\"browser_push_pub_key\\\":\\\"BIBn3E_rWTci8Xn6P9Xj3btShT85Wdtne0LtwNUyRQ5XjFNkuTq9j4MPAVLvAFhXrUU1A9UxyxBA7YIOjqDIDHI\\\",\\\"encryption\\\":{\\\"key_id\\\":\\\"254\\\",\\\"public_key\\\":\\\"de4752f9479ed29171693e5d9106fb1b139b55895f80e5fee4141833bbc4e05b\\\",\\\"version\\\":\\\"10\\\"},\\\"is_dev\\\":false,\\\"is_e2e\\\":false,\\\"signal_collection_config\\\":{\\\"bbs\\\":100,\\\"ctw\\\":null,\\\"dbs\\\":100,\\\"fd\\\":60,\\\"hbc\\\":{\\\"hbbi\\\":30,\\\"hbcbc\\\":2,\\\"hbi\\\":60,\\\"hbv\\\":\\\"c3d6940c58f107d3c550814f524342d6\\\",\\\"hbvbc\\\":0},\\\"i\\\":60,\\\"rt\\\":null,\\\"sbs\\\":1,\\\"sc\\\":{\\\"c\\\":[[30000,838801],[30001,838801],[30002,838801],[30003,838801],[30004,838801],[30005,838801],[30006,573585],[30007,838801],[30008,838801],[30009,838801],[30010,838801],[30012,838801],[30013,838801],[30015,806033],[30018,806033],[30019,806033],[30040,806033],[30093,806033],[30094,806033],[30095,806033],[30100,541591],[30101,541591],[30102,541591],[30103,541591],[30104,541591],[30106,806039],[30107,806039],[38000,541427],[38001,806643]],\\\"t\\\":1618437631},\\\"sid\\\":-1},\\\"www_routing_config\\\":{\\\"frontend_and_proxygen_routes\\\":[{\\\"path\\\":\\\"\\/service-worker-prerelease-metro.js\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/robots.txt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads.txt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/BingSiteAuth.xml\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bimi-vmc.pem\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/images\\/bimi\\/ig-logo.svg\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/static\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/config-test\\/routes\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/.well-known\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/apple-app-site-association\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/403invalidnonce\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/404html\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/embed.js\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/collections\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/collections\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/guide\\/*\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/guide\\/*\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p\\/*\\/false_information\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/p\\/*\\/caption\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/false_information\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reel\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/reels\\/audio_page\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/reel\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed_shadow_rich\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/false_information\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/c\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/c\\/*\\/r\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/*\\/caption\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/configure_to_igtv\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/drafts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/upload\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tv\\/upload\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/media\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed\\/captioned\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/embed_shadow\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/tv\\/*\\/all_comments_on_ad\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/all\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/c\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/collection\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/*\\/shop\\/p\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/shop2\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/f\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/follow\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/*\\/access_tool\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/_n\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/_u\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/a\\/r\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/about-ads\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/about\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/login\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/onetap\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/emailsignup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/phone\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/email\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/privacy_and_security\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/blocked_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/muted_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/restricted_accounts\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/story_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/message_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/professional_account_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/activity\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/confirm_phone\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/confirm_phone\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/contact_history\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/cookie_settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/digital_wallets\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/edit\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/fbsignup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/menu\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/change\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/reset\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/reset\\/confirm\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password_reset\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/password\\/report\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/emailpreferences\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/new_terms_confirm\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/recovery\\/landing\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/remove\\/request\\/temporary\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/remove\\/request\\/post\\/temporary\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/signup\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/account_recovery\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/comment_filter\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/data_controls_support\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/supervision\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/suspended\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/two_factor_authentication\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/what_you_see\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/who_can_see_your_content\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/how_others_can_interact_with_you\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/manage_access\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts\\/your_data_and_media\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/hacked\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/support\\/chat\\/embed\\/ig\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/home\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/profiles\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/accounts_center\\/service\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/acredirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ads\\/settings\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/ads\\/activity\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/ads\\/preferences\\/ad_topics\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/affiliate_management\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ajax\\/bz\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/api\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/app\\/hyperlapse\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/*\\/push\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/ar\\/shopping\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/assisted_account_recovery\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/authenticity\\/authenticity\\/location\\/get_location_verification\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/authenticity\\/authenticity\\/location\\/set_location_verification\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/badges_milestones_management\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bfad3e85bc\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/bfad3e85bc_cheap\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/business\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/categories\\/accounts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/categories\\/accounts\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/challenge\\/rewind\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/client_error\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/coming_soon\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/componentexplorer\\/embeds\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/componentexplorer\\/react\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/concurrent_request\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/create\\/configure_to_story\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/create\\/configure\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dogfoodnow\\/whitelist_add\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dogfoodnow\\/whitelist_remove\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/live\\/*\\/comment\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/comment\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/live\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/experiments\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/manifest.json\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/qe_params\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/data\\/shared_data\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/developer\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/digital_collectibles\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/direct_v2\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/hashtags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/profiles\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/directory\\/suggested\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/checkout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/redirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/ecp_checkout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/donate\\/ecp_redirect\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/download\\/request\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/download\\/request_download_data_ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/download\\/confirm\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/download\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/dyi\\/download\\/auth\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/dyi\\/lookaside_auth\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/emails\\/emails_sent\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/emails\\/preferences\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/emails\\/unsubscribe\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/embed_logger\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/current\\/*\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/snooze\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/enoozer\\/action\\/undo\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/403\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/404\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/errors\\/500\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/facebook_pay\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/facebook_pay\\/connect_learn_more\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/connect\\/ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/create\\/ajax\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fb\\/create\\/ajax\\/attempt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fbsurvey\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fbsurvey\\/confirm_user\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fxcal\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/fxcal\\/disclosure\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/getapp\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/graphql\\/query\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/help\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/configure_to_igtv\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/drafts\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/upload\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv\\/upload\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/igtv_revshare_onboarding\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/instagramstickers\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/intern\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/internal\\/ig_product_principles\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/interstitial\\/covid19\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/invites\\/contact\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/legal\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/legal\\/cookies\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/legal\\/terms\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linking\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/linking\\/fundraiser\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linking\\/professional_dashboard\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/linkshim\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/linkshim\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/local\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/local\\/dev\\/transaction_tool_selector\\/redirect\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/location_search\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/grid\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/map\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/locations\\/*\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/explore\\/search\\/keyword\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/logging\\/falco\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/comment\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/appeal_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/dismiss_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/dispute_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/restore_ridge\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/*\\/ridge_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/am_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/appeal\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/delete\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/dismiss_am\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/dispute_am\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/done\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/copyright\\/info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/delete\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/edit\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/product\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/product\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/*\\/story_poll_vote\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/media\\/*\\/*\\/story_slider_vote\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/mixi\\/oauth_callback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/oauth\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/qp\\/batch_fetch_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/n\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/nametag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/p-ng\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/payments\\/paypal_close\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/press\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/privacy\\/activity_center\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/privacy\\/checks\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/privacy\\/consent\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/publicapi\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/preferences\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/removetoken\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/get_push_info\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/register\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/push\\/web\\/update_settings\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/qr\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/raters\\/summary\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/realtime\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/*\\/flag\\/hacked\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/*\\/flag\\/hacked\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/flag_hacked_user\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/submit_reporter_appeal\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/common\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/media\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/support_info\\/user\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/user_report_support_feedback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/get_frx_prompt\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/handle_guided_action\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/notify_guardian\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/reports\\/web\\/log_tag_selected\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/repute\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/restriction\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/s\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/security\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sem\\/campaign\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sem\\/campaign\\/emailsignup\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/seo\\/google_widget\\/crawler\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/avow_login\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/disavow_login_activity\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/logout_session\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/session\\/login_activity\\/undo_avow_login\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/cart\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/cart\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shop\\/products\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/shopping\\/bag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/shopping\\/home\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/sitemap\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/*\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/stories\\/tags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/location\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/suggested_users\\/remove_from_suggested\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/suggested_users\\/remove_from_suggested_confirm\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/support\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/survey\\/us2020\\/consent_withdraw\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/switcher\\/placeholder\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tags\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/tags\\/*\\/qr\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/terms\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/terms\\/accept\\\",\\\"destination\\\":\\\"WWW\\\"},{\\\"path\\\":\\\"\\/test_users\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/testing\\/indigo_logging\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/testing\\/validate_client_input\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/thirdparty\\/static\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/topics\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/topics\\/*\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/two_factor\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/uid\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\/options\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report_celebrity\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report_underage\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/*\\/report\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/merchant\\/*\\/product\\/*\\/flag\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/merchant\\/*\\/product\\/*\\/flag\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/self\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/set_disallow_story_reshare_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/users\\/set_feed_post_reshare_disabled_web\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/verification\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/video_call\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/votinginfocenter\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/watch_together\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/web\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\/loggedin\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/instagram\\/loggedout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\/loggedin\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/webinstall\\/iglite\\/loggedout\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/weibo\\/oauth_callback\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/wifiauth\\/login\\/*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/xwoiynko\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/zr\\/diagnostics\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/zr\\/nux\\/update_preference\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/explore\\\",\\\"destination\\\":\\\"WWW\\\"}],\\\"frontend_only_routes\\\":[{\\\"path\\\":\\\"\\/create\\/(story|style|details|location|tag|advanced-settings|advanced-settings\\/alt-text)\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/accounts\\/login\\/two_factor\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/explore\\/search\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/direct\\/t\\/?.*\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/stories\\/tags\\/?.*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/location\\/?.*\\\",\\\"destination\\\":\\\"DISTILLERY\\\"},{\\\"path\\\":\\\"\\/stories\\/?.*\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/similar_accounts\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/related_profiles\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"},{\\\"path\\\":\\\"\\/[^\\/]+\\/(following|hashtag_following|followers)\\/?(mutualOnly|mutualFirst)?\\/?\\\",\\\"destination\\\":\\\"BOTH\\\"}],\\\"proxygen_request_handler_only_routes\\\":[{\\\"paths\\\":[\\\"^\\/$\\\",\\\"^$\\\"],\\\"destination\\\":\\\"WWW\\\",\\\"in_vpn_dogfooding\\\":false,\\\"in_qe\\\":false}]},\\\"bundle_variant\\\":\\\"wwwig\\\",\\\"frontend_env\\\":\\\"C3\\\",\\\"probably_has_app\\\":null,\\\"rollout_hash\\\":\\\"1006847381\\\"}\",\"native\":{\"browser_push_pub_key\":\"BIBn3E_rWTci8Xn6P9Xj3btShT85Wdtne0LtwNUyRQ5XjFNkuTq9j4MPAVLvAFhXrUU1A9UxyxBA7YIOjqDIDHI\",\"bundle_variant\":\"wwwig\",\"entry_data\":{},\"should_show_digital_collectibles_privacy_notice\":false,\"config\":{\"csrf_token\":\"\",\"viewerId\":null},\"cache_schema_version\":3,\"deployment_stage\":\"C3\",\"frontend_env\":\"C3\",\"gatekeepers\":{},\"qe\":{},\"is_on_vpn\":false,\"is_e2e\":false,\"rollout_hash\":\"1006847381\",\"server_checks\":{\"hfe\":true},\"www_routing_config\":{\"frontend_only_routes\":[{\"path\":\"\\/create\\/(story|style|details|location|tag|advanced-settings|advanced-settings\\/alt-text)\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/accounts\\/login\\/two_factor\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/explore\\/search\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/direct\\/t\\/?.*\",\"destination\":\"BOTH\"},{\"path\":\"\\/stories\\/tags\\/?.*\",\"destination\":\"DISTILLERY\"},{\"path\":\"\\/stories\\/location\\/?.*\",\"destination\":\"DISTILLERY\"},{\"path\":\"\\/stories\\/?.*\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/similar_accounts\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/related_profiles\\/?\",\"destination\":\"BOTH\"},{\"path\":\"\\/[^\\/]+\\/(following|hashtag_following|followers)\\/?(mutualOnly|mutualFirst)?\\/?\",\"destination\":\"BOTH\"}]},\"consent_dialog_config\":{\"is_user_linked_to_fb\":false,\"should_show_consent_dialog\":false},\"locale\":\"en_US\",\"language_code\":\"en\",\"hostname\":\"www.instagram.com\",\"nonce\":\"P4atEFu9+Wo3ZLP+uqW6Mw==\",\"device_id\":\"46749EC6-93BF-448F-B7A9-9502CB1F16F7\",\"signal_collection_config\":{\"sid\":-1},\"privacy_flow_trigger\":null,\"platform_install_badge_links\":{\"ios\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yt\\/r\\/Yfc020c87j0.png\",\"android\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/c5Rp7Ym-Klz.png\",\"windows_nt_10\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/EHY6QnZYdNX.png\"},\"country_code\":\"US\"}},6186],[\"WebDevicePerfClassData\",[],{\"deviceLevel\":\"unknown\",\"yearClass\":null},3665],[\"cr:70\",[\"FBInteractionTracingDependencies\"],{\"__rc\":[\"FBInteractionTracingDependencies\",\"Aa0Qj1b9XT66Or8qjJH6njV7vMo0mlOgTB8HForhIQJx9g8fZSohKGYxoQqyCKji8LhLe3UKJkZIuAQOuCg0554utr5RHjiGDg\"]},-1],[\"cr:686\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:2695\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:11531\",[\"CometNavigationTracingQPLEvents\"],{\"__rc\":[\"CometNavigationTracingQPLEvents\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:683059\",[\"CometVisualCompletion\"],{\"__rc\":[\"CometVisualCompletion\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:696703\",[\"JSScheduler\"],{\"__rc\":[\"JSScheduler\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:717822\",[\"TimeSliceSham\"],{\"__rc\":[\"TimeSliceSham\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:719780\",[],{\"__rc\":[null,\"Aa0uI4MR6rpGQhmskNXV94ZdpXXKe7YlvwfL_Q8fcqM5LBaxJCJpdueAHlDhw3OW6licpdtKNxu-JiuAtU0\"]},-1],[\"cr:806696\",[\"clearTimeoutComet\"],{\"__rc\":[\"clearTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:807042\",[\"setTimeoutComet\"],{\"__rc\":[\"setTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:896461\",[\"setIntervalComet\"],{\"__rc\":[\"setIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:896462\",[\"setIntervalComet\"],{\"__rc\":[\"setIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:925100\",[\"RunComet\"],{\"__rc\":[\"RunComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:986633\",[\"setTimeoutComet\"],{\"__rc\":[\"setTimeoutComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1003267\",[\"clearIntervalComet\"],{\"__rc\":[\"clearIntervalComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1106516\",[],{\"__rc\":[null,\"Aa3MWODbyvJa4u3k2Gh8lSS8VGkR-LncsM4VHoK7sjZkWHhndQFAXqXP4x5ZlSIpwjDrkb4dlNKjgQVh\"]},-1],[\"cr:1108857\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1294158\",[\"React.classic\"],{\"__rc\":[\"React.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:1294159\",[\"ReactDOM.classic\"],{\"__rc\":[\"ReactDOM.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:1540330\",[],{\"__rc\":[null,\"Aa1CpVBOV_pwu-siLYxJWqgUZYvJWF0xHgg-Y4VM1o_-OpuDyNslGGXQus0RWIdtoJBlCMRYMnpNDrnyeLdZvBMi6yEQI6aXDdNJRcS56C-v_BD34w\"]},-1],[\"cr:1703077\",[],{\"__rc\":[null,\"Aa0Q9mpUh7pSI1ToNasW57H1f-6eyNCsSc8bI6Ltn8Pl03KjSVIUSV0yG8mNo1hekp8qgBqq5Vv69Sr_WfbhOB40f0T7bg\"]},-1],[\"cr:1791501\",[\"CometVCTracker\"],{\"__rc\":[\"CometVCTracker\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:1984081\",[],{\"__rc\":[null,\"Aa0nfXSdRKA1Lw8LFR1ydKwppCyrWV00JKiMr8-FVt7RV7UvNc1Je3XMDvKyz2iqRPzs67wPO0XQz3Ar8crTnIWBVVC3\"]},-1],[\"cr:2010754\",[],{\"__rc\":[null,\"Aa3mcjBCcd2-jda3b5ouk9HCulxpqD5Va7A1cLRKvWu_ybo3PwHDbV1KszNbCIxVVw2IcBG0HvQLQgpoNHf5ZsXhMMcafCc\"]},-1],[\"cr:284\",[],{\"__rc\":[null,\"Aa0Ev_RTgTTpIJoFZ7hgU9bTKfiDy1L1BlFV4dk4UyT5XcO81mGJCzP9f-f3FGkuIlJy2JKOalQiw-jyKHD8\"]},-1],[\"cr:796\",[],{\"__rc\":[null,null]},-1],[\"cr:976\",[],{\"__rc\":[null,\"Aa2ks6Uz-1dG5fPwh-UwqiVQD-k8Xk-qpCU1ZtGN77z1wpvvh6yHpJoaSHhqXp8EPleGpkVyMmZzjerlkv9D\"]},-1],[\"cr:2222\",[\"PolarisShell_DEPRECATED.react\"],{\"__rc\":[\"PolarisShell_DEPRECATED.react\",null]},-1],[\"cr:4150\",[\"PolarisLoggedOutLoginModal.react\"],{\"__rc\":[\"PolarisLoggedOutLoginModal.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:4319\",[\"PolarisODSImpl\"],{\"__rc\":[\"PolarisODSImpl\",\"Aa1viVXPp4vDuUp3tU57a2MYXUQEcA2_6IWEB3nJEl8UT-xow3pfTqUqjToFOuharT1h1jEnAgwy_mZLZFapX-2o\"]},-1],[\"cr:4865\",[\"ReactDOMLegacy_DEPRECATED\"],{\"__rc\":[\"ReactDOMLegacy_DEPRECATED\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:5041\",[],{\"__rc\":[null,\"Aa0Ev_RTgTTpIJoFZ7hgU9bTKfiDy1L1BlFV4dk4UyT5XcO81mGJCzP9f-f3FGkuIlJy2JKOalQiw-jyKHD8\"]},-1],[\"cr:11054\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:694370\",[\"requestIdleCallbackComet\"],{\"__rc\":[\"requestIdleCallbackComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1064332\",[],{\"__rc\":[null,\"Aa0DGI75E0Ljo7UR1IiyYQ0A9i0EqqbQdFEeIvDUSZW0ovF4RJlY1Uuh0RmbCCBZW-JZDP_bOlUbJ0w\"]},-1],[\"cr:1183579\",[\"InlineFbtResultImplComet\"],{\"__rc\":[\"InlineFbtResultImplComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1522191\",[\"CometLinkTrackingUtils.facebook\"],{\"__rc\":[\"CometLinkTrackingUtils.facebook\",\"Aa24BQXusyzP_yTXysD1z2jmFAvRCPlEmUcsGyZPaQJPkzHyigzZdpFgUsgrnQkFeMmKS2FVw0hQ2mXazthM0bjVKYDRbpOX9BdTgQ\"]},-1],[\"cr:1645510\",[],{\"__rc\":[null,\"Aa2VOpiS_cUMHKKNynVxLs1eEUb32pfblwWofxXBBluM6Z-iXcAULI4grzRRvvCSBbvUa9nuGCmkdlEu6CSGnPBwjjIYIw\"]},-1],[\"cr:1651548\",[\"useCometPreloaderImpl\"],{\"__rc\":[\"useCometPreloaderImpl\",\"Aa0iJX1pBKO51gws8skKZ7mswIl6Fa1cfwr6NDvqIfccXr5N-HXt-w3VZe4RF_mCmsCEOpBCnwKN-g3DAXIVFb7A5QtMwWgwSHA\"]},-1],[\"cr:53\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:522\",[],{\"__rc\":[null,\"Aa2d5UKzHe5rnNOkBoXOU8CEM0MQSOl4v6P0TdDF51K1ybGznV3nuyzvNpIqhHcVLudEjGl0doB3lNTNcljAjHD33jIBI3av\"]},-1],[\"cr:1501\",[],{\"__rc\":[null,\"Aa3XXGhrd-C6deYZ7JnDJQrPJSL2lvxSFxTOhRH9nxXsltyg4SiAvcC3lieRCeCHq0J_iqb2FG-dsUMS1FEnHVGS40rg6xktAU3dtKI\"]},-1],[\"cr:2310\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:2682\",[\"warningComet\"],{\"__rc\":[\"warningComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:3832\",[],{\"__rc\":[null,null]},-1],[\"cr:11202\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:708886\",[\"EventProfilerSham\"],{\"__rc\":[\"EventProfilerSham\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:994756\",[\"BaseCometModal.react\"],{\"__rc\":[\"BaseCometModal.react\",\"Aa3poS25lpv3RODSOJWEiKfKZb6miMkjAlUvL6ee4eTfO1JkCtNTklc2NQ8eWcPDvn1HIemKIkvEcgNvCfM\"]},-1],[\"cr:1105154\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1642797\",[\"BanzaiComet\"],{\"__rc\":[\"BanzaiComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1752405\",[\"QPLAddCometRequestHeaders\"],{\"__rc\":[\"QPLAddCometRequestHeaders\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1824473\",[],{\"__rc\":[null,\"Aa3lJKrPqcb5Eqf4hJuE1IPeCgmmHY_ggD9fAkWCAtFopjve3unK3-PpPcp3cn856quxVBuWcus7eB0riI4KmXyJ\"]},-1],[\"cr:267\",[],{\"__rc\":[null,\"Aa02hnWmjabdtHz__saAIAsErRXZWmMitOk-tCLNJj4rmvnV2ueaDKCAJ1MsFIGYndoLRNOZPwEGi9sQD3EzgJwBr8et52eqhRUVbg\"]},-1],[\"cr:641\",[\"handleCometErrorCodeSideEffects\"],{\"__rc\":[\"handleCometErrorCodeSideEffects\",\"Aa2Uu3Pnz1UYCJAs-aEOROujgd_OFC2hQLigUmdMs3QivxZvuDlIhfoycIf7UoYOjwaNWeG2Bg1hcvbB93FQNZswZxw2rRovefWTdAsX\"]},-1],[\"cr:851\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:866\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:945\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:1024\",[],{\"__rc\":[null,\"Aa1lhJ_BdlyxXC17HOX8sbCo4oqcSxLt4JxWJiPo075VDil_g2MTa_cdCVX_peIXwvsKOUjf3hGW6gqsBMGmpX0c0waetvF0YDrKswwya_WZRd3DyBppsYraH2dA\"]},-1],[\"cr:1196\",[\"handleCometReauthenticationSideEffects\"],{\"__rc\":[\"handleCometReauthenticationSideEffects\",\"Aa2Uu3Pnz1UYCJAs-aEOROujgd_OFC2hQLigUmdMs3QivxZvuDlIhfoycIf7UoYOjwaNWeG2Bg1hcvbB93FQNZswZxw2rRovefWTdAsX\"]},-1],[\"cr:1330\",[],{\"__rc\":[null,\"Aa1462W8X0UEsVWy_yPsqhw6HrxUwNvpnUw5MjalHslfw4BPTAduZ5nq1-iRX2nGBmff4HyYmQr7oGD-rcXyUBdcYZ4Cs1AMh9QPcMBaVdeshlqt_8dS0nvsLAWFxCIZxA\"]},-1],[\"cr:1565\",[],{\"__rc\":[null,\"Aa2ks6Uz-1dG5fPwh-UwqiVQD-k8Xk-qpCU1ZtGN77z1wpvvh6yHpJoaSHhqXp8EPleGpkVyMmZzjerlkv9D\"]},-1],[\"cr:1588\",[],{\"__rc\":[null,\"Aa1vU7KrtVlIX8KOUnzdT__TgraFdwNOZGNleCowpwe_7pakAeZmL-wMF3HbZcpOajNO7RtuP2aFxeXlXP1lqrOwSMQ\"]},-1],[\"cr:2011\",[\"cometFaceliftFonts\"],{\"__rc\":[\"cometFaceliftFonts\",\"Aa1vH3onGvF3Z46KNbEEhkuZ6hESUpQeDYzq0p-oLGEgjXbdHGn5rd7UGYq7eyLsm2271RnuZ9XgVZLTsA9eKVyMAdsWJE8\"]},-1],[\"cr:2099\",[],{\"__rc\":[null,\"Aa0ArHmKiGWF3H3C1X_dL5X_SIBGCQy27tsfZ0GwwVkD5ID6VZOT28Kg2DZtrriyI8BWyc6abL4fM176C8jbmp63SGZ9uXapK7zCLbcG7jaDQyJd19LwmcfA\"]},-1],[\"cr:2293\",[\"BasePopoverSVGArrowContainer.react\"],{\"__rc\":[\"BasePopoverSVGArrowContainer.react\",\"Aa0PtwYd9C-4GHnrumlskrzkMsYTgvISvrBFXwhoRE-qc2RbRfpD9KxuITi1APYIn2nIKv2aak0U_zID89_zcj3DYQsa0rLj-jc\"]},-1],[\"cr:2654\",[],{\"__rc\":[null,\"Aa3d8-b-LfnB4jDNPW15QTJH8eb1neV7KW0Gr-qOk4VujlNUOOfXNqdQ6tEF2sveoage1mm3meDjLHRPXsxrRcpFJA\"]},-1],[\"cr:2928\",[\"relay-runtime\"],{\"__rc\":[\"relay-runtime\",\"Aa2WR0AH8YcazFB2BOuBgV2sAYtLfddIpxjb4vlqE2aJyJwHF8uxcnu-6Jlhp4bpOfNqCR_rGSzuWNA79OEkP-_VJuyTqNH14hx9XA\"]},-1],[\"cr:3917\",[],{\"__rc\":[null,\"Aa3lWBdi6aMCbErYNdU7xTDm7QjHe0tsVJT2tNKW_wnoGEyMg3k4Tr7V1NoeymorBD76DseOC-hV5F23elzDhqtNO94bpq6PF78\"]},-1],[\"cr:3919\",[],{\"__rc\":[null,\"Aa3xzwgVIBvOeyK6JrZ_mng_NoxHRaLvTawmrMfP8gAz2SvFoMwMgsAQ2BVeMHMijKybyhvxr2PhIyrRSJiT5iuN5E4_\"]},-1],[\"cr:4166\",[],{\"__rc\":[null,null]},-1],[\"cr:4345\",[],{\"__rc\":[null,\"Aa16-524lUKaDhZGMZZ9X5dj3pj7aLRO2K9wU0vFwt4oOej_RizfM8jkts-SzDM-40n1kioo7lhLt9flIvcpKO-TFk82krr4gVo\"]},-1],[\"cr:4506\",[\"PolarisKeyCommandNub.react\"],{\"__rc\":[\"PolarisKeyCommandNub.react\",\"Aa0mUSouYPm8JPajvl69POo_NvEFIPgqGf6lVoBUIo4VtRb7Fjbx7XOvSt2el0cfDQ7AIapX_kWEfSqeCte1MH5OmmmS8tdVjejHR8SU\"]},-1],[\"cr:4785\",[],{\"__rc\":[null,\"Aa1KB9QozIreyevKrXclhkhtk4b-7CsAJFiu197Tga3ROxnOqpkNsDBmjrurswTi3l0cMN5Fg4bt9Ud0Tc4BChnRRhw_M_h7IZ63FcsQ\"]},-1],[\"cr:4816\",[],{\"__rc\":[null,\"Aa1NSPcJR50h706LaSw21xvQ2DS1_o91eD9flxaOHX_tvu7FtkYitCcQc41ZJ3RFPwKmtCVn-hLX1CXJhEXg-G41cj-RWUDvKYtI6Q\"]},-1],[\"cr:4878\",[],{\"__rc\":[null,\"Aa0EwxBT46R5ahO4cihbyPNMIOaBB1nKM8z2BHt2eeqn6QC789ShdJ6EYZRgxEEMtIphKIoOIvdSUEQrAq8\"]},-1],[\"cr:5022\",[\"oz-player\\/strategies\\/bandwidth_estimators\\/OzBandwidthEstimatorDefault\"],{\"__rc\":[\"oz-player\\/strategies\\/bandwidth_estimators\\/OzBandwidthEstimatorDefault\",null]},-1],[\"cr:5128\",[],{\"__rc\":[null,\"Aa1ug4sam9Hpu2WOYjMNG8RVWsEyWRywQJHXrdTvpi15GzGCtMnyCdQrTt9OnK0uMJ9o4thPVpKSJ7nzhBmh4P4ScFBF3ap4\"]},-1],[\"cr:5286\",[],{\"__rc\":[null,\"Aa040wFB9zQ7zB8qwjU0iqM0dKqCe5VHJtMgtLjE-ECYVZpGvLhCStKM1SkGQJsviJvYcnf71CsfM0RwmSIpazBN\"]},-1],[\"cr:9876\",[],{\"__rc\":[null,\"Aa2cQMYdCBe7x2xihV23FSvgC44Spc_jsIiiI4X_fs7Vbgl6wSfhe1xNwTC4gqI4NSQZL24vGI1p3gTHndk\"]},-1],[\"cr:10569\",[],{\"__rc\":[null,\"Aa3MWY8PLH_f9a7YR4j-gb451CF1yyuXWN5Gr_B2AnidXXkYCNGnVBV1Su2N634BL3ZX0eHvztaI6iREvrtjJ3HIzHI-pw\"]},-1],[\"cr:10726\",[],{\"__rc\":[null,\"Aa2O9ll8hESOdGrLMLk1R_D2jsGD1pBTau5NQ1IMxwxrEJgP1wrnkphBIf9KP4KCjhrIeI4FHU5s97QrzZDdsL0\"]},-1],[\"cr:11053\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:11192\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:12338\",[\"CometErrorRoot.react\"],{\"__rc\":[\"CometErrorRoot.react\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:840411\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:844180\",[\"TimeSpentImmediateActiveSecondsLoggerComet\"],{\"__rc\":[\"TimeSpentImmediateActiveSecondsLoggerComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:869493\",[],{\"__rc\":[null,\"Aa1cqUullmgM-_zx4zgAJA8jM0OZxvk96e5EJESSpJat3F2uOKvIco5LbdD5O2pmPwkOmfiPumYr\"]},-1],[\"cr:992073\",[],{\"__rc\":[null,\"Aa0JZ6LgSPAOhuqMmgnb2rBIm8CcWqL500qzyZoLBNRibu6GIrpJT_7FOImizcTA2ZpnA-h0OZB-t1T4-h8WLIe9Riw5k8de\"]},-1],[\"cr:1011783\",[\"CometHeroInteractionImpl.react\"],{\"__rc\":[\"CometHeroInteractionImpl.react\",\"Aa2O8k93D8F04xe0_2qqjaJlEdh5PViAR6CaGbvtYr4uxM9rbLXwFU5RDEj0LVMplNedanmrs_7GDPM\"]},-1],[\"cr:1069930\",[\"cometAsyncFetch\"],{\"__rc\":[\"cometAsyncFetch\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1083116\",[],{\"__rc\":[null,\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1083117\",[\"recoverableViolation\"],{\"__rc\":[\"recoverableViolation\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1110430\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1119068\",[],{\"__rc\":[null,\"Aa2p-Qbg9qIJNpmXkjpAVlkMMjj0Uue3YVXhSo4hlaVMGvYBLqRVIQj4a_vkk__G8mQO_1cpfzNZpJAFX4mzzM5NNQ\"]},-1],[\"cr:1121434\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1132918\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1267207\",[],{\"__rc\":[null,\"Aa1jjKhyl_eAoaC5Vqy_hFTo_PhcAqHO9JC_f0fRlNms3Ktw2GJJhXr_55xfARHsbSmq7HYTTSvGCco9bWUHXCQ\"]},-1],[\"cr:1342471\",[\"ReactFlightDOMRelayClient-prod.modern\"],{\"__rc\":[\"ReactFlightDOMRelayClient-prod.modern\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1445039\",[],{\"__rc\":[null,\"Aa2A_w1_4o6HNY2bTqMTkhqJqzPvkNrLadfdLLbdZ8Dhdvq97NqrhZifBtv9cPycDTRky_GujweB0lJg6F7egxSSdf4FHVEPGqyf-NM\"]},-1],[\"cr:1465733\",[\"emptyFunction\"],{\"__rc\":[\"emptyFunction\",\"Aa23EMHfuJ4cslAjjNglxZz2NllJ83ahuPidNQTJ7Fa4v7xBq_v1z52F4C3usquBYDPqC25ysagLqMXtaRZlFErcKQ0Qrg\"]},-1],[\"cr:1467370\",[\"CometRelayScheduler\"],{\"__rc\":[\"CometRelayScheduler\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1791018\",[\"CometInteractionVC\"],{\"__rc\":[\"CometInteractionVC\",\"Aa3Dj_wNygP-bG3SafjWK8j_Avt3s0TL5smEfGUSZTfrE1lN1mvwuBjG8udQH_JbnqQGXHwdjhzxxPh_7knNQTY_1Y1AJbI-ull3mEybnDHr\"]},-1],[\"cr:1813330\",[],{\"__rc\":[null,\"Aa0SzTDkkMQ1TmI8skbuvgzJqMuJPCtPpjYxDL3Nm3OrmuFHXMuqtxyOLOdATyiHJ7KET2RtQDBNpilTmz58iYeQ0PU\"]},-1],[\"cr:1829844\",[],{\"__rc\":[null,\"Aa2hoyTB-4-lfoXazcQSos621JTRIstZ4g9OoaaWm8Gls6F6YE00YyTYNokdWEq_TqXdmYiidQ59rJQJ6Zx7_7g2qy_2abNO1A\"]},-1],[\"cr:1941981\",[],{\"__rc\":[null,null]},-1],[\"cr:1941982\",[],{\"__rc\":[null,null]},-1],[\"cr:1969469\",[],{\"__rc\":[null,null]},-1],[\"cr:1987488\",[\"DGWRequestStreamDeferredClient\"],{\"__rc\":[\"DGWRequestStreamDeferredClient\",\"Aa0F96noFnBAwKfE4Zc9McwdXTOFP6Di2RW26zAUL6Rmj6jgHkN5WAom_0FGxYdzEOW5YExQ_97DF0Y4OvoyzA\"]},-1],[\"cr:1999269\",[],{\"__rc\":[null,\"Aa38G6ZxfF10sePePrsoUFAamCnTBEduaflNp3PvRwQ3NO-bheuMPNIR_C-34flr7kHar_CuXIH6UboOGHDcg9G3R7mCbN9C5ojRLQMnfEPf-Dcd8-auTJ0z0g\"]},-1],[\"cr:2306\",[\"NullState404FailedLoadingFB\"],{\"__rc\":[\"NullState404FailedLoadingFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"cr:3211\",[\"NullStateGeneralFB\"],{\"__rc\":[\"NullStateGeneralFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"cr:3587\",[\"NullStatePermissionsFB\"],{\"__rc\":[\"NullStatePermissionsFB\",\"Aa3_20KLEGVfdcopRbKHM1lpbv4Qo-nHB4uFUG1LQ9FJNp7Mb0jvXStGz6WYKPxYQWuamv9W3CThCmLcMeJsZkmTjAM4mDPss3Prd1g\"]},-1],[\"WebLoomConfig\",[],{\"adaptive_config\":{\"interactions\":{\"modules\":{\"8448\":1},\"events\":{\"553648129.polaris.DirectInboxPage\":46.2,\"553648129.polaris.OneTapUpsellPage\":38,\"553648129.polaris.StoriesPage\":9.4,\"553648129.polaris.exploreLandingPage\":6.6,\"553648129.polaris.fbSignupPage\":2.5,\"553648129.polaris.feedPage\":270.9,\"553648129.polaris.httpErrorPage\":30.1,\"553648129.polaris.loginPage\":51.6,\"553648129.polaris.postPage\":197.6,\"553648129.polaris.profilePage\":204.3,\"553648129.polaris.resetPassword\":5.2,\"553648129.polaris.unifiedHome\":82.7,\"553648130.polaris.ActivityFeedPage\":13.7,\"553648130.polaris.DirectInboxPage\":341.5,\"553648130.polaris.SavedCollectionPage\":6.5,\"553648130.polaris.StoriesPage\":81.8,\"553648130.polaris.editProfile\":2.6,\"553648130.polaris.exploreLandingPage\":86.5,\"553648130.polaris.feedPage\":158.3,\"553648130.polaris.followList\":10,\"553648130.polaris.loginPage\":3.1,\"553648130.polaris.mobileAllCommentsPage\":9.5,\"553648130.polaris.multiStepSignupPage\":4.2,\"553648130.polaris.postPage\":102.5,\"553648130.polaris.profilePage\":350.2,\"553648130.polaris.reelsTab\":5.3,\"553648130.polaris.resetPassword\":2.2,\"553648130.polaris.tagPage\":7,\"553648130.polaris.unifiedHome\":1.5}},\"qpl\":{\"modules\":{},\"events\":{}},\"modules\":null,\"events\":null}},4171],[\"BanzaiConfig\",[],{\"MAX_SIZE\":10000,\"MAX_WAIT\":150000,\"MIN_WAIT\":null,\"RESTORE_WAIT\":150000,\"blacklist\":[\"time_spent\"],\"disabled\":false,\"gks\":{\"boosted_pagelikes\":true,\"mercury_send_error_logging\":true,\"platform_oauth_client_events\":true,\"graphexplorer\":true,\"sticker_search_ranking\":true},\"known_routes\":[\"artillery_javascript_actions\",\"artillery_javascript_trace\",\"artillery_logger_data\",\"logger\",\"falco\",\"gk2_exposure\",\"js_error_logging\",\"loom_trace\",\"marauder\",\"perfx_custom_logger_endpoint\",\"qex\",\"require_cond_exposure_logging\"],\"should_drop_unknown_routes\":true,\"should_log_unknown_routes\":false},7],[\"cr:955714\",[],{\"__rc\":[null,\"Aa1GkJfS5BrKPBLwmAL9AioLKfMm61nb1s-4ewW63-EShDYqMPSoHUqhZmY2H2Id9iLlrre-NpVv9p3_KXDM\"]},-1],[\"cr:1094133\",[],{\"__rc\":[null,\"Aa0Y_belJkc-QRnbdoKiWAXkEz38xtqS4GdXkHCeoCKU4h7ovwPH_IGgo71PkRBji_xkUKC2ExmmWz64X2ktUzOtImQ\"]},-1],[\"cr:1808490\",[],{\"__rc\":[null,\"Aa0EaViHuaqck5VGFhqVDaUy8ihq7oMUNKZ2sb5aQS4wQT2W4GoYZi5yGl2wTb6Ph06ZuriWRLqBuaXDXkpJiH-PCpukPfI\"]},-1],[\"cr:1292365\",[\"React-prod.classic\"],{\"__rc\":[\"React-prod.classic\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:5277\",[\"ReactDOM.classic.prod-or-profiling\"],{\"__rc\":[\"ReactDOM.classic.prod-or-profiling\",\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:662\",[\"PolarisBrowserCookieConsentModal.react\"],{\"__rc\":[\"PolarisBrowserCookieConsentModal.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:777\",[],{\"__rc\":[null,\"Aa00g8cnT4aDvWivoTqTgbuOou1uPDUX7d6UceNucaKEbwYUpd-8MWiS96qiELbT7mbv-Hgd-RrGM2syCPAXlfmaYY_ln4RM-2iJOzk\"]},-1],[\"cr:3474\",[],{\"__rc\":[null,null]},-1],[\"cr:4472\",[\"PolarisLoggedOutIntentDialog.react\"],{\"__rc\":[\"PolarisLoggedOutIntentDialog.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:4791\",[\"PolarisDesktopNav.react\"],{\"__rc\":[\"PolarisDesktopNav.react\",\"Aa0mUSouYPm8JPajvl69POo_NvEFIPgqGf6lVoBUIo4VtRb7Fjbx7XOvSt2el0cfDQ7AIapX_kWEfSqeCte1MH5OmmmS8tdVjejHR8SU\"]},-1],[\"cr:4792\",[],{\"__rc\":[null,\"Aa111sU_vGdVVZvqc22PVD4fjyOpGtvYGiwZarKzIiFBobLY-vNC9pxQhjDKHR6tCMgch5YfEW9Tfh3h6KQwmGjk7H5u_aVKQT6iulQ\"]},-1],[\"cr:1294246\",[\"ReactDOM.classic\"],{\"__rc\":[\"ReactDOM.classic\",\"Aa2l8YG3dnt8XHYEmQ_LRmjHav38zTgbmnCG_kEjrP8AvPgWEZwT1l51FrsZlrvGhqqjPNpjdcHMtk-E26Tv926bFkVp\"]},-1],[\"cr:983844\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072546\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072547\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:1072549\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1],[\"cr:692209\",[\"cancelIdleCallbackComet\"],{\"__rc\":[\"cancelIdleCallbackComet\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1268629\",[\"setTimeoutCometLoggingPri\"],{\"__rc\":[\"setTimeoutCometLoggingPri\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:1268630\",[\"setTimeoutCometSpeculative\"],{\"__rc\":[\"setTimeoutCometSpeculative\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:4840\",[],{\"__rc\":[null,\"Aa1IHwbw0qdyPqrdijdWiUNgC295Q58SdnPgmiBjCnsKEFkqxYBiZaO2s2zbYbl591sZYVKgJ6o5IVbIeT8-F8s0dOloqjY537xK477EdpEc1MLs\"]},-1],[\"cr:956931\",[\"useCometPrerendererImpl\"],{\"__rc\":[\"useCometPrerendererImpl\",\"Aa0iJX1pBKO51gws8skKZ7mswIl6Fa1cfwr6NDvqIfccXr5N-HXt-w3VZe4RF_mCmsCEOpBCnwKN-g3DAXIVFb7A5QtMwWgwSHA\"]},-1],[\"cr:5278\",[\"ReactDOM-prod.classic\"],{\"__rc\":[\"ReactDOM-prod.classic\",\"Aa1VWwka1-TM7O1mdvM_kYUH24wchg4wCzvk4KGNQS5UpAIjihrfqyqwb9DPAMOqTyvdb78PH3T7B0PRNEwK9A5xtQmo93iJ0g\"]},-1],[\"cr:104\",[\"PolarisDirectBadgeIcon\"],{\"__rc\":[\"PolarisDirectBadgeIcon\",null]},-1],[\"cr:4477\",[\"PolarisDesktopNavLoggedOutContainer.react\"],{\"__rc\":[\"PolarisDesktopNavLoggedOutContainer.react\",\"Aa2PaeLAWEcvKq_AHDKdZBkIiryG8eSAUDAd_wwNjnZP76E8CeDicYoL5ICnY-az_A100Za7NQksdQ5a5Vf7F7aUIw\"]},-1],[\"cr:1353359\",[\"CometEventListener\"],{\"__rc\":[\"CometEventListener\",\"Aa17FqHYV3crsmjEXtd8DpJzj_aMa5saLAzyyO2iln15RAvsxcZRzf2e4Wr_lsR6AdgVcGHa4cdMza3qKnyIaUTH7jn5BH8T2A\"]},-1]],\"instances\":[[\"__inst_af5d41d9_0_0_Ua\",[\"XIGCometRoutedRootConfigBuilder\"],[{\"service_worker_uri\":\"\\/www-service-worker.js?s=push&__d=www\"}],1]],\"require\":[[\"PolarisErrorRoot.entrypoint\"],[\"PolarisErrorRoot.react\"],[\"CometPlatformRootClient\",\"init\",[\"__inst_af5d41d9_0_0_Ua\",\"RequireDeferredReference\"],[{\"__m\":\"__inst_af5d41d9_0_0_Ua\"},\"mount_0_0_AQ\",\"7191084768081846440\",{\"actorID\":\"0\",\"rootView\":{\"allResources\":[{\"__dr\":\"PolarisErrorRoot.entrypoint\"},{\"__dr\":\"PolarisErrorRoot.react\"}],\"resource\":{\"__dr\":\"PolarisErrorRoot.react\"},\"props\":{\"page_logging\":{\"name\":\"httpErrorPage\",\"params\":{}}},\"entryPoint\":{\"__dr\":\"PolarisErrorRoot.entrypoint\"}},\"tracePolicy\":\"polaris.httpErrorPage\",\"meta\":{\"title\":null,\"accessory\":null,\"favicon\":null},\"prefetchable\":true,\"hostableView\":{\"allResources\":[{\"__dr\":\"PolarisErrorRoot.entrypoint\"},{\"__dr\":\"PolarisErrorRoot.react\"}],\"resource\":{\"__dr\":\"PolarisErrorRoot.react\"},\"props\":{\"page_logging\":{\"name\":\"httpErrorPage\",\"params\":{}}},\"entryPoint\":{\"__dr\":\"PolarisErrorRoot.entrypoint\"}},\"url\":\"\\/codesupplyco_demo\\/\",\"params\":{},\"routePath\":null},null,null,{\"backgroundRoute\":null,\"timeSpentMetaData\":null}]],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"IGWebBloksApp\"]]],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"CometErrorRoot.react\",\"CometKeyCommandWrapperDialog.react\",\"CometModifiedKeyCommandWrapperDialog.react\"]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"PolarisErrorRoot.entrypoint\",\"PolarisErrorRoot.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"PolarisErrorRoot.entrypoint\",\"PolarisErrorRoot.react\"],\"css\"]]]});});});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierOneEnd\");</script>\n<script type=\"application/json\" data-content-len=\"83\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierOneEnd\"]]]}</script>\n\n<script>qpl_inl(\"7191084768081846440\",\"tierTwo\");</script>\n<script type=\"application/json\" data-content-len=\"80\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierTwo\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierTwo\",296);</script>\n<script type=\"application/json\" data-content-len=\"91\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierTwo\",296]]]}</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3idBq4/yL/l/en_US/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3idBq4/yL/l/en_US/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e37RKYh\" async=\"1\" data-p=\":4\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e37RKYh&quot;]=1\" onerror=\"_btldr[&quot;e37RKYh&quot;]=1\" id=\"u_0_0_71\" nonce=\"7DXsYBtw\"></script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/yM/r/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\" as=\"script\" nonce=\"7DXsYBtw\" /><script src=\"https://static.cdninstagram.com/rsrc.php/v3/yM/r/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\" data-bootloader-hash=\"e577y0g\" async=\"1\" data-p=\":6\" data-btmanifest=\"1006847381_main\" data-c=\"1\" onload=\"_btldr[&quot;e577y0g&quot;]=1\" onerror=\"_btldr[&quot;e577y0g&quot;]=1\" id=\"u_0_1_xu\" nonce=\"7DXsYBtw\"></script>\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"clpData\":{\"1808128\":{\"r\":1,\"s\":1}},\"gkxData\":{\"4769\":{\"result\":false,\"hash\":\"AT4BMuDcCXv_oBypYnM\"},\"3538\":{\"result\":false,\"hash\":\"AT57TGJPNDIjCAO6AM0\"},\"952052\":{\"result\":false,\"hash\":\"AT7wsJl9q10w1hpgLlA\"},\"1611172\":{\"result\":false,\"hash\":\"AT6trgho2WMoFqOj3rI\"},\"4574\":{\"result\":false,\"hash\":\"AT55qFTN_fjShHbfEaU\"},\"1073500\":{\"result\":false,\"hash\":\"AT7aJmfnqWyioxOOi7c\"},\"1857581\":{\"result\":false,\"hash\":\"AT5yTxGMp6le0PAt0IY\"}},\"ixData\":{\"1876411\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/3mD7kKai_7W.gif\",\"width\":12,\"height\":12},\"1876412\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y1\\/r\\/mHADa0fT0mI.gif\",\"width\":16,\"height\":16},\"1876413\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/ZY0eC865SgX.gif\",\"width\":20,\"height\":20},\"1876414\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y8\\/r\\/M3mvaC7u8oH.gif\",\"width\":24,\"height\":24},\"1876415\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/hVe2HmwMRpE.gif\",\"width\":32,\"height\":32},\"1876416\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/yFaaylccZ5L.gif\",\"width\":48,\"height\":48},\"1876418\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/96GJYGbUDCJ.gif\",\"width\":72,\"height\":72},\"1876419\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/NiR8M1k4AVU.gif\",\"width\":12,\"height\":12},\"1876420\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/FNERtXIk9xp.gif\",\"width\":16,\"height\":16},\"1876421\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/l2FWxc8ihQj.gif\",\"width\":20,\"height\":20},\"1876422\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/r\\/Io_N1z4MXYh.gif\",\"width\":24,\"height\":24},\"1876423\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yD\\/r\\/-1hifBvDgEQ.gif\",\"width\":32,\"height\":32},\"1876424\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/RcIiVWWukEr.gif\",\"width\":48,\"height\":48},\"1876426\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/9ISCYYcy94m.gif\",\"width\":72,\"height\":72},\"1876427\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/MStXnCtsaSe.gif\",\"width\":12,\"height\":12},\"1876428\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/dw2egiKdoVV.gif\",\"width\":16,\"height\":16},\"1876429\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yA\\/r\\/1DbfjOftY0d.gif\",\"width\":20,\"height\":20},\"1876430\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/r\\/2uPGz8a6lb6.gif\",\"width\":24,\"height\":24},\"1876431\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/60r9oPEvxiL.gif\",\"width\":32,\"height\":32},\"1876432\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/NlAFhiEx3a1.gif\",\"width\":48,\"height\":48},\"1876434\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yx\\/r\\/uzrQzxgD_Bg.gif\",\"width\":72,\"height\":72},\"1876435\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/TtXj9IXnkoK.gif\",\"width\":12,\"height\":12},\"1876436\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yy\\/r\\/HNs8yq0QiXE.gif\",\"width\":16,\"height\":16},\"1876437\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yT\\/r\\/ay_drQe6StD.gif\",\"width\":20,\"height\":20},\"1876438\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y4\\/r\\/iACDMhAROS_.gif\",\"width\":24,\"height\":24},\"1876439\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yy\\/r\\/WEhNL1y2zoZ.gif\",\"width\":32,\"height\":32},\"1876440\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/mAeZkO4yhqj.gif\",\"width\":48,\"height\":48},\"1876442\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/79uB7ciX8vY.gif\",\"width\":72,\"height\":72},\"1876443\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/dzn6it4Fw3p.gif\",\"width\":12,\"height\":12},\"1876444\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/wqjQpFb4tea.gif\",\"width\":16,\"height\":16},\"1876445\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/r\\/yy3mR2PXKrn.gif\",\"width\":20,\"height\":20},\"1876446\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/gTdm7zPKz-c.gif\",\"width\":24,\"height\":24},\"1876447\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/kdaft251gQ_.gif\",\"width\":32,\"height\":32},\"1876448\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/6-FTd4KBtOk.gif\",\"width\":48,\"height\":48},\"1876450\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yq\\/r\\/Tks_lRPtYc-.gif\",\"width\":72,\"height\":72},\"1876451\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/Bys0xcVibDa.gif\",\"width\":12,\"height\":12},\"1876452\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/Wk0dcHGH6EG.gif\",\"width\":16,\"height\":16},\"1876453\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/aOTs7vt2hEc.gif\",\"width\":20,\"height\":20},\"1876454\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yh\\/r\\/wVjfNbGZ3CH.gif\",\"width\":24,\"height\":24},\"1876455\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/oT6wM_vuQNQ.gif\",\"width\":32,\"height\":32},\"1876456\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/r\\/ac61i44rSWK.gif\",\"width\":48,\"height\":48},\"1876458\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/ZH27Vvjc9-u.gif\",\"width\":72,\"height\":72},\"1940508\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y3\\/r\\/ycQ2OPoZwUA.gif\",\"width\":64,\"height\":64},\"1940509\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/8kyIVWHZW-b.gif\",\"width\":64,\"height\":64},\"1940510\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yK\\/r\\/8gPN8wBD9yB.gif\",\"width\":64,\"height\":64},\"1940511\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/WtK_u51t3nM.gif\",\"width\":64,\"height\":64},\"1940512\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yj\\/r\\/JYwEre3ewp7.gif\",\"width\":64,\"height\":64},\"1940513\":{\"sprited\":0,\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/M2HDLLPAUWl.gif\",\"width\":64,\"height\":64},\"166735\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":16,\"h\":16,\"p\":\"0 -200px\",\"sz\":\"auto\"},\"184566\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -100px\",\"sz\":\"auto\"},\"1296473\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -25px\",\"sz\":\"auto\"},\"1346159\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -50px\",\"sz\":\"auto\"},\"1350889\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 0\",\"sz\":\"auto\"},\"1356754\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -75px\",\"sz\":\"auto\"},\"1361369\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -175px\",\"sz\":\"auto\"},\"1362297\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":16,\"h\":16,\"p\":\"0 -217px\",\"sz\":\"auto\"},\"1729923\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -125px\",\"sz\":\"auto\"},\"1795210\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/DM7NvfP0szq.png\",\"w\":24,\"h\":24,\"p\":\"0 -150px\",\"sz\":\"auto\"}},\"qplData\":{\"425\":{\"r\":1},\"426\":{\"r\":1}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"qpyrtMy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/r\\/iWjgLm3q1pYuS51swCRoFxKjo7wuH4tyUCgLMVNa_87hY4mW9AWSDwbkt5ZNqTBDYYCDMa1vyJXChx3OE-zbF510sKgAeHYIRShVtkcaz3UJLQCIK2Sff-gydiSFwJRR0aL3kLkiQ872P4HIf9l82a5I5HJnyNgU8sXz07m2lVw7eP9aGNcp6hty_i61mhfKb6XuDThkNqzJL7r6uGWXsTy1cksqPsx5DFVh4UeFyEAw3H8nD0EYflvVWid0IdRzXksvPgEuFBlApFBaDIqf0JxitoWHDinHwx_gNvpKTSpONS-7vdnexeT8clYB2a8vIGvk_15Lm3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"tmOAXuP\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ii2C4\\/yN\\/l\\/en_US\\/xvU3j0h4k3izoB2OwJTIlrKfQfQfz74xU3YigL2IcjwrDPxSsU9kQctw0Bqm-rmcJX.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,616,444,5,312,242\",\"m\":\"1006847381_main\",\"nc\":1},\"AaClBt7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/Dh3_ZiNNl2lFAF-iZbNu-4AG8suGnLi_4quYEqzdK43o42J6zZkMjkme8Cggdg4F4Q4w4GvxU3-11dtXg5WetJUyX15GtjI7cf_TNDq_fqV_K8NWruXH68HXtT_fAdCctbd2gPwgr_h4GtCyYaQFAfXII5m3JIIKJijPHfcazt6TOOK9I74wA3FisAX9w-k7E0tmDkK5p5RUo_8OcdvWRDHs64txPmygUU0QBmxBQnKOp32M8MotHRo9ONLb9G3HvITCuvwy_KaZtaQSOJgLH_HLJPVBv6dry4KTbkrmk43tOyd2r6sDrFoBUR-ku6945XQOXF1Nep.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"qS64MW1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5s_4\\/yC\\/l\\/en_US\\/x75gkHcI0H8qClHE3ggsTYOgQZKqBcuUWabn8-gRWN5GrfOrQmbHYEfNwbs23K9rcFY_Y9O409faUWeCOs2s5bD3tSLpUIDNQgnUVyILCpHF4l7HH-7sBTDN8YWDsVhU-nV1eOQwobyVrtvrCSAsgw1ETddc6P3uZ_OxQQX_G8INiUAxXTOFe844pcLEFG9URf2UNtSzlToPztkVNCwH1VviYmwcJbgrpQNFWhqMmRKs0GJ-S2F-5djCiZASDsc9dhNbJ4UF1vh6Zb_kR4tBXNa0gJ0GR3vYkjxO5mvIuMvUc43groPfU7DkxXrp675J2Jlp2aAem3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":212,353,632,0,298,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"UVEzwS2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0a.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388\",\"nc\":1},\"m6VVYrH\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yF\\/r\\/w0HcDFoIhg9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":21\",\"m\":\"1006847381_main\",\"nc\":1},\"GltrS7H\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUXn4\\/yu\\/l\\/en_US\\/DitlTwroUi6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23\",\"m\":\"1006847381_main\",\"nc\":1},\"6oh\\/uBh\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ibOQ4\\/ye\\/l\\/en_US\\/HEtIpHgdUd5.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":96\",\"m\":\"1006847381_main\",\"nc\":1},\"+L0X93S\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i8hs4\\/y3\\/l\\/en_US\\/i9nIgo3DWBW.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35450\",\"m\":\"1006847381_longtail\",\"nc\":1},\"MIwFPq4\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yX\\/r\\/CnnssOFlSrF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35447\",\"m\":\"1006847381_longtail\",\"nc\":1},\"kleA10d\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEsn4\\/yw\\/l\\/en_US\\/3YigL2Icjwr.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":5\",\"m\":\"1006847381_main\",\"nc\":1},\"hXjPl2V\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i46r4\\/y7\\/l\\/en_US\\/4DyzuxKfqiESrxCISTcUjcCnnssOFlSrF3NsR67xBXBm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":332,35449,35447,35440\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"iQc1shL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i4X-4\\/yH\\/l\\/en_US\\/m6OBZx8UTDj.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":118\",\"m\":\"1006847381_main\",\"nc\":1},\"hTAZzFI\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/FubvMLCRnWm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":100\",\"m\":\"1006847381_main\",\"nc\":1},\"Sboo2ZQ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yr\\/r\\/ef5d8wbITlx.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23917\",\"m\":\"1006847381_longtail\",\"nc\":1},\"pARoKZ4\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLK1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"OW1kw59\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/80BsmNKe4b8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":168\",\"m\":\"1006847381_main\",\"nc\":1},\"TJ2LIPj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yO\\/r\\/mLT6R-X0Ih2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ht8qD46\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/l\\/0,cross\\/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"nc\":1},\"3vB8LuQ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iBPb4\\/yW\\/l\\/en_US\\/iZQLDmBv2K-.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"A5prXCT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/KKZf8FX1sT4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"mlxztRz\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yU\\/r\\/HUxMHl9Lidg.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"iTm\\/k9J\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yg\\/r\\/2QF11C8Kc69.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"g4lhZxV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/0Q6fw1BN4dxYzZHJxI6mNmPmjybo1DR6m4nxjd8y7k_W5Xf4wooNJ38lStDEfqxUv3AFX6rgZMzFtmh4uWrjcXE9nU5m7BP8gNJ6ZofxF_zUUe_raXjgSDP_rP9kK5HtufSbhE241-ESLFCaASyJevaLbtkg1XYWYzRqD5TLPG-zZFryH-cTofARqjkagHlLO6wQOtGgxcq_gSZU8Bk8d32mrvXp0O9O2TEY7sZCemuu-ROBOjSywdZqsF5fdptkRuMzIdMIJgQ7Zf9KcJtVVUfbyNt52PRCodw5LPKbxSCReU8fm2krPG0HIuGAiHot4v1e_tTw5w.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"yWcJ8lq\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/1KiOU-7XoBtqVIV8ZpYpc0t8xvQZn2oY2Ic61TpIiCyqlni5-xjHWIm-71ZF2Ip2f4QD_uK79OEnYw-nvR8EUPoi6riciajppPHw4IiWnlLoEc9jwoksr6RzcCMaieNnXSbseiDBK-Vie1bK9pK6pn_KiOriQXCJovVG40ZkrZ39Nqw7hGZc8oWykeS-Ov7dBRCn_hq-OzZuxlinwlAOoUgg8dTx-fALeOzhhBcPFO3paBxCRzAAJKQyivZie0HWNuBUizwk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"sP1wABL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/9QAMoOHWPNV.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"l5HqvCB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/YT7n1sgH1lv.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":19\",\"m\":\"1006847381_main\",\"nc\":1},\"lwZReTr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/5Gtc5QsnfLa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":51\",\"m\":\"1006847381_main\",\"nc\":1},\"j5Ia\\/+m\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/KfQfQfz74xU.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":444\",\"m\":\"1006847381_main\",\"nc\":1},\"CxpEI\\/m\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yL\\/r\\/u7ilu_cVD4XIhUAaF02eRYe0zS91sDXbAUZPPOwV690IqKntHarRwTS4BdzqX1XVWV-8kvYIMlYKy1Qp21FpQF0KT0sqSRBHGz_LwT_S9iYXRldbL4y2Tyhf5KK0iB9z7GZkv2R2yk2WsTAw-XY5OcB9lFI53d8xCOiAWxhj_JTPipmx_CUMSZVXVvQcuO9hCXtYO_KWZVlgSqidtwlZlM6JrlPRZypUdyjskvMl6tsXMGY_vAw_2pO2nOuVb9JornMAZyIi0eKDK4Z-Vtq3x-hjtbDP9UPCJktzRkHP9tfMKEkkTAYOlXdG_M7GZzUWAHJFjnT2Iy.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8610,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"TWaSLum\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yq\\/r\\/hYTUgtoFzSn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":310\",\"m\":\"1006847381_main\",\"nc\":1},\"K2Zj+QB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/5sXiUdKSCUh.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"HnCMbju\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yv\\/r\\/RxXHlk7Vd6e.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"9KJrUco\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/MtTqd1FSM56.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"3gEWTNm\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/l\\/0,cross\\/o9GByEG16aT.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"nc\":1},\"GLsKCyO\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iqLF4\\/yv\\/l\\/en_US\\/kGABMab3gWl.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"nF8umvm\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/xapN3qcH79U.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"4SBVdv7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVio4\\/y2\\/l\\/en_US\\/DOun_kaVJlfQg9dZGuEzHE8oPWP2oCnuDAs_1p8rRBeAntC4AWWs1bEjD8xkthZ2_hj0FkT6Lxe2QPqRL8aiIprjcVKTOyyUnMg-XeLMmryu3vCXroHQGc7h7ocSzIxcI0Ha3k2rjCRetwpmn_h9BjGPC6MA4XwPI0UIzaRPXpYPMjuhPao0kBADf2H3yWSoedVKnIdfpIlwrqlNzUn7kVSGoM89YzkCHZTOTSvoqThs5_UY-muBKTHKIGscnSP-LysLb26Ko5xem5Mn6TxRn7iNhySEAs1ul3OTTX7aS__-4usbTK1uT8bMeO-b9qwusp1Co8L-qp.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,82,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"JbVkxQr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJ9m4\\/y9\\/l\\/en_US\\/1mfLQvApMw6BI9JbRBk3CQaorB95xIijnO9lwzzIN0sOhFEdrHpFVbBMv6VJRpCLfrBosryxGCiLxD8PmzG6pxMSQQ0fPVN_6xC5jVtOOpVRXq01iU__yMod6viC322-KoSMj6dzOhQIB3ypjN2mXJTfwKk_MdnVnhLTnFc6v8s0OAeXQcf7YeFIjkYErv_13rWADYdhOFqwQ8ygfaU2kTp6ghOY4rrBYjuiuwKNVaiqiN4gPfxPqh7us8KzchFxWZQ2w6-vkLkiQ872P4HwlzuXtB5cGzB9N6cChuSnaQIcv0fsOtqJqJcW8J7U1RVm4-h-SiH-NX.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"EyeE1V7\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yv\\/r\\/k4xXknqMYN9ezD5BoTR-ersKF30l9L0dNULegSm4VYdAqCB-Bu9eoX0P9OKlRsD9mJaxsDDSHlf0bam6FnGA7Q2QGkfeBudHmLyj3wkQQc7S4_-6JNQukG-1OG8vFgzZXQJf41pJJl_0v-ZKi-Z-OmvcCfe9eqMEh0n6qg9XN4xVt_0NevXKZoF1gM7poP-zYF4v-zgkqDLAhVlb_a9Xulzr3mA62bteQPWp0XCsvkZWeA_IJy76tYDPimIe3JBC2tUpCbDdeTpfON0SZju_SVQW1558z_adgJH4VVTrZi6HhmF9jRambaCg_VU2kRyZR60nQjSvZm.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"vvTbhsc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/iULO6s5_uLBcPMf180fLkhqEeIcLYEJ71iRytcqPIx_-AeRQPT3JtYCCZa8u9t513L98RFlQxjGq4C4n-qlYjxxbCwmBUHfircKM4PPazOh5HLHyuuvW08e0X9Q9mi_4If2Sq0OSEFv-gznCLKMvh0lD4geAZie4b2plnGo-cvXfgfpnxUYzhzRbQy7zvP1GT14JHc4e2oCTvQQGpd2jkC0WizqEspWvkSQzwNYYb8_7BvMiGLLtUV2KiLgORR4qw4RP-FSZyA7m0nmAyNtEwCI3PImQrIuWPzhShqiYNYEJmRq_25L4PO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"n3OReDX\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iumM4\\/yz\\/l\\/en_US\\/xvU3j0h4k3iMmM7kLQoKZH0hhzhyLC_yelsCor4e7MRSFubvMLCRnWm3YigL2IcjwrMtmXybLsMSqz2SHhyL5uF9PyHnyc07dpkLh8fzDnu3jqnZDfldGWMyOCNtzayu2o2socJJgo3RrqHlG54kCgnql96xhqpkGNnhzi9bqJHWK9oJp7uEHHMSyiK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,63,104,214,100,5,30,31,67,76,226,0,466,531,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"jkOHTTH\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/l\\/0,cross\\/WkL85HmibujL8shGqf9VoB6StuX6aUNbr7V-k9aTC8UHqyj1yeqdxHvfsLRpBUPyqi-g_gR8Im4iErBWBbRxhvYsK11Y0sl59zGlq9vwiiMIzjrlN-Nu99zMSCShcD46FIhrkah0thFhGH87R33bZ5kRtEsX2rnD8vFbx6PPmkrxPEXw_2zbBDxCXsI3nvNka5_GSp.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"bu6zhrA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3innW4\\/y0\\/l\\/en_US\\/DusWLsy96BYmhFdKvMAtz5jWrWYjexbiVoGVfiJd4vJgiOzplWNdfnNLRTNQOQnIe8NPYMVcUBqNqzmIh5eCDkGWi-MRFNzUtyi6UvBcxKvN4n0U2-YfCykCzwl6aXkTNmGoF_M9BsJc-I2sXKfp4tHOzWUDYYrKf7dHaRu7d5sf8dQhR5SpR_62N4gJnYMSxbGMa110RPGDF_pNn-h-Cg2YoQq3sTYsPEYcsqKWD7Z2q3uKhV6qjMRd2H4eYofzNT4XnUKFqySN3xK8b6UVzuX6iQ0mYdGV9AfQOki3l3EPUWTWkyJgVHAUxNWcFC27twgiU4u86u.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ev9AzR\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iQAO4\\/yj\\/l\\/en_US\\/unD3qKN_89BV1LxDhhidJTA79BMI_taI_bZHR53cpSW1Js5Fu-H7_5psGSJ8g3hWShgMgyduThzfXNPDJIIZxHGr9gyeinraNPrzYE14JGvqVYxfLlrGI6ueicki17AN05nrJz013qWXllQh40-vCFyk_RdOoX8MXEafMqjj3fQN3GE6jcs9sqSkRdaSP6zLWkdUIWSouIMKh-fH6SwJBFhQL244nV_3kn2JD9atiiq75TQraz0guCe4VSH5TiL_g2Nru2FaE5g3HsN8HkQbKF6sKYu4LzR46LYFYY7wIYndCk-YzFjygkTHs4GchPamnrGOtcF_VJ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"TSKmWI8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iT7_4\\/yv\\/l\\/en_US\\/c94KTcKyykXRbRbYA3HAZDWrt7XTEOP4W3qfkUAAtdc8uwcgQJZH5ymkBa-xiAND6sgOrGV6DgaDHJxJH06tPo1oxEd2wjQF24SmrrREqr2NepDdMUwdZttq7zGqkyUyyhyLMDPxWg7K5_HxINRE6rYcOQ7k8OdRPniU1dmaK_EegC5stlqsNPkgD8JHxc-kBx8KsCZK0FjW0tgRnHZwE5b9PBV813Evx73bw9OrbfclAHS0xaSYkFX96BNdkaZCUcO6MDDTr7DK_WpSZIM-Vh7eHvi9rK7spQHKeb-YVqevbKEyWVhXtVmd0XVqXWF4I2RgFTT69C.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ClW4KJN\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/l\\/0,cross\\/dHH1Qr5OohAShrLnCsHauEtrZAMGIi9pYyrM-Ax8lgZz13paIMTaUWbF0qdt1CKyfo6oMkPQ3oPZ7IsGQsfCTjaTwtvlxq_h7rkCBFbnTZJrRi8Ip29CQfHlzZclFoMK2l4H6q3MMBNjXC05KfHTf0DwPdcEOt42So4RYjTp-fi2XO0mm47yzior9wJmB-pP8I5TygOtE64UdcG9gBeqDiiqrTDQuA6JWQWGJcwu3rUa7y-BxovPctiscFHoaiWfTglXVTARFtPSiFza84Cr-cEckH1OTxIiKIo6GwAAZNZzG7mN50dnLePu6Cmx36klapfA6ImCYQ.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"jJljVye\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iHSO4\\/y-\\/l\\/en_US\\/OloNdVW5J56_-nHq21OpqAWyUucqz6mOjvqJSgOHjgUQJ4_bxxISS0mTNsx83vOeWWIERiLJzv5UbeU2KXUQEOtlY_Y9O409faUJP9VcmNzec3P7E_VOJ_iC-xcnLQPcLzjHWeCOs2s5bD3zdEciDMGH4oKu7ibYGSNuiUXwZ3rFFHFb7mZwNgBAbwHtSLpUIDNQgn-L5TePR4hQpvX_lDhr5MfkdMbaSlm6aiVUVyILCpHF4lCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc3tBB7awrNPa-X1TLdF9BpoFbUftdruRolDgvGMc2MIWGy7HH-7sBTDN8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"SLuMFyC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5Sp4\\/yP\\/l\\/en_US\\/frk5o133HYN9EFMjx6MT8eUEJpVyQqdGvY4mW9AWSDwbkt5ZNqTBDYYu_LZxx_DC_6CDMa1vyJXChJir3bSY_Ex8x3OE-zbF5101alrYtZnwpQa1QcHnOH1EwsKgAeHYIRShhWnrESIE2IAVtkcaz3UJLQJiC7v-Px9Kp_DSORESQquL8XSj4Sp3040n5WuCm_sBp6z_iOr22efHeCIK2Sff-gydiSFwJRR0aL3XrhG8ANfMlkClftP4j3wAA1y_8ZBWCTZi-iSnoOIYgX8jmT3oTs-nTqIf9l82a5I5HeOq33LIfj3JiKAgAeWzP0zJnyNgU8sXz0.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"3q99Ilj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5s04\\/yJ\\/l\\/en_US\\/H1itYEOEoLVYWDsVhU-nV1eOQwobyVrtvrCSAsgw1ETd49aX9NPfIAiaajPm99MQIWxBLV5miH5QGZljJSmHFgwZdc6P3uZ_OxQq-r_V4x6wC8hnvUZBbAIyTLTp3wDEC4ghWUvgyvOsyCpGSI4gJg5SEesWbc8WAAQ5ckTQHv60Pt0zQX_G8INiUAxfTRssVuQNNFxtnCz5M89kp98z1GnlBs6BbtKHy_VESiOry6X4cQysBxVB6mta42QXlXTOFe844pcLEFG9URf2UNtwJoJc-I4o35SzlToPztkVN0WKguSKnK_KXtSPhOYNlLxCwH1VviYmwc.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"uKsbV15\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVLf4\\/ya\\/l\\/en_US\\/DitlTwroUi6zoB2OwJTIlrKfQfQfz74xUw0HcDFoIhg9DPxSsU9kQctw0Bqm-rmcJXx75gkHcI0H8qClHE3ggsTYvB9taUdFJNHOgQZKqBcuUWUICWLNi60WDNOiwu8bOOqbhw35Zi01WAK_3_v6yOAVO3abn8-gRWN5GrfOrQmbHYEfEthKmVitIx3Nwbs23K9rcFhNBES6MjmQnClV5PQ6ftsNY5W9b_Y-dIhO36QDIrOK01reRzP7OJIzEW0Wc7PUxI9dzj3ndxRJdMB.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":23,616,444,21,312,242,212,353,0,632,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"GirQBwl\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0a4ucdnAKp3hMLQEvrhlwNlFbXQBGUo5NgDjjbFSk9M1jf6w0lfCDjvzy1yp4PJV-Vz-bb-hwNGmfWOz6w-B6eMgH8BVo-YN2Xeh0nuCD99GG8yXQ6Jn31fd8BppOH2OrU8IaLfDjwySY1azPspnSw7Jc8DPKIst33dIS_h8DOXkSsgn_e6GK6KezKvs333bgIjXbYEClunE4cb6Hzpj2t0wq6ZgQJvZHU_BvXIWhL4OkfYnoLgttIs6yMTBtm71dkFFl7OfbngcqAbLcFaKb.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"F7Yyqnn\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3issY4\\/yr\\/l\\/en_US\\/asP4i4hSYRMzmg-O2XpObhYZU-eGYZjFI4UeMic4f7MstJC9tfu2dFG8fvT_C6-AK_HDyJ8RHd8VW7m2lVw7eP9aGNcp6hty_i6IU1tHFn46BQEBYhBGlsvGI1mhfKb6XuDT_9nMgdiPYBbAjDcdepN9q9hkNqzJL7r6uG83hsOsGxwW5BnQsPJo23wcV-UB4pz5E7Ck9PuTDtWr3GWXsTy1cksqyPiTi6WcXgCpKAOtJEXSAdOeco_GNmG-KPsx5DFVh4UeFyEAw3H8nD0WoGSsodkStYCPL4Zl90vXwEYflvVWid0IZteQi7ghzx1llwpOgkzBvQ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ECNt4aT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i9EG4\\/y7\\/l\\/en_US\\/dRzXksvPgEuxsgpGO5GUUHFBlApFBaDIqf0JxitoWHDinHwx_gNvpKTSpONS-7vdne0J0FBgPmHtGX7ncRyxILDCdvg2CafnFcbvIGvk_15Lm3xeT8clYB2a8TCHECZC83utQfysIxOmJin5m_ZnJebTW7aJPsGDe_g-DDh3_ZiNNl2lWY6-0XmluV_FAF-iZbNu-4XdNWgSoF8PPH2P4qLbOQGCAG8suGnLi_4DQZ_r4ee6EvquYEqzdK43o8GhgovABDR_4f4G610qAEETqu0qUQsk0b42J6zZkMjkme8Cggdg4F4QSYXWuz6SaCWGX8q6IpYhOk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"RtDBsbo\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/4w4GvxU3-11MSuXfyVwDCIdtXg5WetJUy9OePM1GuhzPX15GtjI7cf_VUpwARe85ptTNDq_fqV_K8b9qQYJk_fUyNWruXH68HXtT_fAdCctbd2yYaQFAfXII5gPwgr_h4GtCCXHTjxHInJhm3JIIKJijPHfcazt6TOOK9I74wA3FisAXolB-fIaIjdx9w-k7E0tmDkK5p5RUo_8OcdvWRDHs64txPmygUU0QBmxBQnKOp32M8MotHRo9ONLb9G3HvITCuvwy_KaZtaQSOJgdry4KTbkrmkLH_HLJPVBv643tOyd2r6sDrFoBUR-ku6945XQOXF1Nep.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"0o3vj9b\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ipTc4\\/yF\\/l\\/en_US\\/JbgrpQNFWhqMmRKs0GJ-S2F-5djCiZASDsc9dhNbJ4UF1vh6Zb_kR4tBXNa0gJ0GR3vYkjxO5mvIu-qkSyagmUcB4Trdh4-6cLc2EQSbzIh07mgZe4xXkmRWLUMixX4vLr0CMvUc43groPfKQMV3_upF5YVr8ZApMHDmEPwPTOt6AR6lTU7HQ9S1sdk6iQrIcWeFYnRvwbqOkULPjJ2Jlp2aAem3U7DkxXrp675yP_KGXKLvAwiWjgLm3q1pYowSkEET64PJuS51swCRoFxJHh55U9dNXhKjo7wuH4tyUCgLMVNa_87hcfsMwE5bAk8TIvzDks0PwI.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4kCFpD3\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iQAO4\\/yA\\/l\\/en_US\\/JBC2tUpCbDd_SVQW1558z_adgJH4VVTrZbaCg_VU2kRyunD3qKN_89BV1LxDhhidJTA79BMI_taI_Js5Fu-H7_5pbZHR53cpSW1sGSJ8g3hWShgMgyduThzfX9gyeinraNPrxfLlrGI6ueicki17AN05nrJz013qWXllQh40-vCFyk_RdOoX8MXEafMqjj3fQN3GE6jcs9sqSkRdaSP6zLWkdUIWSwJBFhQL244SouIMKh-fH6nV_3kn2JD9atiiq75TQraz0guCe4VSH5TE5g3HsN8HkQbKF6sKYu4LzR46LYFYY7wIYndCk-YzFjygkTHs4GchPa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"anb0L73\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yX\\/r\\/mnrGOtcF_VJiULO6s5_uLBcPMf180fLkhiRytcqPIx_-qEeIcLYEJ71CZa8u9t513LAeRQPT3JtYC98RFlQxjGq4C4n-qlYjxxbCwmBUHfircKHyuuvW08e0XM4PPazOh5HL9Q9mi_4If2Sq0OSEFv-gznCLKMvh0lD4gGo-cvXfgfpneAZie4b2plnxUYzhzRbQy7zvP1GT14JHc4e2oCTvQQGpd2jkC0WizqEspWvkSQzwNYYb8_7BvMiGLLtUV2KiLgORyA7m0nmAyNtR4qw4RP-FSZuWPzhShqiYNYEJmRq_25L4PO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"cBaTsIy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ik004\\/y3\\/l\\/en_US\\/xvU3j0h4k3iMmM7kLQoKZH0hhzhyLC_yelsCor4e7MRSFubvMLCRnWm3YigL2IcjwrMtmXybLsMSqPyHnyc07dpk.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":64,63,104,214,100,5,30,67\",\"m\":\"1006847381_main\",\"nc\":1},\"93HC0Re\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3il_X4\\/yj\\/l\\/en_US\\/Lh8fzDnu3jqnZDfldGWMyOCNtzayu2o2socJJgo3RrqHlG54kCgnql96xhqpkGNnhzi9bqJHWK9oJp7uEHHMSyiKDOun_kaVJlfQg9dZGuEzHE8oPWP2oCnuDAs_1p8rRBeAntC4AWWs1bEjD8xkthZ2_hj0FkT6Lxe2QPqRL8aiIprj-XeLMmryu3vCXroHQGc7h7ocSzIxcI0Ha3k2rjCRetwpmn_h9BjGPC6MA4XwPI0UIzaRPXpYPMjuhPao0kBADf2H3yWSoedVKnIdfpIlwrqlNzUn7kVSGoM89YzkCHZTOTSvoqThs5_UY-muBKTHKIGscn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":76,226,0,466,531,0,0,0,0,82,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4g6DzU1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inZh4\\/yq\\/l\\/en_US\\/Rn7iNhySEAs1ul3OTTX7aS__-4usbTK1uT8bMeO-b9qwusp1Co8L-qpDusWLsy96BYmhFdKvMAtz5jWrWYjexbiVoGVfiJd4vJgiOzplWNdfnNLRTNQOQnIe8cO_Iuaw9QlNNPYMVcUBqNqi-MRFNzUtyizmIh5eCDkGWdsg2m3CI52gBteF1f538kE6UvBcxKvN4n0U2-YfCykCzwl6aXkTNmGoF_M9BsJc-I2sXKfp4tHOzW6gjdDn1D2JtRu7d5sf8dQhR5SpR_62N4gJnYMSxbGMa110RPGDF_pNn-h-Cg2YoQq3sTYsPEYcsqKWD7Z2q3uKhV.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"3UNYkPm\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3rT4\\/yX\\/l\\/en_US\\/6qjMRd2H4eYofzNT4XnUKFqySN3xK8b6UVzuX6iQ0mYd3EPUWTWkyJgGV9AfQOki3lVHAUxNWcFC2c94KTcKyykXRbRbYA3HAZDWrt7XTEOP4WU4N9OsG4Sb9vXRYSk9Aw703qfkUAAtdc8uwcgQJZH5ymkBa-xiAND6sgOrGV6DgaDHJxJH06tPo1oxEd2wjQF24SmrrREqr2NepDdMUwdZttq7zGqkyUyyhyLMDPxWg7K5_HxINRE6rYcOQ7k8OdRPniU1dmaK_EegC5stlqsNPkgD8JHxc-kBx8KsCZK0FjW0tgRnHZwE5b9PBV813Evx73bw9O.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"\\/y6k9ah\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3icI14\\/y-\\/l\\/en_US\\/rbfclAHS0xaSYkFX96BNdkaZCUcO6MDDTr7DK_WpSZIM-Vh7eHvi9rK7spQHKeb-YVqevbKEyWVhXtVmd0XVqXWF4I2RgFTT69C1mfLQvApMw6BI9JbRBk3CQaorB95xIijnhFEdrHpFVbBMv6VJRpCLfrBosryxGCiLxD8PmzG6pxMSQQ0fPVN_6xC01iU__yMod6viC322-KoSMj6dzOhQIB3ypjN2mXJTfwKk_MdnVnhLTnFc6v8s0OAeXQcf7YeFIjkYErv_13rWADYaU2kTp6ghOYdhOFqwQ8ygf4rrBYjuiuwKNVaiqiN4gPfxPqh7us8Kzc.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"g+ugZ1+\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJ674\\/yh\\/l\\/en_US\\/hFxWZQ2w6-vkLkiQ872P4HwlzuXtB5cGzB9N6cChuSnaQIcv0fsOtqJqJcW8J7U1RVm4-h-SiH-NXsKF30l9L0dNezD5BoTR-erk4xXknqMYN9ULegSm4VYdAqCB-Bu9eoX0P9OKlRsD9mJaxsDDSHlf0bam6FnGA7Q2QGkfeBudHmLyj3wkQQc7S4_-6JNQukG-1OG8vFgzZXQJf41pJJl_0v-Ze9eqMEh0n6qKi-Z-OmvcCfg9XN4xVt_0NevXKZoF1gM7poP-zYF4v-za9Xulzr3mA6gkqDLAhVlb_2bteQPWp0XCsvkZWeA_IJy76tYDPimIe3.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"PwnKoR\\/\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/l\\/0,cross\\/3nvNka5_GSpShrLnCsHauEtrZAMGIi9pYyrM-Ax8lgZz13paIMTaUWbF0qdt1CKyfo6oMkPQ3oPZ7IsGQsfCTjaTwtvlxq_h7rkCBFbnTZJrRi8Ip29CQfHlzZclFoMK2l4H6q3MMBNjXC05KfHTf0DwPdcEOt42So4RYjTp-fi2XO0mm47yzior9wJmB-pP8I5TygBeqDiiqrTDQ8sL3qkM7i_LuA6JWQWGJcwu3rUa7y-BxovPctiscFHoaiWfTglXVTARFtPSiFza84Cr-cEckH1OTxIiKIo6GwAAZNZzG7mN50dnLePu6Cmx36klapfA6ImCYQ.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"erF32yE\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y0\\/l\\/0,cross\\/WkL85Hmibujw1tmvaTvNaVL8shGqf9VoB6StuX6aUNbr7V-k9aTC8UHqyj1yeqdxHvfsLRpBUPyqi-g_gR8Im4iErBWBbRxhvYslq9vwiiMIzjrlN-Nu99zMSCShcD46FIhr7R33bZ5kRtEsX2rnD8vFbx6PPmkrxPEXw_2zbBDxCXsI.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"WSrXOyK\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iMwe4\\/yV\\/l\\/en_US\\/_3_v6yOAVO3hNBES6MjmQnO36QDIrOK01J4_bxxISS0mxcnLQPcLzjHP7E_VOJ_iC-zdEciDMGH4oKu7ibYGSNui.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"W+rZutK\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/l\\/0,cross\\/4ucdnAKp3hMLQEvrhlwNlFjjbFSk9M1jf6w0lfCDjvzybb-hwNGmfWO6GK6KezKvs31dkFFl7Ofbn.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0\",\"nc\":1},\"mxLmC3V\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iMwe4\\/yV\\/l\\/en_US\\/dMbaSlm6aiVCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc3tBB7awrNPa--h-Cg2YoQq36qjMRd2H4eY49aX9NPfIAiq-r_V4x6wC8GSI4gJg5SEekTQHv60Pt0zfTRssVuQNNFXtSPhOYNlLx2EQSbzIh07mgZe4xXkmRWLRvwbqOkULPjJir3bSY_Ex8_DSORESQquLClftP4j3wAA8fvT_C6-AK_HDyJ8RHd8VWG83hsOsGxwWWoGSsodkStYCPL4Zl90vXw0J0FBgPmHtGQfysIxOmJinTqu0qUQsk0b4f4G610qAEE8GhgovABDR_MSuXfyVwDCI.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"rFlA2V8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/hw35Zi01WAK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"prUu57P\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihAX4\\/yR\\/l\\/en_US\\/NOiwu8bOOqb.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"lNcRReC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yw\\/r\\/zoB2OwJTIlr.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":616\",\"m\":\"1006847381_main\",\"nc\":1},\"b7jAzg\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/IEGo0XaunVa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"EzSlDwr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/aAAWUpeRCq7sdqK9ScNJ6_.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"7ckTzJJ\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y3\\/r\\/vWk1LnCjSBN.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ZYgq4v1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/r\\/SdV_l264IXn.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"6yZSQ\\/\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iiaY4\\/yS\\/l\\/en_US\\/3oMTvZOm6CzvB9taUdFJNH5rcsKFb2dUcwxeq_67EzkWmOWQYuPeRNoOnVg-JBPO-vw0-oSMKT-ov43KRWqzccCzY8AlaskAL5M-XeLMmryu3vqo-yEtCDGHzOU2Mvq8DINuo2M7YWQGNp_HlmysYlsjAliALqzb10Inxmtu_-F9cxrKJui_KhnA27AYe-x7w7LxueVmCpOKBUtN2hIT02Y-mBpWQwgeW-saYk4aQIn21rEA5xFBT-_NWTK-jUTbMa_zxG-6eTUkZcCbTcle8he1N8k1byplWNmUfnm2W_-nHq21OpqASBssTLcWQbEaJfULZAI61w.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"ioLctzh\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yb\\/l\\/0,cross\\/mGFxlc3pNJ30EHA67mR7fcwCNVCqFB1QWWUXjHC9ZAAAPOiODzm28Cv8oGIAxlD6hUGQpZx2zytM7tKB2i2fdk6YX3hWotlKQYxjwCQUqUUu8RLvr5NwEWUUip5zlFlH9R6BX6kH3HeAmCbYZryQxPOERTaAkfljRjBsxht3YDAFqAOnL0JW1rw3316d7CLjUlTGsi1yp4PJV-Vz-9l03yiGTgnsz6w-B6eMgH8X141VhUN7cDxbvjgJVq4ZOzaV2pZvcpp1efGd5AF6o34pt_k7B9iybiHMzfbT27JdqItURO_NV3bV6poBvYQMY7H6f4SsDh2dHB.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"5nrAkeG\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y1\\/r\\/rZ9MNKrH0k0ZbI0G4LrOxIHPZrXg5ReZ0TYMvUwK5Uma9w4uNPsrUnOvaNelY5dvtdhRkyt3Yfi6vH3kdUJxBG-ANsNjilJ0afAGX8q6IpYhOkT_S5rq0HeYBAaIYlwNb87SCSp4KZz6HHeBvhG1lEKGsmutMKrfthU2RuzxCO9Gh_AlpYf9AKx-NgBm80lT15D-NgEwCI3PImQrI6Ve5kNR3wz8AAdI7Av9C-XPMsqpJXSbdkIs-8tKrgqiGou8tKGzJ5QGRsjzfk8IokY57gS-YG1i4nPO881yikXoZPR0jFeq5lk9a3MjIxzn551WjyvDNbsFZF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"9E2DBRy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yh\\/r\\/Cb2nWZgnWUhiSSnW4PMNlga2aWXarw1dkwle1I1TnKiqhFEdrHpFVbBV6zVufZ_jMeD8PmzG6pxMS55WJhMeNItitfLLXDtrZWLwbK0JKhNrz-TJsccjxVQoSMTUMRaLT9ChPzsN3sCvOxdi_TgxwE3eu_nyA3sW0FVCqLw_ycRVvStcrqKLBxQ_P7jlh9C0gA1PfgAkSeS2_DsuX_XZ9LI8WObQnJHlqzMAFRPIfCiJmlQOb8NoXGI0ARLOrxjq2yOHi0LqPZP5f6bVNNj_TEymI8eTCFk_MdnVnhLTnQQs74FyXGL2wIDnWqh7q7dbY6eQTwT9o8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"bcIiNV2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/l\\/0,cross\\/WU_aqaOgOui5KfHTf0DwPdACr3iloYvjsfeXjSpUc1q6EgECl_dlP71xPFQej7MzE1mcseKB8a-340hhj4zAl09LpjJRJLiCLFSQACZqkUJqh4CCYvuhEUQDGwFd3oI30VkZPwC1jt2DpXuium9VFcgQfjbPMIZphGawQWAHIVv_vtpSyq7vRUeyp1rRcLfmUHQOQOXb_Rh5zm5IRu3rUa7y-Bxomj2c4HWgOMDcr7XvB5D2u1iWfTglXVTARqkGEPsa2XVCvZHU_BvXIWhL4OkfYnoLgtquM-GFCOuDf5g4xhyjHepf97SRy71Ra5nXvyz8JVab2y.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"47qoW\\/f\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iAAL4\\/yd\\/l\\/en_US\\/hh_9PD_2PIAQLCNaF3rMKK6PcvwtEuEFW3dCSfDrxXKSRT9vXQCG3ERfOXveanvv3eGkfeBudHmLyoM3GEVUsZlrlbx1rZb6kvfKM3ib0V0VBlEBYhBGlsvGIqEHYGkVPw9ofPc8bIjFzbCeX7e0JdGswjLHJ8cVR3SaIAjDcdepN9q9Wg_eS8zpF-YuXrHmhulGBJMiiicqUENUVRCO_BFV3rQhFvrNQBQqoOG9xgy9EoOk_ZwKi3RvIsuUBOeco_GNmG-KfbxZqR_YeCDNU4ob3x41fFW2GHsNVrxjTrifq1sATFtW9rfLZ4a1-rgzqw_0sErWwF.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"fSczSRB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iHeG4\\/yH\\/l\\/en_US\\/KfQfQfz74xUxX__jyeLapOCNtzayu2o2sVZHSOzZWDG2lG54kCgnql99lCmaWUnN9wI6PsK8-JGR8.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":444,0,0,430,531,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"QvFDbhy\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yf\\/l\\/0,cross\\/BKGi5qNuGRpZtZXZ-vjU2Fn_mCyUwIymEW71i9CghJ8TBdoBXqu66iNbXQBGUo5NgDP_m3v26xQUyzT0JY0EkYmM-uiwjx_I5GN.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0\",\"nc\":1},\"OJGpUeV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yV\\/r\\/iL_g2Nru2FaoTRVzp7JEmeVJ5edDiOCvWBzKo4DBgDODCG3maEf0leqmSGzLcJ980NGQS5FRLrjTcXIh8VYn7YXibKF6sKYu4LzTEnvxG_bp0FKMhOlJBxgs0R46LYFYY7wIw77DAzLEZyZcow0DpskHtufgAy7YUQq0xVmKxdWHsV2fKhlVBP3yIQcG2j1mc5aNButuwda2MZUlBVslaI1GfGvDI69FydhezoYoAmEfuA5esJqEeIcLYEJ71lXvAGdK9AGeN8fmyW97uQKzL1pWaT5ZqS3l6kW76IFF6CZa8u9t513LULrbvJDzdZ598RFlQxjGq4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"XHdXHcA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iutZ4\\/yR\\/l\\/en_US\\/5hFciBnqzukGVs4NlxLnE1oGJlo6SwRvN3zGV9MktIqER6wz1U42U6Hxof12od75DdFfxGNDvdluSGLHTsyDXmPOe0LjwvRezmZAKryZxMMb3345skMfZWE_w13Evx73bw9OzPjG1Q4OhZtUMixX4vLr0CZ87kWc1R4ogA0EncZ9HbSv96JBuh1KNAlcWUMjEhsyoMHtHVeglOyokGki3el6yFZ4eTfuB2T9YHIqaWb25FgcR8wfetfxOaYXpKDZQnrL_GnGiG3toEeXA3CD3zd-SWSqAsw-LsdrzKwPdnbrS27Dg3Ra9O1WQqUGZztVnCriOxPRLv.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"4oDhgvB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3io-b4\\/yE\\/l\\/en_US\\/2kSuPgqcLj2jsnFniTizDcc6BCJBGUFUUQf6bg-_1vNYrUu41wY5f9UjTbGQmh7PiKhw1afqlskiJtyzbWQ2DmSKy14o1rH5DCN2C0O9XxFpNn_nPMlytnTpdb2n842hbZ5UYA1M30ASGSvofzNT4XnUKFMlB4LkoVd2-FIFO6EQz4nrwtkji6HSgWuJqyVRokkiJzWm6VyBgS0IjxBLV5miH5QGZljJSmHFgwZ34TFITGTVyiRbRbYA3HAZDULdaDJjPcassWbc8WAAQ5cf0mexr7Eill-BU3gDEdgJlviisi6SU2mfwGOAh7uL2-tgK9ABVKgK-m.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"8VDQs1D\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ilBt4\\/yc\\/l\\/en_US\\/rFRP9D0lEV-7VAmaO9cOTQu8ySS__7hKCK7Jh58FZUReBJoR1SWhoGn7QAbZJspzaXsgvtqxwROe7kRwdxzyBP6nFEJ9Xw1QByo6Iwhzr-Ldih__-4usbTK1uxQV6kwl_Vd6zo-VBYI9ZBQxpWuCo_-3-ojAX6HsuumcKfjraGf829Lbc-PC3x-g7xxmVcMLBqMAkZpTr-PEva-iPcmlfXu79zZoUXwZ3rFFHFbxfUYnpoxRsmUJZ4YFrkqaQ6pzgfnEEwOjf3oWjgsMQ_MdFslYEmA7ad6c28WZvFQfEMHxHC479r1qkWrX3vRxpKMpJO5QBFP9GG.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"FOzv+Zj\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUlg4\\/yu\\/l\\/en_US\\/Z2Dys35WO4-4rrBYjuiuwKzpnq-QQijAIt0GMpoepjsjESNmWfkdlhdX3Hj8XqpnvuyfqCmEOQUHg995qFyE9unjMmSxogAG9G2t_kMbQYANLQgBjKC2zIq8UfawicO0EWSkk5k7vcPY_jX_Sj7XCWOWbIBEspZ3jSs50tgIVQvgJGyObwWDfEHxzl7v66JGxaSCBCZ8sE_lemx-GqsQyPjex3cSmRVx9isPMmjbIqtPyCYbV0qsoplWNAOctbyejfM4Wdphwqacqqxqp0xwkVOLdB-D4aYNMp923mi9aPUi_WAEhAAQRP0R2BtPqVPsYZS9hE_MnH.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"x7h4g48\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_4T4\\/yD\\/l\\/en_US\\/MIHPzira5YVQlflzjxUnerWuUABZczVW1MXG9zxl56FnI-369-Uw2D5XYyVjYZMZUXRVPsQLjoFZTbaCg_VU2kRypMQE-01i8RlTFo7Qp9Aoo2NzF8iEAzRsCttJHebhcQA8cZh85MJVQ-GHniaZebCimMROkeYOVP4X9nkEwTbWBjvNNJeJoMwk3nBFbUCIYuzM4ozYE14JGvqVYo3wgBGWkB2D6f9K263W1be7nOp3oHKprL2pRqbfKfDOmCfKKmr20mYCIwXM19u3xsSa3tvCKCO3GSYWgqoo90uwagZaiBFi58BE3aXh6X_AutfDQZ_r4ee6Ev.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"1XKrke9\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDUr4\\/yu\\/l\\/en_US\\/j0FkT6Lxe2Q_3_v6yOAVO3PqRL8aiIprj-XeLMmryu3vRrdrv_R-BSthNBES6MjmQnt8_AM4GYgjnO36QDIrOK01hIT02Y-mBpWnktcy9_8-3pJ4_bxxISS0musp1Co8L-qpT3fnUQ2euyAP7E_VOJ_iC-xcnLQPcLzjHzdEciDMGH4oKu7ibYGSNuiGO7SbzSUxM9zmIh5eCDkGWdMbaSlm6aiVMHxHC479r1qCoGNJzfmx3iYi5JNY9yU3vvFMzjv0dkc328CjMNUn1sptBB7awrNPa-3neAr1j-CX8FfGWvgrFROv-h-Cg2YoQq3sTYsPEYcsqK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"q\\/fczbW\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/l\\/0,cross\\/4ucdnAKp3hMLQEvrhlwNlFfsLRpBUPyqibXQBGUo5NgD68k021VWLiijjbFSk9M1jf6w0lfCDjvzyJr4BlFOVEsuUeo4kDtC1XA6oMkPQ3oPZ7bb-hwNGmfWO8Ip29CQfHlzuAiwRpIgDi5HkgVQZQe_Qe6poBvYQMY7Ha0cuTt9boFcuA6JWQWGJcw6GK6KezKvs3SNESTm7huvg1T3BxIhgD6aKk3oHi1d6WR1dkFFl7Ofbn97SRy71Ra5n.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"8a1mZN2\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ie924\\/yb\\/l\\/en_US\\/76tYDPimIe3adgJH4VVTrZoN5LSFO_O9CHniaZebCimMsGSJ8g3hWSh0J0FBgPmHtG_3qqZ8dtvUncki17AN05nrQfysIxOmJinh40-vCFyk_RSSrcazAWeUInV_3kn2JD9aDQZ_r4ee6Ev0guCe4VSH5TTqu0qUQsk0b4f4G610qAEE8GhgovABDR_Oa3H3hPmog7VmKxdWHsV2fD-QGoAU_GVtDm8uuzzDhfiMSuXfyVwDCI7EvUOC2wNVsiIicd8nY7iYR4qw4RP-FSZktT4NUvKINEyYaQFAfXII5uWPzhShqiYNPO881yikXoZPR0jFeq5lk9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"1b2FW87\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i9gg4\\/yX\\/l\\/en_US\\/2BP8URldF_XX_XijVh6J7gxkaGZqMxJ_Dj6dzOhQIB3ymeehKaQzx0exjq2yOHi0LqIzUBMwa0zKXk_MdnVnhLTnJir3bSY_Ex8Qcf7YeFIjkYkylPW2izp0p_DSORESQquL4rrBYjuiuwKxufzWnL2VC38iYbWXdxkO4995qFyE9unjClftP4j3wAAI_1SjCLTDcPlFviBM7q3jOvqHDUCOkroX8fvT_C6-AK_HDyJ8RHd8VWb7u8TcJxMQx-r9FEck8vfmHG08uOtLTqE3tk4U7xNm7AG83hsOsGxwWevXKZoF1gM7WoGSsodkStYCPL4Zl90vXw.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"xSCpRjR\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iNO64\\/yq\\/l\\/en_US\\/6qjMRd2H4eYofzNT4XnUKF1ELiqUJdhXSNCmZLD5ebn149aX9NPfIAiol1Z2n8oFJUq-r_V4x6wC80Qfm48XgOZ6GSI4gJg5SEesWbc8WAAQ5ckTQHv60Pt0zfTRssVuQNNFj8YCyqfU-HTXtSPhOYNlLxNhe_K3WxExezGqkyUyyhyLnph6nqdFcuLFfxGNDvdluSSYkFX96BNdk2EQSbzIh07mgZe4xXkmRWLhtIqHF6L1vcTU7HQ9S1sdkBI9JbRBk3CQqchNfyPUh-Ud_guBvHTot-RvwbqOkULPjqbQlQVGfALEdUKPvF_QvRHnl7pcLVrHxd.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"Xa\\/Vyod\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ibdr4\\/ys\\/l\\/en_US\\/CNtzayu2o2slG54kCgnql9p7uEHHMSyiKNOiwu8bOOqbhw35Zi01WAK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,531,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"l8yvi67\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y6\\/r\\/MqUHzzATDrHj4IM92LiofQ95mUM7nL2d8-jHxNQsWTssDzwhn3opHxAxb12Hdbb0bL.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"AD1bWlA\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/YSjaktEjbop.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"xpajmW8\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iRNb4\\/y9\\/l\\/en_US\\/tnxX-ZxlkrD.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":825\",\"m\":\"1006847381_main\",\"nc\":1},\"McMbPS1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yc\\/r\\/qIRfvgy9sEM.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"ccOBUXC\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/if_goWIebSU.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"O8ghqVf\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/49TCMVpJQ9O.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":854\",\"m\":\"1006847381_main\",\"nc\":1},\"ueGkFVV\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inoj4\\/y4\\/l\\/en_US\\/L9iclwrP2Mz9zxLl_ssB3nxudfWkGfnMS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7251,328,7250\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"8Za3h9N\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDCh4\\/yt\\/l\\/en_US\\/obNSSdwUDIq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":875\",\"m\":\"1006847381_main\",\"nc\":1},\"UrOsroS\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i0Wo4\\/yT\\/l\\/en_US\\/MtmXybLsMSq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":30\",\"m\":\"1006847381_main\",\"nc\":1},\"tsaNjL0\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/VW2QYHgKuAS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":247\",\"m\":\"1006847381_main\",\"nc\":1},\"Na1E3Dy\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5Un4\\/yW\\/l\\/en_US\\/xudfWkGfnMS.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7250\",\"m\":\"1006847381_longtail\",\"nc\":1},\"Is9sUvu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3inf74\\/yg\\/l\\/en_US\\/H6kIOT6P8ak.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":7252\",\"m\":\"1006847381_longtail\",\"nc\":1},\"M0ByNMu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iDp44\\/yj\\/l\\/en_US\\/ta_DJjjl7X0.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":35736\",\"m\":\"1006847381_longtail\",\"nc\":1},\"YoHC+Yu\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3id_K4\\/yW\\/l\\/en_US\\/WGonvpHzAl9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":311\",\"m\":\"1006847381_main\",\"nc\":1},\"mhiCfI5\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y2\\/r\\/Cu2KVQ06AcD.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":39390\",\"m\":\"1006847381_longtail\",\"nc\":1},\"ZpmIcGw\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTHh4\\/yf\\/l\\/en_US\\/XjBRyI0ZSr_.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":834\",\"m\":\"1006847381_main\",\"nc\":1},\"x5opEZT\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihzu4\\/yg\\/l\\/en_US\\/m6OBZx8UTDjVW2QYHgKuASQ1CCJPG1GhL9zxLl_ssB3nl10E0k-UWuh.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":118,247,7695,328,29860\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"8rpQEHL\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ix9W4\\/yF\\/l\\/en_US\\/Gg7kK8EeOPslqsnp5OUNAOqFj_IKtOe_Nspcbd9dqmIIj6dzOhQIB3yxokvK4M2tHxQcf7YeFIjkYYMci2dckUc6HUxMHl9LidgClftP4j3wAAZttID0s5tPrGkfeBudHmLymLT6R-X0Ih2o-xu7unW-Sm76tYDPimIe3adgJH4VVTrZ-5wr-a1CvvypXXqholOWr1MRPod07iws9x7fSXs1NHO14bNiNke4Hc29yIhi7KFRadnV_3kn2JD9aXlhUsbmefqXAGOCEqZsv-0K9G_IgNc4SNA_c7oLSB0vWJ2RkjNC2Z3h1UrXITZqHLKuWPzhShqiYN.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"vddimCz\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/l\\/0,cross\\/KrcDhB2YEYufsLRpBUPyqix_a5WjBkPtGuwB3WLZnSUK6oMkPQ3oPZ78Ip29CQfHlzVosqQik2ptmPnCw1TUcSQ8uA6JWQWGJcwbHSpovBxCGp3EM7S3aMKOc.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"oJPpsv6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iu9-4\\/yJ\\/l\\/en_US\\/zglliOLRnbyrKlzUkAAyG_YOB7whma59nusp1Co8L-qp78wSZ0g2LwezmIh5eCDkGWxP0vdregVEjk2RmkA-sxlmsTYsPEYcsqKofzNT4XnUKFQhy2UO-rlQpGwV2UI9edr-4Tc-cu8XHP4Tm6UHEyfqFfGYWZafl2gcI0NZDxeN71qySYkFX96BNdkZwNoyQKO8H4BI9JbRBk3CQ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"fmKqHO6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yb\\/r\\/VSHsneAFx_p.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"cX+JuEO\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i1CO4\\/yf\\/l\\/en_US\\/p7uEHHMSyiK.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"rMvrLP1\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iijT4\\/y_\\/l\\/en_US\\/siZ2Q7mfsHAn8zGt7h5onZ-yRAdn27OANzKleYcveLTxhFEdrHpFVbBJHh55U9dNXhkyfcWY8oWGk9EFMjx6MT8exMZQV3Pf2rPUEJpVyQqdGvBuPECb_Q_WcT-ToG7CMAUUcbuyUQIVHxGbAdFKB-RZjOu_LZxx_DC_6VFnNot06Ay9UROyvFK0Dnh1alrYtZnwpQhfJSpcpSW7e8XSj4Sp30401y_8ZBWCTZi-iSnoOIYgX8zmg-O2XpObhWAMomf0mD7_Otr1WY8W0osIU1tHFn46BQ_9nMgdiPYBbEBYhBGlsvGIMcTuD-6022zW0KeIyygUHj.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"HHMg2kK\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ijUf4\\/yb\\/l\\/en_US\\/3YigL2IcjwrvB9taUdFJNHgROZDMpVFJgrfOrQmbHYEf5w6xLKqk6qEEthKmVitIx3geEWXcTi5qZ1gRuevHpq6aT0h7vNyvgMxHzlChpadHunBQqNfpW5XTLMpNBFYh14r5OloNdVW5J56_-nHq21OpqAHClMyh6ShpPhTF0SkaSU0ZUIHFSmds5lXeU2KXUQEOtlUXwZ3rFFHFbidK7stmVOWBhQgMDf_CxrF7mZwNgBAbwHzHz47Mrnv15.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":5,0,84,298,0,0,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"OQt4KUI\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iXXr4\\/y4\\/l\\/en_US\\/ZCAwVi2rsBDbSQ1e50Qng9BRy3-v_yeqQW7abA3P1pdDAH0-eA7qtnjgvGMc2MIWGyt1mvKZH71fAxBLV5miH5QGZljJSmHFgwZ2zcNBSoA-iWqSLdMjgonSigE_oHSQ0lw3yxsIAHswcRn4O7X_7M_IGvJ8E8InnuprX3_ehGtJkD9ybtKHy_VESiOwJoJc-I4o350WKguSKnK_KQexMsmxlBo-Im_Zf-0rsxdRg5g2T63Pd6qTSJVpox2B7-qkSyagmUcBSYkFX96BNdkYZMSzy780gRW-bSLguFou8KQMV3_upF5YVr8ZApMHDmERno4aJi9v_Z.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"W3hrXJU\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3igmh4\\/yo\\/l\\/en_US\\/BrvyYVmICUhAjDcdepN9q9JficXhU7UAfzaV-nqkDrQ4gVOILqfvP3IZteQi7ghzx1c2m_T10eGdzHlCMRFaUBduR2_MMvj8_l5hdRCl802ioDIEqSHqzVVTLxsgpGO5GUUH9wF3HY8bHcOW3P8AOj72tVNPDJIIZxHGrTCHECZC83utCc3J4Uu-rudH2P4qLbOQGCN4eREa-u6Hni_PDh_zzFVUhyDf3bgUY96FCfju7iPI9BGX8q6IpYhOkjxpPOBTLvHTOP34w62s8Ozeq2jgOO-DKUyG5pzGzAayHci6BvUc16OaGkbnqkW9br5khHLxhCIYPR.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"xCiTfbB\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yE\\/l\\/0,cross\\/BB68VSfNzsL1yp4PJV-Vz-z6w-B6eMgH80-97Ub6KlkHnuCD99GG8yX9flWAwFBOozspnSw7Jc8DPKIst33dIS_h8DOXkSsgn_e33bgIjXbYEClunE4cb6HzpQjUXQboECnsvZHU_BvXIWhL4OkfYnoLgttIs6yMTBtm7OC3pFaawyHf.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"nc\":1},\"HniVJ+M\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yo\\/r\\/Oqqs0l4JHQ02MWrxszkORH3b_CXzdi38YqP62B1XwsXTTL8dTFR5gDSZmjBW8burtDkPQqHbNhoanTF3hdzBsrj_IWdGczRDltjRHENyavGFlyfWd5h9M8h9uVOJcOP86f-gw46FGNR_AFqSOacWRyVHGkxEvZ5eTdCiPqVFOwA5Htm-qY1k5_CeNlrJFKaOlKKE4KyZC2coUfGe9deFDz0FA2xuUxdC1AEtagAJr2bykU7VlS3ROf5Nks8dmC4Ll0Lto66DJiubrUiDRqh1ioS0shW0C2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"yD7sROd\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/r\\/YTWlWA9jUz9.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"v8Pu5wR\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/9KR3OsAB-i2.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"+VhMrk\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yN\\/r\\/8RwW0k9W8nq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1},\"HfGZtSr\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yB\\/r\\/QdF1FAOj3XM.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0\",\"m\":\"1006847381_main\",\"nc\":1}},\"compMap\":{\"IGWebBloksApp\":{\"r\":[\"RaA31FN\",\"51fcjGV\",\"yxuOpZn\",\"qpyrtMy\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"cOGwS2G\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"e8bJQ8q\",\"CbVciYk\",\"RgUx6NB\",\"tmOAXuP\",\"AsuDyfD\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"WYJHsrI\",\"PJevOFh\",\"rDzHHGL\",\"8aTFOzW\",\"gxHwpBE\",\"DsWfgKJ\",\"lgaAFHU\",\"AaClBt7\",\"qS64MW1\",\"68MbJvY\",\"LGJRwGF\",\"TQAZkKv\",\"Zx0r1CJ\",\"+vXa6Lj\",\"ImCNdhg\",\"G83kG5B\",\"gpD7gKM\",\"GBulvfh\",\"bsXsmKk\",\"oZORzhP\",\"ShQo0xA\",\"UaJ6Fae\",\"bgEvhmj\",\"Nx6u9Jq\",\"Up8o120\",\"nQecA5e\",\"aVqoX25\",\"\\/cMNGhx\",\"DCNucsL\",\"ICkzBzx\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"lA0A1O8\",\"f7Ym7Sv\",\"m4q5gIa\",\"8MwX2jo\",\"SagIiXi\",\"obEmI58\",\"pp\\/2fvu\",\"oEUvNGb\",\"bSZaoMi\",\"UVEzwS2\",\"f0Nl9pe\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometErrorRoot.react\":{\"r\":[\"rDzHHGL\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometKeyCommandWrapperDialog.react\":{\"r\":[\"rDzHHGL\",\"6oh\\/uBh\",\"+L0X93S\",\"RaA31FN\",\"wYUxKHn\",\"MIwFPq4\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"CometModifiedKeyCommandWrapperDialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"6oh\\/uBh\",\"hXjPl2V\",\"iQc1shL\",\"RaA31FN\",\"hTAZzFI\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]}},\"QPLInspector\":{\"r\":[\"Sboo2ZQ\"],\"be\":1},\"ODS\":{\"r\":[\"vLAMZRo\",\"6KCwpsF\"],\"be\":1},\"PolarisErrorRoot.react\":{\"r\":[\"RaA31FN\",\"Zx0r1CJ\",\"8aTFOzW\",\"LGJRwGF\",\"\\/xWlKkI\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"1BRKNYj\",\"f0Nl9pe\",\"PJevOFh\",\"iuENYaU\",\"DsWfgKJ\",\"kWwybab\",\"lgaAFHU\",\"SsSrcC4\",\"8MwX2jo\",\"\\/cMNGhx\",\"Nx6u9Jq\",\"TQAZkKv\",\"gxHwpBE\",\"rDzHHGL\",\"nQecA5e\",\"e8bJQ8q\",\"+vXa6Lj\",\"iE2l7jW\",\"DCNucsL\",\"xivIod5\",\"m4q5gIa\",\"f7Ym7Sv\",\"bsXsmKk\",\"CbVciYk\",\"bSZaoMi\",\"ShQo0xA\",\"lA0A1O8\",\"bgEvhmj\",\"JYW18Ti\",\"GBulvfh\",\"AsuDyfD\",\"oZORzhP\",\"ICkzBzx\",\"oEUvNGb\",\"Up8o120\",\"RgUx6NB\",\"pm3z9kc\",\"68MbJvY\",\"pp\\/2fvu\",\"ms3f9xJ\",\"aVqoX25\",\"gpD7gKM\",\"dioMJ9z\",\"G83kG5B\",\"cOGwS2G\",\"SagIiXi\",\"UaJ6Fae\",\"obEmI58\",\"WYJHsrI\",\"YYCsR5a\",\"vLAMZRo\",\"yxuOpZn\",\"51fcjGV\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"PolarisIncomingCall.react\"],\"r\":[\"m6VVYrH\",\"GltrS7H\",\"pARoKZ4\",\"OW1kw59\",\"TJ2LIPj\",\"ht8qD46\",\"3vB8LuQ\",\"A5prXCT\",\"mlxztRz\",\"iTm\\/k9J\"]},\"be\":1},\"PolarisHttp500UnexpectedErrorPage.react\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"G83kG5B\",\"rDzHHGL\",\"1BRKNYj\",\"ICkzBzx\",\"\\/xWlKkI\",\"wYUxKHn\",\"vLAMZRo\",\"UaJ6Fae\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisBDClientSignalCollectionTrigger\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"g4lhZxV\",\"yWcJ8lq\",\"rDzHHGL\",\"sP1wABL\",\"l5HqvCB\",\"lwZReTr\",\"wYUxKHn\",\"vLAMZRo\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisAsyncBloksIGLineChartV2\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"wYUxKHn\",\"j5Ia\\/+m\",\"CxpEI\\/m\",\"UaJ6Fae\",\"Nx6u9Jq\",\"ms3f9xJ\",\"rDzHHGL\",\"+vXa6Lj\",\"nQecA5e\",\"JYW18Ti\",\"TWaSLum\",\"K2Zj+QB\",\"oZORzhP\",\"YYCsR5a\",\"HnCMbju\",\"oEUvNGb\",\"ShQo0xA\",\"8MwX2jo\",\"dioMJ9z\",\"G83kG5B\",\"vLAMZRo\",\"m4q5gIa\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisHttp404Page.react\":{\"r\":[\"RaA31FN\",\"Zx0r1CJ\",\"8aTFOzW\",\"LGJRwGF\",\"\\/xWlKkI\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"1BRKNYj\",\"f0Nl9pe\",\"PJevOFh\",\"iuENYaU\",\"DsWfgKJ\",\"kWwybab\",\"lgaAFHU\",\"SsSrcC4\",\"8MwX2jo\",\"\\/cMNGhx\",\"Nx6u9Jq\",\"TQAZkKv\",\"gxHwpBE\",\"rDzHHGL\",\"nQecA5e\",\"e8bJQ8q\",\"+vXa6Lj\",\"iE2l7jW\",\"DCNucsL\",\"xivIod5\",\"m4q5gIa\",\"f7Ym7Sv\",\"bsXsmKk\",\"CbVciYk\",\"bSZaoMi\",\"ShQo0xA\",\"lA0A1O8\",\"bgEvhmj\",\"JYW18Ti\",\"GBulvfh\",\"AsuDyfD\",\"oZORzhP\",\"ICkzBzx\",\"oEUvNGb\",\"Up8o120\",\"RgUx6NB\",\"pm3z9kc\",\"68MbJvY\",\"pp\\/2fvu\",\"ms3f9xJ\",\"aVqoX25\",\"gpD7gKM\",\"dioMJ9z\",\"G83kG5B\",\"cOGwS2G\",\"SagIiXi\",\"UaJ6Fae\",\"obEmI58\",\"WYJHsrI\",\"YYCsR5a\",\"vLAMZRo\",\"yxuOpZn\",\"51fcjGV\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"PolarisIncomingCall.react\"],\"r\":[\"m6VVYrH\",\"GltrS7H\",\"pARoKZ4\",\"OW1kw59\",\"TJ2LIPj\",\"ht8qD46\",\"3vB8LuQ\",\"A5prXCT\",\"mlxztRz\",\"iTm\\/k9J\"]},\"be\":1},\"PolarisBugReportModal.react\":{\"r\":[\"RaA31FN\",\"6KCwpsF\",\"wYUxKHn\",\"1BRKNYj\",\"ms3f9xJ\",\"PJevOFh\",\"DsWfgKJ\",\"oZORzhP\",\"LGJRwGF\",\"TQAZkKv\",\"rDzHHGL\",\"Zx0r1CJ\",\"gpD7gKM\",\"Up8o120\",\"iuENYaU\",\"xivIod5\",\"nQecA5e\",\"dioMJ9z\",\"9KJrUco\",\"gxHwpBE\",\"pp\\/2fvu\",\"aVqoX25\",\"lgaAFHU\",\"f7Ym7Sv\",\"yxuOpZn\",\"ShQo0xA\",\"\\/xWlKkI\",\"\\/cMNGhx\",\"SsSrcC4\",\"+vXa6Lj\",\"bSZaoMi\",\"DCNucsL\",\"RgUx6NB\",\"3gEWTNm\",\"obEmI58\",\"YYCsR5a\",\"ICkzBzx\",\"GLsKCyO\",\"UaJ6Fae\",\"nF8umvm\",\"vLAMZRo\",\"GBulvfh\",\"bgEvhmj\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisDesktopStoriesPage.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"4SBVdv7\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"JbVkxQr\",\"ImCNdhg\",\"EyeE1V7\",\"G83kG5B\",\"vvTbhsc\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"UaJ6Fae\",\"lgaAFHU\",\"n3OReDX\",\"DCNucsL\",\"aVqoX25\",\"GBulvfh\",\"bsXsmKk\",\"RgUx6NB\",\"jkOHTTH\",\"+vXa6Lj\",\"m4q5gIa\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"TQAZkKv\",\"gpD7gKM\",\"rDzHHGL\",\"Zx0r1CJ\",\"e8bJQ8q\",\"CbVciYk\",\"yxuOpZn\",\"Up8o120\",\"iE2l7jW\",\"f7Ym7Sv\",\"pm3z9kc\",\"SagIiXi\",\"51fcjGV\",\"bu6zhrA\",\"1BRKNYj\",\"ev9AzR\\/\",\"pp\\/2fvu\",\"iuENYaU\",\"bSZaoMi\",\"lA0A1O8\",\"TSKmWI8\",\"ShQo0xA\",\"obEmI58\",\"AsuDyfD\",\"ICkzBzx\",\"Nx6u9Jq\",\"68MbJvY\",\"oEUvNGb\",\"gxHwpBE\",\"bgEvhmj\",\"ms3f9xJ\",\"dioMJ9z\",\"WYJHsrI\",\"cOGwS2G\",\"f0Nl9pe\",\"ClW4KJN\",\"vLAMZRo\",\"8MwX2jo\",\"e577y0g\",\"e37RKYh\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"VideoPlayerSpinner.react\",\"VideoPlayerCaptionsArea.react\",\"CometTooltipDeferredImpl.react\",\"oz-player\"]},\"rds\":{\"m\":[\"PolarisODS\",\"PolarisStoryModals.react\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"VideoPlayerWithLiveVideoInterruptedOverlay.react\"],\"r\":[\"jJljVye\",\"SLuMFyC\",\"3q99Ilj\",\"uKsbV15\",\"GirQBwl\",\"F7Yyqnn\",\"ECNt4aT\",\"RtDBsbo\",\"0o3vj9b\"]},\"be\":1},\"PolarisMobileStoriesPage.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"YYCsR5a\",\"kWwybab\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"4kCFpD3\",\"G83kG5B\",\"anb0L73\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"cBaTsIy\",\"DCNucsL\",\"aVqoX25\",\"GBulvfh\",\"bsXsmKk\",\"RgUx6NB\",\"+vXa6Lj\",\"m4q5gIa\",\"nQecA5e\",\"LGJRwGF\",\"TQAZkKv\",\"gpD7gKM\",\"rDzHHGL\",\"e8bJQ8q\",\"Up8o120\",\"iE2l7jW\",\"f7Ym7Sv\",\"93HC0Re\",\"pm3z9kc\",\"SagIiXi\",\"51fcjGV\",\"4g6DzU1\",\"1BRKNYj\",\"UaJ6Fae\",\"iuENYaU\",\"lgaAFHU\",\"bSZaoMi\",\"3UNYkPm\",\"CbVciYk\",\"pp\\/2fvu\",\"obEmI58\",\"ShQo0xA\",\"AsuDyfD\",\"ICkzBzx\",\"lA0A1O8\",\"Nx6u9Jq\",\"68MbJvY\",\"oEUvNGb\",\"\\/y6k9ah\",\"g+ugZ1+\",\"PwnKoR\\/\",\"ms3f9xJ\",\"dioMJ9z\",\"yxuOpZn\",\"erF32yE\",\"cOGwS2G\",\"oZORzhP\",\"gxHwpBE\",\"f0Nl9pe\",\"WYJHsrI\",\"Zx0r1CJ\",\"vLAMZRo\",\"bgEvhmj\",\"8MwX2jo\",\"e577y0g\",\"e37RKYh\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"VideoPlayerSpinner.react\",\"VideoPlayerCaptionsArea.react\",\"CometTooltipDeferredImpl.react\",\"oz-player\"]},\"rds\":{\"m\":[\"PolarisODS\",\"PolarisStoryModals.react\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"VideoPlayerWithLiveVideoInterruptedOverlay.react\"],\"r\":[\"jJljVye\",\"SLuMFyC\",\"3q99Ilj\",\"uKsbV15\",\"GirQBwl\",\"F7Yyqnn\",\"ECNt4aT\",\"RtDBsbo\",\"0o3vj9b\"]},\"be\":1},\"PolarisFRXReportModal.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"bsXsmKk\",\"WSrXOyK\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"DsWfgKJ\",\"YYCsR5a\",\"cOGwS2G\",\"ms3f9xJ\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"W+rZutK\",\"mxLmC3V\",\"pm3z9kc\",\"PJevOFh\",\"8aTFOzW\",\"e8bJQ8q\",\"rFlA2V8\",\"TQAZkKv\",\"DCNucsL\",\"aVqoX25\",\"WYJHsrI\",\"RgUx6NB\",\"m4q5gIa\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"gpD7gKM\",\"rDzHHGL\",\"Zx0r1CJ\",\"SagIiXi\",\"CbVciYk\",\"iE2l7jW\",\"+vXa6Lj\",\"51fcjGV\",\"gxHwpBE\",\"UaJ6Fae\",\"pp\\/2fvu\",\"G83kG5B\",\"iuENYaU\",\"oEUvNGb\",\"lgaAFHU\",\"bSZaoMi\",\"prUu57P\",\"1BRKNYj\",\"AsuDyfD\",\"lA0A1O8\",\"yxuOpZn\",\"Nx6u9Jq\",\"68MbJvY\",\"kWwybab\",\"GBulvfh\",\"f7Ym7Sv\",\"ICkzBzx\",\"ShQo0xA\",\"dioMJ9z\",\"ImCNdhg\",\"f0Nl9pe\",\"Up8o120\",\"obEmI58\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"CometTooltip.react\":{\"r\":[\"rDzHHGL\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"CometSuspenseFalcoEvent\",\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"liveQueryFetchWithWWWInitial\":{\"r\":[\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\",\"rDzHHGL\"]},\"be\":1},\"PolarisPrivacyFlowLauncher.react\":{\"r\":[\"6KCwpsF\",\"wYUxKHn\",\"lNcRReC\",\"rDzHHGL\",\"xivIod5\",\"b7jAzg\\/\",\"pp\\/2fvu\",\"EzSlDwr\",\"\\/cMNGhx\",\"UaJ6Fae\",\"vLAMZRo\",\"7ckTzJJ\",\"RaA31FN\",\"JYW18Ti\",\"\\/xWlKkI\",\"kWwybab\",\"e8bJQ8q\",\"ms3f9xJ\",\"PJevOFh\",\"Nx6u9Jq\",\"TQAZkKv\",\"DCNucsL\",\"nQecA5e\",\"f7Ym7Sv\",\"SagIiXi\",\"+vXa6Lj\",\"AsuDyfD\",\"lA0A1O8\",\"lgaAFHU\",\"oZORzhP\",\"YYCsR5a\",\"ZYgq4v1\",\"aVqoX25\",\"yxuOpZn\",\"68MbJvY\",\"51fcjGV\",\"oEUvNGb\",\"obEmI58\",\"ShQo0xA\",\"bSZaoMi\",\"ICkzBzx\",\"dioMJ9z\",\"G83kG5B\",\"m4q5gIa\",\"WYJHsrI\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisCreationModal.react\":{\"r\":[\"RaA31FN\",\"6yZSQ\\/\\/\",\"ioLctzh\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"5nrAkeG\",\"9E2DBRy\",\"DsWfgKJ\",\"YYCsR5a\",\"bcIiNV2\",\"ms3f9xJ\",\"6KCwpsF\",\"47qoW\\/f\",\"wYUxKHn\",\"ImCNdhg\",\"fSczSRB\",\"QvFDbhy\",\"OJGpUeV\",\"RgUx6NB\",\"XHdXHcA\",\"4oDhgvB\",\"8VDQs1D\",\"pm3z9kc\",\"1BRKNYj\",\"WYJHsrI\",\"FOzv+Zj\",\"PJevOFh\",\"8aTFOzW\",\"iE2l7jW\",\"UaJ6Fae\",\"xivIod5\",\"lgaAFHU\",\"TQAZkKv\",\"x7h4g48\",\"Zx0r1CJ\",\"oZORzhP\",\"nQecA5e\",\"LGJRwGF\",\"rDzHHGL\",\"gpD7gKM\",\"\\/cMNGhx\",\"e8bJQ8q\",\"SagIiXi\",\"DCNucsL\",\"ICkzBzx\",\"CbVciYk\",\"Up8o120\",\"iuENYaU\",\"m4q5gIa\",\"dioMJ9z\",\"+vXa6Lj\",\"bsXsmKk\",\"G83kG5B\",\"gxHwpBE\",\"pp\\/2fvu\",\"bSZaoMi\",\"ShQo0xA\",\"obEmI58\",\"lA0A1O8\",\"GBulvfh\",\"AsuDyfD\",\"yxuOpZn\",\"68MbJvY\",\"aVqoX25\",\"kWwybab\",\"f7Ym7Sv\",\"cOGwS2G\",\"oEUvNGb\",\"bgEvhmj\",\"51fcjGV\",\"Nx6u9Jq\",\"f0Nl9pe\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisLiveCreationModal.react\":{\"r\":[\"RaA31FN\",\"1XKrke9\",\"\\/cMNGhx\",\"bsXsmKk\",\"ms3f9xJ\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"DsWfgKJ\",\"YYCsR5a\",\"cOGwS2G\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"TQAZkKv\",\"q\\/fczbW\",\"e8bJQ8q\",\"8a1mZN2\",\"1b2FW87\",\"pm3z9kc\",\"PJevOFh\",\"8aTFOzW\",\"xSCpRjR\",\"obEmI58\",\"68MbJvY\",\"Xa\\/Vyod\",\"UaJ6Fae\",\"ImCNdhg\",\"yxuOpZn\",\"DCNucsL\",\"aVqoX25\",\"gpD7gKM\",\"rDzHHGL\",\"WYJHsrI\",\"RgUx6NB\",\"oZORzhP\",\"CbVciYk\",\"m4q5gIa\",\"nQecA5e\",\"LGJRwGF\",\"Zx0r1CJ\",\"SagIiXi\",\"ICkzBzx\",\"iE2l7jW\",\"dioMJ9z\",\"+vXa6Lj\",\"8MwX2jo\",\"G83kG5B\",\"51fcjGV\",\"gxHwpBE\",\"1BRKNYj\",\"iuENYaU\",\"kWwybab\",\"pp\\/2fvu\",\"lgaAFHU\",\"oEUvNGb\",\"bSZaoMi\",\"GBulvfh\",\"AsuDyfD\",\"lA0A1O8\",\"f7Ym7Sv\",\"Nx6u9Jq\",\"ShQo0xA\",\"bgEvhmj\",\"f0Nl9pe\",\"Up8o120\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisSwitchAccountsModal.react\":{\"r\":[\"RaA31FN\",\"TQAZkKv\",\"l8yvi67\",\"SsSrcC4\",\"JYW18Ti\",\"6KCwpsF\",\"Zx0r1CJ\",\"\\/xWlKkI\",\"YYCsR5a\",\"xivIod5\",\"wYUxKHn\",\"obEmI58\",\"WYJHsrI\",\"cOGwS2G\",\"AsuDyfD\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"lgaAFHU\",\"LGJRwGF\",\"68MbJvY\",\"Nx6u9Jq\",\"G83kG5B\",\"CbVciYk\",\"GBulvfh\",\"ImCNdhg\",\"m4q5gIa\",\"gpD7gKM\",\"rDzHHGL\",\"gxHwpBE\",\"bsXsmKk\",\"RgUx6NB\",\"oZORzhP\",\"f7Ym7Sv\",\"51fcjGV\",\"bgEvhmj\",\"Up8o120\",\"lA0A1O8\",\"ShQo0xA\",\"nQecA5e\",\"kWwybab\",\"\\/cMNGhx\",\"e8bJQ8q\",\"DCNucsL\",\"yxuOpZn\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"8MwX2jo\",\"SagIiXi\",\"UaJ6Fae\",\"pp\\/2fvu\",\"f0Nl9pe\",\"bSZaoMi\",\"AD1bWlA\",\"oEUvNGb\",\"+vXa6Lj\",\"aVqoX25\",\"ICkzBzx\",\"xpajmW8\",\"McMbPS1\",\"ccOBUXC\",\"vLAMZRo\"],\"rdfds\":{\"m\":[\"CometExceptionDialog.react\",\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"SwitcherButtonTappedFalcoEvent\",\"ContextualConfig\",\"PolarisODS\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"CometToast.react\",\"CometRelayEF\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"O8ghqVf\",\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"SecuredActionChallengePasswordDialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"PJevOFh\",\"ueGkFVV\",\"8Za3h9N\",\"UrOsroS\",\"wYUxKHn\",\"RaA31FN\",\"vLAMZRo\",\"6KCwpsF\",\"tsaNjL0\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\",\"CometExceptionDialog.react\"]},\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"FBBrowserPasswordEncryption\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"CometToast.react\",\"CometRelayEF\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"SecuredActionChallengeSSODialog.react\":{\"r\":[\"kleA10d\",\"rDzHHGL\",\"PJevOFh\",\"Na1E3Dy\",\"wYUxKHn\",\"RaA31FN\",\"Is9sUvu\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\",\"CometExceptionDialog.react\"]},\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"SkywalkerUtils\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\",\"CometToast.react\",\"CometRelayEF\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\"],\"r\":[\"GltrS7H\",\"m6VVYrH\"]},\"be\":1},\"WorkSSOReauthDialog.react\":{\"r\":[\"M0ByNMu\",\"rDzHHGL\",\"YoHC+Yu\",\"mhiCfI5\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"KeyBindDialog.react\":{\"r\":[\"kleA10d\",\"ZpmIcGw\",\"rDzHHGL\",\"x5opEZT\",\"GltrS7H\",\"UrOsroS\",\"RaA31FN\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rdfds\":{\"m\":[\"CometTooltipDeferredImpl.react\"]},\"rds\":{\"m\":[\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"PolarisDirectInboxPopover\":{\"r\":[\"RaA31FN\",\"SsSrcC4\",\"JYW18Ti\",\"\\/xWlKkI\",\"8rpQEHL\",\"YYCsR5a\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"TQAZkKv\",\"e8bJQ8q\",\"ImCNdhg\",\"vddimCz\",\"ms3f9xJ\",\"pm3z9kc\",\"1BRKNYj\",\"PJevOFh\",\"8aTFOzW\",\"DsWfgKJ\",\"obEmI58\",\"68MbJvY\",\"UaJ6Fae\",\"yxuOpZn\",\"gpD7gKM\",\"rDzHHGL\",\"WYJHsrI\",\"bsXsmKk\",\"RgUx6NB\",\"oZORzhP\",\"oJPpsv6\",\"CbVciYk\",\"nQecA5e\",\"LGJRwGF\",\"Nx6u9Jq\",\"Zx0r1CJ\",\"\\/cMNGhx\",\"m4q5gIa\",\"DCNucsL\",\"ICkzBzx\",\"Up8o120\",\"iE2l7jW\",\"iuENYaU\",\"dioMJ9z\",\"GBulvfh\",\"8MwX2jo\",\"G83kG5B\",\"SagIiXi\",\"51fcjGV\",\"gxHwpBE\",\"pp\\/2fvu\",\"lgaAFHU\",\"bSZaoMi\",\"lA0A1O8\",\"cOGwS2G\",\"AsuDyfD\",\"f7Ym7Sv\",\"aVqoX25\",\"ShQo0xA\",\"bgEvhmj\",\"+vXa6Lj\",\"fmKqHO6\",\"f0Nl9pe\",\"cX+JuEO\",\"kWwybab\",\"vLAMZRo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisActivityFeedBox.react\":{\"r\":[\"RaA31FN\",\"\\/cMNGhx\",\"51fcjGV\",\"rMvrLP1\",\"SsSrcC4\",\"JYW18Ti\",\"HHMg2kK\",\"\\/xWlKkI\",\"YYCsR5a\",\"cOGwS2G\",\"xivIod5\",\"6KCwpsF\",\"wYUxKHn\",\"ImCNdhg\",\"OQt4KUI\",\"AsuDyfD\",\"pm3z9kc\",\"PJevOFh\",\"rDzHHGL\",\"8aTFOzW\",\"DsWfgKJ\",\"nQecA5e\",\"lgaAFHU\",\"TQAZkKv\",\"DCNucsL\",\"bsXsmKk\",\"RgUx6NB\",\"f0Nl9pe\",\"m4q5gIa\",\"oZORzhP\",\"LGJRwGF\",\"gpD7gKM\",\"W3hrXJU\",\"Zx0r1CJ\",\"e8bJQ8q\",\"aVqoX25\",\"CbVciYk\",\"yxuOpZn\",\"iE2l7jW\",\"lA0A1O8\",\"kWwybab\",\"G83kG5B\",\"gxHwpBE\",\"1BRKNYj\",\"obEmI58\",\"UaJ6Fae\",\"pp\\/2fvu\",\"+vXa6Lj\",\"iuENYaU\",\"oEUvNGb\",\"bSZaoMi\",\"68MbJvY\",\"GBulvfh\",\"xCiTfbB\",\"SagIiXi\",\"Nx6u9Jq\",\"ms3f9xJ\",\"f7Ym7Sv\",\"ICkzBzx\",\"WYJHsrI\",\"ShQo0xA\",\"bgEvhmj\",\"dioMJ9z\",\"Up8o120\",\"vLAMZRo\",\"8MwX2jo\"],\"rds\":{\"m\":[\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\",\"GltrS7H\"]},\"be\":1},\"PolarisDirectMQTT\":{\"r\":[\"RaA31FN\",\"HniVJ+M\",\"6KCwpsF\",\"wYUxKHn\",\"pm3z9kc\",\"yD7sROd\",\"rDzHHGL\",\"JYW18Ti\",\"xivIod5\",\"pp\\/2fvu\",\"v8Pu5wR\",\"\\/cMNGhx\",\"+VhMrk\\/\",\"HfGZtSr\",\"bSZaoMi\",\"TQAZkKv\",\"UaJ6Fae\",\"e8bJQ8q\",\"vLAMZRo\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]},\"be\":1}},\"rsrcTags\":[\"u_0_0_71\",\"u_0_1_xu\"]})});\nrequireLazy([\"CometResourceScheduler\"],function(c){c.registerHighPriHashes([\"e37RKYh\",\"e577y0g\"])});\nrequireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierTwoBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierTwoInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"cr:964538\",[],{\"__rc\":[null,\"Aa2gqQOkzOxuTer6VI6XoWaHIj9NYiKHyNyPXKfYw4RzIlcYGpy1r-sWpaeIUzzbTiNvXMldX2KUNeOgXg\"]},-1]],\"require\":[[\"CometTooltipDeferredImpl.react\"],[\"maybeRemoveElement\"],[\"GlobalVideoPortsImpl.react\"],[\"CometExceptionDialog.react\"],[\"CometCalloutImpl.react\"],[\"emptyFunction\",\"thatReturns\",[\"RequireDeferredReference\"],[[{\"__dr\":\"CometTooltipDeferredImpl.react\"},{\"__dr\":\"maybeRemoveElement\"},{\"__dr\":\"GlobalVideoPortsImpl.react\"},{\"__dr\":\"CometExceptionDialog.react\"},{\"__dr\":\"CometCalloutImpl.react\"}]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"CometTooltipDeferredImpl.react\",\"maybeRemoveElement\",\"GlobalVideoPortsImpl.react\",\"CometExceptionDialog.react\",\"CometCalloutImpl.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"CometTooltipDeferredImpl.react\",\"maybeRemoveElement\",\"GlobalVideoPortsImpl.react\",\"CometExceptionDialog.react\",\"CometCalloutImpl.react\"],\"css\"]]]});});});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierTwoEnd\");</script>\n<script type=\"application/json\" data-content-len=\"83\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierTwoEnd\"]]]}</script>\n\n<script>qpl_inl(\"7191084768081846440\",\"tierThree\");</script>\n<script type=\"application/json\" data-content-len=\"82\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierThree\"]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"tierThree\",327);</script>\n<script type=\"application/json\" data-content-len=\"93\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"tierThree\",327]]]}</script>\n<link rel=\"preload\" href=\"https://static.cdninstagram.com/rsrc.php/v3/ya/l/0,cross/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\" as=\"style\" />\n<script>requireLazy([\"HasteSupportData\"],function(m){m.handle({\"bxData\":{\"6022\":{\"uri\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/yZ\\/r\\/WuT1LYDBD4A.m4a\"}},\"clpData\":{\"1949898\":{\"r\":1,\"s\":1},\"1743887\":{\"r\":1,\"s\":1},\"1828945\":{\"r\":100,\"s\":1},\"1848815\":{\"r\":10000,\"s\":1},\"819\":{\"r\":1,\"s\":1},\"1744057\":{\"r\":500,\"s\":1},\"1744058\":{\"r\":5000,\"s\":1},\"1744059\":{\"r\":10000,\"s\":1},\"1744060\":{\"r\":1000,\"s\":1},\"1857112\":{\"r\":1,\"s\":1},\"1828905\":{\"r\":1,\"s\":1},\"1871697\":{\"r\":1,\"s\":1},\"1764786\":{\"r\":1,\"s\":1},\"1823926\":{\"r\":1,\"s\":1},\"1755537\":{\"r\":1,\"s\":1},\"1873550\":{\"r\":10000,\"s\":1},\"1743095\":{\"r\":1,\"s\":1}},\"gkxData\":{\"307\":{\"result\":true,\"hash\":\"AT5dPMZBMiNY0f7uLC4\"},\"762\":{\"result\":false,\"hash\":\"AT7XePNdehhQhxt4pQY\"},\"2795\":{\"result\":false,\"hash\":\"AT5ilL0A5sDVhuaBELo\"},\"2810\":{\"result\":false,\"hash\":\"AT7dAsBSsZL01JO_QJo\"},\"5639\":{\"result\":true,\"hash\":\"AT5SF61ZadJ9LozlPn8\"},\"778292\":{\"result\":false,\"hash\":\"AT574OhXHwX0kRP2qlA\"},\"832242\":{\"result\":false,\"hash\":\"AT7QZmREZ7b0HQdOF18\"},\"945829\":{\"result\":true,\"hash\":\"AT6KFs8jy_GkmgnU0Aw\"},\"968609\":{\"result\":true,\"hash\":\"AT7nKteWCVYK6uN6DUI\"},\"1001007\":{\"result\":false,\"hash\":\"AT54HpnriRBxXJ_M4lU\"},\"1066746\":{\"result\":false,\"hash\":\"AT55_E5b8Sj7u5rUCzA\"},\"1166607\":{\"result\":false,\"hash\":\"AT7xrOkGBcaF8I5uKoY\"},\"1196\":{\"result\":false,\"hash\":\"AT7JN3eRi_TkojttTEU\"},\"6258\":{\"result\":false,\"hash\":\"AT5ZFurVOaTLk7IyvfU\"},\"1341692\":{\"result\":false,\"hash\":\"AT6ztF4pPshu3yZQCUc\"},\"1334580\":{\"result\":false,\"hash\":\"AT6P8Id36DnRE-rxbYM\"},\"5269\":{\"result\":false,\"hash\":\"AT7dQXDqO_qPX5n-kFk\"},\"574\":{\"result\":false,\"hash\":\"AT5l2P5ytV2bv8xHNxQ\"},\"871\":{\"result\":true,\"hash\":\"AT4vyfQGHTBrTQa9woI\"},\"1626\":{\"result\":false,\"hash\":\"AT6XwrJGGF9CvtwsosI\"},\"1799\":{\"result\":false,\"hash\":\"AT6Id9SGNjhz9Osh00M\"},\"2674\":{\"result\":false,\"hash\":\"AT6LknPzbQEjKsuxQNE\"},\"2819\":{\"result\":false,\"hash\":\"AT77OwnXENquugNcSNY\"},\"1652843\":{\"result\":false,\"hash\":\"AT6uh9NWRY4QEQoY_Jg\"},\"1352\":{\"result\":true,\"hash\":\"AT5QIimySNH929zXv4c\"}},\"ixData\":{\"485124\":{\"sprited\":2,\"spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"_spi\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yd\\/r\\/nJm_yMSl3FW.png\",\"w\":24,\"h\":24,\"p\":\"-100px -99px\",\"sz\":\"auto\"}},\"qexData\":{\"37\":{\"r\":null},\"130\":{\"r\":null},\"131\":{\"r\":null},\"656\":{\"r\":null},\"657\":{\"r\":null},\"660\":{\"r\":null},\"19\":{\"r\":null},\"245\":{\"r\":null},\"296\":{\"r\":null},\"379\":{\"r\":null},\"478\":{\"r\":null},\"1742\":{\"r\":null},\"633\":{\"r\":null}},\"justknobxData\":{\"317\":{\"r\":16}}})});requireLazy([\"Bootloader\"],function(m){m.handlePayload({\"consistency\":{\"rev\":1006847381},\"rsrcMap\":{\"gNzyyn\\/\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEwU4\\/y-\\/l\\/en_US\\/KKZf8FX1sT4ozwG_xmxgK87lOXZygpG8_2QF11C8Kc69HUxMHl9LidgmLT6R-X0Ih2WchIFc77ydpiZQLDmBv2K-_nOseCHUKy2h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLKhsU-pEZX1mw1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\",\"m\":\"1006847381_main\",\"nc\":1},\"lOLXvja\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/z3tBjWqvW0-.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":39365\",\"m\":\"1006847381_longtail\",\"nc\":1},\"PxF2nsc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/Dy8CTDeaF7j.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":546\",\"m\":\"1006847381_main\",\"nc\":1},\"e5d6Ztw\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/qClHE3ggsTY.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":353\",\"m\":\"1006847381_main\",\"nc\":1},\"kfpwlze\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/PE87llWkhUd.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":714\",\"m\":\"1006847381_main\",\"nc\":1},\"pPp+jIc\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yC\\/r\\/Qg9dZGuEzHE.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":82\",\"m\":\"1006847381_main\",\"nc\":1},\"SkFr2Ae\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iVNy4\\/yM\\/l\\/en_US\\/5PVc6Qpbasq.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":58\",\"m\":\"1006847381_main\",\"nc\":1},\"W5crAoY\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTQy4\\/yT\\/l\\/en_US\\/X7C_iLj0yRa.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":710\",\"m\":\"1006847381_main\",\"nc\":1},\"eivexpP\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yi\\/l\\/0,cross\\/D3LZcWILYupRP1ehFw2w0aW9AeuaFOnx_.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":530,388,743\",\"nc\":1},\"TETat5y\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iPvu4\\/yw\\/l\\/en_US\\/w3u7PbaKnVZ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":177\",\"m\":\"1006847381_main\",\"nc\":1},\"kho7\\/jW\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iK1C4\\/ye\\/l\\/en_US\\/w3u7PbaKnVZYhiQUqTmFFHKWg4P5lmhwJqClHE3ggsTYDy8CTDeaF7j_mTNodGA1yKQg9dZGuEzHEg1UC9KyubLfPE87llWkhUdbSqxIEuBnPF2KtBqbM9U8F14xtbHg3WbC6P9n2F2AKCIJJdX6BV3dPz8c0H7ihoY7nxRdJbjnMUA7AD0vIwbJotB.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":177,42,126,353,546,770,82,109,714,24571,30537,25361,24726,24915,24783,24582,24725\",\"m\":\"1006847381_main,1006847381_longtail\",\"nc\":1},\"pz9YUL2\":{\"type\":\"css\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/l\\/0,cross\\/eShCSGw11YpGm7TiUB88U6D3LZcWILYuplGwdDxZWs8d2mma9gOZ0yhRP1ehFw2w0aW9AeuaFOnx_2OHDOK2lZe-ySOd8EEugVVzHJWgay9vgV.css?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":461,572,530,1049,141,388,743,967,1071,24724\",\"nc\":1},\"yP6nl4x\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yJ\\/r\\/SkVQ6fLU1EJ.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":40\",\"m\":\"1006847381_main\",\"nc\":1},\"c4jwoso\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i2TV4\\/y5\\/l\\/en_US\\/aPSIKWlVJZP.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":373\",\"m\":\"1006847381_main\",\"nc\":1},\"ixymreW\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3izyN4\\/yR\\/l\\/en_US\\/RDR1tSXNcuC.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":1132\",\"m\":\"1006847381_main\",\"nc\":1},\"H7A1\\/vo\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3XV4\\/ym\\/l\\/en_US\\/B-73iZvdSs6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":1070\",\"m\":\"1006847381_main\",\"nc\":1},\"qiPpWo6\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLl54\\/y4\\/l\\/en_US\\/uRty0IB2ck6.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":379\",\"m\":\"1006847381_main\",\"nc\":1},\"uen0LVB\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i7664\\/y8\\/l\\/en_US\\/ktG5_klR3PO.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":947\",\"m\":\"1006847381_main\",\"nc\":1},\"grEoa8Y\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3if094\\/ys\\/l\\/en_US\\/Woh9q-loyHP.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":431\",\"m\":\"1006847381_main\",\"nc\":1},\"Pfkc54B\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yz\\/r\\/YBirLTG403L.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37184\",\"m\":\"1006847381_longtail\",\"nc\":1},\"sD3z2ST\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/OgQZKqBcuUW.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":632\",\"m\":\"1006847381_main\",\"nc\":1},\"+ClWygH\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y5\\/r\\/r611P2Lt7hb.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37192\",\"m\":\"1006847381_longtail\",\"nc\":1},\"n2UPpV0\":{\"type\":\"js\",\"src\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/xKJiMS7RGt4.js?_nc_x=Ij3Wp8lg5Kz\",\"c\":1,\"p\":\":37177\",\"m\":\"1006847381_longtail\",\"nc\":1}},\"compMap\":{\"CometProfileVideoSection.react\":{\"r\":[\"rDzHHGL\",\"PJevOFh\",\"wYUxKHn\",\"lOLXvja\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"BanzaiScuba_DEPRECATED\"],\"r\":[\"m6VVYrH\"]}},\"Dialog\":{\"r\":[\"PxF2nsc\",\"kleA10d\",\"e5d6Ztw\",\"kfpwlze\",\"pPp+jIc\",\"SkFr2Ae\",\"W5crAoY\",\"eivexpP\",\"TETat5y\",\"rDzHHGL\",\"wYUxKHn\",\"vLAMZRo\",\"6KCwpsF\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"ExceptionDialog\":{\"r\":[\"kho7\\/jW\",\"kleA10d\",\"pz9YUL2\",\"rDzHHGL\",\"yP6nl4x\",\"c4jwoso\",\"SkFr2Ae\",\"ixymreW\",\"H7A1\\/vo\",\"wYUxKHn\",\"qiPpWo6\",\"RaA31FN\",\"uen0LVB\",\"vLAMZRo\",\"6KCwpsF\",\"grEoa8Y\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"QuickSandSolver\":{\"r\":[\"PxF2nsc\",\"Pfkc54B\",\"pPp+jIc\",\"wYUxKHn\",\"sD3z2ST\",\"vLAMZRo\",\"6KCwpsF\",\"+ClWygH\",\"rDzHHGL\"],\"rds\":{\"m\":[\"FbtLogging\",\"IntlQtEventFalcoEvent\"],\"r\":[\"m6VVYrH\"]},\"be\":1},\"ConfirmationDialog\":{\"r\":[\"PxF2nsc\",\"pPp+jIc\",\"n2UPpV0\",\"rDzHHGL\",\"wYUxKHn\",\"vLAMZRo\"],\"be\":1},\"TransportSelectingClientSingleton\":{\"r\":[\"wYUxKHn\",\"vLAMZRo\"],\"rds\":{\"m\":[\"ContextualConfig\",\"BladeRunnerClient\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"BanzaiScuba_DEPRECATED\"],\"r\":[\"GltrS7H\",\"m6VVYrH\",\"6KCwpsF\",\"rDzHHGL\"]},\"be\":1},\"RequestStreamCommonRequestStreamCommonTypes\":{\"r\":[\"wYUxKHn\"],\"be\":1}},\"sotUpgrades\":[\"m6VVYrH\",\"GltrS7H\",\"gNzyyn\\/\",\"lwZReTr\",\"kleA10d\",\"OW1kw59\",\"ht8qD46\",\"l5HqvCB\"]})});\nrequireLazy([\"CometResourceScheduler\",\"JSScheduler\",\"Bootloader\"],function(c,s,b){c.onHighPriComplete(function(){s.scheduleLoggingPriCallback(function(){b.loadResources([\"m6VVYrH\",\"GltrS7H\",\"gNzyyn\\/\",\"lwZReTr\",\"kleA10d\",\"OW1kw59\",\"l5HqvCB\"])})})});\nrequireLazy([\"Bootloader\"],function(b){b.loadResources([\"ht8qD46\"],{onAll:function(){requireLazy([\"JSScheduler\",\"ServerJS\",\"ScheduledApplyEach\"],function(JSScheduler,ServerJS,ScheduledApplyEach){qpl_inl(\"7191084768081846440\",\"tierThreeBeforeScheduler\");JSScheduler.runWithPriority(3,function(){qpl_inl(\"7191084768081846440\",\"tierThreeInsideScheduler\");(new ServerJS()).handleWithCustomApplyEach(ScheduledApplyEach,{\"define\":[[\"MarauderConfig\",[],{\"app_version\":\"1.0.0.0 (1006847381)\",\"gk_enabled\":false},31],[\"MqttWebConfig\",[],{\"fbid\":\"0\",\"appID\":219994525426954,\"endpoint\":\"wss:\\/\\/edge-chat.facebook.com\\/chat\",\"pollingEndpoint\":\"https:\\/\\/edge-chat.facebook.com\\/mqtt\\/pull\",\"subscribedTopics\":[],\"capabilities\":10,\"clientCapabilities\":3,\"chatVisibility\":false,\"hostNameOverride\":\"\"},3790],[\"MqttPublishTimeoutConfig\",[],{\"mqttPublishTimeoutMs\":90000},4266],[\"RequestStreamE2EClientSamplingConfig\",[],{\"sampleRate\":100000,\"methodToSamplingMultiplier\":{\"RTCSessionMessage\":10000,\"Presence\":0.01,\"FBGQLS:VOD_TICKER_SUBSCRIBE\":0.01,\"FBGQLS:HUDDLE_USERS_REQUESTED_TO_SPEAK_COUNT_SUBSCRIBE\":1000,\"FBGQLS:FEEDBACK_LIKE_SUBSCRIBE\":1}},4501],[\"WebDevicePerfInfoData\",[],{\"needsFullUpdate\":true,\"needsPartialUpdate\":false,\"shouldLogResourcePerf\":false},3977],[\"CometRouteActorToasterBlocklist\",[],{\"route_trace_policies\":[\"comet.jobs.composer\",\"comet.jobs.detailView\",\"comet.compat.XCometPageJobOpeningDetailViewController\",\"comet.offer.create\",\"comet.offers.offer_details\",\"comet.crisis.safety_check\",\"comet.crisis.home_page\"]},5542],[\"TrackingConfig\",[],{\"domain\":\"https:\\/\\/pixel.facebook.com\"},325],[\"WebStorageMonsterLoggingURI\",[],{\"uri\":null},3032],[\"DGWWebConfig\",[],{\"appId\":\"936619743392459\",\"appVersion\":\"0\",\"dgwVersion\":\"2\",\"endpoint\":\"\",\"fbId\":\"0\",\"authType\":\"\"},5508],[\"cr:1094907\",[],{\"__rc\":[null,\"Aa0-AXU7QQ_i030JU71shuMhgRJP-F94XW55rErXmKgEYY3ct2H0uGF-bdI6wohC5MLNm-R1Taqblv5rH-p29_c\"]},-1],[\"cr:1351741\",[\"CometEventListener\"],{\"__rc\":[\"CometEventListener\",\"Aa0jgCZvYvIxj3voBdBfyJUBmAC11MlyS62vnQgB9R6ke1pf1FHNWDj6mZviKNgwfh8rvplPuNyK_kWRXvTZGWD8NFlS9OqupxmJg_izy5Jgo1iKgcZm\"]},-1],[\"cr:3024\",[],{\"__rc\":[null,\"Aa1q4dC3lNmbE9_dpUbNzD4ldsQUa-b3Tr19KBcTt42H2TBoGblbeOPbkYaMh8C_RNUBejHGdUiKpYo\"]},-1],[\"cr:2046346\",[],{\"__rc\":[null,null]},-1],[\"cr:653\",[],{\"__rc\":[null,\"Aa0R7jt7o1oxJqfpXA2k6YVuPFeTqShAPFN119DkY8MsBlo6a72pb0Xw7mV3S0u833UAab4DLlZr1oXEctWZ4IxmmqyrwB4iUw\"]},-1],[\"cr:2718\",[],{\"__rc\":[null,\"Aa3aJm-A00RAAaWbovzHGMZSfh5xZ4EH1a_XSMWSS-fL6EsUN3Uk5YynExathSheUVHhmO0yXAlxhjCuAGHELmGJZzYkHrg\"]},-1],[\"cr:10026\",[],{\"__rc\":[null,\"Aa0r588aIW3G0zjGZ1_sJQwEZYv0bIcC0KlGJulKyR_-zIt0mkUSIYEVkWRTydxgsUOj8VxNkhI306DaB1ykctrfarGRC7Jm4iIJdg\"]},-1],[\"cr:1201738\",[],{\"__rc\":[null,\"Aa2vSygTQLc_smVEJFepv_lubOCo9cNOzrIDmhQrk8mR9Z9TaBfOatUar6jf5AXzRMV3Zott8m7YEXhOPM8SIgwDQCpFTSF9rOHLzjZQSdQb\"]},-1],[\"cr:1332233\",[],{\"__rc\":[null,\"Aa13GZ_kwGKanhwBLTb0AOSm_18LC0233aiEWzcFC7DXd_lV7SRV7jt61jKRU9hupXIpgV6HLNOcVHSE_wWNplQXEgLaWH5aXg\"]},-1],[\"cr:1345969\",[\"AccessibilityWebAssistiveTechTypedLoggerLite\"],{\"__rc\":[\"AccessibilityWebAssistiveTechTypedLoggerLite\",\"Aa3uX3Ib7H-V1I0ETB7IpwARTI8wB94PLL6DDVvl6zaeNbsS2jeRn_7is4fXMidUcgvaMGVCyNE\"]},-1],[\"cr:1516609\",[\"BDCometSignalCollectionTrigger\"],{\"__rc\":[\"BDCometSignalCollectionTrigger\",\"Aa2mfIryioyhsV-cPbL5eMg9hC2eJLx80oken9MY1vV39pngTgAKMrs4EbEN28_9sL5cLoFlwxVpExnCKU_7Q_-SqXX3xIwKkFidvh0ZWrN1CxmdtaxmfQ8O6w\"]},-1],[\"cr:1634616\",[\"CometUserActivity\"],{\"__rc\":[\"CometUserActivity\",\"Aa18aokU40ULP-NWQS2S8ZxiRyxJr0pKrN03Zh_YijWr8SuPy8k1ynYo7d3NnDrsD2bsqsefmLAGyTYC1PuUzJ-j17c\"]},-1],[\"cr:3473\",[],{\"__rc\":[null,null]},-1],[\"BDSignalCollectionData\",[],{\"sc\":\"{\\\"t\\\":1659080345,\\\"c\\\":[[30000,838801],[30001,838801],[30002,838801],[30003,838801],[30004,838801],[30005,838801],[30006,573585],[30007,838801],[30008,838801],[30012,838801],[30013,838801],[30015,806033],[30018,806033],[30021,540823],[30022,540817],[30040,806033],[30093,806033],[30094,806033],[30095,806033],[30101,541591],[30102,541591],[30103,541591],[30104,541591],[30106,806039],[30107,806039],[38000,541427],[38001,806643]]}\",\"fds\":60,\"fda\":60,\"i\":60,\"sbs\":1,\"dbs\":100,\"bbs\":100,\"hbi\":60,\"rt\":262144,\"hbcbc\":2,\"hbvbc\":0,\"hbbi\":30,\"sid\":-1,\"hbv\":\"7799648998567260803\"},5239]],\"instances\":[[\"__inst_af5d41d9_0_0_Ua\",null,null,1]],\"require\":[[\"BanzaiScuba_DEPRECATED\"],[\"PolarisODS\"],[\"FbtLogging\"],[\"LynxAsyncCallbackFalcoEvent\"],[\"CometSuspenseFalcoEvent\"],[\"IntlQtEventFalcoEvent\"],[\"AsyncRequest\"],[\"ContextualConfig\"],[\"IGDSPrivateToaster.react\"],[\"BladeRunnerClient\"],[\"CometErrorLogging\"],[\"SkywalkerUtils\"],[\"CometToast.react\"],[\"WebDevicePerfInfoLogging\"],[\"CometPixelRatioUpdater\"],[\"CometUncaughtError.react\"],[\"CometBrowserDimensionsLogger\"],[\"CometToasterView_DO_NOT_USE.react\"],[\"CometRelayEF\"],[\"CometRouteActorToaster.react\"],[\"CometOnBeforeUnloadDialog.react\"],[\"ClientConsistencyFalcoEvent\"],[\"ODS\"],[\"CometRootDeferredShared\"],[\"FalcoLoggerTransports\"],[\"PolarisIncomingCall.react\"],[\"DGWRequestStreamClient\"],[\"emptyFunction\",\"thatReturns\",[\"RequireDeferredReference\"],[[{\"__dr\":\"BanzaiScuba_DEPRECATED\"},{\"__dr\":\"PolarisODS\"},{\"__dr\":\"FbtLogging\"},{\"__dr\":\"LynxAsyncCallbackFalcoEvent\"},{\"__dr\":\"CometSuspenseFalcoEvent\"},{\"__dr\":\"IntlQtEventFalcoEvent\"},{\"__dr\":\"AsyncRequest\"},{\"__dr\":\"ContextualConfig\"},{\"__dr\":\"IGDSPrivateToaster.react\"},{\"__dr\":\"BladeRunnerClient\"},{\"__dr\":\"CometErrorLogging\"},{\"__dr\":\"SkywalkerUtils\"},{\"__dr\":\"CometToast.react\"},{\"__dr\":\"WebDevicePerfInfoLogging\"},{\"__dr\":\"CometPixelRatioUpdater\"},{\"__dr\":\"CometUncaughtError.react\"},{\"__dr\":\"CometBrowserDimensionsLogger\"},{\"__dr\":\"CometToasterView_DO_NOT_USE.react\"},{\"__dr\":\"CometRelayEF\"},{\"__dr\":\"CometRouteActorToaster.react\"},{\"__dr\":\"CometOnBeforeUnloadDialog.react\"},{\"__dr\":\"ClientConsistencyFalcoEvent\"},{\"__dr\":\"ODS\"},{\"__dr\":\"CometRootDeferredShared\"},{\"__dr\":\"FalcoLoggerTransports\"},{\"__dr\":\"PolarisIncomingCall.react\"},{\"__dr\":\"DGWRequestStreamClient\"}]]],[\"CometPlatformRootClient\",\"initDeferred\",[\"__inst_af5d41d9_0_0_Ua\"],[{\"__m\":\"__inst_af5d41d9_0_0_Ua\"},{\"sketchInfo\":null,\"userID\":0,\"deferredCookies\":{\"_js_ig_did\":{\"value\":\"46749EC6-93BF-448F-B7A9-9502CB1F16F7\",\"expiration_for_js\":31536000000,\"expiration_for_http\":1705840895,\"path\":\"\\/\",\"domain\":\".instagram.com\",\"secure\":true,\"http_only\":true,\"first_party_only\":true,\"add_js_prefix\":true,\"same_site\":\"None\"},\"_js_datr\":{\"value\":\"f93LY3Ufmyi8a2tcIQxxt_Sm\",\"expiration_for_js\":63072000000,\"expiration_for_http\":1737376895,\"path\":\"\\/\",\"domain\":\".instagram.com\",\"secure\":true,\"http_only\":true,\"first_party_only\":true,\"add_js_prefix\":true,\"same_site\":\"None\"}},\"blLoggingCavalryFields\":{\"bl_sample_rate\":0,\"hr_sample_rate\":0,\"parent_lid\":\"7191084768081846440\"}}]],[\"MqttLongPollingRunner\"],[\"AcfToastImpressionFalcoEvent\"],[\"Bootloader\",\"markComponentsAsImmediate\",[],[[\"CometProfileVideoSection.react\"]]],[\"RequireDeferredReference\",\"unblock\",[],[[\"BanzaiScuba_DEPRECATED\",\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"AsyncRequest\",\"ContextualConfig\",\"IGDSPrivateToaster.react\",\"BladeRunnerClient\",\"CometErrorLogging\",\"SkywalkerUtils\",\"CometToast.react\",\"WebDevicePerfInfoLogging\",\"CometPixelRatioUpdater\",\"CometUncaughtError.react\",\"CometBrowserDimensionsLogger\",\"CometToasterView_DO_NOT_USE.react\",\"CometRelayEF\",\"CometRouteActorToaster.react\",\"CometOnBeforeUnloadDialog.react\",\"ClientConsistencyFalcoEvent\",\"ODS\",\"CometRootDeferredShared\",\"FalcoLoggerTransports\",\"PolarisIncomingCall.react\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"CometExceptionDialog.react\",\"AcfToastImpressionFalcoEvent\",\"CometTooltipDeferredImpl.react\"],\"sd\"]],[\"RequireDeferredReference\",\"unblock\",[],[[\"BanzaiScuba_DEPRECATED\",\"PolarisODS\",\"FbtLogging\",\"LynxAsyncCallbackFalcoEvent\",\"CometSuspenseFalcoEvent\",\"IntlQtEventFalcoEvent\",\"AsyncRequest\",\"ContextualConfig\",\"IGDSPrivateToaster.react\",\"BladeRunnerClient\",\"CometErrorLogging\",\"SkywalkerUtils\",\"CometToast.react\",\"WebDevicePerfInfoLogging\",\"CometPixelRatioUpdater\",\"CometUncaughtError.react\",\"CometBrowserDimensionsLogger\",\"CometToasterView_DO_NOT_USE.react\",\"CometRelayEF\",\"CometRouteActorToaster.react\",\"CometOnBeforeUnloadDialog.react\",\"ClientConsistencyFalcoEvent\",\"ODS\",\"CometRootDeferredShared\",\"FalcoLoggerTransports\",\"PolarisIncomingCall.react\",\"DGWRequestStreamClient\",\"MqttLongPollingRunner\",\"CometExceptionDialog.react\",\"AcfToastImpressionFalcoEvent\",\"CometTooltipDeferredImpl.react\"],\"css\"]]]});});});}})});</script>\n<script>qpl_inl(\"7191084768081846440\",\"tierThreeEnd\");</script>\n<script type=\"application/json\" data-content-len=\"85\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440\",\"tierThreeEnd\"]]]}</script>\n\n<script>window.pldmp = {\"7191084768081846440\":{\"css\\/6edbtep1nmgwooos.pkg,css\\/k6jsgg508hwks4gc.pkg,css\\/643znbe8uuww0sk4.pkg,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePopover.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/l\\/0,cross\\/saMHyqNv4mpREnm7zZlb3GPOR0H3iAeX776y0TQgDtue.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/buapdyfyycgk4w8s.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yG\\/r\\/b0bBzaFJqDL.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationIcon,js\\/instagram\\/polaris\\/modules\\/styles\\/Polarisglobal,js\\/instagram\\/polaris\\/core\\/XIGPage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreMegaphoneHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/lists\\/PolarisIGCoreListItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualGrid,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACImagePicker,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDivider,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentBrowserList,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupEmailSuggestionDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionFooter,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisMiddleDot,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOverlay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCondensedMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPBloksRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopoverContentContainer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallLink,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileMenuItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPHelperModule,js\\/instagram\\/polaris\\/adapters\\/ui\\/RouteLoadingBar,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisBaseShell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/hooks\\/usePolarisHideOutline,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericNavBackButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisImageFileForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutIconUtils.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yH\\/l\\/0,cross\\/Zh-P7nqfC-IYjicqGqEuNilGZA9lIRDXNjAxXkrGHQpB9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFHFQXPbt9UdQpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVUKMhiQgDJ-k2ISVSkI9CdClNnQVshgRVRvRheiZbz5fiJBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KYfM3_Z_YL7t2VYMxPhG3sK7W45chyFUhuMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetPostFromMediaDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/PolarisuserReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimLoginForm.react,js\\/5hsowgzfkx8o004s.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalConversion\\/PolarisProfessionalConversionActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetPostFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentStrings.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/comment\\/PolariscommentReducer,js\\/27mp1a1v9am8go00.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/ui\\/PolarisFollowingActionsModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutIntentDialog.react,shared\\/third-party-bundles\\/normalizr-3.3.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTwoFactorForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisReportStrings,shared\\/third-party-bundles\\/css-in-js-utils-3.1.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellInnerContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutAppSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryAPIActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfileEditStrings,shared\\/third-party-bundles\\/react-spring-rafz-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalConversionCardTypeConfigs.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreMetaLogoPrimaryIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mobileStoryCreation\\/PolarisstoryCreationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisnavigationSelectors,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisPostRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInstagramWordmarkIcon,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/country_names\\/PolarisCountryNamesConfigJSModule.en_US.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_954\\/yI\\/l\\/en_US\\/uQT_1jiwJJgcb1i1AnFCqoOwFah16zkxG1b4xz8uUw_SobTmZ9qeM3uwfq77zMe3fgGdhiM_gjpKi_o_ZEGq9jEecdRBZXvHfRdCE6YnobxWYYri_0utvYL9wrj3SeHISlQCs4oupwt_FoWpmKNfFa7r4VMux5QJYw2XRKWNJe2cHQJmWs_LdjOaAJ5wfkOVkjp3a4ZfceEq2-xTwXbqGrtkdJfFZyyy4vuvaaZGcofWE-6wc7hT2qg5-FtXYDDvXXdHYLrWoZ-XdPn2p6Sw6webmANkAdIBG0Rh2V4nSoGWGUPPve1nJBfknaD0xrImh2_C59sS1H.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/6shsxta4034s0o4k.pkg,js\\/96g6scpfwy880owg.pkg,js\\/781zxh1eih0ksos8.pkg,js\\/6zfd06dvlpsskgs0.pkg,js\\/8k3memnucccg84wo.pkg,js\\/1bcvj230rclc88sk.pkg,shared\\/third-party-bundles\\/react-spring-core-9.4.5.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3imDI4\\/yD\\/l\\/en_US\\/RFvofW6wFQqmZ1FVOBSoLEM3DM3nWqBG_zVS4NohzgzSF30hqpIlYwobjLSkTeDQD27La2d7WkaDU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/clincp2mt1s888kw.pkg,js\\/3ysyndwrdn28ks04.pkg,js\\/ciqxk7hor3ksgg08.pkg,js\\/wzcw46dyrqoscgow.pkg,js\\/40g1sv7zr4ow84oo.pkg,shared\\/third-party-bundles\\/react-spring-shared-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryActions,js\\/20drax5dbjggwoww.pkg,shared\\/third-party-bundles\\/react-redux-8.0.1,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarispaymentsCheckoutReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarisSignupActions,js\\/instagram\\/polaris\\/www_schema_components\\/PolarisMobileNavMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsStrings,shared\\/third-party-bundles\\/babel-runtime-7.14.6,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisEmojiConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisConsentModal.react,shared\\/third-party-bundles\\/inline-style-prefixer-5.1.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarispostReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisdirectReducer,shared\\/third-party-bundles\\/react-spring-web-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisstoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisstorySelectors,shared\\/third-party-bundles\\/react-spring-animated-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/PolarissettingsReducer,js\\/70oshkhfatc0w8sc.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisrelationshipReducer,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedTimelineRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthFormCard.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedRootPaginationQuery_subscribe.graphql.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i3xT4\\/y5\\/l\\/en_US\\/mMxEaxdqCMsLgvwffuKmeXkx1ls4Kbmr0PcpFHI89wi7-bQyeWYV6RB9mjpt2MO06iOBnQYJldDI3d5_bSV7xkSp9W-kw4uhCblDMicvVbwl5skWF2LwGPmx3V4kPSf3xHsbH5N1u1UKZgN5olQZvZwLkV-b9vZLXv1lQBHGkq7Sf1tl9hCWQj9tywxZqnIlV1Ugbg8a8khY5v352QjbaFfltcrcMkg8cMCsx2gkfYGBBrHkHaf_GJwuOdcKBr4Bw8-g4FRyTZ3tLRP9-TezfSjusf3zMwzuAayJkWSQfpMX2jiDHIRHXLeIPHNsyaFfopSoa0AGgg.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierTwo\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksApply,shared\\/facebook\\/isInstagramBlobURI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisdebounce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedParallel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/pendingComment\\/PolarisPendingCommentState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionSetProfessionalAccountStatusForUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenUserDetail,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayActions,js\\/instagram\\/polaris\\/error\\/PolarisErrorRoot.entrypoint,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetImageResourceFromGraphImageResource,shared\\/js\\/__generated__\\/JSEnumMeerkatStep\\/single_source\\/PolarisFeedVariants\\/JSEnumArtifact\\/PolarisFeedVariants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/gating\\/IGWeb2023H1Gating,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisJavascriptWebErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGStringEncryptPassword,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberMul,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisMultiStepSignupController\\/JSRouteBuilderArtifact\\/XPolarisMultiStepSignupControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationLayoutContext,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToasterContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksInsertChildrenAfter,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisTimer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetFollowRequests,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncLoadV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelatedMediaFromGraphMediaInterface,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnExplorePage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberDiv,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionGating,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberGt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberAdd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32NumberSub.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ye\\/r\\/mM0nf0x_yS1XqYgTw22apJs3KNiphqCEOxt90qFU3v4P63mtttQHbEeHwAPN2QJBsPqM5r_MT4EEdz8pbodbk2el42cEDev_uWUGgIt5E12SdgeUju_3xuWrX0yYPr5WZ2dgXxht6hdJ_SEOSdK-unZUB_sVdXBHPvoX6rp7LutQ6o0JhCB_5tEfwb8fjpsb-CklA8_ycTPWsMhTDOYFxm2984K-f52OQo3_pl8qxd3vNGgvHwFP9xaF_6y4kQsgl5OypUVnTuXSFYI2KfLv6tqhrZqis_1hrXnKy34ymkK8iX18qmqvBJatoAz6b7cNhIPBURwWGU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreTooltip,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisConsentModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenBulletListInterstitial,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreTextInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOneTapLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericMobileHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthFormCard,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNav,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCheckbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisIconSnackbar,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreSearchInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlayBase,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNav,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericDesktopHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFooter,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisLabeledTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenInterstitial,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimSignupForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisCheckboxToggle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDOBFieldSelect,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheet.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/l\\/0,cross\\/4xlElQ0TRMsf1hBuvdYFn1oTQr0iaI7BVoKRVXOK1y-vNTNvVKttPEro_bUUA4EIjuTuj1x-m14Gqaj1NqNUUkIPp6XLLYD9SqsDW-Se5FMchP5HWujCqeimGW9NmTfEuq5jMM29YaoaZFU7Z9hZ4Ik796UxyAXGWAm3Ysnug2a0kEPfVWb8ArqCVh6tUmIWBRCDFBoucYWERNDIWahCtNT_A1Jl6yuGXzPrhA0xQrKK7oQQI6oqfvF5mPz3ukSo5RW-TqdDqgGLtvQojDyinrMjEgdHSuTULHbTzQEdQlnJ0xkwJ3Xzp3N9miW_C87fhX4_PLyv8u.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSaveFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartGallerySessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndGallerySessionEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateConsentState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndPostCaptureSession,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchBackPressedFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGalleryStartEditSession,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFXAuthenticationLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveCommentImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointSnapshot,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/hasPolarisBugReporting,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramThumbnailClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisWellbeingCommentCoverFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/utils\\/PolarisScreenTimeEnforcementState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisSignupTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/trackFBRegistrationConversion,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebAgeCollectionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchViewportViewFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramClearSearchHistoryFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchResultsPageFalcoEvent,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnProfilePage,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramAdVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraShareMediaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelatedVideoMediaFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFBInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgWebImageLoadingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartCameraSessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebRegistrationFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/r\\/igcENNanTkLKz19WwfgopcWaarxBHROrUxyZ3PB6EF-J8d-O_dbJ1Gd8kQoLhPjDNN5yqsnlqFhzz0XEeIW8o0NOkKXfZFOAdlw_zoz36AwagtZ5E5FUp_PcdEUL7H5aXPT9RbeVWk4rJI7EKhh2oGBXh1MpwKcaLUgwoJAyFtpMyFjgnTTFvhC9tgf2dm9SqznuGrSy8rWzFFmom1XBE8CTUU4NXxJXsDbH8bI-K_QjHWRryjIDlOs3kBqiKxMLaRs4CJJhyuTmX9gw1hkFVnBxIj6P_ZJQ3mqK2P9BlRyzMxc9tAfvKpElhxLv-OW8w5IXo9ZPk6.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisZeroIgWebCarrierSignalPingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisPlatformBadge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebStoriesLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetTaggedUserFromGraphTaggedUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followList\\/PolarisFollowListState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisMiniToast.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateConsentDob,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentpermalink\\/PolarisCommentPermalinkUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedRefreshFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebComponentPerfEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/incomingCall\\/PolarisIncomingCallActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebResourceTimingEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGalleryStartShareSessionEvent,js\\/instagram\\/polaris\\/adapters\\/ui\\/RouteLoadingBar,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebCacheLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebClientConnectionInfoFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEmailValidator,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/trimPolarisLinkTrackingData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetAccountBadgeData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenUrlV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetMappedOwnerTypeFromReelDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchSessionInitiatedFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisInteractionTracingExtensions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarissetPageTitle,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisBaseModel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraStartPostCaptureSession,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIStoryPollVote,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraGallerySelectMediaEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgFeedGallerySelectMultipleEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/EwqOmsFNECz1raHraDYl3m2-9IkVVtnINQHuLJgS4I6ru4yzQDqcdjtR4lML0w5q-hU0MnHHhUtuCFFFvELgCtyIqF_fFO596JvDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHAaG9Fem4wFySlXBMAi5mP0KplZXEyYIdZgf42PRE8dF0d40IyOm8ptZGpjm1dvmHbRPTC-KKbnEyxGz2AxwzQ5ZRPGckPpIFxcRHe26ITcIwZjJxclKjlX25v1ey0sG_cMJpqPEWhTW58bPKdu5iMQ3FlmifGwKCScMVDpw7C0u29giPE1rqwqws40o3v5HC-xLf-N.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisOneTraceQPLLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsFormUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/actions\\/PolarisPostActionPostLoadedV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFeedTimeline,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogo.react,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGCometPushViewCloseButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisErrorBoundary.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisStopDeletionDialogStrings,js\\/instagram\\/polaris\\/feed\\/usePolarisFeedVariantScrollRestore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePinPanoFilled24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetCommentFromCommentDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisCheckboxToggle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIExtractTwoFactorChallengeIfPresent,js\\/instagram\\/polaris\\/core\\/initXIGRuntime,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisCookieConsentFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAdminSpinner.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreWarningPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogoWithTitle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePhotoGridPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolaristransformReelEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHashtagPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLogoutActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsListContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/post\\/PolarisPostModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalFooter,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisHashtagMediaModel.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3isHT4\\/yE\\/l\\/en_US\\/37DoL3dC_Vt1TsQdxGFhTwUm1ydEZdjlzwJbRvq3YOHhqeXNrsxs7z1KnoDZr_m70AWcIK_ihqwcyzVdWFlh15NSQq3gidLxi-MkQbW56iiZX6PxJmIXaxA8kSMiad3IarWtMLrgZSAF-TYzAfUrDw4eOjeORq8gi6w3m2IJJkTIcBVOVdQ5JdWZ_IL_MHi5NONlCRmlN9h053ROa35H1tFMfpyxrnqR7GOhaZKdeheBe6ez-w9a7bWGVtaJy_-suv2R7oRtNVFBqO2p1EIRfOwNVikxzokbd7LUWQRR_5unPVOPk1jvp2BrHKupUWtJkprF3oSNu8.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisnormalizeActivityFeedItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCoreHoverCardConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetVideoResourceFromGraphVideoResource,js\\/instagram\\/polaris\\/core\\/PolarisSplashScreen.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/embed\\/PolarisEmbedState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisgetPageTitle,shared\\/js\\/__generated__\\/JSEnumMeerkatStep\\/single_source\\/IGAutomatedLoggingInteractionGestureType\\/JSEnumArtifact\\/IGAutomatedLoggingInteractionGestureType,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenBottomSheetOrDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIVerifyAge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSuggestedUserFromGraphSuggestedUser,js\\/instagram\\/polaris\\/error\\/PolarisErrorRoot.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisavatarConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisgetReelIdFromReelType,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchFXSSOLinkedUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSharingFrictionInfoFromGraphMediaSharingFrictionInfo,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIApproveFollowRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIIgnoreFollowRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPICheckNewFeedPostsExist,js\\/instagram\\/polaris\\/core\\/relay\\/relayPolarisGetDataID,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformActivityFeedUserEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisTimeSpentScreenTimeFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGTVIndicator.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenDiscoverPeople,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchParentalConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisSEOEventsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayDispatch,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnAdsActivityPage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/centralizedUpsell\\/PolariscentralizedUpsellSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisPaymentsConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchUnconsentedConsents.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/-eE4OBHMOe-6DGg4q-eoFsrXzU1s1YU2ZQe-q4lb8xtqmuLsrHVYFXpf1PY5X46CNRDLisH29umHQr5VrXfPPHkrHoZ6fcs-iImxLJoHnF4ywH-dnBvCZDmOwMcJrv2wQXz7px28efid3DZgpzlSQ8egR_AdlVMkNCEdvegSyKOHcDU3zt2j16ap1_GPu5hOhPBp4TcG6VPq7GjfysAZkfi8mvZe5Z17ZOGqoLevEKgUzYTikhYTMquUQDCchXOKOB7D4JHkBIvmD_VTlDxbxhBBL2Kbje8i3deRWoA-KYgLdc_9H3N2Yzrr1KY7dWc2jMTYmAw1iP.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksRotate3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayClone,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayConcat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayRemove,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetAttr,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberSub,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisCurrentLocale,shared\\/third-party-bundles\\/inline-style-prefixer-grid,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapUpdate,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGridConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisLoginConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberAdd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayLength,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberMul,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberEq,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaModelBase,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringLength,shared\\/third-party-bundles\\/inline-style-prefixer-flex,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisSnackbarConstants,shared\\/third-party-bundles\\/css-in-js-utils-resolveArrayValue,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolNot,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarismemoizeLast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberGt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringConcat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberLt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksConstNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksInflateSync.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yu\\/r\\/b8NFEX19tR1ZiIiYUa_asPvjs1SL2DnZJE0jaDfHetz-ZF0MWzv57PxTD5h-WpuPkoGondvnKGR01KmoXOR_ll6zVzRFCsHbDjiaLtlg5kXUc-xA1NcQ6LAaNUwtOY5pfEPXhvMlFz-dhfXZ5yNmRQjcLjdA3Jh7oT201KfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-TuoYMtykMcoXDhM-hjB2VBZzdP7D1tp3T_KfNGh6e8iN9tDmIhZ1l5ly89cEI_N1Fd8JYZFICdMuc8GLNgFiEn_ITqsmIp0d2g6zUT8M8JhuJJ6Pa8WJ7XWNy1RRs7feBkUQ.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksInternalShadow,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGLineChartV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlayContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetProfilePosts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisnormalizeFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/desktop\\/PolarisDesktopStoriesGalleryConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisguidesReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGLanguageSwitcher,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreChevronDownPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisStrategicWebTraffic,js\\/ezemckykhb4gww8c.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/ActivityFeed\\/activity_feed_box\\/PolarisActivityFeedBoxLoader.react,shared\\/third-party-bundles\\/hyphenate-style-name-1.0.4,shared\\/third-party-bundles\\/redux-thunk-2.3.0,js\\/instagram\\/polaris\\/adapters\\/ui\\/Portal,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/upsell\\/PolarisUpsellActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFooterBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisLiveHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOAuthPermissionResultCallbackDoNotUse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSavePanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSavePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScalarNativePropsStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/PolarisisEligibleForFacebookLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/location\\/PolarisLocationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisScrollPositionManager.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisMemoizedBindContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/newPostsPill\\/usePolarisLightweightNewPostsPillCheck.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3itX54\\/yU\\/l\\/en_US\\/pwDGobDvoEEMSIxi7ybeSsKuFT_jWzlw3rPXVwWyOdOEzHIpIH3PR4f8F0USLF-On-pnw64QYu9RXedzu1FhCN1IuWXhQHwecwIHuW-7sFA3RCBW2rI9abNjRd-wxyXqiT6XYUyBrd2VggeDNXbhBAV47funTodcrUUe5Rt5_sUH6Q5Cq70aFzMmhnqubDU3YFEBHmeDZ-WJS1M7786qOICWDv173xnwnCoUZQirSBIQKnH8bC209pPss6iuWqHXC3UR8PvQmsvc2L5e_dHABa5NOfIPZQShZRxG0sRUeCiXRYmmaiXyFWS3lh4rjP08oCmF0LwtC_.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksImage,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromUserInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHeartPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/PolarisuserSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionRemoveCloseFriendUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginFromCredentialManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionFollowUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionAddCloseFriendUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/discoverChaining\\/PolarisdiscoverChainingReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaAccountOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAcceptTermsOfUseForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFacebookLoginLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/PolarisInteractionsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksCollection,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGScreen,shared\\/third-party-bundles\\/merge-1.2.0,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationBannerIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisTransform3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNewPostPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404PageBase.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/usePolarisHoverCardDelay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopoverContentContainer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisTrackingLinkClickHandler,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFocusTrap.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentLikeLists\\/PolariscommentLikeListsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarislogReelPlaybackEntry,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreStarPanoFilledGradientIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404Page.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3izF44\\/yn\\/l\\/en_US\\/ZxFsJeYSYhj4-CjNOt6fgNcuS5XpUg1KmK3QuklIyZb4yZA4jlltO86tgecb9aWUi8jxPjpSD4BhL1ZMppyNsAV3YlLfj5SeNSs7OYFlF92uSV9QEQtEc7PCr6E2cnTFetWIryle6h6eXYxxi4L_n5Jemh0ix-j-2N_ATe6J7xHk2SlLcgFLK0AxSGT3LGFyvmhTw8GFZSCi2TgYryGEXrjuEWj1f2xOIsLM8yIqYC9mTzIq_1j3O3w1b0Rt11r9GgNW-xHS43WTn8SOnrWOIzWgya1BpJSqWHFM2R0PzX7rrH84hubP8TZZQmVPXL7rSwnIuiWE9G.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileMenuItems.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSlimTextInput.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksPrimitives,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSearchResultsFromSearchResultsData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthTypeSwitcher.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisStoryRing.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlay.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisFBConnectHelpers,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryCache,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisGenericStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisResponsiveImage.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLoggedInAppBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisPaginationUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/__private__\\/PolarisLoginActionBaseLogin,shared\\/third-party-bundles\\/stackblur-1.0.0,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisOpenInApp,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisLocalesConstants,shared\\/third-party-bundles\\/tabbable-5.1.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginWithFBAccessToken,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/buildIGWWWCometRouterStateProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksNavbar,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPhoto.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreSearchInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisEmailConfirmationForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGrid.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectMediaHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetTappableObjectsFromMediaDict.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3in5G4\\/yN\\/l\\/en_US\\/fcm7cI-6L60da06jI3j-XOAoinZrQ-fMOuSnyzZPx1w2XI8pXephJjBsl-rviwxBEl3hbURKdujrii-XIpSOE3VzgLsXNJ5kcSzSyLcdk36BI76zegAT9nHWNe731hk48YBPqo0cWjt-eZeiMmfBCRFO6YsKoZhHFYFYlhbxHJFJocEbqqZKg_4zDy23zTR45WlM1lLJEFbyR8jouoSdDbAIttcCbOtWc41VD8ZQnFA8MUnOfImzk3dIuJfPdtp3-x2DEgGsiJCRbMAggP1OHUfO50KUltwHTZc_4XtJVo7ETvvopncqCPTV9FcWOua9zAnapSDIWI.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveBadge,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/stories\\/PolarisUserAvatarLivePulse,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenu,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisActivityIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookLoginForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupChangeNumberForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisMiniToast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroLoggedOutUpsell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisNavWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreToast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGConfirmationCode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisUserAvatarWithStories,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAdminSpinner,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcher,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericOnboardingUnit,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTwoFactorForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLoadingBar,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookAccountPicker,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCorePhoneNumberInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuSection,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullStateSection,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuLink,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupConfirmForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisLandingForm,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialogCircleMedia.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yp\\/l\\/0,cross\\/NcL6cLTfchq8r6iEmKDGr_2XB92dtrsIqVKJUrRMfPn6dZUTN-YPA5QbPNRkbPxU91D4hXRG4W9Yk9DfsDuRhgFe-VaoDhkQp5N7eTlBgIbHemWX3VmfSgHWdXq3ufa5XcYrwhTpe_MprdWan2BhpuoU6Lb9Txq0wCE0h7AgA7GXQxpP0B5mWkK8_JBc1flPFIiUQwvtWKW4C_eO-Zlw4CG_KadyuMM4wd_tQE_WSr1zH8omXBu9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6CeTG9CdhithB7SLiELVd6CWEEpUTs5EvKolrcocph76nf.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPageMetadata.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGAnnotateTTIEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisProfileLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisreducerRegistry,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/posts\\/PolarisgetMediaDictFromDynamicExploreGridItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolariscreateSelectorWithArg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisIgLiteCarbonUpsellsUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/emptyFeed\\/PolarisemptyFeedReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisnormalizeUserDicts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisIsFeedItemWithOldAdDataModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTOSStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSponsorItemsFromSponsorTagsDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisDiscoverLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/Birthday\\/PolarisBirthdayHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/processPolarisFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisnewPostsPillSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGAnchor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFBConnectStatus,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSubtitleFromUserData,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisMisinformationConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionGetUserInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDivider,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisNetworkInfo,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXSettingLogClick,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelViewerAppAttributionClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGClearChallenge,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksAction,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelationshipInfoFromRelationshipInfoDict.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iumd4\\/yp\\/l\\/en_US\\/Isr3ymAARJqU0K3Z_Wf8KRoTwMZMQk-_XSE0bvTHhRf4VR6t723G-MibnWsPMIfBIssH1KwacElbIF34HBtQspeY25TFgXjo0VGJC8SQ4mS-Oz0PWrOlSycbn5yldGe_z9Il75eX8b74rWruwMYJC8kDv2ZDX8vYVy1YQLWlHxcPtnTRPsgbjTY_Ei41yvY26Exp4W8PZDOgGvecKu3air6CtxHz0LEwxSEilEmbNUrbO3JhU4qSesF8QcdQXDWkogwE7D_7wXtLvBCF4aB5XvRxYV5P_QgnAO6qTlFAtHgMCngxAG_0lq-rmAXvBl0fvvLvqr-7ME.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisSentryFeedbackDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCheckbox,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisMediaConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/shopping\\/PolarisshoppingReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisStoriesStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisIGCoreAnchoredPopover,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/displayProperties\\/PolarisDisplayPropertiesActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileIconV2.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisExploreIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGConfirmationCode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksFlexbox,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisGradientSpinnerSpecs,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisfollowRequestReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarissearchSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDevicePhonePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/charitableGiving\\/PolarisCGCheckoutUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveStrings,js\\/instagram\\/polaris\\/modules\\/styles\\/PolarisSizing,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialogButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXAccountCenterEntrypointInformation.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultHashtagItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNavigationalHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheStateGetters,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksApp,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisExternalLink.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisKnownQEParams,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayViewpointManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionBuildFeedPageLoadedActionV2,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisnormalizeMediaDicts.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iGYw4\\/yu\\/l\\/en_US\\/bGW-HaBJhWaFvud1A9fkml67FBtcKKfcp2eg_DnAvMWfn6ty_lDviebkEdbJAj05aMpv0ohN2nwsind_2NaadyrvUC9dAkQVRLDgcFndSxh9V0P-WM2IAQakL0GzML5dbVgOxZpDMS4rAkLvhPzg0c0mIJkDbHQLZKrr9jtqa6UdHzFs4XBjvYeaSJ2Q8123fwQa0cEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TcMVB5PY6xraBvF_tjv1u-Jks5TSsTsadnN2GIVnPIQVZtsH6rf3T4QUNLPWOmYyiizaUODrKyGkv2jctNRnP5NZGmudPLiTSCSP.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenActionSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksBooleanUtils,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisFeedController\\/JSRouteBuilderArtifact\\/XPolarisFeedControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMatchesRegex,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReflow,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGToast,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisPostRootQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGResumeStoryPlayback,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenShareSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGLogEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksExecutor,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseModalWithResult,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksRemoveChildrenBetween,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetVariable2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksVisibilityContextHasSeenBefore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksClipboardSetString,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberRand,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksSessionStoreGet,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectCacheConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDangerouslyGetTreeFromParseResult,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksLogEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingContent\\/PolarisTrendingContentSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDismissBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenSendMessage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayRemoveAndGet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayPutAndGet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksShareText.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ys\\/r\\/vUWHER1OGtO03yuEzguiJHu-bv2InHGOMh2qHr62oeBX_7amqgVDl6uizZsR7LuUmggGVL98CezU4FNAexXgy0_jF8SgbwK6nAU1q4SgNQVUfJAFH4klUpS-Gs68TMXogWGa8tNG3-dQq0EHAaDd47-foCyvX6le-vDb0il8EndHa19oskaeSfyI90NjIImpTsnpfLKnifkXppCBKeF3KIMEAKxWioBWdmjzjnoSIuyMXqu-YY5rMCEEXO5ol2cFP_z-AGFWM41Id0mzGrGUY-U8fvGqeNFJyaLSuTYhyk89T0gMJHHTk23RpTiF30NbbZ-SB0YkZl.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramThumbnailImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelComposeMessageFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisInteractionsStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroDataStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackEntryFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/usePolarisGetDeepLink,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackExitFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebResourceTransferSizeEventsFalcoEvent,shared\\/facebook\\/isInstagramCDNURI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebDiscoverPostLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebProfileChainedLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelTrayRefreshFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebReelTrayRefreshFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromGuideOwnerOrCommentUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisSignupAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelSendMessageFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGEndTTIEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelMediaPauseFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/live\\/PolarisnormalizeLiveUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksInternalMerge,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchUserCancelButtonTapFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/postRemoveComments\\/PolarispostRemoveCommentsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishasLinkParent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicCarouselVpvdImpFalcoEvent,js\\/instagram\\/polaris\\/lib\\/redux\\/PolarisReactRedux,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISendParentalConsentEmail,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveViewerEndScreenImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFalcoErrorEventUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisIGLiteHelpers.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ikjM4\\/yo\\/l\\/en_US\\/7MonIHgl7UG2rAqz1aFPilTl6mlh_vGZ7znUhiOXh3VKYiX0bW3fYe0M7u6gymgxWiUfeRGR6u0xT-kryw9-XTsYRs8KJ6iT9Q9WoOmFfBKSpnCSWzLFGxfLp0a_EA4lB2_KhCF1ijSCGtfzubRuP-z16Bd9KUarF6cecHf51riqFHfiwFEhaV7ONPdADyCM4gAQAPj3NC-hXSie1w0u2niONHsCjE9srJvVt0du09In4EfGSSnRmkcC_y8h03B8HCk89WHjl1O_Zj6aKOByVBdwH2VRUU0H9plmH_cT1VLv9P-xy6F-32MxMyQEeVszt55shUrJ8Z.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDataSaverConfig,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisfrxWebReportReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadSULV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tag\\/PolaristagReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followList\\/PolarisfollowListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGFollowButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksNode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisScrollPerfMonitor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramMediaOverlayFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisReduxStaging,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScreenManager,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisSearchLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisadMediaItemSchema,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisKeyCommands,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisreadImageFile,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenInterstitial.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksAppLoader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupFormFields.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisUseAppPill.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullState.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutPaypalUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/seenState\\/PolarisSeenStateManager,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksLayout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisIconSnackbar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/PolarisProfessionalConversionUtils.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iSdl4\\/yn\\/l\\/en_US\\/xITi1KpUIYhvYRiYc2bnJwvHXOsfytUKNZsxEQCWvjtUQEtH9HqCWpYwSKdepfNcgGpLUFSRtsyNSsKwZvIKssPhyNCidn7JxhRbqYrl9r3EHM7YxV5w6dJvTdhTPSWMNH3qpQuO4ZCDtieox9_S2ZqFFSPfIv1Wea8EyTJfUNNFynrodiEC_N7P_l9GwvbFlUXLumW5g65ePQ-mrpTuVXjHZUVrt8XoCE-k7XmyffG0f6tZFEmr8uJG7uv8Bi0rdYx7GIOgPjCMVQGuqHGx-P-vCPC3qHynQmmm-HTeFV_x82lzOOFX_ROONscBvtNsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisnormalizeSuggestions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksParseEmbedded,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreate,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/sentryFeedback\\/PolarisSentryFeedbackActions,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACStickyHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIQuery,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionReloadInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLogoutModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/PolarisSettingsActionsStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisLockOrientation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarisPostReducerHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectActionConstants,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/static_upstream\\/utils\\/Polaristhrottle,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreChevronUpPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/incomingCall\\/PolarisincomingCallReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisexifOrientations,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisKeyCommandNub.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/lib\\/PolarisIGCoreConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIListCollections,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreChevronIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionOneTapLoginRemove,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolarisgetProfilePostsFromNativeResponse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAnimationFunctions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/uploadProgress\\/PolarisuploadProgressReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisBatchDOM,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationMediaFromGraphLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxSSO\\/PolarisfxSSOReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/call\\/PolarisCallGatingHelpers.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iPVh4\\/yv\\/l\\/en_US\\/3o-_S1Ggl8Wvamttv4_y8bKTODHkub37p5Xr8r6CrsXLGTkgFyIgr0-21XZppPN_-fo8Kee9xfD_sZD_TjGkSSJXJpYrfsjWy6RhgcT9SvKH7q_6vQy_H7zrntBJCVVOakH_bFmL0c7s3VVN5_LDUa__67EojkDtSWAeagvs-VW8Fvu-x2PMxQmA4Lr-ISBAgltBsKgDZTQIBMsxhrQqAbHQTnTxT7Zzu6x0J3iAd1o8tlvpbA_peXYdSl0zfr9ZfSYPLFD3SqPtSDmkHfcSWfl1OWFinYjf4HjfisvMjmlu6mErQyjOCJ0-s-_n3hpYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserCirclePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemMediaIndicator.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/PolarisVolumeControlsManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionFavoriteUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxAuth\\/PolarisfxAuthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLocationPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolarisgetProfilePostsFromGraphQLResponse,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramPushTokenRegistrationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGGradientText,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFXCALAuthLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/getPolarisKeyCommandConfig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLicensingPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionGoToTwoFactorLogin,js\\/instagram\\/igds\\/IGDSDialog\\/IGDSControlledUserBlockingDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagFromGraphHashtag,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAdPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisProfileMediaEdgesType,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolariswithDataSaver,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGActionSheetItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGNavbarButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionLoadThread,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisViewpointActionUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaCarouselFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisAutoplayHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDeviceDesktopPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHeartFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisAsyncLiveCreationModal,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSMediaCarouselFilledIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLxq4\\/yI\\/l\\/en_US\\/BC2YPZ_7uY47w1BaMk2UQlunKzSgsBM_cSQCDupmHZ1-2E_CI4YIGpgKh1wiG_-tj8wh3HxHNH4Y9ZOXbifkbgmnOTDEZzcrhpcdEDTvzU6Y-62g2cAoVCutBzQdDi8ZpX3pMFi2oY2Xb7axeaFP3OBrb2JDFmmqmB65PSMkrXFotZUUZvBF1VUvINWKXgzUlZGeJCaZ8OD_U7-zMd2pAFtOVuRe29ETRW96oJ1c9troIrmwsGQ2Uz6rcBXg70dRm7sl25AUMD2ZqYH3meGXFhISQyG8EXUPjlGDUkl2bhF-JcanC8nXMTtRk42dnBHw33ISbCL8V3.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualGrid.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnfollowUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/helpers\\/PolarisIGCoreModalBackdrop,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLiveAppInstallSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButtonContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisPrioritizedTask,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionMuteOrUnmuteUser,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/www_schema_components\\/PolarisMobileNavMenuQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisConnectionsLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisNavChain,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisFollowRequestActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisImageFileForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/supervision\\/PolarisSupervisionModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSidecarChildFromMediaDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisClearSearchHistoryButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalConversionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultInformModuleItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/usePolarisHoverCardPosition,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationNavMenu.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUsersFromGraphMedia,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionBlockUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisSearchBoxTextInput.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisCIXWarningScreensFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksScreenWrapper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavBackButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisLabeledTextInput.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iuVg4\\/yI\\/l\\/en_US\\/4d_IoHC1g32u3kM2eV69KRn8miE_5zJbp5R-4FgLjsmG5mXVtISGb6kyoFsPPaS_AtjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCsSWQ3B6QKZhk955bVWck80R_rOubBAC3uERtjqIsN_kyDvwze-q4Wvdlw5DASKgBfMTnDiVnrN3BxjjN62COsISovgFcfqhIdqYUloADoy6FEIggj_8E_RtAAqrQy73tjqmS-v0z_kayh-Cgz24p62rbg9wbV9rs8EGhizF6dvoh3nAcsXt0EKskEyafGg_yqeAOYdxSXoFA23rCAuJlCcLWZaY4rPktNbvuEI.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSReelsFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISkipParentalConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgCameraEndCameraSessionEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebOspFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisExploreHomeImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportState,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleSeeResultsClickFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleSeeResultsClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramSearchResultsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMakeFlat,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModalWithModalObject,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgBloksSettingsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSensitivityFrictionInfoFromGraphMediaSensitivityFrictionInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisExploreHomeClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramOrganicImpressionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishashCode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebLoginFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisreducerWithCache,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleClickFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleButtonClickFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetPaginationInfoFromPageInfo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisUpcomingEventTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionFetchInboxPresence,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetUsernameSuggestions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchAccountRecoveryOptions,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramWellbeingCommentCoverFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramWellbeingCommentCoverEventFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionThreadLoaded,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/usePolarisViewpointSanityCheck,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisactivityUtils,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarissetTimeoutAcrossTransitions,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramInformModuleImpressionFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramInformModuleImpressionFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y9\\/r\\/zwNYr8DKnCFdg0PP1dXT5vzPLiFNeeRGBlnui4AyxUBcivZ6boD7aGO5vPSAqPssUiNbVh4d9ctJUez_meLUcEM2sbcb4f7T9vDh1tajLIgmiVDe7RN9X1CyMUaI1KqA1JE-jufldGmqKtvD-DWqZKtM3yfZ1AA49x1GQyOV-h82x1n4BXqG-mbkqGkFQO6UPYcdyHG80swhZPOOq0n2nQF7LmmbtL8ziw4TwMtWzqa_ZaxiiSKRxnNN6J16scnX8xp30atj0tgWiW-nAQbYfgzXnh-faekUAOMnZhUtOvl0f1BI56rVBtXpaIuiDNL-gkpOH3HDQ1.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/PrivacyPolicy\\/PolarisShouldUserSeePrivacyPolicy,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisRelationshipState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGStartTTIEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisCreationTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSubmitErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironmentContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountTapComponentFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISendTwoFactorLoginSms,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksAnchor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountStartStepFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/__private__\\/PolarisLoginActionGetErrorDescription,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFetchDataFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayCenterButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/sentryFeedback\\/PolarissentryFeedbackReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksNode,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIOneTapLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/comments\\/PolarisnormalizeMicroUserDicts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSubmitFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/effects\\/PolarisAREffectsState,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetDynamicExploreGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFunctionalityTracker,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountCancelFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisCookieModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountSkipFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisALTrackingData,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/clips\\/PolarisClipsState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreForm.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yS\\/r\\/qX0dySyK3UzPq4uaeRc848VQt8xcPbQ6HMrKmecdIswj_-4I8luqYzGvS4IIG_X6NHl01Pi-qj1VLkLV722V6JXQnMsCpinjLiD42Yoyf0tMmypiDbr4g6PK3oSDr1Ua7h120Zc-YblUMd49tgfz26TmByl3yESiG62l9Y5VDMxRDmEcXbK8CqLldKKAudiM90WyBSyzE7kXQLxkJvi-seRGVuynFcAd081FcpN3n8cBPDRCdLVOSk4fOy-O3RGL2CpNYx4Je8Ue20we0jgjBggx2bJIwFB9_oR0g4PIajN3zM34gNKHl8gzMqz4-KhdhvVWfynrOO.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialogHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisCaptchaSignupForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDisappearingTooltip.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/effects\\/PolarisarEffectsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultKeywordItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/twoFactor\\/PolaristwoFactorReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxSSO\\/PolarisFXSSOActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLiveLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReelsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisQuickLogModules,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksScriptParser,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/usePolarisViewport,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksDecoration,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultKeywordSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutLoginModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGPopover,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSidecarChildFromGraphMediaInterface,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionInitFeed,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsFormFieldInputConfigs,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetPreviewImageCanvas,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEmojiHelper,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGCometRoutedRootConfigBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSettingsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccount\\/PolarisProfessionalAccountLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReelsPanoFilledIcon,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSReelsPanoFilledIcon,js\\/instagram\\/igds\\/IGDSCheckboxOrToggle\\/IGDSCheckboxOrToggle.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentNavigationLogger.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iga04\\/yD\\/l\\/en_US\\/5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBFBE3a7MQRPSro5msUpLlBFbi1HFpEGOg7hOwZ5Q7d0nfXdaoHQxAUX0QJT5d8pfr5wnjz0jxXTGP1bJx-6NbXSbbpn6f6tH2qiD5OyAqiJFpkmJA5oMjI2C8b6sWz78dOy6ZmxU4tjYUO-HE_bagmDPADEFtRPQUCAqc8E-TPOrjfS-4StwHwhDITpIubZzmYckx88BaNwgJ_TnkrGelg0eSRxBeK42i4EoMO0U1WGT_e9cdJhLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZkE7p3p2ptcX.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFetchBatchQuickPromotions,js\\/csa9qir353c4goc0.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginTwoFactor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/isPolarisFeedAdItemMediaTypeSupported,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisNormalizeStoryAds,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/upsell\\/PolarisupsellReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisFilterDuplicateFeedItems,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisCommentModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/hooks\\/usePolarisDirectFeatures,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerTranslations,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/live\\/PolarisLiveGating,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mediaPrefetch\\/PolarismediaPrefetchReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/zero\\/PolariszeroReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIRequestSignupSMSCode,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionBuildPastPostsAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMoreHorizontalPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellMobileHeader.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutNUXUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPinnedPostIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisSidecarIcon.react,js\\/instagram\\/polaris\\/core\\/PolarisBaseThemeDisplayModeWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisUserModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenChallengeUrl,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisReelModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/autoConfirmEmail\\/PolarisautoConfirmEmailReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/profilePosts\\/PolarisProfilePostsModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisVideoIndicator.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yZ\\/r\\/RSj4aeHj7PYISJKBvMsQu8s5tH2NgfstCvsWqehdEtWwMl8C5y2rlpvpyNLRylHntonwd_Cbjqu3ObOb1kmUlkGyl9v_pNsNcb5JNm_wr0odE9B3PS6rwMT-AZgsR4pKwIjN0zMDlzpblQT8YxahRBHi73X3977PV01xVrLTSrmz3_4RwYYBW73Wa6TMsh5Q510mGcmFDoYVNCKe8xT1BzQk85ZQCEcxSbE5LyrOEJU8IzpGUPtNwJmlTLck_e46Vp8LmQKk8jHSpUh4IjgXA-h1el5tkYtJY8L4NsHr4QmQAmdUOV98Db6Zvc7TdVlQ6fCkxArhTq.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/core\\/relay\\/bootstrapPolarisRelayEnvironment,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReduce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksDummyComponent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisErrorBoundaryWithHoldout.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksRenderContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/boost\\/PolarisBoostEligibilityReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksNumberUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/Challenge\\/ui\\/constants\\/PolarisBirthdayConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisCacheLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLoggedInCtaLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisLayoutIntervals,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/unsupportedBrowserToast\\/PolarisUnsupportedBrowserToastReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksEventLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisCreationUtils,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/static_upstream\\/core\\/PolarisdebounceCore,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisLoggedOutCtaLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaTypes,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenVoterInformationCenter,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginWithFB,js\\/instagram\\/polaris\\/core\\/PolarisSplashScreenController,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelPlaybackNavigationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIOneTapGetNonce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/hooks\\/usePolarisAutoplayReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILoginWithFXIGSSO,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/state\\/PolarisCreationV2State,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/PolarisVideoConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisNewPostsPillActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedPageExtrasLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebFeedNextPageLoadFailureFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramReelSessionSummaryFalcoEvent.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yD\\/r\\/WMC_8M17ZpFefek3GBDH_8JfdPRmUQS9rCL1J3E3anuEhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgBVuZT4M-fiSfvHRERRhdoHKbdn0bx4vVqfcPDbxEKm378uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVO9rcvbkQZKPO4uEN787qPXIs2M5zHLg1_aEx1Eg--o9-M_E5bfFYHuBMWSSlnW-sxo1IUflx9jqSrRPnGA8ytyG-ore7GW2fazxRCh5oWcbDoK7JOLeBofMCSHMJMaqGcE9etKWyEyjpo4J0m68qjzNq4NS8kC1QbrXpFcZdiENEakNjy.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellContent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisSnackbar,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastWrapper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogoWithTitle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBirthdaysAdditionalInfoModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisProfileIconV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreBorderedIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAppsellUnit,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShell,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemStatsOverlay,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisSignupFormFields,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisLoggedInAppBanner,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupForm,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGrid,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemMediaIndicator,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNavigationalHeader,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisSearchBoxTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBanner,js\\/instagram\\/polaris\\/modules\\/styles\\/Polaristypography,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopLogo,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisTopNavigation,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIconButton,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDoubleTappable,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPreviewPhoto,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavPopover,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationsBannerV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPhoto,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellMobileHeader.__composite__.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yk\\/l\\/0,cross\\/L_MqXT6Iana18zP1igsriSGhihGd6kD5L3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7Ml6Jq5smuCszR6PM_mMSBP0dkD0hSRz_pr3p1YJM2o-sjEvHeRgHNuqNS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFPnoBXWkhUGfGDl9AnanrGnO5UaHeXBAlyAVdq7fdXebnMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD77cNCRyUZQOIXuv0znEjOIGmGG_OgqH1JRXRvbCsFY0y11J1cDW8Vk6vZzYlIDVL8QlQXEG8K-Xsn1.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/contactHistory\\/PolariscontactHistoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchContext,js\\/instagram\\/polaris\\/core\\/query\\/preloading\\/PolarisQueryPreloaderCache,js\\/instagram\\/polaris\\/core\\/PolarisVideoPlayerGlobalComponents.react,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIFxcalAuthTwoFactorLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupSeamlessLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/oneTap\\/PolarisoneTapReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSuspenseWithErrorBoundary.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisLoggedOutCtaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/FbSdkConsts,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionCreateDirectInboxLoaded,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisIGViewpoint.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisLoggedInCtaFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCoreHoverCardProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGScreenSpinner,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-animate\\/PolarisshouldAnimate,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisClipIndicator.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404PageDeferred.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolaristoastReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarishandleOpenInApp,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreDialogCircleMedia,js\\/instagram\\/polaris\\/modules\\/consumer\\/GroupProfile\\/lib\\/PolarisGroupProfileUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisSEOEventsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromLocationDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionGetRelationshipInfoWithViewerByUserId,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisSizeCache,js\\/instagram\\/polaris\\/modules\\/consumer\\/UpcomingEvents\\/ui\\/PolarisUpcomingEventIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCommentPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsIconButton.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_tA4\\/yO\\/l\\/en_US\\/mGMZzWKyQfkp71kWYtwuFtHje04iaqsIz0Kw6F9gqlHKRBe7hqBeUMPKKfbyHBPBSSdFkC5lcknB_d_OxAFV426UIe-tldHFiYL7KmpYzAWx-PVBljswiiH1BRYRCSWYOvdiMZNVDRmSSZjaq3XMoyz7ztIniQqkd7ZGse-g6-DlbpZhC8FENKAqzHxxsLla7p8VTWwVjyXzNsvTXPiCBWTpj57O0eW_BKZOnEwUq6PpXBsy25_sS5-I6nJXxLsSKppydnap7Kux2z7Tf4PCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_r1NWtJRPFnoM.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tagMedia\\/PolaristagMediaReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/post\\/PolarispostSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisCentralizedUpsellDataHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavLoggedOutContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolarisCookieModalActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profileMediaEdges\\/PolarisprofileMediaEdgesReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisUserAvatar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisSharedAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisDoubleTappable,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisliveSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/ui\\/PolarisdynamicExploreSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisBirthdaySignupForm.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarissearchReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellFooter.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedOut.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModalOptionsMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisRedirectHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCoreTextInput,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcher.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/scrolling\\/PolarisScrollPositionHistory,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisautoGeneratedPrefixData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookAccountPicker.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEntrypointHelper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksTextStyle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisUnfollowDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreWhatsappLogoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisSensitivityOverlayBase.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/custom\\/PolarisIGCoreLogoColoredOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksText.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iXZ54\\/yZ\\/l\\/en_US\\/aOInmP2nYHfNP6TI5JRDh7JNgKUcD-qW_fmACEHtdqIh08_yHnwLWIXkKFDcr6JC4kwfDbsmJZ-d6j10BBgKhAYbjkv3KbY0-PfQRDczZJRtfwu5S7iPNtAWGLhfv6xanrlCih0J1CXK0G_Nkiik4uBBt74D7kfysCu_Bku8_QEkQ6CYjccOi6Zdc16Nc8IqwFAaxJoGwJ68yhq5689SJfCu2d981GaIMx9I9guqHGE_alooQHlnVQ58nx5UiijNaiFgMhiVOh10aDLA0kYd9kz2hwiPSv9U7f1vH5-3GciZNWk1OefBtRI469ISE9gM98DdlV2DnS.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavPopover.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXAuthenticationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/displayProperties\\/PolarisdisplayPropertiesReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutContextualLoginText.react,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBaseDOMContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisMiddleDot.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentNavigation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericDesktopHeader.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetCommentFromGraphComment,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionInitCacheWithLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisFeedHelpers,js\\/instagram\\/polaris\\/core\\/bootstrapReduxNavigationState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisnormalizeGridItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/accountRecovery\\/PolarisaccountRecoveryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/gender\\/PolarisgenderReducer,shared\\/security\\/trusted_types\\/policies\\/default_policies\\/TrustedTypesIGWWWAliteSiteDefaultPolicyOptions,js\\/instagram\\/polaris\\/video\\/PolarisFeedAutoplayProvider.react,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsAPIActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWhile,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACRecaptcha.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/profilePosts\\/PolaristransformProfilePostsEntities,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisgenerateOfflineThreadingId,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/Direct\\/PolarisDirectInboxPopoverLoader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFavoritesStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBodyScrollLock,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisTransformInjectedStoryUnitsEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/usePolarisBaseViewpoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/business\\/data\\/PolarisBusinessUserAccessTokenReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromGraphLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/privacy\\/PolarisprivacyFlowReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iogo4\\/yZ\\/l\\/en_US\\/TPWwBuS3D0v5nAUCXctIWjx8YCG5ak-4QVyFh8UQtYFTINdj5bVw4NtlaPPSH4qldP0r0lNtKZ5LDYxSmbpCWqs1XvkEN7yzx1XHeIdeziMTMjuAIsSWK4xUBY1aAXCi5IUw3ueRbyE-Xvfi_vwFp8CKUuxJ2zZnenfdGx6oPT-RWa64dFOmCYr2hsB3zpYFT6uEKpv_b9fYzlfXFAY7L8oS9jUnux62U2HcJa_PW34pRyvC-sxXxAW9mf5Se2MMNzKHg2cIqwhPXjlqpCIuHInqpNGbdoYGaRQWxReiMychBARUEreMUvtnobDIrjuKdqHzFcZlH3.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreModalLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutPaymentMethodUtils,js\\/instagram\\/polaris\\/modules\\/customersupport\\/ui\\/PolarisBloksCCSSupportUserChatThread.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisCacheHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/PolarisloginReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAdsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisStoriesContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksGlobalStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPILogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisNormalizeEndOfFeedDemarcator,js\\/instagram\\/polaris\\/core\\/XIGSharedDataHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentBitArray,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutNetzDGReportLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXAccountCenterStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fbConnect\\/PolarisfbConnectReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFXCalLinkingLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisMediaOverlayInfoTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDateStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationTooltip.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/__private__\\/PolarisFeedActionFetchFeedDataFromNative,js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolariswithRemountOnChange,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisCreationLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/exploreModule\\/state\\/PolarisLoggedOutExploreModuleReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectMQTTInstance,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksTextSpan,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisTopNavigation.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNewPostPanoOutlineIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iTf14\\/yj\\/l\\/en_US\\/7vQMuHnfsQjjvQ7ZZbrRv0RdH_GGeDrx3byH5s8yl6pzWhnfZ-ekGlGOla_eXt9RBcqFK5aFMuLQDK2X7EZJT7NYBQWMRuPfjwM5Pv0Z9NIT2fFK0LNSU3yVCcU1fcWvUcnJFLi5aA0HzYrDQjjgTDY1gd9rkCMYjsmwhUUmBZ5KM2HoipLcT0b2xQGPIE3_uj9a-ODtjIIctPcBEGHHQH-rtiOpppGkPxhIJnQCyTA9GrLAUVppMRhWv7sSPOTsadJEBmr0MRk1D91kbpRZZxH7fSN7bKwl4XdTGHc_OYieX33HeZKqsdHOXL7PcLHDvkQZezkwNz.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisUserAvatarWithStories.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/PolarisBloksPrimitives,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisauthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisIGVirtualList.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionConnectToMqtt,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisinitServiceWorker,shared\\/third-party-bundles\\/css-in-js-utils-2.0.1,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisInt64,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsActions,shared\\/third-party-bundles\\/emoji-regex-7.0.3,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/ui\\/PolarisdirectSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisPerformanceLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarissignupReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisfeedReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisNavigationActions,js\\/instagram\\/polaris\\/core\\/ConsumerEntrypoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/constants\\/PolarisPaymentsCheckoutConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/threadedComment\\/PolaristhreadedCommentReducer,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisAdsActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOneTapLoginForm.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisFeedTimelineFragmentQuery_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/dynamicExplore\\/PolarisDynamicExploreActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBox.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShell_DEPRECATED.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsList.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutStickyBanner.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFooter.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ideN4\\/yh\\/l\\/en_US\\/WUXoXKB5Vyvc-HQkRIFF8BZXHjtOFs-7f0rkkj8EASXWau3LZAq-kjPOtqc1o2z6mkQQZkikRNdb_aWuOLEF80Nlt_q5M7cbvzesNE3EpS7wAeUWvG9VOQN8xurZtu3Je_URqxsgVkz1qc5Qhro8rBSrBkY-oh5SKNZLaaM3Ey0c8WjGuF9pD6J8xKZ_2LhPPaHO2XIT26eSRq8TN5kpI5kjtx_qblnLVb9XcItcDc4tJvSpFaASc002zkEl-Ui34VTn1SusJwHhnrIPCgqvEeUjuxvozlYKMvjA_Bg1DMsqaL0k4OmkoAgM2t5XFWH2LExFFnMpuB.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPrintf,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisClickEventLoggerContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisgetDisplayName,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentValue,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeRootQuery,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisTestAccountTypeConsts,js\\/instagram\\/polaris\\/modules\\/styles\\/PolarisThemeStrings,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWriteLocalState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentCloseDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksFindComponentContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisHomepageImmersiveBackgroundExperimentProvider,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadViewerData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGViewpointExtensionContextGetPercentVisible,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavLabelDisplayTypeContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceChild,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapMake,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedStart,js\\/instagram\\/polaris\\/modules\\/consumer\\/DesktopCreateStory\\/PolarisDesktopCreateStoryGating,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/creation\\/PolarisCreationMode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceEmbeddedChild,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPPRLoggedPostsGridItem,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksGetState,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBasePortalTargetContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisNormalizeInFeedStories,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayUpdate,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagFollowList\\/PolarisHashtagFollowListState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/gender\\/PolarisGenderState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGLogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/helpers\\/PolarisAccountPrivacyHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarisLocationPostsTypes.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihtU4\\/yy\\/l\\/en_US\\/8WJrc3z5r6rNeBueOXnl3Ho1VYUHa651zZFuQ2-qae_Hb--bsE4wh_vfcvBuH9kzB8FQrIifA5vtJPk4wt5ynup-sj2ciowRWGG6RBcyJrg-RyAkDqfel5OCswUi0OsL9OtqYr6Gq_hC8Yh-Vp3ti5ZjFPxWEGHe77Ad-j0yByFJa3dgPsGuyQkf0r5m3TsNAUeMlcKqLabb6nJLmxOSUz4n7VFyxSz1wlx_iWiNH6YB3Y8SL4d0-doVKytr56vwhLzmRHnd6iu4-AH3OR4hEIhZitUQ-_Iz6mt6HwilIrqxR7WWrYoCOGKAPN4ryLLGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberMod,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksTakeLast,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberAdd,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIMarkDiscoverPageSeen,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/followRequest\\/PolarisFollowRequestState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolaristransformEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksVisibilityContextGetTimeSinceLastImpressionInMS,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolariswithDirectAPIEndpoint,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPHelpers,js\\/instagram\\/polaris\\/core\\/logXIGPageView,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisNotificationPermission,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/unsupportedBrowserToast\\/PolarisUnsupportedBrowserToastActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/devtools\\/PolarisDevtoolsContext.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisGuidesState,js\\/instagram\\/polaris\\/core\\/getXIGRoutePageLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetSponsorFromGraphSponsorTag,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionUnblockDirectUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGPresentModalWithResult,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/consts\\/PolarisManageApplicationsStatus,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupDryRunExitError,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsTabDesktopFragment,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksT3DFromArray,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolarisToastActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisFeedState,js\\/instagram\\/polaris\\/adapters\\/helpers\\/xigRequireInterop,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionBlockDirectUser,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisArchivePageController\\/JSRouteBuilderArtifact\\/XPolarisArchivePageControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenScreen,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/mobile\\/PolarisMobileStoriesConstants.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y_\\/r\\/f_t7pv0QPDLylvnTaLpsDvB_kUbeiHuubaSYykFylKg47k6wpgE_RIiWPCiQEONtoFBoz1p1tGVl_Vpp40V50OUOQ-RlY49CezdSH0uL3FBJdWVsOoA7hVr6nY8ddgK_fHGTltkroQ7X9aLyQz9VaMkjiX-63IjwHN4kzVwWDE-9dduCNjVRgXWrUg1amhJPVwtkuxRLCamO6HGcfGoNgZubc3lMx6tabohyWUCVwKIm5pmsI2jpOH7EA5rZEMmpFC65e_IfUMkQkr0eYffWtGKDz9ND-_-HZwhkeWRjMwW0Y0KE-te8WblwqOQgo4FdqxYQl_lh1x.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePressable,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/filters\\/PolarisisWebGLSupported,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLivePanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksOnMount,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/likedByList\\/PolarislikedByListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisNotificationClientLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisBloksOpenBottomSheetV3,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationMediaFromNativeLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/actions\\/PolarisSavedPostsActionRequestNextSavedCollections,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLoginWithFBJSSDK,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fwp\\/PolarisIgWebOneTrace,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/save\\/PolarisnormalizeCollections,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/embed\\/PolarisembedReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisPhoneCommonStrings,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBannerQuery.graphql,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSUserFollowPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarissignupSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIQueryWWWGraphQL,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisDOMRectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDOMListener.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisnormalizeSuggestedUsers,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/state\\/PolarisautoplayReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUsersPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisTrustedDevicesUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCardOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreShoppingBagPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationHelpers,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisShakeListener,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisRegistrationLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisPPRUtil.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i_sF4\\/ym\\/l\\/en_US\\/KAGfCmJ0yrO8VLBiRQ3WZH6SqPbXWgKxAgwb44cxAbBMV4pUZ88rBB2bRqNpurq3flMIqrrcXTY6JaqLuhOr4dITUhVUXTvNn0gAD24IncfaZfMMkFXAvZE7w6HwDK0xWLK0W1wFJOILrk20d-_XnKwL3x9kRtvP5iWft9jFm_YXg8bQKCgfrN42ND57QvpQUNQUuERFAARX6ZmNuE1rRcRUh89G5ys1IBDdpN5PY6sjfjYuPsP9BBGbVfJM8tuRR8BuDXpVv0uziPMNmIlChJkrlQWpj9Hu9UkuU_sAPono8c92r023X0RwY6NbQUIfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarismediaOverlayInfoUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/clips\\/PolarisclipsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisIGButton.react,js\\/instagram\\/polaris\\/core\\/PolarisAppWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksRenderer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/fb\\/PolarisfbReady,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisDynamicExploreTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/ui\\/PolarisDirectPresenceHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutCallToAction.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedInButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisStoriesLoggingUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/PolarisMediaHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalConversion\\/PolarisprofessionalConversionReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPHelperModule.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAccountPrivacyForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTermsPrivacyPolicyBlurb.react,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayFeed,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGNavbar,js\\/instagram\\/polaris\\/core\\/relay\\/XIGRelayEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisActivityIcon.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISignup,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAnimationScheduler,js\\/instagram\\/polaris\\/modules\\/consumer\\/MobileStoryCreationPages\\/ui\\/PolarisStoryCreationUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/lib\\/PolarisDynamicExploreMediaHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/taggedPosts\\/PolaristaggedPostsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAppsellUnit.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAcceptTermsOfUseBody.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iFMc4\\/yP\\/l\\/en_US\\/DUBygfmDk5Ib8Xug-xyGEK4jhF51jpgNKCKLc6GKd8GBq-KXAfdbuwtK0wYBqkVP3xzMN4wCv92Upx9Y23TJ0mGPup7cnJfrx6uZQdudxrKck4YHFiWbBdvkkDo7xWzp9lQ5Djgy6co7P7tkfSXhWNB84MuWr4ZZebP-APREd3kYw0UV9HvQuED5mWCfZFZ04OYoX9TDK8US3W7mNESc5M_DSDWJkonSbDodKxX6KHVIPFpHa4jfRGI3tYhtoMvOx-8c_77fCge0WLvyVgCff2C2dcZxE9thncPrmg6D6q4WCd6spY1b711jlotBsqgL-tG3hJ-QfM.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeFragment_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisFacebookLoginForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/lib\\/PolarisLoggedOutLoginConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/dynamicExplore\\/PolarisdynamicExploreReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisprofilePostsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromGraphUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutMegaphone.react,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopFragment_items_connection.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/PolarisDirectStringHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/loggedout\\/PolarisLoggedOutUpsellStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionLoadFeedPageExtras,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/twoFactor\\/PolarisTwoFactorActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupConfirmForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/navigation\\/PolarisnavigationReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieSettingsContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/utils\\/PolarisScreenTimeUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisCountryCallingCodes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolarisReduxCache,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/creation\\/PolariscreationReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDismissEntry,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisHoverCardPositioner,shared\\/third-party-bundles\\/focus-visible-5.2.0,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisExploreLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisRecaptcha,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStoryActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksDataBinding,shared\\/third-party-bundles\\/body-scroll-lock-3.1.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisCreationAPI,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutWebLoginModal.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iZ3g4\\/yH\\/l\\/en_US\\/5AmYGtjRD7f7tpg2Boxw1QNUDJs1_c9AcNEuRPa2jizzFeffG0-5G49EmaSvSh6Y3QX4tz3FT19AdUIjouatm40GyaBGkSK97TdPD68d1wMH5FvlKlfPmd3ETHqJ1CxhSd2zTqewSnwWkfAFSMRypvZSiqNnSypdaHY189d26Rx3th3NtYwJfhv5oxT2a_TZYC1-BvztcvPGRHN_Qck9QTMcU4YkekDepNi1V8SaqDCE1TQmA1tzshTxMC-SyCgFGeErd--83PZpEzK7KgmpqRauaiftpC1IIiTUIF_g8QlZharrTBu5IblZKqPlQ6ggx0qND1H77Z.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/rating\\/PolarisratingReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingContent\\/PolarisTrendingContentReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisNavigationContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/loggers\\/PolarisConsentLogger,js\\/instagram\\/polaris\\/adapters\\/lib\\/replaceURL,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisHashtagModel,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisNftMediaIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisgetBlobFromCanvas,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltip,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/__private__\\/PolarisSignupGetAPISignupFields,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/suggestedDirectory\\/PolarissuggestedDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisAsyncComponent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagsDirectory\\/PolarishashtagsDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/deactivateAccount\\/PolarisdeactivateAccountReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilesDirectory\\/PolarisprofilesDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentBrowserList.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisonlyHandleSingleClick,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionMessageFromProfile,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/popovers\\/PolarisPopoverPlacementProvider,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPISetPrivateAccount,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPageTitle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthConstants,js\\/instagram\\/polaris\\/video\\/usePolarisFeedAutoplayRules,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/hooks\\/usePolarisHideOutline,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/exploreMap\\/PolarisexploreMapReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/wifiAuth\\/PolariswifiAuthReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisClickableProps,js\\/instagram\\/polaris\\/modules\\/consumer\\/Clips\\/ui\\/PolarisClipsConstants,js\\/instagram\\/igds\\/IGDSDialog\\/IGDSDialogPlaceholder.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIReelSeen.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iJIK4\\/yK\\/l\\/en_US\\/6e9XSBENHZZ2Rti2_rXMr8EsHovapUvIHpDj3drd6c6R4fcQhb8eQg95KNkoeMHq0kVlp18MSq927J_q5ASBxRkyYe1M04GU89quZxnIWKe0X9YuDs-NDTw4GGNo6SpegRrU8BsjhPu9joeREl1MmsGRUndJJLSmIlud4oBwjGIsYnXeZp99Cb3wbOx0LRgqp61IOTtJJqPpWZkuwmwOUdDr3dXqB-S2BStBJRLBglotL0WNufvW9ZEw15aHegM2WfsDvUfOPDELJj9rrs2ab6KoRyKDEEUl5ohVa-QJcFudWxwms8DmIfBzS2vLzF6HD4xxs4ThoU.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisClipboard,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisResponsiveBlock.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relatedInterestMedia\\/PolarisRelatedInterestMediaReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/profilePosts\\/PolarisProfilePostsSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/pendingComment\\/PolarispendingCommentReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisPreBlockConfirmDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisAdsGatingHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisAsyncCreationModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreShieldPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisBirthdayFormInput.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnblockUser,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreNftPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/businessProfileDirectoryPage\\/PolarisbusinessProfileDirectoryPageReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCompassPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksAppContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisProfileStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/phoneConfirm\\/PolarisphoneConfirmReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreKeyPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisSupervisionStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavMenuLink.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolariscookieModalReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-animate\\/components\\/PolarisIGAnimated.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLinkPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGActionSheet,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLogoutButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisCountryCodeUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreRotatePanoOutlineIcon,js\\/instagram\\/polaris\\/core\\/relay\\/buildSubscriptionForQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/live\\/PolarisnormalizeLiveBroadcasts.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iss64\\/yb\\/l\\/en_US\\/yNUPGF2ng0lZ1ZnyIrQo9eMeVZ_Ugym_cz-Vzx_hyJ1cqCKMLcRE72ZrRvXOsTjZmMFH6nGXmIHFgD8931N_nigIEsVkBPIU3jVO8-WF2EfxHJ7N3MQuZt2DY5ck_gLJllSfLCEiiGBlApkdGwK7V39WdTx5GxwXTZ9X267Kqb5GIkbhv0YU7XT8XTlhPytwLHYPbYNSt6IvLIqardcDre7P16K07TBVPrefe8u2hAS-XQlTlWeMVG2QO07XE8C1RILXAeOY2uK-0G6thGn8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrqz-ehW8FecPhDBxgDmeMgT.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisSelector,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisisPhoneNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapClone,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksIndexOfChild,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisCountryNames,www\\/__virtual__\\/relay\\/PolarisFXPreTransitionBannerQuery_instagramRelayOperation,shared\\/js\\/__generated__\\/StaticServerJSModuleMeerkatStep\\/single_source\\/PolarisPreloadConstantsJSModule\\/StaticServerJSModuleArtifact\\/PolarisPreloadConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisVirtualPostsGridConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisPreloadImage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisStagingState,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGTTIEventConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayPut,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisNavBarConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32NumberDiv,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingNodesContext,shared\\/third-party-bundles\\/inline-style-prefixer-backgroundClip,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksJsonEncode,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolOr,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingCodeContext,js\\/instagram\\/polaris\\/adapters\\/ui\\/StylesManifest,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGReloadPage,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/PolarisSignupActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/wifiAuth\\/PolarisWifiAuthState,js\\/instagram\\/polaris\\/shared\\/ui\\/shell\\/PolarisConditionalPageLayoutHandler.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksi32Convert,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksStringValueOfNumber,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksCurrentTimeMillis,js\\/instagram\\/polaris\\/modules\\/consumer\\/Challenge\\/ui\\/PolarisChallengeRoutes,shared\\/third-party-bundles\\/inline-style-prefixer-flexboxOld,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksTranslate3D.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yR\\/r\\/Kj_M2SxSCEHPKwSMLe4qIkKPNbWwqxoj3eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSpOzu3MZSabv4Xe4EkOVHoGmIAQGxH_0Lm45q8qv1oo-9w-qVg7Gsm_vj927JBAoaupCcyJZbdheBrWWnEzuUnVjcE7rq7QtT2ZAXrH9bAVHibqS94Qo7L10ZFJfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUIXXYKNSkDHgxTkONNkXKO9fzO8RVZ94LQTPUa7udqp-7MnRE_OJhTaABCkkr3k-TOneSvrIV8e2RU4tSYUUPoyOza.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/bugReport\\/PolarisBugReportSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetCookiesFromServer,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/addToHomeScreen\\/PolarisaddToHomeScreenReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIUpdateNewUserConsent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/video\\/autoplay\\/PolarisAutoplayContextProvider.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/location\\/PolarisgetLocationFromNativeLocation,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformSuggestionEntities,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisLoadingBar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisRefUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIValidateSignupSMSCode,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXSettingsFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisnormalizeReels,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFBPixel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInterestAccountEnterFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/seenState\\/PolarisSeenState.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksSetAttr,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetTaggedUsersFromUserTagInfosDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/webReport\\/PolarisWebReportActionConstants,shared\\/third-party-bundles\\/isobject-3.0.1,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisrequestIdleCallback,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEncryptionUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIConnectAccountToFB,shared\\/third-party-bundles\\/react-spring-types-9.4.5,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisTrendingContentOn404Header.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFinishStepFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisProfessionalAccountFetchDataErrorFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksCheckoutGetCreditCardToken,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/isPolarisAdLink,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/comments\\/PolarisnormalizeComments,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisClickEventLogger.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iqfe4\\/yO\\/l\\/en_US\\/6KcLzeFhE4k6RNjONVHMKNbOmL_7juV7ofDV0ctX4w8N-QhBTwn8BjfC5_ARUzSYJwS7d2lI0kxgBxNfDiFxNePKeTX4YgqZ3j2zzA0twj9evZ6unFwEGJH_gB_urW8jPQZw4XB6GCxdn17QWKwd97XOfDpgAfSKZ4q4KV59G7LKc1vdct_YLAgdEH2xwyhYQh3lHU2zuWP9QCNu3vLNul-hoeZxSOHBvp5kqwgauTnMNF5OUSpiMNGs38to4kzr-zRE_vgbDZVjL6GLoZneaVqrvneetuDFDxu52lM7pMSQfw459YUeUHctR0pT-dvos58GqH8CMH.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieSettingsContentBody.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectDeltaHandlers,js\\/instagram\\/polaris\\/adapters\\/ui\\/LegacyIGCoreModal,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisOrganicThumbnailImpression,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/lists\\/PolarisIGCoreListItem,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisresourceTimings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisAuthActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksExecutor,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarislocationPostsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/keycommands\\/PolarisCompactKeyCommandDisplay.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionOneTapLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPFullscreenBulletListInterstitial.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisNavWrapper.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/viewpoint-actions\\/PolarisVpvdImpressionAction,js\\/comet\\/app\\/infra\\/comet_site_roots\\/instagram\\/xig\\/XIGRoutedBuildRoot,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisAgeCollectionHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisliveReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchBoxContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisFrameDropWatcher,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisOneTapLogin,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardMegaphone.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/paymentsCheckout\\/PolarisPaymentsCheckoutRedirectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreCondensedMegaphone,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentMethodUtils.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDOBFieldSelect.react,js\\/instagram\\/polaris\\/modules\\/report\\/data\\/frx\\/PolarisFRXWebReportStrings,js\\/instagram\\/polaris\\/modules\\/ads\\/data\\/PolarisadsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksDrawable,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisstagingReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iwkF4\\/y3\\/l\\/en_US\\/1Vg4jWtE8hh2DRYZbPA2mEBGEQn--YQRow0FVu3K0Z_QBGTUbpkdidv35UV0yUPdohqEghUDk6KHSpsKDFSv4ZG1fb0qFuFUbYvFSRpZpgMNR0PAhJg3QYvSMoHDVKXa29pF9EX6CV_TITmFM7NNxT4U1vwkd2ar1fj-KFj-cbKPtSA8FR-bS-JLJrDSafIvZW8TPc8lG_i_ldokr02nVS3KsYKJskjtBJItq6i47n3oXhlWmZpA_EwRbgO0x5-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfFM11riJuql7QHrGrteREfpYGwmm6Ncy7b.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/comment\\/PolarisCommentActionConstants,shared\\/third-party-bundles\\/inline-style-prefixer-flexboxIE,shared\\/third-party-bundles\\/inline-style-prefixer-imageSet,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/PolarisProfilePageContext,shared\\/third-party-bundles\\/inline-style-prefixer-crossFade,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisVideoResource,www\\/__virtual__\\/relay\\/PolarisMobileNavMenuQuery_instagramRelayOperation,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisdevtoolsEnhancer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPattern,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/PolarisLoginActionConstants,shared\\/third-party-bundles\\/inline-style-prefixer-transition,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisRamClassContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksf32Convert,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayIndexOf,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenUrl,shared\\/third-party-bundles\\/inline-style-prefixer-gradient,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksToast,shared\\/third-party-bundles\\/inline-style-prefixer-logical,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisDirectActionsLogger,shared\\/third-party-bundles\\/inline-style-prefixer-position,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseScreen,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDelay,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapKeys,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/t3d\\/PolarisBloksScale3D,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayAppend,shared\\/third-party-bundles\\/inline-style-prefixer-filter,shared\\/third-party-bundles\\/inline-style-prefixer-cursor,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPopBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAddChild,shared\\/third-party-bundles\\/inline-style-prefixer-sizing.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y-\\/r\\/CrzpDYKF62DZ3eNL5_Kx9_SBmMgQ2IWvnCSmj2ZcRL4ZLizfcJUTua95r56GCMurSPbY2kEVvC8U6V5GVwXMmk-7z0-65Fy1V0yZhxCCfQZuRZ3lfFIp8p9Mj2nlWOMXP0h3cMU53Ehsh5zbRbTaNtaqAbSGWCNY81wRvyuAuaWBeEZFDcfsG5dfiwNuWXvaZ6daSRfVh17cAu-38vQIiGap4W7mqmuUYjyu4Hxfvsutq5eTnmdQlKeP6ua767DXIK0MtK_pMvK5YDMLnyKD8kxsJZbSgo9miQoRSCTisX__nqmH3CCG-IjQVtjGzRD1FxN-g-sLHw.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisToastConstants,js\\/instagram\\/polaris\\/adapters\\/third-party-wrappers\\/css-in-js-utils-resolveArrayValue-wwwig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberAnd,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/init\\/PolarisInitAction,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberMod,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayGet,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisDateFormatConfig,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksNumberOr,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMapGet,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarisSavedPostsActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationPosts\\/PolarisLocationPostsActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/tagMedia\\/PolarisTagMediaActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDefault,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/shell\\/PolarisShell,shared\\/third-party-bundles\\/strip-variation-selectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDummy,shared\\/third-party-bundles\\/inline-style-prefixer,js\\/instagram\\/polaris\\/adapters\\/third-party\\/react-spring-wwwig,shared\\/third-party-bundles\\/emoji-regex-text,shared\\/third-party-bundles\\/tabbable,shared\\/third-party-bundles\\/body-scroll-lock,js\\/529myxqorq4gkcgw.pkg,js\\/instagram\\/polaris\\/adapters\\/third-party\\/react-redux-wwwig,js\\/instagram\\/polaris\\/adapters\\/third-party\\/redux-wwwig,js\\/instagram\\/polaris\\/adapters\\/third-party-wrappers\\/redux-thunk-wwwig,shared\\/third-party-bundles\\/focus-visible,shared\\/third-party-bundles\\/redux-thunk,shared\\/third-party-bundles\\/merge,shared\\/third-party-bundles\\/normalizr,shared\\/third-party-bundles\\/stackblur.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y7\\/r\\/Z9AY_oYwXmgaFIOeOkcKu-B5s0M9cDKnB7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2sO9wK2L56TwR-d0peyZtbVWMt14c_gxPkeiQoCFalyloFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWiPQy4gRilpiQ_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2up2p_u5D-4Yw-EMBTSp2111zJOcwE9GnqEDQVEH-g-FDC-cMCG7S5yeTsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisOrBar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItemOptionalOverlay.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksErrorRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreBusinessPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavLoggedOutUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/SEOCategoryPage\\/PolarisSEOCategoryPageReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/stories\\/PolarisgetMappedReelTypeFromReelDict,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCalendarPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSpinner,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/ads\\/PolarisgetReelDictFromAdMediaItem,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/utils\\/PolarisvideoMergeUtils,shared\\/third-party-bundles\\/strip-variation-selectors-1.0.0,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserFollowingPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreToast,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccountSettings\\/PolarisprofessionalAccountSettingsReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreEyePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagFromNativeHashtag,js\\/instagram\\/polaris\\/core\\/bootstrapPolarisPreloader,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisIGCoreClockDottedPanoOutline24Icon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksErrors,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisClickEventAuditLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/payments\\/PolarisPaymentsLoggerConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDirectPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionUnfavoriteUser,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisqpFbql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreLockOutline96Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisCompanyLayerSettingsSectionFooter.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/PolarisIGBloksStyles,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreBorderedIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ym\\/r\\/tpVgbbJEAiKhL9PeN0vp1AbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdfFzym_EgUa6M8pt6JFngCSOV-_c_9mftx_Yb0eXIJ_wt9cAw1GI5EtX-dFduXrF_4TD3rHJqW_Eo_iXf2s2C5NQffmAqPygQcGglVniTODIr9bpDAPYhwqBvTTaHJjEU4lMYxayv9vEH21dV5oaa17_iBj87fWvhCjvHI1PrIssPj-aYK0SkYkCykNtp_ywjoabu9R_5oc6ht-_M2cL5KrJ8oz26eTME86X8R_8c9yu5zpTQod37JuO0IfcEcb8xOknRG9aewNpdVp9uGSi.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksRenderLifecycleExtension,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIPostInboxSeenData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetAymlData,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/likedByList\\/PolarisLikedByListState,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnFeedPage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksArrayMake,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenURL,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionCloseChatTabNewMessage,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/lib\\/PolariswithForwardRef,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGetInboxData,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberLt,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberEq,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIClearUserSearchHistory,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisDOMRect,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisAnalyticsContext,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksWriteGlobalConsistencyStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionClearStopDeletionNonce,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisTriggerRender,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/commentLikeLists\\/PolarisCommentLikeListsState,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mediaPrefetch\\/PolarisMediaPrefetchActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarissupportsCredentialManagement,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksReplaceChildren,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/PolarisTrackingConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/PolarisProfileQEHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionOpenChatTabThread,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisStoriesArchiveController\\/JSRouteBuilderArtifact\\/XPolarisStoriesArchiveControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64NumberSub,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentOpenDialogAsScreenOnMobileDoNotUse,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksRemoveChild,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisHideNavQueryParam.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yl\\/r\\/7sUBcEJnN_7IaTRXt2PIm7HkOzRDrbA4YZIM2dJyhGJo2ouVS_eYTvhi-IdaDmJyAha3PFofyfVOSIwHyAuQlaQgycOVYh4iKv9ejnGXlq2weUlb7r7OoJHv8hbxTGwCUpbu6PnSSckeNCUy7uWU2agRdIfJ3j4tman22GlupfsKd1Tmw72NbUOY6Om2gGc26N8Qfk0kJBEGkVW8pRumaaovRcIZk4IhedRZOX2-FCm9gxSTguymVUj5lDVOcz_ADJgvA0zYIwdnVA6NvQ7L9rgeERzxsezFJUQb0LijTQEsSpJHTBRCIdNiuB4K4zW1N6hREjezec.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/perf\\/PolarisBloksIGEndTTIEventV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/threadedComment\\/PolarisThreadedCommentActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/i64\\/PolarisBloksi64ConstNumber,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/PolarisFeedActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksTextInputGetText,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeLoggedOutRootQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAsyncActionWithDataManifest,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentOpenDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentDimensionValue,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/hooks\\/usePolarisViewer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/types\\/PolarisReelTypes,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisClipsHomeFragment,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarishasDirect,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/image\\/PolarisgetCrossOriginAttribute,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGOpenReportUser,js\\/instagram\\/polaris\\/core\\/relay\\/queries\\/PolarisFeedTimelineFragmentQuery,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/PolarisBugReportContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisDirectInteropGatingManager,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedGetCurrentColorValue,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateCubicBezier,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBoolAnd,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentCloseAllPrompts,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/getPolarisALGestureType,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/businessProfileDirectoryPage\\/PolarisBusinessProfileDirectoryPageActionConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksPushBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksPrivacyConsentFlowCompletionCallback,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisSettingsTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/mentalWellBeing\\/common\\/PolarisDailyLimitEnforcementContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisprefix,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksDismissKeyboard.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/y9\\/r\\/ZYYbpmAsEYTydJMPyka5kuEAaPNU1aj6e1knQ9DqzFIIPdZCi6mpmg1NJrQOx4uQLMLVheYo4D7vi_rGGMejKzzCCELGawfYFutT1xhSzYcAQkTKf8hEPfcitnfDNQgHLK842dTXwR_WCe6tad6o6kFUTSiui0RFY_iDmrrQD9h2XQMyAOYnKhk7T9VOfoUj8uMl62LdZeQqS0Y3XYMrtL-pwxf6vtY7qk4EisMeFtdD1LXea4sOh8pv47E_3AZvHcNwXpPFma14xaoPkx_tgwMMcN9wjApV2gD4-Bohks3oY4Krofw2VlbhIQqwahDmd5dDFn-F7A.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAuthTestIDs,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebAdEventsAuditFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreGetIconColor,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisIgLiveReactionFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/user\\/actions\\/PolarisUserActionLoadUserPreferences,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cookieModal\\/PolarisCookieModalEnums,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksMatch,js\\/instagram\\/polaris\\/core\\/relay\\/PolarisRelayEnvironmentContext.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisscrollTo,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisInstagramWebNotificationFalcoEvent,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksChildAtIndex,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/media\\/getPolarisPostIdFromNativeId,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisFeedQueryConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisstagingSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/auth\\/PolarisAuthActionConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/api\\/PolarisAPIGenerateCreditCardToken,shared\\/js\\/__generated__\\/FalcoLoggerMeerkatStep\\/single_source\\/InstagramWebAdEventsAuditFalcoEvent\\/FalcoJSLoggerArtifact\\/InstagramWebAdEventsAuditFalcoEvent,js\\/instagram\\/polaris\\/clips\\/desktop\\/hasClipsDesktopTab,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisFeedTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionCreatePendingThreadsLoaded,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/polarisCanRageShake,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisLoginController\\/JSRouteBuilderArtifact\\/XPolarisLoginControllerRouteBuilder,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/PolarisFeedPageConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksBindWithArrayV2,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisReduxUpdateUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksIGCloseToScreen,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisFollowingActionsContext,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/tracking_nodes\\/usePolarisShouldLogLinkClick,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironmentUtils,js\\/instagram\\/polaris\\/lib\\/redux\\/usePolarisIsOnDirectPage.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yW\\/r\\/3uxd03x7vRzGOCPFe2D1cvXBbb0DKzfEAw1m_FS1XQYvtFBhHXjlwEZWciI3JItmbMxDcDnx6hOmZV3Zx9Ok91qdXaPNGdEFkn-g76QbjbCG6WQCn_n6f3_AEO8T2CTXzioYxS_VaNjvntHjL4xNv2ra1SmrMft1UO29oMkrxyov3wQMKBn1aCF_am_Di6D8CRxdwR7yZmg-KIA9S_k568MfghsUR_xxeO4r-RwNxCzGb47hS3f9okxY6oeYZNAOX4A8Pzi71sNtnycbpArnpeblxeECmJ3EOD7rgSOxlGET9RrbnlF_mqzzWqimE_WSJDA17r8V5h.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisCreationCameraLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisShellContent.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisPreviewPhoto.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGShoppingNavBar,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/bugreport\\/PolarisBugReportProvider.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/PolarisgetDirectCacheState,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/Polarisqe,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreMegaphoneHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/lib\\/PolarisLoggedOutLoginStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/professionalAccount\\/PolarisProfessionalAccountLoggerUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp404TrendingContentPage.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarissavedPostsSelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/actions\\/PolarisSettingsActionSetPrivateAccount,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fxAuth\\/PolarisFXAuthActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/transition\\/PolarisTransition.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchNullStateSection.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetImageUrlFromPreviewData,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPTooltipComponent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisPhoneSignupChangeNumberForm.react,js\\/instagram\\/polaris\\/modules\\/ufac\\/ui\\/PolarisBloksUFACImagePicker.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisQEHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisBirthdaysAdditionalInfoModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksComponentContext,js\\/instagram\\/polaris\\/core\\/query\\/PolarisQueryStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPStandardDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/payments\\/PolarisFBPayCheckoutWebFunnelConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisUnexpectedErrorIcon.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iLf44\\/ye\\/l\\/en_US\\/WaqmM-e6XrgVa05gyG2jc07-XezS7oFAIj_J1SY5N9oAU6fslJV-j7guPUqDfLH20MIC8o7hNor_oXhvrZnWYwRJtSu-GoagcvWUkfSbDagdj3iS-aVzbBNtoX8Ay5k3jYCKcUrIJvgmnJt_zlt38-ue8FewbWjueGmtHyJYZX3jtlZROGStE8-SBE67HBDrmEe9V9QBCuicO83MYkabG015A4yY11eJOImrQGXJ89jVr7bdoYW5lWDq9L2yHSl-qPtS9Hrn9k_nJsJ_NP_qmh_vfEIvLBHDEZ3jFmmBHwK5YJwb3c2D5PCgU_UsMHIBcTZT9TfrIb.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/ExploreLandingPage\\/lib\\/PolarisDynamicExploreGridPositionUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/location\\/PolarisLocationMediaModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroLoggedOutUpsell.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/lib\\/PolarisGetCreationModalDimensions,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellModalNavBar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserPanoOutlineIcon,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayMedia,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLoggingOutDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/style\\/PolarisBloksStyle,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericNavBackButton.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/trendingUsers\\/PolarisTrendingUserReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEventListener,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisAsyncSwitchAccountsModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCompassPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksStoryViewerTooltipExtension,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisRelationshipTypes,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/mentalWellBeing\\/PolarisscreenTimeReducer,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsTabDesktop,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreDirectPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisStopDeletionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisGenericOnboardingUnit.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisBlockDialogContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInfoPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/hashtagFollowList\\/PolarishashtagFollowListReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/PolarisFeedLogger,js\\/instagram\\/igds\\/__private__\\/IGDSPrivateBasePortal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreInsightsPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMailPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreArrowCcwPanoOutlineIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ihe24\\/yg\\/l\\/en_US\\/VPy5jX2H-Pgda4gOqsuVyd2Snvv-1_ex3Xp7PvT0y4NJnWHQPnSuHPKmlvMjFHBRCPIvX6diL9Kq0Z_Rhwm20O-vWofDh6EtWfMThi-NPyMs6NsTZD9nle9yCj-WUvtJrwV41kbKWc164ffp8lUF8GOby94kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TW04u4RP5S0BznXX83F_iQJ9BDm6NoPsBabkO_UQWM77VKtAPWtNF0Vv-4S9VMLFi7-KlUSp0sAkVLk-iPZJQ535YygZqs-lFcwRfi5tnjIEPWpZnGWC-Kq7H_afWyGlegTI4-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/PolarisformatDate,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/postsgrid\\/PolarisPostsGridItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisrootReducer,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeLoggedOutRootQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/consent\\/PolarisConsentActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/actions\\/PolarisSignupActionSignup,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopQuery.graphql,js\\/5sifmyhjlfwooggs.pkg,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabDesktopPaginationQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNav.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisUserCookieConsentStrings,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsHomeRootQuery.graphql,js\\/__generated__\\/RelayCompilerMeerkatStep\\/xig\\/PolarisClipsTabRootPaginationQuery.graphql,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/live\\/PolarisLiveActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarisSearchActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisCanvasGradientSpinner,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/fbConnect\\/PolarisFBConnectActions,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisReportConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/savedPosts\\/PolarissavedPostsReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/Direct\\/PolarisDirectBadgeIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/draft\\/PolarisIGCorePhoneNumberInput,js\\/2e440z8p5ykgcg80.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/signup\\/actions\\/PolarisSignupActionMaybeConsentAndSignup,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisAccessDataStrings,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutIconUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/direct\\/PolarisDirectAPI,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/search\\/PolarisMobileSearchBox.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisLandingForm.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/multisignup\\/PolarismultiSignupReducer.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i4NY4\\/y-\\/l\\/en_US\\/4j2OU11Oiikotig2lHOY8g8uw6qHgJYHLhRYB0P4nASQy8itclySkBlmAVT5Up5Ee1Ueo_UnRhzuhgvZu2biaq8a2-9y84vGupRRrDduhG-8RiV8GBxFJY33dQlmsYm8sNkjaFzkZ3bahVvFOiaKCbN1-uOWiYzieo251ZX3GCTUQnz7DaPnh05t3gp354UJBYNRrQHcDB-3hVtl2RlspO2kI5e9BoJ3Cw6JPgiyv7B8FhlyAD8yx2iK9qC2fUYmc5hAHfaPOvtp129wpm_Q-IijCsQ4W8AmfsiO1-gEoeWm9Bfn7q8IQy27KRX1KrMWxiAU3LKKYS.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksEnvironment,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/AddToHomeScreen\\/PolarisAddToHomeScreen.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSearch,js\\/instagram\\/polaris\\/modules\\/thirdparty_renamed\\/fb_dependency_mocks\\/date_formats\\/PolarisDateFormatConfig.en_US,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/PolarisPaymentsCheckoutPhysicalAddressUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXPreTransitionBanner.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/live\\/PolarisLiveAPI,js\\/6k7qj261wgco8k8w.pkg,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisBrowserCookieConsentModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolaristransformFeedItemListEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksRenderer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/fncr\\/PolarisLoginQPL,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/story\\/PolarisStoryFullscreenManager,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/settings\\/actions\\/PolarisSettingsActionLogout,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisNotificationsBannerV2.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolariswithPPRLogging,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisQueryParams,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/staging\\/PolarisStagingActions,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/guides\\/PolarisguideReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/templates\\/PolarisQPContainer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp500UnexpectedErrorPage.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/sheets\\/PolarisIGCoreSheetOrModal,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationPopover.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/feed\\/PolarisfilterUnsupportedNativeFeedItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisDateHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsumerDataCache,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreTooltip,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/PolarisViewpointReact.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/PolarisrelationshipSelectors,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksShadowContext.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ijPr4\\/yv\\/l\\/en_US\\/Q9rr8P7iwykT0Q2ZCy4fy-00KKsoNHeI0PGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXj0fpurqvvt0PJD8iTUMtl76hXwxzCkLOUxw_TxEiE3WnV1gn5HYIY8CHjI9SnyojRRiHNjuIOLl5SP8-a1Ch6ya73RAcXjqQloyT7pAFz0XKD57EB_125bXG4baPB1LwyKD2uEJAtGTp4VnI42Ckn2BKk5r2mihmRS48yvn4hcwCQcUo-IQVs5F5P5liLuDmN2de1cq7s73YovLXqVnU3TDGGxnbHI7KL7elo9Tpo5cpX6qj-l0NMH4NdkriD.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionRefreshPendingInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/ProfilePage\\/lib\\/PolarisProfileUtils,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSNewStoryPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/time_spent\\/PolarisTimeSpentBitArrayLogger,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSvgIconWithCircularBackground.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/utils\\/PolarisContainerModuleUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisUnsupportedBrowserSnackbar.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/models\\/PolarisFeedItemModel,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksRichText,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsValidators,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisAccountPrivacyBody.react,js\\/instagram\\/polaris\\/www_schema_components\\/usePolarisFXCalSettings.react,js\\/instagram\\/igds\\/IGDSSVGIcon\\/icons\\/IGDSAddFriendOutline96Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relatedProfile\\/PolarisrelatedProfileReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisPushAPI,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/PolarisPanavisionQEHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/webReport\\/PolariswebReportReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateDimension,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEventLoop,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksOpenScreen,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectThreads,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolaristransformActivityFeedItemEntities,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAppMessengerPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksViewTransformsExtensionWrapper,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGDialog,js\\/instagram\\/polaris\\/modules\\/consumer\\/StoriesPages\\/ui\\/PolarisSensitivityOverlayIcon.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGSwitch,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisNavigationTooltipWrapper.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksAnimatedCreateColor,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisTextInput.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUce4\\/yS\\/l\\/en_US\\/eb-C10v4WcIAGcZDsAy8QFljl0t5QYHlBz7h01a8LC8JxNp6VgYQah1VWeeJos9ccXQJeRNKiWQQj14_Kb2iO8ZGXth1BcSDoRJq_afC3FVe_oF4SA1uAHhK9wMv01xbs6XsEqIpRfu1IDZnJpyYeiILsUVCRafU8zbqh_TSc26QY-LbFYnrRP4mCeYat3Z3tLuPh5Ihsl9Q9bF3ld3sW5AR6e9wcSWABE-XQiWoZ692iRKr4qi26PkJWZkxT4zPMtjMI5qhsA6sLuL988p7j_PnQY5UlxGzW4hNczgwBrouhNHojbbGoqpsqYHTQIX8s7fQ-fHs1S.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisOneTapLoginModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/locationsDirectory\\/PolarislocationsDirectoryReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisEmailDomainHelpers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisGenericMobileHeader.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/cards\\/hover\\/PolarisIGCorePortalPositionProvider,js\\/instagram\\/igds\\/IGDSToast\\/IGDSToasterProvider.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetFeedItemFromFeedItemDict,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisLoginLogger,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/loggers\\/falco\\/PolarisFXCalLinkingFalcoEvent,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/qp\\/PolarisQPActions,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksQPClick,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisObjectUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreAppMessengerPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/search\\/PolarisSearchAPI,js\\/instagram\\/igds\\/IGDSBadge\\/IGDSBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisSearchConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/virtualized\\/PolarisVirtualizedWithScrollLogging.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/toasts\\/PolarisSnackbar.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/FeedPage\\/ui\\/stories\\/PolarisUserAvatarLivePulse.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreRadioButtonGroup,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/payments\\/form\\/PolarisPaymentsNormalizers,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultPlaceItem.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetReelFromReelDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/CookieConsent\\/PolarisCookieConsentCollapsible.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksIGPhoneNumberInput,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisConfirmDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisRemoveSupervisionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppStoreLauncher.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisUserPreferences,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreUserFollowingFilledIcon.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iow94\\/yJ\\/l\\/en_US\\/KSL94J70K9phwn4d8GeEefoneOm7pFVeIISOQfUyD20hXJZHA-10AHTrOrgHJo3VPFg2RkGl2ai4hWEy192yMUOJAJpH68TwXnTNhdgku4YoYl_H1lKunN27J2ds19etw4j23Eh95rq4wDvv4qFCQHztd0ndITb_F3JtebOEsr95DCy80upUAta00Kd72Nsr0tFxKENcEQSINFWwVUjgPphlc_1lZ3x4AMDvwcYIqQagANjb5mwTCNsNhIfSV79wAl4TMkeaO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjnIvZ-hTqVt6t2O1wZJpjMpQ1TG14IYR2K.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/newPostsPill\\/PolarisnewPostsPillReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreSearchPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisPostBlockConfirmDialog.react,js\\/instagram\\/polaris\\/core\\/initIGWebJSErrorLogging,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisTooManyAccountsDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/toast\\/PolaristoastMiddleware,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/FollowButton\\/PolarisFollowButtonContainer.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisReelConstants,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsLoggedOutHome,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/actions\\/PolarisBloksOpenBottomSheetV2,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/hooks\\/usePolarisBloksDataBinding,js\\/instagram\\/polaris\\/core\\/relay\\/redux_subscriptions\\/subscribeToPolarisRelayClipsHome,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/viewpoint-core\\/util\\/PolarisViewpointUtils,js\\/instagram\\/igds\\/IGDSToast\\/useIGDSToast\\/IGDSToasterUtils,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreSVGIconButton,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/activityStory\\/PolarisActivityStorySelectors,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/cache\\/PolariscacheMiddleware,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCircleCheckPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/ErrorPage\\/PolarisHttp500UnexpectedErrorPageDeferred.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCorePlayPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXPanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/nav\\/PolarisContextTooltip.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksLocalStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/actions\\/PolarisBloksCommerceGetCreditCardMetadata,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHomePanoFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisConsentConstants,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisMobileNavToggleThemeButton.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreHomePanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagMediaFromGraphHashtag.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iGsb4\\/y5\\/l\\/en_US\\/Pah3QwzFaUQE_u9gbSAbK4-Hwc4QoS6S8tHiZoCxsqqY4-IfftpOOvW8GF1LfsCYXaiKLB9qnjtNQEI7SJBH0glbpOPgTG8pc68dGr9gwTsVcuCsxYVHM2ECeUCQ4rnMusnztvL0u4OAZjzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElTHR0xpgxymwD91hkYvjBOUZCLaR7R7zjwkvMQ9LKW65CrWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qWilUk03ymyXNRMeQAcDFUOVrNVIP1TDrulQ0D_oAB8ODY6_PDCg328cjY5BAzLEVppnfPDp_cWlaq.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\",\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallModal.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/CreationModules\\/ui\\/PolarisCreationConstants,js\\/instagram\\/polaris\\/adapters\\/ui\\/IGCoreDialog,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCoreModalHeader,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/feed\\/actions\\/PolarisFeedActionLoadFeedPageFromNative,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/consent\\/PolarisconsentReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisIDBKeyValStore,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisLanguageSwitcherLanguageContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultUserItem.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/search\\/PolarisSearchResultsListItems.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/post\\/PolarisRelatedMediaGrid.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisgetInstallAppHref,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/shell\\/PolarisBaseShell.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/__private__\\/PolarisDirectActionLoadInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisProfessionalAccountSection.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/suggestedUser\\/PolarissuggestedUserReducer,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/PolarisnormalizeSignupResponse,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionInitInbox,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/normalizers\\/PolarisgetReelFromGraphReel,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetUserFromUserDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisFeedVariantsMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/LiveBroadcastPage\\/ui\\/PolarisLiveBadge.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/components\\/PolarisIGCorePopover,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/core\\/PolarisBloksUtils,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/qp\\/PolarisQPBloksRenderer.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/credentialmanager\\/PolarisCredentialManager.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/auth\\/multisignup\\/PolarisMultiSignupEmailSuggestionDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/PolarisEncryptionHelper,js\\/instagram\\/polaris\\/modules\\/consumer\\/LoggedOutPage\\/ui\\/PolarisLoggedOutAppUpsellModal.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksTextInput.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3ivkL4\\/yP\\/l\\/en_US\\/4sh6OHJMZE1D1BkGhD1Qu3ipSJ0wyle5YhAGds1U_SRSmge0c8ThmRs9nP5Vku3WMl98wKzCvtsXu8YfDxX5xAnMqFt2OaIgBcHMdIG9e3GGHxEwgGlc_aSiDbB2VOnyrwtGkCyagDYXuVHgJ9fnVTenehGz1xBDorn_dvgDD1IoMPqpl0_XpUDjqmm422hMwBwUI4yICbW1DtvKNJ7-V2WaeCtGCEvTWn-ccxDz02FJxae18f5ZI3Ja_jpigvI-YNQi5iXldE4WM-9CMLq5rm9BtL54GAF_5NL5moL9Gf-MhSnjz7FRpPtfNAIfOzE-IDwtOyquZu.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionCreateThread,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/PolarisFollowDialog.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/maps\\/PolarisMapReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarissendLogoutRequest,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/login\\/actions\\/PolarisLoginActionLogin,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/dynamicExplore\\/PolarisnormalizeSectionalItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/nav\\/PolarisDesktopNavMenu.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/SettingsPages\\/ui\\/PolarisFXCalSettingsCLFooter.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksBottomSheet,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-ig\\/components\\/PolarisBloksSwitch,js\\/__generated__\\/RelayCompilerMeerkatStep\\/instagram\\/js\\/instagram\\/polaris\\/www_schema_components\\/usePolarisFXCalSettings.graphql,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMediaPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/bloksjs-core\\/components\\/PolarisBloksDatetimeTextProvider,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/hashtags\\/PolarisgetHashtagMediaFromNativeHashtag,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/direct\\/actions\\/PolarisDirectActionGetInteropStatus,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/PolarisServiceWorkerLoggingParams,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/centralizedUpsell\\/PolariscentralizedUpsellReducer,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/PolarisgetRelationshipFromUserDict,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/appinstall\\/PolarisAppInstallSheet.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/oneTap\\/PolarisOneTapActions,js\\/instagram\\/polaris\\/adapters\\/lib\\/IGRouter,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/relationship\\/actions\\/PolarisRelationshipActionLoadActivityFeedRelationships,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/BlockDialog\\/PolarisBlockDialog.react,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/constants\\/PolarisLiveConstants,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreMoonIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/lib\\/normalizers\\/direct\\/PolarisnormalizeDirectItems,js\\/instagram\\/polaris\\/modules\\/consumer\\/data\\/PolarisConsumerReduxStore,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreStarPanoOutlineIcon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreReportPanoOutline24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/PolarisZeroCarrierSignalPixel.react.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3i5iB4\\/y7\\/l\\/en_US\\/eoalZ7ikIFOfQ3tcYZ591nQvONgLXJKc6x_9o9of9WYlpRjHXxWN14gRjztxJS6ZKcjyTHqEXv9epAKy0PpTKf9lGVk_RgXgsvo2m0qNRmaQTlRcCC_keAZ3b9huJM-iCgb9BVlw5K7cgASbJFdY6Gu4EQzVFCXnhQhNqDYcCsgQ4vR_cP8vneRklh08--Ux3LAI38e7Di9m_LszWICQxbuvpYfLw7BaiP6tmcSfRULrJlFHTj8bXa44bxFCz-9UBfUcaKvUqyEHsNJC-PUtkQJk2qUxPuhSeAdzEA4H9cYQmTBRxEsAUmAfXVSUn76ten_9rs3Nfl.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierOne\"]},\"js\\/ebgei4gu4pc8ggo0.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3idBq4\\/yL\\/l\\/en_US\\/xA24dNuRsdz.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierTwo\"]},\"js\\/7kmm5os4dkkccs0k.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yM\\/r\\/Wi-javLxvEA.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierTwo\"]},\"js\\/89ky0idroy8sosks.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yF\\/r\\/w0HcDFoIhg9.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/9mk9w177n9s88w4c.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iUXn4\\/yu\\/l\\/en_US\\/DitlTwroUi6.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCall.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToaster.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToast.react,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreCallFilled24Icon,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreVideoChatFilled24Icon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/lib\\/call\\/PolarisCallNavigator,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateActionableToastContent.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCallBlinkingTitle.react,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateActionableToast.react,js\\/instagram\\/polaris\\/modules\\/consumer\\/Direct\\/lib\\/hooks\\/usePolarisMQTT,js\\/instagram\\/polaris\\/modules\\/shared\\/ui\\/ig-core\\/icons\\/PolarisIGCoreXFilledIcon,js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/useBlinkDocumentTitle,shared\\/js\\/__generated__\\/JSRouteBuilderStep\\/single_source\\/XPolarisCallController\\/JSRouteBuilderArtifact\\/XPolarisCallControllerRouteBuilder,js\\/instagram\\/igds\\/IGDSToast\\/private\\/IGDSPrivateToastContext,js\\/instagram\\/polaris\\/modules\\/consumer\\/Calling\\/IGWebPreCallContext.__composite__.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEwU4\\/y-\\/l\\/en_US\\/KKZf8FX1sT4ozwG_xmxgK87lOXZygpG8_2QF11C8Kc69HUxMHl9LidgmLT6R-X0Ih2WchIFc77ydpiZQLDmBv2K-_nOseCHUKy2h40-vCFyk_RmNe0cjZoQNpZoZbqu8ylKX1UrXITZqHLKhsU-pEZX1mw1dfjew_nZS7.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/e16nnvrxf5csw888.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yP\\/r\\/5Gtc5QsnfLa.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/1037sw9494usok0w.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3iEsn4\\/yw\\/l\\/en_US\\/3YigL2Icjwr.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/81cjnzja8dsswk4c.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yI\\/r\\/80BsmNKe4b8.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/instagram\\/polaris\\/modules\\/consumer\\/shared\\/ui\\/incomingCall\\/PolarisIncomingCall.css\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/ya\\/l\\/0,cross\\/WZH6ymAazc2.css?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]},\"js\\/djeihiulvfkgcccw.pkg.js\":{\"url\":\"https:\\/\\/static.cdninstagram.com\\/rsrc.php\\/v3\\/yY\\/r\\/YT7n1sgH1lv.js?_nc_x=Ij3Wp8lg5Kz\",\"refs\":[\"tierThree\"]}}};</script>\n<script type=\"application/json\" data-content-len=\"69\" data-sjs>{\"require\":[[\"qplTagServerJS\",null,null,[[\"lastServerTagFlushed\"]]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"cometPageRender\",51);</script>\n<script type=\"application/json\" data-content-len=\"98\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"cometPageRender\",51]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierOneHasteResponseStart\",109);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierOneHasteResponseStart\",109]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierOneHasteResponseEnd\",197);</script>\n<script type=\"application/json\" data-content-len=\"110\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierOneHasteResponseEnd\",197]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierTwoHasteResponseStart\",210);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierTwoHasteResponseStart\",210]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierTwoHasteResponseEnd\",293);</script>\n<script type=\"application/json\" data-content-len=\"110\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierTwoHasteResponseEnd\",293]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierThreeHasteResponseStart\",302);</script>\n<script type=\"application/json\" data-content-len=\"114\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierThreeHasteResponseStart\",302]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"genTierThreeHasteResponseEnd\",326);</script>\n<script type=\"application/json\" data-content-len=\"112\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"genTierThreeHasteResponseEnd\",326]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"responseStart\",1);</script>\n<script type=\"application/json\" data-content-len=\"95\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"responseStart\",1]]]}</script>\n<script>qpl_inl(\"7191084768081846440-server\",\"responseEnd\",331);</script>\n<script type=\"application/json\" data-content-len=\"95\" data-sjs>{\"require\":[[\"qplTimingsServerJS\",null,null,[\"7191084768081846440-server\",\"responseEnd\",331]]]}</script>\n<script>window.plbs = {\"tierOne\":[234928,71200],\"tierTwo\":[73086,18419],\"tierThree\":[17990,4741]};</script>\n</body></html>\n\n\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:13:{s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}s:18:\"accept-ch-lifetime\";a:1:{i:0;s:7:\"4838400\";}s:9:\"accept-ch\";a:1:{i:0;s:27:\"sec-ch-prefers-color-scheme\";}s:19:\"reporting-endpoints\";a:1:{i:0;s:0:\"\";}s:26:\"cross-origin-opener-policy\";a:1:{i:0;s:24:\"same-origin-allow-popups\";}s:25:\"strict-transport-security\";a:1:{i:0;s:16:\"max-age=15552000\";}s:12:\"content-type\";a:1:{i:0;s:26:\"text/html; charset=\"utf-8\"\";}s:10:\"x-fb-debug\";a:1:{i:0;s:88:\"i6lK02kjFTUH4j1T+IDjQ0vPTR7GBv58Z2UxBBF1f7s6RQLzGpuqHPN15HltDMrOYcZgloC7HjJxCdYIYBPshQ==\";}s:4:\"date\";a:1:{i:0;s:29:\"Sat, 21 Jan 2023 12:41:35 GMT\";}s:8:\"priority\";a:1:{i:0;s:5:\"u=3,i\";}s:12:\"x-fb-trip-id\";a:1:{i:0;s:10:\"1679558926\";}s:7:\"alt-svc\";a:1:{i:0;s:19:\"h3=\":443\"; ma=86400\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:1;s:3:\"url\";s:44:\"https://www.instagram.com/codesupplyco_demo/\";s:7:\"history\";a:1:{i:0;O:17:\"Requests_Response\":10:{s:4:\"body\";s:0:\"\";s:3:\"raw\";s:410:\"HTTP/1.1 301 Moved Permanently\r\nLocation: https://www.instagram.com/codesupplyco_demo/\r\nStrict-Transport-Security: max-age=15552000\r\nContent-Type: text/html; charset=\"utf-8\"\r\nX-FB-Debug: OejpR6A40exdipADfkCwCFCQ+zUqOcJIcwOeuX4L6SQhYIMgGC22hp5cwGNuhVA3DOG1MsDymU7AP2NgOSLdPw==\r\nDate: Sat, 21 Jan 2023 12:41:35 GMT\r\nX-FB-TRIP-ID: 1679558926\r\nAlt-Svc: h3=\":443\"; ma=86400\r\nConnection: close\r\nContent-Length: 0\r\n\r\n\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:8:{s:8:\"location\";a:1:{i:0;s:44:\"https://www.instagram.com/codesupplyco_demo/\";}s:25:\"strict-transport-security\";a:1:{i:0;s:16:\"max-age=15552000\";}s:12:\"content-type\";a:1:{i:0;s:26:\"text/html; charset=\"utf-8\"\";}s:10:\"x-fb-debug\";a:1:{i:0;s:88:\"OejpR6A40exdipADfkCwCFCQ+zUqOcJIcwOeuX4L6SQhYIMgGC22hp5cwGNuhVA3DOG1MsDymU7AP2NgOSLdPw==\";}s:4:\"date\";a:1:{i:0;s:29:\"Sat, 21 Jan 2023 12:41:35 GMT\";}s:12:\"x-fb-trip-id\";a:1:{i:0;s:10:\"1679558926\";}s:7:\"alt-svc\";a:1:{i:0;s:19:\"h3=\":443\"; ma=86400\";}s:14:\"content-length\";a:1:{i:0;s:1:\"0\";}}}s:11:\"status_code\";i:301;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:0;s:9:\"redirects\";i:0;s:3:\"url\";s:43:\"https://www.instagram.com/codesupplyco_demo\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}}s:7:\"cookies\";r:88;}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no');
INSERT INTO `wp_options` VALUES (476,'_site_transient_timeout_kirki_googlefonts_4347b5bbc16ca4d6e6b9000966ba73a2','1674316517','no'),(477,'_site_transient_kirki_googlefonts_4347b5bbc16ca4d6e6b9000966ba73a2','a:1358:{i:0;s:7:\"ABeeZee\";i:1;s:4:\"Abel\";i:2;s:12:\"Abhaya Libre\";i:3;s:13:\"Abril Fatface\";i:4;s:8:\"Aclonica\";i:5;s:4:\"Acme\";i:6;s:5:\"Actor\";i:7;s:7:\"Adamina\";i:8;s:10:\"Advent Pro\";i:9;s:15:\"Aguafina Script\";i:10;s:14:\"Akaya Kanadaka\";i:11;s:16:\"Akaya Telivigala\";i:12;s:7:\"Akronim\";i:13;s:6:\"Aladin\";i:14;s:5:\"Alata\";i:15;s:6:\"Alatsi\";i:16;s:7:\"Aldrich\";i:17;s:4:\"Alef\";i:18;s:8:\"Alegreya\";i:19;s:11:\"Alegreya SC\";i:20;s:13:\"Alegreya Sans\";i:21;s:16:\"Alegreya Sans SC\";i:22;s:4:\"Aleo\";i:23;s:10:\"Alex Brush\";i:24;s:13:\"Alfa Slab One\";i:25;s:5:\"Alice\";i:26;s:5:\"Alike\";i:27;s:13:\"Alike Angular\";i:28;s:5:\"Allan\";i:29;s:7:\"Allerta\";i:30;s:15:\"Allerta Stencil\";i:31;s:7:\"Allison\";i:32;s:6:\"Allura\";i:33;s:7:\"Almarai\";i:34;s:8:\"Almendra\";i:35;s:16:\"Almendra Display\";i:36;s:11:\"Almendra SC\";i:37;s:11:\"Alumni Sans\";i:38;s:8:\"Amarante\";i:39;s:8:\"Amaranth\";i:40;s:9:\"Amatic SC\";i:41;s:9:\"Amethysta\";i:42;s:5:\"Amiko\";i:43;s:5:\"Amiri\";i:44;s:5:\"Amita\";i:45;s:7:\"Anaheim\";i:46;s:10:\"Andada Pro\";i:47;s:6:\"Andika\";i:48;s:16:\"Andika New Basic\";i:49;s:6:\"Angkor\";i:50;s:24:\"Annie Use Your Telescope\";i:51;s:13:\"Anonymous Pro\";i:52;s:5:\"Antic\";i:53;s:12:\"Antic Didone\";i:54;s:10:\"Antic Slab\";i:55;s:5:\"Anton\";i:56;s:7:\"Antonio\";i:57;s:6:\"Arapey\";i:58;s:7:\"Arbutus\";i:59;s:12:\"Arbutus Slab\";i:60;s:19:\"Architects Daughter\";i:61;s:7:\"Archivo\";i:62;s:13:\"Archivo Black\";i:63;s:14:\"Archivo Narrow\";i:64;s:15:\"Are You Serious\";i:65;s:10:\"Aref Ruqaa\";i:66;s:13:\"Arima Madurai\";i:67;s:5:\"Arimo\";i:68;s:8:\"Arizonia\";i:69;s:6:\"Armata\";i:70;s:7:\"Arsenal\";i:71;s:8:\"Artifika\";i:72;s:4:\"Arvo\";i:73;s:4:\"Arya\";i:74;s:4:\"Asap\";i:75;s:14:\"Asap Condensed\";i:76;s:4:\"Asar\";i:77;s:5:\"Asset\";i:78;s:9:\"Assistant\";i:79;s:7:\"Astloch\";i:80;s:4:\"Asul\";i:81;s:6:\"Athiti\";i:82;s:21:\"Atkinson Hyperlegible\";i:83;s:4:\"Atma\";i:84;s:10:\"Atomic Age\";i:85;s:6:\"Aubrey\";i:86;s:9:\"Audiowide\";i:87;s:10:\"Autour One\";i:88;s:7:\"Average\";i:89;s:12:\"Average Sans\";i:90;s:19:\"Averia Gruesa Libre\";i:91;s:12:\"Averia Libre\";i:92;s:17:\"Averia Sans Libre\";i:93;s:18:\"Averia Serif Libre\";i:94;s:11:\"Azeret Mono\";i:95;s:4:\"B612\";i:96;s:9:\"B612 Mono\";i:97;s:10:\"Bad Script\";i:98;s:7:\"Bahiana\";i:99;s:9:\"Bahianita\";i:100;s:12:\"Bai Jamjuree\";i:101;s:10:\"Bakbak One\";i:102;s:6:\"Ballet\";i:103;s:7:\"Baloo 2\";i:104;s:12:\"Baloo Bhai 2\";i:105;s:16:\"Baloo Bhaijaan 2\";i:106;s:14:\"Baloo Bhaina 2\";i:107;s:15:\"Baloo Chettan 2\";i:108;s:10:\"Baloo Da 2\";i:109;s:13:\"Baloo Paaji 2\";i:110;s:13:\"Baloo Tamma 2\";i:111;s:15:\"Baloo Tammudu 2\";i:112;s:14:\"Baloo Thambi 2\";i:113;s:13:\"Balsamiq Sans\";i:114;s:9:\"Balthazar\";i:115;s:7:\"Bangers\";i:116;s:6:\"Barlow\";i:117;s:16:\"Barlow Condensed\";i:118;s:21:\"Barlow Semi Condensed\";i:119;s:10:\"Barriecito\";i:120;s:6:\"Barrio\";i:121;s:5:\"Basic\";i:122;s:12:\"Baskervville\";i:123;s:10:\"Battambang\";i:124;s:7:\"Baumans\";i:125;s:5:\"Bayon\";i:126;s:14:\"Be Vietnam Pro\";i:127;s:10:\"Bebas Neue\";i:128;s:8:\"Belgrano\";i:129;s:9:\"Bellefair\";i:130;s:7:\"Belleza\";i:131;s:7:\"Bellota\";i:132;s:12:\"Bellota Text\";i:133;s:9:\"BenchNine\";i:134;s:5:\"Benne\";i:135;s:7:\"Bentham\";i:136;s:15:\"Berkshire Swash\";i:137;s:6:\"Besley\";i:138;s:10:\"Beth Ellen\";i:139;s:5:\"Bevan\";i:140;s:21:\"Big Shoulders Display\";i:141;s:28:\"Big Shoulders Inline Display\";i:142;s:25:\"Big Shoulders Inline Text\";i:143;s:29:\"Big Shoulders Stencil Display\";i:144;s:26:\"Big Shoulders Stencil Text\";i:145;s:18:\"Big Shoulders Text\";i:146;s:13:\"Bigelow Rules\";i:147;s:11:\"Bigshot One\";i:148;s:5:\"Bilbo\";i:149;s:16:\"Bilbo Swash Caps\";i:150;s:8:\"BioRhyme\";i:151;s:17:\"BioRhyme Expanded\";i:152;s:10:\"Birthstone\";i:153;s:17:\"Birthstone Bounce\";i:154;s:7:\"Biryani\";i:155;s:6:\"Bitter\";i:156;s:23:\"Black And White Picture\";i:157;s:14:\"Black Han Sans\";i:158;s:13:\"Black Ops One\";i:159;s:7:\"Blinker\";i:160;s:11:\"Bodoni Moda\";i:161;s:5:\"Bokor\";i:162;s:9:\"Bona Nova\";i:163;s:6:\"Bonbon\";i:164;s:14:\"Bonheur Royale\";i:165;s:8:\"Boogaloo\";i:166;s:10:\"Bowlby One\";i:167;s:13:\"Bowlby One SC\";i:168;s:7:\"Brawler\";i:169;s:10:\"Bree Serif\";i:170;s:12:\"Brygada 1918\";i:171;s:14:\"Bubblegum Sans\";i:172;s:11:\"Bubbler One\";i:173;s:4:\"Buda\";i:174;s:7:\"Buenard\";i:175;s:6:\"Bungee\";i:176;s:15:\"Bungee Hairline\";i:177;s:13:\"Bungee Inline\";i:178;s:14:\"Bungee Outline\";i:179;s:12:\"Bungee Shade\";i:180;s:10:\"Butcherman\";i:181;s:14:\"Butterfly Kids\";i:182;s:5:\"Cabin\";i:183;s:15:\"Cabin Condensed\";i:184;s:12:\"Cabin Sketch\";i:185;s:15:\"Caesar Dressing\";i:186;s:10:\"Cagliostro\";i:187;s:5:\"Cairo\";i:188;s:7:\"Caladea\";i:189;s:9:\"Calistoga\";i:190;s:14:\"Calligraffitti\";i:191;s:6:\"Cambay\";i:192;s:5:\"Cambo\";i:193;s:6:\"Candal\";i:194;s:9:\"Cantarell\";i:195;s:11:\"Cantata One\";i:196;s:11:\"Cantora One\";i:197;s:8:\"Capriola\";i:198;s:7:\"Caramel\";i:199;s:9:\"Carattere\";i:200;s:5:\"Cardo\";i:201;s:5:\"Carme\";i:202;s:14:\"Carrois Gothic\";i:203;s:17:\"Carrois Gothic SC\";i:204;s:10:\"Carter One\";i:205;s:7:\"Castoro\";i:206;s:9:\"Catamaran\";i:207;s:6:\"Caudex\";i:208;s:6:\"Caveat\";i:209;s:12:\"Caveat Brush\";i:210;s:18:\"Cedarville Cursive\";i:211;s:11:\"Ceviche One\";i:212;s:12:\"Chakra Petch\";i:213;s:6:\"Changa\";i:214;s:10:\"Changa One\";i:215;s:6:\"Chango\";i:216;s:5:\"Charm\";i:217;s:10:\"Charmonman\";i:218;s:8:\"Chathura\";i:219;s:18:\"Chau Philomene One\";i:220;s:9:\"Chela One\";i:221;s:14:\"Chelsea Market\";i:222;s:6:\"Chenla\";i:223;s:7:\"Cherish\";i:224;s:17:\"Cherry Cream Soda\";i:225;s:12:\"Cherry Swash\";i:226;s:5:\"Chewy\";i:227;s:6:\"Chicle\";i:228;s:8:\"Chilanka\";i:229;s:5:\"Chivo\";i:230;s:8:\"Chonburi\";i:231;s:6:\"Cinzel\";i:232;s:17:\"Cinzel Decorative\";i:233;s:14:\"Clicker Script\";i:234;s:4:\"Coda\";i:235;s:12:\"Coda Caption\";i:236;s:8:\"Codystar\";i:237;s:5:\"Coiny\";i:238;s:5:\"Combo\";i:239;s:9:\"Comfortaa\";i:240;s:9:\"Comforter\";i:241;s:15:\"Comforter Brush\";i:242;s:10:\"Comic Neue\";i:243;s:11:\"Coming Soon\";i:244;s:12:\"Commissioner\";i:245;s:11:\"Concert One\";i:246;s:9:\"Condiment\";i:247;s:7:\"Content\";i:248;s:12:\"Contrail One\";i:249;s:11:\"Convergence\";i:250;s:6:\"Cookie\";i:251;s:5:\"Copse\";i:252;s:6:\"Corben\";i:253;s:9:\"Corinthia\";i:254;s:9:\"Cormorant\";i:255;s:18:\"Cormorant Garamond\";i:256;s:16:\"Cormorant Infant\";i:257;s:12:\"Cormorant SC\";i:258;s:17:\"Cormorant Unicase\";i:259;s:17:\"Cormorant Upright\";i:260;s:9:\"Courgette\";i:261;s:13:\"Courier Prime\";i:262;s:7:\"Cousine\";i:263;s:8:\"Coustard\";i:264;s:21:\"Covered By Your Grace\";i:265;s:12:\"Crafty Girls\";i:266;s:9:\"Creepster\";i:267;s:11:\"Crete Round\";i:268;s:11:\"Crimson Pro\";i:269;s:13:\"Croissant One\";i:270;s:7:\"Crushed\";i:271;s:6:\"Cuprum\";i:272;s:9:\"Cute Font\";i:273;s:6:\"Cutive\";i:274;s:11:\"Cutive Mono\";i:275;s:7:\"DM Mono\";i:276;s:7:\"DM Sans\";i:277;s:16:\"DM Serif Display\";i:278;s:13:\"DM Serif Text\";i:279;s:6:\"Damion\";i:280;s:14:\"Dancing Script\";i:281;s:7:\"Dangrek\";i:282;s:16:\"Darker Grotesque\";i:283;s:11:\"David Libre\";i:284;s:20:\"Dawning of a New Day\";i:285;s:8:\"Days One\";i:286;s:5:\"Dekko\";i:287;s:15:\"Dela Gothic One\";i:288;s:6:\"Delius\";i:289;s:17:\"Delius Swash Caps\";i:290;s:14:\"Delius Unicase\";i:291;s:13:\"Della Respira\";i:292;s:8:\"Denk One\";i:293;s:10:\"Devonshire\";i:294;s:8:\"Dhurjati\";i:295;s:13:\"Didact Gothic\";i:296;s:9:\"Diplomata\";i:297;s:12:\"Diplomata SC\";i:298;s:8:\"Do Hyeon\";i:299;s:5:\"Dokdo\";i:300;s:6:\"Domine\";i:301;s:11:\"Donegal One\";i:302;s:6:\"Dongle\";i:303;s:10:\"Doppio One\";i:304;s:5:\"Dorsa\";i:305;s:5:\"Dosis\";i:306;s:11:\"DotGothic16\";i:307;s:11:\"Dr Sugiyama\";i:308;s:9:\"Duru Sans\";i:309;s:9:\"Dynalight\";i:310;s:11:\"EB Garamond\";i:311;s:10:\"Eagle Lake\";i:312;s:14:\"East Sea Dokdo\";i:313;s:5:\"Eater\";i:314;s:9:\"Economica\";i:315;s:5:\"Eczar\";i:316;s:10:\"El Messiri\";i:317;s:11:\"Electrolize\";i:318;s:5:\"Elsie\";i:319;s:16:\"Elsie Swash Caps\";i:320;s:11:\"Emblema One\";i:321;s:12:\"Emilys Candy\";i:322;s:11:\"Encode Sans\";i:323;s:21:\"Encode Sans Condensed\";i:324;s:20:\"Encode Sans Expanded\";i:325;s:14:\"Encode Sans SC\";i:326;s:26:\"Encode Sans Semi Condensed\";i:327;s:25:\"Encode Sans Semi Expanded\";i:328;s:10:\"Engagement\";i:329;s:9:\"Englebert\";i:330;s:9:\"Enriqueta\";i:331;s:7:\"Ephesis\";i:332;s:8:\"Epilogue\";i:333;s:9:\"Erica One\";i:334;s:7:\"Esteban\";i:335;s:7:\"Estonia\";i:336;s:15:\"Euphoria Script\";i:337;s:5:\"Ewert\";i:338;s:3:\"Exo\";i:339;s:5:\"Exo 2\";i:340;s:13:\"Expletus Sans\";i:341;s:7:\"Explora\";i:342;s:8:\"Fahkwang\";i:343;s:12:\"Fanwood Text\";i:344;s:5:\"Farro\";i:345;s:6:\"Farsan\";i:346;s:9:\"Fascinate\";i:347;s:16:\"Fascinate Inline\";i:348;s:10:\"Faster One\";i:349;s:8:\"Fasthand\";i:350;s:9:\"Fauna One\";i:351;s:8:\"Faustina\";i:352;s:8:\"Federant\";i:353;s:6:\"Federo\";i:354;s:6:\"Felipa\";i:355;s:5:\"Fenix\";i:356;s:7:\"Festive\";i:357;s:12:\"Finger Paint\";i:358;s:9:\"Fira Code\";i:359;s:9:\"Fira Mono\";i:360;s:9:\"Fira Sans\";i:361;s:19:\"Fira Sans Condensed\";i:362;s:25:\"Fira Sans Extra Condensed\";i:363;s:10:\"Fjalla One\";i:364;s:9:\"Fjord One\";i:365;s:8:\"Flamenco\";i:366;s:7:\"Flavors\";i:367;s:13:\"Fleur De Leah\";i:368;s:10:\"Flow Block\";i:369;s:13:\"Flow Circular\";i:370;s:12:\"Flow Rounded\";i:371;s:10:\"Fondamento\";i:372;s:16:\"Fontdiner Swanky\";i:373;s:5:\"Forum\";i:374;s:12:\"Francois One\";i:375;s:16:\"Frank Ruhl Libre\";i:376;s:8:\"Fraunces\";i:377;s:12:\"Freckle Face\";i:378;s:20:\"Fredericka the Great\";i:379;s:11:\"Fredoka One\";i:380;s:8:\"Freehand\";i:381;s:6:\"Fresca\";i:382;s:7:\"Frijole\";i:383;s:7:\"Fruktur\";i:384;s:9:\"Fugaz One\";i:385;s:7:\"Fuggles\";i:386;s:13:\"Fuzzy Bubbles\";i:387;s:9:\"GFS Didot\";i:388;s:15:\"GFS Neohellenic\";i:389;s:8:\"Gabriela\";i:390;s:5:\"Gaegu\";i:391;s:6:\"Gafata\";i:392;s:6:\"Galada\";i:393;s:8:\"Galdeano\";i:394;s:7:\"Galindo\";i:395;s:12:\"Gamja Flower\";i:396;s:8:\"Gayathri\";i:397;s:7:\"Gelasio\";i:398;s:12:\"Gemunu Libre\";i:399;s:5:\"Genos\";i:400;s:13:\"Gentium Basic\";i:401;s:18:\"Gentium Book Basic\";i:402;s:3:\"Geo\";i:403;s:7:\"Georama\";i:404;s:7:\"Geostar\";i:405;s:12:\"Geostar Fill\";i:406;s:12:\"Germania One\";i:407;s:12:\"Gideon Roman\";i:408;s:6:\"Gidugu\";i:409;s:13:\"Gilda Display\";i:410;s:8:\"Girassol\";i:411;s:14:\"Give You Glory\";i:412;s:13:\"Glass Antiqua\";i:413;s:6:\"Glegoo\";i:414;s:17:\"Gloria Hallelujah\";i:415;s:5:\"Glory\";i:416;s:6:\"Gluten\";i:417;s:10:\"Goblin One\";i:418;s:10:\"Gochi Hand\";i:419;s:7:\"Goldman\";i:420;s:8:\"Gorditas\";i:421;s:9:\"Gothic A1\";i:422;s:4:\"Gotu\";i:423;s:21:\"Goudy Bookletter 1911\";i:424;s:12:\"Gowun Batang\";i:425;s:11:\"Gowun Dodum\";i:426;s:8:\"Graduate\";i:427;s:11:\"Grand Hotel\";i:428;s:12:\"Grandstander\";i:429;s:12:\"Gravitas One\";i:430;s:11:\"Great Vibes\";i:431;s:14:\"Grechen Fuemen\";i:432;s:6:\"Grenze\";i:433;s:14:\"Grenze Gotisch\";i:434;s:7:\"Grey Qo\";i:435;s:6:\"Griffy\";i:436;s:6:\"Gruppo\";i:437;s:5:\"Gudea\";i:438;s:4:\"Gugi\";i:439;s:6:\"Gupter\";i:440;s:8:\"Gurajada\";i:441;s:9:\"Gwendolyn\";i:442;s:6:\"Habibi\";i:443;s:14:\"Hachi Maru Pop\";i:444;s:7:\"Hahmlet\";i:445;s:6:\"Halant\";i:446;s:15:\"Hammersmith One\";i:447;s:7:\"Hanalei\";i:448;s:12:\"Hanalei Fill\";i:449;s:7:\"Handlee\";i:450;s:7:\"Hanuman\";i:451;s:12:\"Happy Monkey\";i:452;s:9:\"Harmattan\";i:453;s:12:\"Headland One\";i:454;s:5:\"Heebo\";i:455;s:11:\"Henny Penny\";i:456;s:10:\"Hepta Slab\";i:457;s:20:\"Herr Von Muellerhoff\";i:458;s:9:\"Hi Melody\";i:459;s:11:\"Hina Mincho\";i:460;s:4:\"Hind\";i:461;s:11:\"Hind Guntur\";i:462;s:12:\"Hind Madurai\";i:463;s:13:\"Hind Siliguri\";i:464;s:13:\"Hind Vadodara\";i:465;s:15:\"Holtwood One SC\";i:466;s:14:\"Homemade Apple\";i:467;s:8:\"Homenaje\";i:468;s:9:\"Hurricane\";i:469;s:13:\"IBM Plex Mono\";i:470;s:13:\"IBM Plex Sans\";i:471;s:20:\"IBM Plex Sans Arabic\";i:472;s:23:\"IBM Plex Sans Condensed\";i:473;s:24:\"IBM Plex Sans Devanagari\";i:474;s:20:\"IBM Plex Sans Hebrew\";i:475;s:16:\"IBM Plex Sans KR\";i:476;s:18:\"IBM Plex Sans Thai\";i:477;s:25:\"IBM Plex Sans Thai Looped\";i:478;s:14:\"IBM Plex Serif\";i:479;s:15:\"IM Fell DW Pica\";i:480;s:18:\"IM Fell DW Pica SC\";i:481;s:19:\"IM Fell Double Pica\";i:482;s:22:\"IM Fell Double Pica SC\";i:483;s:15:\"IM Fell English\";i:484;s:18:\"IM Fell English SC\";i:485;s:20:\"IM Fell French Canon\";i:486;s:23:\"IM Fell French Canon SC\";i:487;s:20:\"IM Fell Great Primer\";i:488;s:23:\"IM Fell Great Primer SC\";i:489;s:16:\"Ibarra Real Nova\";i:490;s:7:\"Iceberg\";i:491;s:7:\"Iceland\";i:492;s:5:\"Imbue\";i:493;s:15:\"Imperial Script\";i:494;s:7:\"Imprima\";i:495;s:11:\"Inconsolata\";i:496;s:5:\"Inder\";i:497;s:12:\"Indie Flower\";i:498;s:5:\"Inika\";i:499;s:14:\"Inknut Antiqua\";i:500;s:10:\"Inria Sans\";i:501;s:11:\"Inria Serif\";i:502;s:11:\"Inspiration\";i:503;s:5:\"Inter\";i:504;s:12:\"Irish Grover\";i:505;s:14:\"Island Moments\";i:506;s:9:\"Istok Web\";i:507;s:8:\"Italiana\";i:508;s:9:\"Italianno\";i:509;s:4:\"Itim\";i:510;s:16:\"Jacques Francois\";i:511;s:23:\"Jacques Francois Shadow\";i:512;s:5:\"Jaldi\";i:513;s:14:\"JetBrains Mono\";i:514;s:14:\"Jim Nightshade\";i:515;s:10:\"Jockey One\";i:516;s:12:\"Jolly Lodger\";i:517;s:8:\"Jomhuria\";i:518;s:9:\"Jomolhari\";i:519;s:12:\"Josefin Sans\";i:520;s:12:\"Josefin Slab\";i:521;s:4:\"Jost\";i:522;s:8:\"Joti One\";i:523;s:3:\"Jua\";i:524;s:6:\"Judson\";i:525;s:5:\"Julee\";i:526;s:15:\"Julius Sans One\";i:527;s:5:\"Junge\";i:528;s:4:\"Jura\";i:529;s:17:\"Just Another Hand\";i:530;s:23:\"Just Me Again Down Here\";i:531;s:3:\"K2D\";i:532;s:5:\"Kadwa\";i:533;s:12:\"Kaisei Decol\";i:534;s:16:\"Kaisei HarunoUmi\";i:535;s:11:\"Kaisei Opti\";i:536;s:14:\"Kaisei Tokumin\";i:537;s:5:\"Kalam\";i:538;s:7:\"Kameron\";i:539;s:5:\"Kanit\";i:540;s:9:\"Kantumruy\";i:541;s:9:\"Karantina\";i:542;s:5:\"Karla\";i:543;s:5:\"Karma\";i:544;s:7:\"Katibeh\";i:545;s:14:\"Kaushan Script\";i:546;s:9:\"Kavivanar\";i:547;s:6:\"Kavoon\";i:548;s:10:\"Kdam Thmor\";i:549;s:10:\"Keania One\";i:550;s:10:\"Kelly Slab\";i:551;s:5:\"Kenia\";i:552;s:5:\"Khand\";i:553;s:5:\"Khmer\";i:554;s:5:\"Khula\";i:555;s:5:\"Kings\";i:556;s:14:\"Kirang Haerang\";i:557;s:8:\"Kite One\";i:558;s:9:\"Kiwi Maru\";i:559;s:8:\"Klee One\";i:560;s:7:\"Knewave\";i:561;s:4:\"KoHo\";i:562;s:9:\"Kodchasan\";i:563;s:14:\"Koh Santepheap\";i:564;s:12:\"Kolker Brush\";i:565;s:6:\"Kosugi\";i:566;s:11:\"Kosugi Maru\";i:567;s:9:\"Kotta One\";i:568;s:6:\"Koulen\";i:569;s:6:\"Kranky\";i:570;s:5:\"Kreon\";i:571;s:6:\"Kristi\";i:572;s:9:\"Krona One\";i:573;s:4:\"Krub\";i:574;s:5:\"Kufam\";i:575;s:10:\"Kulim Park\";i:576;s:9:\"Kumar One\";i:577;s:17:\"Kumar One Outline\";i:578;s:10:\"Kumbh Sans\";i:579;s:6:\"Kurale\";i:580;s:15:\"La Belle Aurore\";i:581;s:7:\"Lacquer\";i:582;s:5:\"Laila\";i:583;s:11:\"Lakki Reddy\";i:584;s:7:\"Lalezar\";i:585;s:8:\"Lancelot\";i:586;s:6:\"Langar\";i:587;s:6:\"Lateef\";i:588;s:4:\"Lato\";i:589;s:13:\"League Script\";i:590;s:12:\"Leckerli One\";i:591;s:6:\"Ledger\";i:592;s:6:\"Lekton\";i:593;s:5:\"Lemon\";i:594;s:8:\"Lemonada\";i:595;s:6:\"Lexend\";i:596;s:11:\"Lexend Deca\";i:597;s:10:\"Lexend Exa\";i:598;s:11:\"Lexend Giga\";i:599;s:11:\"Lexend Mega\";i:600;s:11:\"Lexend Peta\";i:601;s:11:\"Lexend Tera\";i:602;s:12:\"Lexend Zetta\";i:603;s:17:\"Libre Barcode 128\";i:604;s:22:\"Libre Barcode 128 Text\";i:605;s:16:\"Libre Barcode 39\";i:606;s:25:\"Libre Barcode 39 Extended\";i:607;s:30:\"Libre Barcode 39 Extended Text\";i:608;s:21:\"Libre Barcode 39 Text\";i:609;s:24:\"Libre Barcode EAN13 Text\";i:610;s:17:\"Libre Baskerville\";i:611;s:20:\"Libre Caslon Display\";i:612;s:17:\"Libre Caslon Text\";i:613;s:14:\"Libre Franklin\";i:614;s:8:\"Licorice\";i:615;s:11:\"Life Savers\";i:616;s:10:\"Lilita One\";i:617;s:15:\"Lily Script One\";i:618;s:9:\"Limelight\";i:619;s:11:\"Linden Hill\";i:620;s:8:\"Literata\";i:621;s:16:\"Liu Jian Mao Cao\";i:622;s:6:\"Livvic\";i:623;s:7:\"Lobster\";i:624;s:11:\"Lobster Two\";i:625;s:16:\"Londrina Outline\";i:626;s:15:\"Londrina Shadow\";i:627;s:15:\"Londrina Sketch\";i:628;s:14:\"Londrina Solid\";i:629;s:9:\"Long Cang\";i:630;s:4:\"Lora\";i:631;s:10:\"Love Light\";i:632;s:21:\"Love Ya Like A Sister\";i:633;s:17:\"Loved by the King\";i:634;s:14:\"Lovers Quarrel\";i:635;s:12:\"Luckiest Guy\";i:636;s:8:\"Lusitana\";i:637;s:7:\"Lustria\";i:638;s:15:\"Luxurious Roman\";i:639;s:16:\"Luxurious Script\";i:640;s:8:\"M PLUS 1\";i:641;s:13:\"M PLUS 1 Code\";i:642;s:9:\"M PLUS 1p\";i:643;s:8:\"M PLUS 2\";i:644;s:17:\"M PLUS Code Latin\";i:645;s:17:\"M PLUS Rounded 1c\";i:646;s:13:\"Ma Shan Zheng\";i:647;s:7:\"Macondo\";i:648;s:18:\"Macondo Swash Caps\";i:649;s:4:\"Mada\";i:650;s:5:\"Magra\";i:651;s:13:\"Maiden Orange\";i:652;s:7:\"Maitree\";i:653;s:18:\"Major Mono Display\";i:654;s:4:\"Mako\";i:655;s:4:\"Mali\";i:656;s:8:\"Mallanna\";i:657;s:7:\"Mandali\";i:658;s:7:\"Manjari\";i:659;s:7:\"Manrope\";i:660;s:8:\"Mansalva\";i:661;s:7:\"Manuale\";i:662;s:9:\"Marcellus\";i:663;s:12:\"Marcellus SC\";i:664;s:12:\"Marck Script\";i:665;s:9:\"Margarine\";i:666;s:12:\"Markazi Text\";i:667;s:9:\"Marko One\";i:668;s:8:\"Marmelad\";i:669;s:6:\"Martel\";i:670;s:11:\"Martel Sans\";i:671;s:6:\"Marvel\";i:672;s:4:\"Mate\";i:673;s:7:\"Mate SC\";i:674;s:9:\"Maven Pro\";i:675;s:7:\"McLaren\";i:676;s:9:\"Mea Culpa\";i:677;s:6:\"Meddon\";i:678;s:13:\"MedievalSharp\";i:679;s:10:\"Medula One\";i:680;s:12:\"Meera Inimai\";i:681;s:6:\"Megrim\";i:682;s:11:\"Meie Script\";i:683;s:11:\"Meow Script\";i:684;s:8:\"Merienda\";i:685;s:12:\"Merienda One\";i:686;s:12:\"Merriweather\";i:687;s:17:\"Merriweather Sans\";i:688;s:5:\"Metal\";i:689;s:11:\"Metal Mania\";i:690;s:12:\"Metamorphous\";i:691;s:11:\"Metrophobic\";i:692;s:8:\"Michroma\";i:693;s:7:\"Milonga\";i:694;s:9:\"Miltonian\";i:695;s:16:\"Miltonian Tattoo\";i:696;s:4:\"Mina\";i:697;s:7:\"Miniver\";i:698;s:12:\"Miriam Libre\";i:699;s:5:\"Mirza\";i:700;s:14:\"Miss Fajardose\";i:701;s:4:\"Mitr\";i:702;s:14:\"Mochiy Pop One\";i:703;s:16:\"Mochiy Pop P One\";i:704;s:5:\"Modak\";i:705;s:14:\"Modern Antiqua\";i:706;s:5:\"Mogra\";i:707;s:6:\"Mohave\";i:708;s:7:\"Molengo\";i:709;s:5:\"Molle\";i:710;s:5:\"Monda\";i:711;s:8:\"Monofett\";i:712;s:7:\"Monoton\";i:713;s:20:\"Monsieur La Doulaise\";i:714;s:7:\"Montaga\";i:715;s:12:\"Montagu Slab\";i:716;s:10:\"MonteCarlo\";i:717;s:6:\"Montez\";i:718;s:10:\"Montserrat\";i:719;s:21:\"Montserrat Alternates\";i:720;s:20:\"Montserrat Subrayada\";i:721;s:11:\"Moo Lah Lah\";i:722;s:10:\"Moon Dance\";i:723;s:4:\"Moul\";i:724;s:8:\"Moulpali\";i:725;s:22:\"Mountains of Christmas\";i:726;s:13:\"Mouse Memoirs\";i:727;s:10:\"Mr Bedfort\";i:728;s:8:\"Mr Dafoe\";i:729;s:14:\"Mr De Haviland\";i:730;s:19:\"Mrs Saint Delafield\";i:731;s:13:\"Mrs Sheppards\";i:732;s:5:\"Mukta\";i:733;s:11:\"Mukta Mahee\";i:734;s:11:\"Mukta Malar\";i:735;s:11:\"Mukta Vaani\";i:736;s:6:\"Mulish\";i:737;s:7:\"Murecho\";i:738;s:12:\"MuseoModerno\";i:739;s:13:\"Mystery Quest\";i:740;s:3:\"NTR\";i:741;s:18:\"Nanum Brush Script\";i:742;s:12:\"Nanum Gothic\";i:743;s:19:\"Nanum Gothic Coding\";i:744;s:14:\"Nanum Myeongjo\";i:745;s:16:\"Nanum Pen Script\";i:746;s:9:\"Nerko One\";i:747;s:6:\"Neucha\";i:748;s:6:\"Neuton\";i:749;s:10:\"New Rocker\";i:750;s:11:\"New Tegomin\";i:751;s:10:\"News Cycle\";i:752;s:10:\"Newsreader\";i:753;s:7:\"Niconne\";i:754;s:7:\"Niramit\";i:755;s:9:\"Nixie One\";i:756;s:6:\"Nobile\";i:757;s:6:\"Nokora\";i:758;s:7:\"Norican\";i:759;s:7:\"Nosifer\";i:760;s:7:\"Notable\";i:761;s:20:\"Nothing You Could Do\";i:762;s:12:\"Noticia Text\";i:763;s:16:\"Noto Kufi Arabic\";i:764;s:10:\"Noto Music\";i:765;s:17:\"Noto Naskh Arabic\";i:766;s:18:\"Noto Nastaliq Urdu\";i:767;s:17:\"Noto Rashi Hebrew\";i:768;s:9:\"Noto Sans\";i:769;s:15:\"Noto Sans Adlam\";i:770;s:24:\"Noto Sans Adlam Unjoined\";i:771;s:31:\"Noto Sans Anatolian Hieroglyphs\";i:772;s:16:\"Noto Sans Arabic\";i:773;s:18:\"Noto Sans Armenian\";i:774;s:17:\"Noto Sans Avestan\";i:775;s:18:\"Noto Sans Balinese\";i:776;s:15:\"Noto Sans Bamum\";i:777;s:19:\"Noto Sans Bassa Vah\";i:778;s:15:\"Noto Sans Batak\";i:779;s:17:\"Noto Sans Bengali\";i:780;s:19:\"Noto Sans Bhaiksuki\";i:781;s:16:\"Noto Sans Brahmi\";i:782;s:18:\"Noto Sans Buginese\";i:783;s:15:\"Noto Sans Buhid\";i:784;s:29:\"Noto Sans Canadian Aboriginal\";i:785;s:16:\"Noto Sans Carian\";i:786;s:28:\"Noto Sans Caucasian Albanian\";i:787;s:16:\"Noto Sans Chakma\";i:788;s:14:\"Noto Sans Cham\";i:789;s:18:\"Noto Sans Cherokee\";i:790;s:16:\"Noto Sans Coptic\";i:791;s:19:\"Noto Sans Cuneiform\";i:792;s:17:\"Noto Sans Cypriot\";i:793;s:17:\"Noto Sans Deseret\";i:794;s:20:\"Noto Sans Devanagari\";i:795;s:17:\"Noto Sans Display\";i:796;s:18:\"Noto Sans Duployan\";i:797;s:30:\"Noto Sans Egyptian Hieroglyphs\";i:798;s:17:\"Noto Sans Elbasan\";i:799;s:17:\"Noto Sans Elymaic\";i:800;s:18:\"Noto Sans Georgian\";i:801;s:20:\"Noto Sans Glagolitic\";i:802;s:16:\"Noto Sans Gothic\";i:803;s:17:\"Noto Sans Grantha\";i:804;s:18:\"Noto Sans Gujarati\";i:805;s:23:\"Noto Sans Gunjala Gondi\";i:806;s:18:\"Noto Sans Gurmukhi\";i:807;s:12:\"Noto Sans HK\";i:808;s:25:\"Noto Sans Hanifi Rohingya\";i:809;s:17:\"Noto Sans Hanunoo\";i:810;s:16:\"Noto Sans Hatran\";i:811;s:16:\"Noto Sans Hebrew\";i:812;s:26:\"Noto Sans Imperial Aramaic\";i:813;s:29:\"Noto Sans Indic Siyaq Numbers\";i:814;s:31:\"Noto Sans Inscriptional Pahlavi\";i:815;s:32:\"Noto Sans Inscriptional Parthian\";i:816;s:12:\"Noto Sans JP\";i:817;s:18:\"Noto Sans Javanese\";i:818;s:12:\"Noto Sans KR\";i:819;s:16:\"Noto Sans Kaithi\";i:820;s:17:\"Noto Sans Kannada\";i:821;s:18:\"Noto Sans Kayah Li\";i:822;s:20:\"Noto Sans Kharoshthi\";i:823;s:15:\"Noto Sans Khmer\";i:824;s:16:\"Noto Sans Khojki\";i:825;s:19:\"Noto Sans Khudawadi\";i:826;s:13:\"Noto Sans Lao\";i:827;s:16:\"Noto Sans Lepcha\";i:828;s:15:\"Noto Sans Limbu\";i:829;s:18:\"Noto Sans Linear A\";i:830;s:18:\"Noto Sans Linear B\";i:831;s:14:\"Noto Sans Lisu\";i:832;s:16:\"Noto Sans Lycian\";i:833;s:16:\"Noto Sans Lydian\";i:834;s:18:\"Noto Sans Mahajani\";i:835;s:19:\"Noto Sans Malayalam\";i:836;s:17:\"Noto Sans Mandaic\";i:837;s:20:\"Noto Sans Manichaean\";i:838;s:17:\"Noto Sans Marchen\";i:839;s:23:\"Noto Sans Masaram Gondi\";i:840;s:14:\"Noto Sans Math\";i:841;s:24:\"Noto Sans Mayan Numerals\";i:842;s:21:\"Noto Sans Medefaidrin\";i:843;s:22:\"Noto Sans Meetei Mayek\";i:844;s:18:\"Noto Sans Meroitic\";i:845;s:14:\"Noto Sans Miao\";i:846;s:14:\"Noto Sans Modi\";i:847;s:19:\"Noto Sans Mongolian\";i:848;s:14:\"Noto Sans Mono\";i:849;s:13:\"Noto Sans Mro\";i:850;s:17:\"Noto Sans Multani\";i:851;s:17:\"Noto Sans Myanmar\";i:852;s:14:\"Noto Sans N Ko\";i:853;s:19:\"Noto Sans Nabataean\";i:854;s:21:\"Noto Sans New Tai Lue\";i:855;s:14:\"Noto Sans Newa\";i:856;s:15:\"Noto Sans Nushu\";i:857;s:15:\"Noto Sans Ogham\";i:858;s:18:\"Noto Sans Ol Chiki\";i:859;s:23:\"Noto Sans Old Hungarian\";i:860;s:20:\"Noto Sans Old Italic\";i:861;s:27:\"Noto Sans Old North Arabian\";i:862;s:20:\"Noto Sans Old Permic\";i:863;s:21:\"Noto Sans Old Persian\";i:864;s:21:\"Noto Sans Old Sogdian\";i:865;s:27:\"Noto Sans Old South Arabian\";i:866;s:20:\"Noto Sans Old Turkic\";i:867;s:15:\"Noto Sans Oriya\";i:868;s:15:\"Noto Sans Osage\";i:869;s:17:\"Noto Sans Osmanya\";i:870;s:22:\"Noto Sans Pahawh Hmong\";i:871;s:19:\"Noto Sans Palmyrene\";i:872;s:21:\"Noto Sans Pau Cin Hau\";i:873;s:18:\"Noto Sans Phags Pa\";i:874;s:20:\"Noto Sans Phoenician\";i:875;s:25:\"Noto Sans Psalter Pahlavi\";i:876;s:16:\"Noto Sans Rejang\";i:877;s:15:\"Noto Sans Runic\";i:878;s:12:\"Noto Sans SC\";i:879;s:19:\"Noto Sans Samaritan\";i:880;s:20:\"Noto Sans Saurashtra\";i:881;s:17:\"Noto Sans Sharada\";i:882;s:17:\"Noto Sans Shavian\";i:883;s:17:\"Noto Sans Siddham\";i:884;s:17:\"Noto Sans Sinhala\";i:885;s:17:\"Noto Sans Sogdian\";i:886;s:22:\"Noto Sans Sora Sompeng\";i:887;s:17:\"Noto Sans Soyombo\";i:888;s:19:\"Noto Sans Sundanese\";i:889;s:22:\"Noto Sans Syloti Nagri\";i:890;s:17:\"Noto Sans Symbols\";i:891;s:19:\"Noto Sans Symbols 2\";i:892;s:16:\"Noto Sans Syriac\";i:893;s:12:\"Noto Sans TC\";i:894;s:17:\"Noto Sans Tagalog\";i:895;s:18:\"Noto Sans Tagbanwa\";i:896;s:16:\"Noto Sans Tai Le\";i:897;s:18:\"Noto Sans Tai Tham\";i:898;s:18:\"Noto Sans Tai Viet\";i:899;s:15:\"Noto Sans Takri\";i:900;s:15:\"Noto Sans Tamil\";i:901;s:26:\"Noto Sans Tamil Supplement\";i:902;s:16:\"Noto Sans Telugu\";i:903;s:16:\"Noto Sans Thaana\";i:904;s:14:\"Noto Sans Thai\";i:905;s:21:\"Noto Sans Thai Looped\";i:906;s:18:\"Noto Sans Tifinagh\";i:907;s:17:\"Noto Sans Tirhuta\";i:908;s:18:\"Noto Sans Ugaritic\";i:909;s:13:\"Noto Sans Vai\";i:910;s:16:\"Noto Sans Wancho\";i:911;s:21:\"Noto Sans Warang Citi\";i:912;s:12:\"Noto Sans Yi\";i:913;s:26:\"Noto Sans Zanabazar Square\";i:914;s:10:\"Noto Serif\";i:915;s:15:\"Noto Serif Ahom\";i:916;s:19:\"Noto Serif Armenian\";i:917;s:19:\"Noto Serif Balinese\";i:918;s:18:\"Noto Serif Bengali\";i:919;s:21:\"Noto Serif Devanagari\";i:920;s:18:\"Noto Serif Display\";i:921;s:16:\"Noto Serif Dogra\";i:922;s:19:\"Noto Serif Ethiopic\";i:923;s:19:\"Noto Serif Georgian\";i:924;s:18:\"Noto Serif Grantha\";i:925;s:19:\"Noto Serif Gujarati\";i:926;s:19:\"Noto Serif Gurmukhi\";i:927;s:17:\"Noto Serif Hebrew\";i:928;s:13:\"Noto Serif JP\";i:929;s:13:\"Noto Serif KR\";i:930;s:18:\"Noto Serif Kannada\";i:931;s:16:\"Noto Serif Khmer\";i:932;s:14:\"Noto Serif Lao\";i:933;s:20:\"Noto Serif Malayalam\";i:934;s:18:\"Noto Serif Myanmar\";i:935;s:33:\"Noto Serif Nyiakeng Puachue Hmong\";i:936;s:13:\"Noto Serif SC\";i:937;s:18:\"Noto Serif Sinhala\";i:938;s:13:\"Noto Serif TC\";i:939;s:16:\"Noto Serif Tamil\";i:940;s:17:\"Noto Serif Tangut\";i:941;s:17:\"Noto Serif Telugu\";i:942;s:15:\"Noto Serif Thai\";i:943;s:18:\"Noto Serif Tibetan\";i:944;s:17:\"Noto Serif Yezidi\";i:945;s:22:\"Noto Traditional Nushu\";i:946;s:8:\"Nova Cut\";i:947;s:9:\"Nova Flat\";i:948;s:9:\"Nova Mono\";i:949;s:9:\"Nova Oval\";i:950;s:10:\"Nova Round\";i:951;s:11:\"Nova Script\";i:952;s:9:\"Nova Slim\";i:953;s:11:\"Nova Square\";i:954;s:6:\"Numans\";i:955;s:6:\"Nunito\";i:956;s:11:\"Nunito Sans\";i:957;s:11:\"Odibee Sans\";i:958;s:14:\"Odor Mean Chey\";i:959;s:7:\"Offside\";i:960;s:2:\"Oi\";i:961;s:15:\"Old Standard TT\";i:962;s:9:\"Oldenburg\";i:963;s:3:\"Ole\";i:964;s:11:\"Oleo Script\";i:965;s:22:\"Oleo Script Swash Caps\";i:966;s:9:\"Oooh Baby\";i:967;s:9:\"Open Sans\";i:968;s:19:\"Open Sans Condensed\";i:969;s:11:\"Oranienbaum\";i:970;s:8:\"Orbitron\";i:971;s:7:\"Oregano\";i:972;s:11:\"Orelega One\";i:973;s:7:\"Orienta\";i:974;s:15:\"Original Surfer\";i:975;s:6:\"Oswald\";i:976;s:14:\"Otomanopee One\";i:977;s:6:\"Outfit\";i:978;s:16:\"Over the Rainbow\";i:979;s:8:\"Overlock\";i:980;s:11:\"Overlock SC\";i:981;s:8:\"Overpass\";i:982;s:13:\"Overpass Mono\";i:983;s:3:\"Ovo\";i:984;s:7:\"Oxanium\";i:985;s:6:\"Oxygen\";i:986;s:11:\"Oxygen Mono\";i:987;s:7:\"PT Mono\";i:988;s:7:\"PT Sans\";i:989;s:15:\"PT Sans Caption\";i:990;s:14:\"PT Sans Narrow\";i:991;s:8:\"PT Serif\";i:992;s:16:\"PT Serif Caption\";i:993;s:8:\"Pacifico\";i:994;s:6:\"Padauk\";i:995;s:9:\"Palanquin\";i:996;s:14:\"Palanquin Dark\";i:997;s:14:\"Palette Mosaic\";i:998;s:8:\"Pangolin\";i:999;s:7:\"Paprika\";i:1000;s:10:\"Parisienne\";i:1001;s:11:\"Passero One\";i:1002;s:11:\"Passion One\";i:1003;s:17:\"Passions Conflict\";i:1004;s:18:\"Pathway Gothic One\";i:1005;s:12:\"Patrick Hand\";i:1006;s:15:\"Patrick Hand SC\";i:1007;s:7:\"Pattaya\";i:1008;s:9:\"Patua One\";i:1009;s:7:\"Pavanam\";i:1010;s:11:\"Paytone One\";i:1011;s:7:\"Peddana\";i:1012;s:7:\"Peralta\";i:1013;s:16:\"Permanent Marker\";i:1014;s:8:\"Petemoss\";i:1015;s:19:\"Petit Formal Script\";i:1016;s:7:\"Petrona\";i:1017;s:11:\"Philosopher\";i:1018;s:9:\"Piazzolla\";i:1019;s:6:\"Piedra\";i:1020;s:13:\"Pinyon Script\";i:1021;s:10:\"Pirata One\";i:1022;s:7:\"Plaster\";i:1023;s:4:\"Play\";i:1024;s:8:\"Playball\";i:1025;s:16:\"Playfair Display\";i:1026;s:19:\"Playfair Display SC\";i:1027;s:7:\"Podkova\";i:1028;s:10:\"Poiret One\";i:1029;s:10:\"Poller One\";i:1030;s:4:\"Poly\";i:1031;s:8:\"Pompiere\";i:1032;s:12:\"Pontano Sans\";i:1033;s:10:\"Poor Story\";i:1034;s:7:\"Poppins\";i:1035;s:16:\"Port Lligat Sans\";i:1036;s:16:\"Port Lligat Slab\";i:1037;s:9:\"Potta One\";i:1038;s:14:\"Pragati Narrow\";i:1039;s:6:\"Praise\";i:1040;s:5:\"Prata\";i:1041;s:11:\"Preahvihear\";i:1042;s:14:\"Press Start 2P\";i:1043;s:5:\"Pridi\";i:1044;s:14:\"Princess Sofia\";i:1045;s:8:\"Prociono\";i:1046;s:6:\"Prompt\";i:1047;s:10:\"Prosto One\";i:1048;s:11:\"Proza Libre\";i:1049;s:11:\"Public Sans\";i:1050;s:12:\"Puppies Play\";i:1051;s:7:\"Puritan\";i:1052;s:12:\"Purple Purse\";i:1053;s:8:\"Pushster\";i:1054;s:6:\"Qahiri\";i:1055;s:6:\"Quando\";i:1056;s:8:\"Quantico\";i:1057;s:12:\"Quattrocento\";i:1058;s:17:\"Quattrocento Sans\";i:1059;s:9:\"Questrial\";i:1060;s:9:\"Quicksand\";i:1061;s:14:\"Quintessential\";i:1062;s:7:\"Qwigley\";i:1063;s:15:\"Qwitcher Grypen\";i:1064;s:15:\"Racing Sans One\";i:1065;s:6:\"Radley\";i:1066;s:8:\"Rajdhani\";i:1067;s:6:\"Rakkas\";i:1068;s:7:\"Raleway\";i:1069;s:12:\"Raleway Dots\";i:1070;s:10:\"Ramabhadra\";i:1071;s:8:\"Ramaraja\";i:1072;s:6:\"Rambla\";i:1073;s:12:\"Rammetto One\";i:1074;s:11:\"Rampart One\";i:1075;s:8:\"Ranchers\";i:1076;s:6:\"Rancho\";i:1077;s:5:\"Ranga\";i:1078;s:4:\"Rasa\";i:1079;s:9:\"Rationale\";i:1080;s:12:\"Ravi Prakash\";i:1081;s:10:\"Readex Pro\";i:1082;s:9:\"Recursive\";i:1083;s:15:\"Red Hat Display\";i:1084;s:12:\"Red Hat Mono\";i:1085;s:12:\"Red Hat Text\";i:1086;s:8:\"Red Rose\";i:1087;s:8:\"Redacted\";i:1088;s:15:\"Redacted Script\";i:1089;s:9:\"Redressed\";i:1090;s:9:\"Reem Kufi\";i:1091;s:13:\"Reenie Beanie\";i:1092;s:10:\"Reggae One\";i:1093;s:7:\"Revalia\";i:1094;s:13:\"Rhodium Libre\";i:1095;s:6:\"Ribeye\";i:1096;s:13:\"Ribeye Marrow\";i:1097;s:9:\"Righteous\";i:1098;s:6:\"Risque\";i:1099;s:9:\"Road Rage\";i:1100;s:6:\"Roboto\";i:1101;s:16:\"Roboto Condensed\";i:1102;s:11:\"Roboto Mono\";i:1103;s:11:\"Roboto Slab\";i:1104;s:9:\"Rochester\";i:1105;s:7:\"Rock 3D\";i:1106;s:9:\"Rock Salt\";i:1107;s:13:\"RocknRoll One\";i:1108;s:7:\"Rokkitt\";i:1109;s:9:\"Romanesco\";i:1110;s:9:\"Ropa Sans\";i:1111;s:7:\"Rosario\";i:1112;s:8:\"Rosarivo\";i:1113;s:12:\"Rouge Script\";i:1114;s:7:\"Rowdies\";i:1115;s:9:\"Rozha One\";i:1116;s:5:\"Rubik\";i:1117;s:13:\"Rubik Beastly\";i:1118;s:14:\"Rubik Mono One\";i:1119;s:4:\"Ruda\";i:1120;s:6:\"Rufina\";i:1121;s:11:\"Ruge Boogie\";i:1122;s:6:\"Ruluko\";i:1123;s:10:\"Rum Raisin\";i:1124;s:14:\"Ruslan Display\";i:1125;s:9:\"Russo One\";i:1126;s:6:\"Ruthie\";i:1127;s:3:\"Rye\";i:1128;s:13:\"STIX Two Text\";i:1129;s:10:\"Sacramento\";i:1130;s:7:\"Sahitya\";i:1131;s:4:\"Sail\";i:1132;s:5:\"Saira\";i:1133;s:15:\"Saira Condensed\";i:1134;s:21:\"Saira Extra Condensed\";i:1135;s:20:\"Saira Semi Condensed\";i:1136;s:17:\"Saira Stencil One\";i:1137;s:5:\"Salsa\";i:1138;s:7:\"Sanchez\";i:1139;s:8:\"Sancreek\";i:1140;s:7:\"Sansita\";i:1141;s:15:\"Sansita Swashed\";i:1142;s:7:\"Sarabun\";i:1143;s:6:\"Sarala\";i:1144;s:6:\"Sarina\";i:1145;s:8:\"Sarpanch\";i:1146;s:11:\"Sassy Frass\";i:1147;s:7:\"Satisfy\";i:1148;s:15:\"Sawarabi Gothic\";i:1149;s:15:\"Sawarabi Mincho\";i:1150;s:5:\"Scada\";i:1151;s:16:\"Scheherazade New\";i:1152;s:10:\"Schoolbell\";i:1153;s:9:\"Scope One\";i:1154;s:14:\"Seaweed Script\";i:1155;s:11:\"Secular One\";i:1156;s:12:\"Sedgwick Ave\";i:1157;s:20:\"Sedgwick Ave Display\";i:1158;s:3:\"Sen\";i:1159;s:9:\"Sevillana\";i:1160;s:11:\"Seymour One\";i:1161;s:18:\"Shadows Into Light\";i:1162;s:22:\"Shadows Into Light Two\";i:1163;s:8:\"Shalimar\";i:1164;s:6:\"Shanti\";i:1165;s:5:\"Share\";i:1166;s:10:\"Share Tech\";i:1167;s:15:\"Share Tech Mono\";i:1168;s:16:\"Shippori Antique\";i:1169;s:19:\"Shippori Antique B1\";i:1170;s:15:\"Shippori Mincho\";i:1171;s:18:\"Shippori Mincho B1\";i:1172;s:7:\"Shizuru\";i:1173;s:9:\"Shojumaru\";i:1174;s:11:\"Short Stack\";i:1175;s:9:\"Shrikhand\";i:1176;s:8:\"Siemreap\";i:1177;s:10:\"Sigmar One\";i:1178;s:7:\"Signika\";i:1179;s:16:\"Signika Negative\";i:1180;s:9:\"Simonetta\";i:1181;s:10:\"Single Day\";i:1182;s:7:\"Sintony\";i:1183;s:13:\"Sirin Stencil\";i:1184;s:8:\"Six Caps\";i:1185;s:7:\"Skranji\";i:1186;s:10:\"Slabo 13px\";i:1187;s:10:\"Slabo 27px\";i:1188;s:7:\"Slackey\";i:1189;s:6:\"Smokum\";i:1190;s:6:\"Smooch\";i:1191;s:6:\"Smythe\";i:1192;s:7:\"Sniglet\";i:1193;s:7:\"Snippet\";i:1194;s:13:\"Snowburst One\";i:1195;s:10:\"Sofadi One\";i:1196;s:5:\"Sofia\";i:1197;s:6:\"Solway\";i:1198;s:10:\"Song Myung\";i:1199;s:10:\"Sonsie One\";i:1200;s:4:\"Sora\";i:1201;s:16:\"Sorts Mill Goudy\";i:1202;s:15:\"Source Code Pro\";i:1203;s:13:\"Source Sans 3\";i:1204;s:15:\"Source Sans Pro\";i:1205;s:14:\"Source Serif 4\";i:1206;s:16:\"Source Serif Pro\";i:1207;s:13:\"Space Grotesk\";i:1208;s:10:\"Space Mono\";i:1209;s:7:\"Spartan\";i:1210;s:13:\"Special Elite\";i:1211;s:8:\"Spectral\";i:1212;s:11:\"Spectral SC\";i:1213;s:10:\"Spicy Rice\";i:1214;s:9:\"Spinnaker\";i:1215;s:6:\"Spirax\";i:1216;s:11:\"Spline Sans\";i:1217;s:10:\"Squada One\";i:1218;s:20:\"Sree Krushnadevaraya\";i:1219;s:8:\"Sriracha\";i:1220;s:8:\"Srisakdi\";i:1221;s:11:\"Staatliches\";i:1222;s:9:\"Stalemate\";i:1223;s:13:\"Stalinist One\";i:1224;s:15:\"Stardos Stencil\";i:1225;s:5:\"Stick\";i:1226;s:14:\"Stick No Bills\";i:1227;s:21:\"Stint Ultra Condensed\";i:1228;s:20:\"Stint Ultra Expanded\";i:1229;s:5:\"Stoke\";i:1230;s:6:\"Strait\";i:1231;s:12:\"Style Script\";i:1232;s:7:\"Stylish\";i:1233;s:19:\"Sue Ellen Francisco\";i:1234;s:8:\"Suez One\";i:1235;s:13:\"Sulphur Point\";i:1236;s:6:\"Sumana\";i:1237;s:9:\"Sunflower\";i:1238;s:9:\"Sunshiney\";i:1239;s:16:\"Supermercado One\";i:1240;s:4:\"Sura\";i:1241;s:7:\"Suranna\";i:1242;s:9:\"Suravaram\";i:1243;s:11:\"Suwannaphum\";i:1244;s:18:\"Swanky and Moo Moo\";i:1245;s:9:\"Syncopate\";i:1246;s:4:\"Syne\";i:1247;s:9:\"Syne Mono\";i:1248;s:12:\"Syne Tactile\";i:1249;s:7:\"Tajawal\";i:1250;s:9:\"Tangerine\";i:1251;s:6:\"Taprom\";i:1252;s:5:\"Tauri\";i:1253;s:7:\"Taviraj\";i:1254;s:4:\"Teko\";i:1255;s:5:\"Telex\";i:1256;s:18:\"Tenali Ramakrishna\";i:1257;s:10:\"Tenor Sans\";i:1258;s:11:\"Text Me One\";i:1259;s:9:\"Texturina\";i:1260;s:9:\"Thasadith\";i:1261;s:18:\"The Girl Next Door\";i:1262;s:12:\"The Nautigal\";i:1263;s:6:\"Tienne\";i:1264;s:7:\"Tillana\";i:1265;s:7:\"Timmana\";i:1266;s:5:\"Tinos\";i:1267;s:9:\"Titan One\";i:1268;s:13:\"Titillium Web\";i:1269;s:8:\"Tomorrow\";i:1270;s:7:\"Tourney\";i:1271;s:11:\"Trade Winds\";i:1272;s:9:\"Train One\";i:1273;s:7:\"Trirong\";i:1274;s:8:\"Trispace\";i:1275;s:7:\"Trocchi\";i:1276;s:7:\"Trochut\";i:1277;s:10:\"Truculenta\";i:1278;s:7:\"Trykker\";i:1279;s:10:\"Tulpen One\";i:1280;s:11:\"Turret Road\";i:1281;s:12:\"Twinkle Star\";i:1282;s:6:\"Ubuntu\";i:1283;s:16:\"Ubuntu Condensed\";i:1284;s:11:\"Ubuntu Mono\";i:1285;s:5:\"Uchen\";i:1286;s:5:\"Ultra\";i:1287;s:14:\"Uncial Antiqua\";i:1288;s:8:\"Underdog\";i:1289;s:9:\"Unica One\";i:1290;s:14:\"UnifrakturCook\";i:1291;s:18:\"UnifrakturMaguntia\";i:1292;s:7:\"Unkempt\";i:1293;s:6:\"Unlock\";i:1294;s:4:\"Unna\";i:1295;s:8:\"Urbanist\";i:1296;s:5:\"VT323\";i:1297;s:11:\"Vampiro One\";i:1298;s:6:\"Varela\";i:1299;s:12:\"Varela Round\";i:1300;s:5:\"Varta\";i:1301;s:11:\"Vast Shadow\";i:1302;s:12:\"Vesper Libre\";i:1303;s:12:\"Viaoda Libre\";i:1304;s:5:\"Vibes\";i:1305;s:5:\"Vibur\";i:1306;s:8:\"Vidaloka\";i:1307;s:4:\"Viga\";i:1308;s:5:\"Voces\";i:1309;s:7:\"Volkhov\";i:1310;s:8:\"Vollkorn\";i:1311;s:11:\"Vollkorn SC\";i:1312;s:8:\"Voltaire\";i:1313;s:15:\"Vujahday Script\";i:1314;s:23:\"Waiting for the Sunrise\";i:1315;s:8:\"Wallpoet\";i:1316;s:15:\"Walter Turncoat\";i:1317;s:6:\"Warnes\";i:1318;s:9:\"Waterfall\";i:1319;s:9:\"Wellfleet\";i:1320;s:9:\"Wendy One\";i:1321;s:8:\"WindSong\";i:1322;s:8:\"Wire One\";i:1323;s:9:\"Work Sans\";i:1324;s:9:\"Xanh Mono\";i:1325;s:7:\"Yaldevi\";i:1326;s:17:\"Yanone Kaffeesatz\";i:1327;s:11:\"Yantramanav\";i:1328;s:9:\"Yatra One\";i:1329;s:10:\"Yellowtail\";i:1330;s:9:\"Yeon Sung\";i:1331;s:10:\"Yeseva One\";i:1332;s:10:\"Yesteryear\";i:1333;s:6:\"Yomogi\";i:1334;s:4:\"Yrsa\";i:1335;s:9:\"Yuji Boku\";i:1336;s:21:\"Yuji Hentaigana Akari\";i:1337;s:23:\"Yuji Hentaigana Akebono\";i:1338;s:8:\"Yuji Mai\";i:1339;s:10:\"Yuji Syuku\";i:1340;s:11:\"Yusei Magic\";i:1341;s:12:\"ZCOOL KuaiLe\";i:1342;s:21:\"ZCOOL QingKe HuangYou\";i:1343;s:13:\"ZCOOL XiaoWei\";i:1344;s:11:\"Zen Antique\";i:1345;s:16:\"Zen Antique Soft\";i:1346;s:8:\"Zen Dots\";i:1347;s:23:\"Zen Kaku Gothic Antique\";i:1348;s:19:\"Zen Kaku Gothic New\";i:1349;s:13:\"Zen Kurenaido\";i:1350;s:8:\"Zen Loop\";i:1351;s:15:\"Zen Maru Gothic\";i:1352;s:14:\"Zen Old Mincho\";i:1353;s:13:\"Zen Tokyo Zoo\";i:1354;s:6:\"Zeyada\";i:1355;s:13:\"Zhi Mang Xing\";i:1356;s:10:\"Zilla Slab\";i:1357;s:20:\"Zilla Slab Highlight\";}','no'),(478,'_site_transient_timeout_kirki_googlefont_names_cache','1674316540','no'),(479,'_site_transient_kirki_googlefont_names_cache','a:1358:{i:0;s:6:\"Roboto\";i:1;s:9:\"Open Sans\";i:2;s:12:\"Noto Sans JP\";i:3;s:4:\"Lato\";i:4;s:10:\"Montserrat\";i:5;s:16:\"Roboto Condensed\";i:6;s:15:\"Source Sans Pro\";i:7;s:7:\"Poppins\";i:8;s:6:\"Oswald\";i:9;s:11:\"Roboto Mono\";i:10;s:7:\"Raleway\";i:11;s:9:\"Noto Sans\";i:12;s:6:\"Nunito\";i:13;s:6:\"Ubuntu\";i:14;s:7:\"PT Sans\";i:15;s:12:\"Merriweather\";i:16;s:11:\"Roboto Slab\";i:17;s:16:\"Playfair Display\";i:18;s:5:\"Inter\";i:19;s:5:\"Mukta\";i:20;s:5:\"Rubik\";i:21;s:19:\"Open Sans Condensed\";i:22;s:4:\"Lora\";i:23;s:12:\"Noto Sans KR\";i:24;s:9:\"Work Sans\";i:25;s:11:\"Nunito Sans\";i:26;s:12:\"Nanum Gothic\";i:27;s:9:\"Fira Sans\";i:28;s:8:\"PT Serif\";i:29;s:9:\"Quicksand\";i:30;s:13:\"Titillium Web\";i:31;s:13:\"Hind Siliguri\";i:32;s:10:\"Noto Serif\";i:33;s:5:\"Karla\";i:34;s:6:\"Barlow\";i:35;s:12:\"Noto Sans TC\";i:36;s:11:\"Inconsolata\";i:37;s:5:\"Heebo\";i:38;s:13:\"IBM Plex Sans\";i:39;s:14:\"Libre Franklin\";i:40;s:14:\"PT Sans Narrow\";i:41;s:17:\"Libre Baskerville\";i:42;s:6:\"Oxygen\";i:43;s:15:\"Source Code Pro\";i:44;s:5:\"Arimo\";i:45;s:5:\"Dosis\";i:46;s:12:\"Josefin Sans\";i:47;s:10:\"Bebas Neue\";i:48;s:6:\"Mulish\";i:49;s:5:\"Cabin\";i:50;s:7:\"Lobster\";i:51;s:6:\"Bitter\";i:52;s:11:\"EB Garamond\";i:53;s:5:\"Anton\";i:54;s:7:\"DM Sans\";i:55;s:14:\"Dancing Script\";i:56;s:16:\"Source Serif Pro\";i:57;s:6:\"Prompt\";i:58;s:5:\"Cairo\";i:59;s:17:\"Yanone Kaffeesatz\";i:60;s:12:\"Varela Round\";i:61;s:4:\"Hind\";i:62;s:4:\"Abel\";i:63;s:5:\"Kanit\";i:64;s:16:\"Barlow Condensed\";i:65;s:10:\"Fjalla One\";i:66;s:9:\"Comfortaa\";i:67;s:4:\"Arvo\";i:68;s:5:\"Exo 2\";i:69;s:8:\"Pacifico\";i:70;s:8:\"Overpass\";i:71;s:9:\"Maven Pro\";i:72;s:4:\"Teko\";i:73;s:17:\"Merriweather Sans\";i:74;s:18:\"Shadows Into Light\";i:75;s:4:\"Asap\";i:76;s:12:\"Indie Flower\";i:77;s:16:\"Signika Negative\";i:78;s:12:\"Noto Sans SC\";i:79;s:13:\"Abril Fatface\";i:80;s:8:\"Rajdhani\";i:81;s:19:\"Architects Daughter\";i:82;s:12:\"Hind Madurai\";i:83;s:9:\"Questrial\";i:84;s:18:\"Cormorant Garamond\";i:85;s:15:\"Saira Condensed\";i:86;s:10:\"Slabo 27px\";i:87;s:13:\"Noto Serif JP\";i:88;s:14:\"IBM Plex Serif\";i:89;s:9:\"Assistant\";i:90;s:6:\"Caveat\";i:91;s:19:\"Fira Sans Condensed\";i:92;s:9:\"Catamaran\";i:93;s:7:\"Manrope\";i:94;s:16:\"Permanent Marker\";i:95;s:13:\"Balsamiq Sans\";i:96;s:14:\"Nanum Myeongjo\";i:97;s:3:\"Exo\";i:98;s:11:\"Ubuntu Mono\";i:99;s:7:\"Tajawal\";i:100;s:6:\"Padauk\";i:101;s:7:\"Archivo\";i:102;s:12:\"Patrick Hand\";i:103;s:14:\"Archivo Narrow\";i:104;s:6:\"Domine\";i:105;s:7:\"Satisfy\";i:106;s:11:\"Secular One\";i:107;s:4:\"Play\";i:108;s:10:\"Zilla Slab\";i:109;s:4:\"Acme\";i:110;s:17:\"M PLUS Rounded 1c\";i:111;s:7:\"ABeeZee\";i:112;s:13:\"Alfa Slab One\";i:113;s:7:\"Spartan\";i:114;s:11:\"Public Sans\";i:115;s:10:\"Bree Serif\";i:116;s:7:\"Signika\";i:117;s:9:\"Amatic SC\";i:118;s:17:\"Noto Sans Display\";i:119;s:17:\"Gloria Hallelujah\";i:120;s:4:\"Jost\";i:121;s:9:\"Patua One\";i:122;s:21:\"Barlow Semi Condensed\";i:123;s:11:\"Staatliches\";i:124;s:11:\"Crete Round\";i:125;s:9:\"Righteous\";i:126;s:7:\"Sarabun\";i:127;s:8:\"Vollkorn\";i:128;s:11:\"Fredoka One\";i:129;s:15:\"Red Hat Display\";i:130;s:6:\"Cinzel\";i:131;s:5:\"Eczar\";i:132;s:6:\"Martel\";i:133;s:6:\"Cookie\";i:134;s:12:\"Chakra Petch\";i:135;s:13:\"Alegreya Sans\";i:136;s:11:\"Yantramanav\";i:137;s:10:\"Space Mono\";i:138;s:10:\"Antic Slab\";i:139;s:5:\"Amiri\";i:140;s:9:\"Courgette\";i:141;s:13:\"Space Grotesk\";i:142;s:7:\"Almarai\";i:143;s:9:\"M PLUS 1p\";i:144;s:11:\"Lobster Two\";i:145;s:13:\"IBM Plex Mono\";i:146;s:11:\"Great Vibes\";i:147;s:15:\"PT Sans Caption\";i:148;s:16:\"Ubuntu Condensed\";i:149;s:5:\"Tinos\";i:150;s:8:\"Alegreya\";i:151;s:13:\"Didact Gothic\";i:152;s:11:\"Encode Sans\";i:153;s:9:\"Gothic A1\";i:154;s:5:\"Prata\";i:155;s:16:\"DM Serif Display\";i:156;s:9:\"Russo One\";i:157;s:14:\"Kaushan Script\";i:158;s:21:\"Montserrat Alternates\";i:159;s:13:\"Archivo Black\";i:160;s:16:\"Frank Ruhl Libre\";i:161;s:8:\"Spectral\";i:162;s:12:\"Noticia Text\";i:163;s:5:\"Cardo\";i:164;s:12:\"Francois One\";i:165;s:10:\"Parisienne\";i:166;s:15:\"Old Standard TT\";i:167;s:7:\"Baloo 2\";i:168;s:5:\"Kalam\";i:169;s:11:\"Passion One\";i:170;s:16:\"Noto Kufi Arabic\";i:171;s:6:\"Changa\";i:172;s:10:\"Sacramento\";i:173;s:14:\"Asap Condensed\";i:174;s:11:\"Crimson Pro\";i:175;s:7:\"Rokkitt\";i:176;s:9:\"Cantarell\";i:177;s:13:\"Special Elite\";i:178;s:8:\"Orbitron\";i:179;s:9:\"Cormorant\";i:180;s:11:\"Paytone One\";i:181;s:17:\"Quattrocento Sans\";i:182;s:11:\"Concert One\";i:183;s:6:\"Cuprum\";i:184;s:5:\"Saira\";i:185;s:18:\"Pathway Gothic One\";i:186;s:12:\"Luckiest Guy\";i:187;s:13:\"Noto Serif TC\";i:188;s:7:\"Volkhov\";i:189;s:5:\"Chivo\";i:190;s:7:\"Handlee\";i:191;s:12:\"Josefin Slab\";i:192;s:5:\"Khand\";i:193;s:9:\"Ropa Sans\";i:194;s:7:\"PT Mono\";i:195;s:8:\"Faustina\";i:196;s:15:\"Sawarabi Mincho\";i:197;s:9:\"Titan One\";i:198;s:4:\"Itim\";i:199;s:4:\"Unna\";i:200;s:7:\"Gelasio\";i:201;s:10:\"News Cycle\";i:202;s:19:\"Playfair Display SC\";i:203;s:11:\"Philosopher\";i:204;s:12:\"Quattrocento\";i:205;s:9:\"Syncopate\";i:206;s:7:\"Sanchez\";i:207;s:14:\"Press Start 2P\";i:208;s:4:\"Mitr\";i:209;s:10:\"Poiret One\";i:210;s:5:\"Alata\";i:211;s:8:\"Vidaloka\";i:212;s:5:\"Monda\";i:213;s:10:\"Advent Pro\";i:214;s:6:\"Bungee\";i:215;s:13:\"Arima Madurai\";i:216;s:6:\"Neuton\";i:217;s:8:\"Playball\";i:218;s:4:\"Viga\";i:219;s:12:\"Noto Sans HK\";i:220;s:10:\"Yeseva One\";i:221;s:5:\"Ultra\";i:222;s:10:\"Yellowtail\";i:223;s:7:\"Taviraj\";i:224;s:20:\"Saira Semi Condensed\";i:225;s:25:\"Fira Sans Extra Condensed\";i:226;s:9:\"Marcellus\";i:227;s:5:\"Karma\";i:228;s:9:\"Tangerine\";i:229;s:9:\"Creepster\";i:230;s:7:\"Bangers\";i:231;s:13:\"Noto Serif KR\";i:232;s:10:\"Sigmar One\";i:233;s:15:\"Hammersmith One\";i:234;s:4:\"Sora\";i:235;s:4:\"Aleo\";i:236;s:8:\"Lusitana\";i:237;s:5:\"Alice\";i:238;s:5:\"Actor\";i:239;s:10:\"Gochi Hand\";i:240;s:10:\"El Messiri\";i:241;s:6:\"Arapey\";i:242;s:9:\"Istok Web\";i:243;s:15:\"Sawarabi Gothic\";i:244;s:4:\"Mali\";i:245;s:6:\"Neucha\";i:246;s:5:\"Gudea\";i:247;s:8:\"Merienda\";i:248;s:19:\"Nanum Gothic Coding\";i:249;s:13:\"DM Serif Text\";i:250;s:4:\"Ruda\";i:251;s:9:\"Fugaz One\";i:252;s:14:\"Homemade Apple\";i:253;s:16:\"Nanum Pen Script\";i:254;s:7:\"Adamina\";i:255;s:4:\"Jura\";i:256;s:6:\"Allura\";i:257;s:10:\"Carter One\";i:258;s:9:\"Recursive\";i:259;s:15:\"Cabin Condensed\";i:260;s:10:\"Lilita One\";i:261;s:9:\"BenchNine\";i:262;s:12:\"Bai Jamjuree\";i:263;s:13:\"Hind Vadodara\";i:264;s:11:\"Lexend Deca\";i:265;s:12:\"Marck Script\";i:266;s:13:\"Noto Serif SC\";i:267;s:8:\"Amaranth\";i:268;s:9:\"Economica\";i:269;s:9:\"Unica One\";i:270;s:4:\"Alef\";i:271;s:14:\"Pragati Narrow\";i:272;s:9:\"Palanquin\";i:273;s:13:\"Gentium Basic\";i:274;s:11:\"Mukta Malar\";i:275;s:5:\"Khula\";i:276;s:15:\"Julius Sans One\";i:277;s:18:\"IM Fell English SC\";i:278;s:3:\"Sen\";i:279;s:9:\"Rock Salt\";i:280;s:6:\"Armata\";i:281;s:7:\"Monoton\";i:282;s:10:\"Ramabhadra\";i:283;s:12:\"Abhaya Libre\";i:284;s:20:\"Nothing You Could Do\";i:285;s:10:\"Alex Brush\";i:286;s:9:\"Audiowide\";i:287;s:18:\"Gentium Book Basic\";i:288;s:12:\"Pontano Sans\";i:289;s:10:\"Tenor Sans\";i:290;s:6:\"Gruppo\";i:291;s:10:\"Bad Script\";i:292;s:7:\"Allerta\";i:293;s:13:\"Courier Prime\";i:294;s:15:\"Share Tech Mono\";i:295;s:7:\"Cousine\";i:296;s:8:\"Aclonica\";i:297;s:13:\"Reenie Beanie\";i:298;s:8:\"Pangolin\";i:299;s:11:\"Electrolize\";i:300;s:6:\"Varela\";i:301;s:9:\"Fira Code\";i:302;s:11:\"Kosugi Maru\";i:303;s:6:\"Rufina\";i:304;s:16:\"Sorts Mill Goudy\";i:305;s:12:\"Commissioner\";i:306;s:6:\"Sarala\";i:307;s:11:\"Oleo Script\";i:308;s:13:\"Black Ops One\";i:309;s:7:\"Arsenal\";i:310;s:7:\"Mate SC\";i:311;s:11:\"Martel Sans\";i:312;s:7:\"Mandali\";i:313;s:14:\"Rubik Mono One\";i:314;s:12:\"Red Hat Text\";i:315;s:8:\"Sriracha\";i:316;s:6:\"Damion\";i:317;s:5:\"Forum\";i:318;s:22:\"Shadows Into Light Two\";i:319;s:11:\"Cantata One\";i:320;s:4:\"Coda\";i:321;s:8:\"Suez One\";i:322;s:7:\"Lalezar\";i:323;s:8:\"Quantico\";i:324;s:9:\"Fira Mono\";i:325;s:4:\"Krub\";i:326;s:14:\"Bubblegum Sans\";i:327;s:5:\"Basic\";i:328;s:14:\"Black Han Sans\";i:329;s:23:\"IBM Plex Sans Condensed\";i:330;s:8:\"Mr Dafoe\";i:331;s:10:\"Changa One\";i:332;s:9:\"Italianno\";i:333;s:8:\"Michroma\";i:334;s:5:\"Laila\";i:335;s:12:\"Markazi Text\";i:336;s:4:\"Mada\";i:337;s:24:\"Annie Use Your Telescope\";i:338;s:8:\"Literata\";i:339;s:8:\"Boogaloo\";i:340;s:5:\"Jaldi\";i:341;s:7:\"Sintony\";i:342;s:7:\"Average\";i:343;s:8:\"Days One\";i:344;s:8:\"Six Caps\";i:345;s:4:\"Rasa\";i:346;s:8:\"Overlock\";i:347;s:12:\"Caveat Brush\";i:348;s:13:\"Overpass Mono\";i:349;s:6:\"Lexend\";i:350;s:9:\"Spinnaker\";i:351;s:13:\"Pinyon Script\";i:352;s:15:\"Berkshire Swash\";i:353;s:4:\"Yrsa\";i:354;s:7:\"Niramit\";i:355;s:8:\"Arizonia\";i:356;s:16:\"Alegreya Sans SC\";i:357;s:5:\"Chewy\";i:358;s:11:\"Bodoni Moda\";i:359;s:21:\"Encode Sans Condensed\";i:360;s:5:\"Antic\";i:361;s:6:\"Candal\";i:362;s:20:\"Fredericka the Great\";i:363;s:7:\"Blinker\";i:364;s:6:\"Rancho\";i:365;s:6:\"Judson\";i:366;s:8:\"Voltaire\";i:367;s:9:\"Shrikhand\";i:368;s:7:\"Norican\";i:369;s:9:\"Harmattan\";i:370;s:5:\"Pridi\";i:371;s:6:\"Glegoo\";i:372;s:7:\"Sansita\";i:373;s:6:\"Corben\";i:374;s:5:\"Kreon\";i:375;s:8:\"Lemonada\";i:376;s:21:\"Stint Ultra Condensed\";i:377;s:10:\"Squada One\";i:378;s:7:\"Kameron\";i:379;s:9:\"Enriqueta\";i:380;s:17:\"Noto Naskh Arabic\";i:381;s:13:\"Anonymous Pro\";i:382;s:6:\"Lateef\";i:383;s:8:\"Belgrano\";i:384;s:9:\"Reem Kufi\";i:385;s:5:\"VT323\";i:386;s:11:\"Hind Guntur\";i:387;s:14:\"Londrina Solid\";i:388;s:16:\"PT Serif Caption\";i:389;s:13:\"Bowlby One SC\";i:390;s:5:\"Bevan\";i:391;s:16:\"Darker Grotesque\";i:392;s:7:\"Aldrich\";i:393;s:5:\"Telex\";i:394;s:7:\"Knewave\";i:395;s:12:\"Cabin Sketch\";i:396;s:14:\"Palanquin Dark\";i:397;s:21:\"Covered By Your Grace\";i:398;s:5:\"Charm\";i:399;s:7:\"Niconne\";i:400;s:12:\"Leckerli One\";i:401;s:15:\"Allerta Stencil\";i:402;s:11:\"Coming Soon\";i:403;s:12:\"Arbutus Slab\";i:404;s:8:\"Graduate\";i:405;s:9:\"GFS Didot\";i:406;s:7:\"Castoro\";i:407;s:19:\"Mrs Saint Delafield\";i:408;s:12:\"Baskervville\";i:409;s:15:\"Holtwood One SC\";i:410;s:9:\"Rozha One\";i:411;s:20:\"Herr Von Muellerhoff\";i:412;s:21:\"Saira Extra Condensed\";i:413;s:17:\"Libre Caslon Text\";i:414;s:4:\"Mate\";i:415;s:11:\"Grand Hotel\";i:416;s:7:\"Trocchi\";i:417;s:17:\"Cinzel Decorative\";i:418;s:4:\"Syne\";i:419;s:5:\"Scada\";i:420;s:17:\"Just Another Hand\";i:421;s:15:\"Racing Sans One\";i:422;s:13:\"Gilda Display\";i:423;s:8:\"Capriola\";i:424;s:5:\"Amita\";i:425;s:7:\"Trirong\";i:426;s:6:\"Caudex\";i:427;s:8:\"Epilogue\";i:428;s:20:\"Noto Sans Devanagari\";i:429;s:10:\"Bowlby One\";i:430;s:5:\"Alike\";i:431;s:5:\"Magra\";i:432;s:6:\"Rambla\";i:433;s:6:\"Kristi\";i:434;s:5:\"Share\";i:435;s:3:\"Rye\";i:436;s:13:\"Alike Angular\";i:437;s:18:\"Nanum Brush Script\";i:438;s:3:\"Jua\";i:439;s:6:\"Delius\";i:440;s:9:\"Rochester\";i:441;s:6:\"Alatsi\";i:442;s:7:\"Lustria\";i:443;s:6:\"Athiti\";i:444;s:11:\"Mukta Vaani\";i:445;s:5:\"Copse\";i:446;s:11:\"Oranienbaum\";i:447;s:8:\"Coustard\";i:448;s:7:\"Biryani\";i:449;s:10:\"Yesteryear\";i:450;s:12:\"Marcellus SC\";i:451;s:11:\"Alegreya SC\";i:452;s:3:\"K2D\";i:453;s:12:\"Miriam Libre\";i:454;s:9:\"Amethysta\";i:455;s:7:\"Skranji\";i:456;s:4:\"Gugi\";i:457;s:9:\"Krona One\";i:458;s:15:\"Noto Sans Tamil\";i:459;s:10:\"Comic Neue\";i:460;s:6:\"Nobile\";i:461;s:11:\"Convergence\";i:462;s:9:\"Nixie One\";i:463;s:7:\"Pattaya\";i:464;s:5:\"Carme\";i:465;s:14:\"Seaweed Script\";i:466;s:12:\"Contrail One\";i:467;s:7:\"Suranna\";i:468;s:9:\"Fauna One\";i:469;s:9:\"Sunflower\";i:470;s:12:\"Average Sans\";i:471;s:19:\"Petit Formal Script\";i:472;s:18:\"Cedarville Cursive\";i:473;s:7:\"Podkova\";i:474;s:7:\"Belleza\";i:475;s:13:\"Bungee Inline\";i:476;s:3:\"NTR\";i:477;s:21:\"Big Shoulders Display\";i:478;s:14:\"JetBrains Mono\";i:479;s:6:\"Halant\";i:480;s:8:\"Do Hyeon\";i:481;s:13:\"Baloo Tamma 2\";i:482;s:18:\"Averia Serif Libre\";i:483;s:5:\"Amiko\";i:484;s:5:\"Allan\";i:485;s:6:\"Aladin\";i:486;s:6:\"Outfit\";i:487;s:14:\"Carrois Gothic\";i:488;s:8:\"BioRhyme\";i:489;s:7:\"Maitree\";i:490;s:16:\"Cormorant Infant\";i:491;s:7:\"Georama\";i:492;s:10:\"Kumbh Sans\";i:493;s:14:\"Calligraffitti\";i:494;s:3:\"Ovo\";i:495;s:7:\"Hanuman\";i:496;s:22:\"Mountains of Christmas\";i:497;s:16:\"Libre Barcode 39\";i:498;s:8:\"Wallpoet\";i:499;s:12:\"Merienda One\";i:500;s:14:\"Mr De Haviland\";i:501;s:5:\"Sofia\";i:502;s:15:\"La Belle Aurore\";i:503;s:7:\"Antonio\";i:504;s:8:\"Marmelad\";i:505;s:7:\"Molengo\";i:506;s:15:\"Stardos Stencil\";i:507;s:26:\"Encode Sans Semi Condensed\";i:508;s:10:\"Slabo 13px\";i:509;s:11:\"Spectral SC\";i:510;s:7:\"Rosario\";i:511;s:10:\"Jockey One\";i:512;s:11:\"Cutive Mono\";i:513;s:7:\"Qwigley\";i:514;s:12:\"Rammetto One\";i:515;s:13:\"STIX Two Text\";i:516;s:11:\"Metrophobic\";i:517;s:8:\"Mansalva\";i:518;s:12:\"Grandstander\";i:519;s:9:\"Hi Melody\";i:520;s:11:\"Oxygen Mono\";i:521;s:10:\"Schoolbell\";i:522;s:20:\"Monsieur La Doulaise\";i:523;s:6:\"Kosugi\";i:524;s:12:\"Raleway Dots\";i:525;s:6:\"Radley\";i:526;s:11:\"David Libre\";i:527;s:9:\"Bellefair\";i:528;s:7:\"Oxanium\";i:529;s:7:\"Esteban\";i:530;s:11:\"Short Stack\";i:531;s:9:\"Duru Sans\";i:532;s:15:\"Dela Gothic One\";i:533;s:7:\"Manjari\";i:534;s:9:\"Thasadith\";i:535;s:12:\"Averia Libre\";i:536;s:10:\"Kelly Slab\";i:537;s:6:\"Marvel\";i:538;s:6:\"Cambay\";i:539;s:10:\"Baloo Da 2\";i:540;s:8:\"Chonburi\";i:541;s:7:\"Sniglet\";i:542;s:15:\"IM Fell DW Pica\";i:543;s:4:\"Poly\";i:544;s:8:\"Mallanna\";i:545;s:9:\"Calistoga\";i:546;s:5:\"Cambo\";i:547;s:9:\"B612 Mono\";i:548;s:5:\"Farro\";i:549;s:7:\"Bentham\";i:550;s:6:\"Kurale\";i:551;s:21:\"Atkinson Hyperlegible\";i:552;s:10:\"Hepta Slab\";i:553;s:11:\"Proza Libre\";i:554;s:15:\"Shippori Mincho\";i:555;s:5:\"Lemon\";i:556;s:20:\"Dawning of a New Day\";i:557;s:8:\"Gabriela\";i:558;s:10:\"Poller One\";i:559;s:15:\"IM Fell English\";i:560;s:18:\"Noto Serif Display\";i:561;s:6:\"Andika\";i:562;s:14:\"Chelsea Market\";i:563;s:18:\"UnifrakturMaguntia\";i:564;s:7:\"Oregano\";i:565;s:13:\"Expletus Sans\";i:566;s:6:\"Zeyada\";i:567;s:12:\"Coda Caption\";i:568;s:21:\"Goudy Bookletter 1911\";i:569;s:21:\"ZCOOL QingKe HuangYou\";i:570;s:5:\"Mirza\";i:571;s:12:\"Bungee Shade\";i:572;s:6:\"Cutive\";i:573;s:12:\"Fanwood Text\";i:574;s:19:\"Noto Sans Malayalam\";i:575;s:6:\"Montez\";i:576;s:17:\"Noto Sans Mandaic\";i:577;s:9:\"Limelight\";i:578;s:12:\"Emilys Candy\";i:579;s:12:\"Cormorant SC\";i:580;s:9:\"Nova Mono\";i:581;s:22:\"Oleo Script Swash Caps\";i:582;s:14:\"Noto Sans Thai\";i:583;s:6:\"Megrim\";i:584;s:19:\"IM Fell Double Pica\";i:585;s:23:\"Waiting for the Sunrise\";i:586;s:21:\"Love Ya Like A Sister\";i:587;s:6:\"Quando\";i:588;s:8:\"Fahkwang\";i:589;s:7:\"Buenard\";i:590;s:7:\"Tillana\";i:591;s:7:\"Brawler\";i:592;s:12:\"Rouge Script\";i:593;s:19:\"Sue Ellen Francisco\";i:594;s:8:\"Urbanist\";i:595;s:14:\"Grenze Gotisch\";i:596;s:7:\"Katibeh\";i:597;s:8:\"Pompiere\";i:598;s:14:\"Give You Glory\";i:599;s:12:\"Happy Monkey\";i:600;s:12:\"Finger Paint\";i:601;s:12:\"Gravitas One\";i:602;s:12:\"Irish Grover\";i:603;s:11:\"Turret Road\";i:604;s:7:\"McLaren\";i:605;s:13:\"Source Sans 3\";i:606;s:5:\"Kadwa\";i:607;s:15:\"Original Surfer\";i:608;s:11:\"Azeret Mono\";i:609;s:14:\"Clicker Script\";i:610;s:13:\"ZCOOL XiaoWei\";i:611;s:11:\"Henny Penny\";i:612;s:16:\"Over the Rainbow\";i:613;s:14:\"Inknut Antiqua\";i:614;s:15:\"Euphoria Script\";i:615;s:8:\"Sarpanch\";i:616;s:10:\"Nova Round\";i:617;s:8:\"Homenaje\";i:618;s:11:\"Ceviche One\";i:619;s:9:\"Piazzolla\";i:620;s:5:\"Inder\";i:621;s:8:\"Ranchers\";i:622;s:13:\"Della Respira\";i:623;s:5:\"Dokdo\";i:624;s:8:\"Gurajada\";i:625;s:6:\"Galada\";i:626;s:16:\"Noto Sans Hebrew\";i:627;s:7:\"Timmana\";i:628;s:12:\"Sedgwick Ave\";i:629;s:12:\"Freckle Face\";i:630;s:15:\"Patrick Hand SC\";i:631;s:6:\"Praise\";i:632;s:4:\"Atma\";i:633;s:18:\"Major Mono Display\";i:634;s:7:\"Trykker\";i:635;s:11:\"Vast Shadow\";i:636;s:6:\"Livvic\";i:637;s:14:\"Mochiy Pop One\";i:638;s:15:\"Aguafina Script\";i:639;s:11:\"Vollkorn SC\";i:640;s:18:\"Big Shoulders Text\";i:641;s:11:\"Mukta Mahee\";i:642;s:7:\"DM Mono\";i:643;s:6:\"Rakkas\";i:644;s:10:\"Fondamento\";i:645;s:17:\"Noto Sans Kannada\";i:646;s:12:\"Antic Didone\";i:647;s:17:\"Cormorant Upright\";i:648;s:17:\"Noto Sans Bengali\";i:649;s:18:\"Tenali Ramakrishna\";i:650;s:10:\"Share Tech\";i:651;s:14:\"Baloo Thambi 2\";i:652;s:7:\"Anaheim\";i:653;s:10:\"Battambang\";i:654;s:10:\"Doppio One\";i:655;s:12:\"Vesper Libre\";i:656;s:6:\"Meddon\";i:657;s:16:\"Noto Sans Telugu\";i:658;s:6:\"Federo\";i:659;s:6:\"Tienne\";i:660;s:7:\"Baumans\";i:661;s:9:\"Road Rage\";i:662;s:3:\"Geo\";i:663;s:13:\"Mouse Memoirs\";i:664;s:10:\"Faster One\";i:665;s:7:\"Unkempt\";i:666;s:8:\"Codystar\";i:667;s:18:\"Chau Philomene One\";i:668;s:13:\"Ma Shan Zheng\";i:669;s:12:\"Metamorphous\";i:670;s:4:\"Sail\";i:671;s:17:\"Averia Sans Libre\";i:672;s:9:\"Kiwi Maru\";i:673;s:7:\"Peralta\";i:674;s:9:\"Yatra One\";i:675;s:12:\"Bellota Text\";i:676;s:10:\"Reggae One\";i:677;s:6:\"Ledger\";i:678;s:4:\"B612\";i:679;s:6:\"Lekton\";i:680;s:15:\"Walter Turncoat\";i:681;s:7:\"Caladea\";i:682;s:10:\"Aref Ruqaa\";i:683;s:10:\"Goblin One\";i:684;s:7:\"Frijole\";i:685;s:15:\"Baloo Chettan 2\";i:686;s:9:\"Balthazar\";i:687;s:15:\"Noto Sans Oriya\";i:688;s:8:\"Flamenco\";i:689;s:10:\"Prosto One\";i:690;s:17:\"Cherry Cream Soda\";i:691;s:7:\"Notable\";i:692;s:11:\"Odibee Sans\";i:693;s:20:\"Montserrat Subrayada\";i:694;s:8:\"Italiana\";i:695;s:8:\"Fraunces\";i:696;s:10:\"Readex Pro\";i:697;s:12:\"Headland One\";i:698;s:12:\"Crafty Girls\";i:699;s:9:\"Shojumaru\";i:700;s:4:\"Arya\";i:701;s:16:\"Bilbo Swash Caps\";i:702;s:5:\"Varta\";i:703;s:5:\"Eater\";i:704;s:12:\"Meera Inimai\";i:705;s:6:\"Numans\";i:706;s:5:\"Coiny\";i:707;s:6:\"Strait\";i:708;s:12:\"Lexend Zetta\";i:709;s:7:\"Orienta\";i:710;s:12:\"Cherry Swash\";i:711;s:9:\"Wendy One\";i:712;s:5:\"Elsie\";i:713;s:18:\"Noto Sans Gujarati\";i:714;s:10:\"Newsreader\";i:715;s:18:\"Noto Sans Gurmukhi\";i:716;s:17:\"Loved by the King\";i:717;s:16:\"Port Lligat Sans\";i:718;s:9:\"Fjord One\";i:719;s:7:\"Montaga\";i:720;s:7:\"Imprima\";i:721;s:6:\"Mohave\";i:722;s:18:\"Shippori Mincho B1\";i:723;s:15:\"Baloo Tammudu 2\";i:724;s:16:\"Port Lligat Slab\";i:725;s:5:\"Salsa\";i:726;s:13:\"RocknRoll One\";i:727;s:8:\"Amarante\";i:728;s:20:\"Encode Sans Expanded\";i:729;s:15:\"Sansita Swashed\";i:730;s:8:\"Shalimar\";i:731;s:10:\"MonteCarlo\";i:732;s:11:\"Trade Winds\";i:733;s:9:\"Stalemate\";i:734;s:12:\"Style Script\";i:735;s:7:\"Iceland\";i:736;s:5:\"Ranga\";i:737;s:13:\"Baloo Paaji 2\";i:738;s:4:\"Mako\";i:739;s:17:\"Carrois Gothic SC\";i:740;s:17:\"Delius Swash Caps\";i:741;s:10:\"Spicy Rice\";i:742;s:6:\"Shanti\";i:743;s:6:\"Fresca\";i:744;s:4:\"Mina\";i:745;s:8:\"Artifika\";i:746;s:18:\"The Girl Next Door\";i:747;s:23:\"Just Me Again Down Here\";i:748;s:5:\"Bilbo\";i:749;s:7:\"Pavanam\";i:750;s:9:\"Englebert\";i:751;s:11:\"Life Savers\";i:752;s:9:\"Scope One\";i:753;s:19:\"Averia Gruesa Libre\";i:754;s:11:\"Yusei Magic\";i:755;s:8:\"Wire One\";i:756;s:10:\"Charmonman\";i:757;s:5:\"Gaegu\";i:758;s:10:\"Bakbak One\";i:759;s:15:\"Lily Script One\";i:760;s:9:\"Kodchasan\";i:761;s:4:\"Asul\";i:762;s:12:\"Baloo Bhai 2\";i:763;s:11:\"Nova Square\";i:764;s:21:\"Libre Barcode 39 Text\";i:765;s:11:\"Bubbler One\";i:766;s:6:\"Gafata\";i:767;s:4:\"KoHo\";i:768;s:9:\"Dynalight\";i:769;s:6:\"Solway\";i:770;s:7:\"Goldman\";i:771;s:5:\"Voces\";i:772;s:14:\"Ruslan Display\";i:773;s:14:\"Delius Unicase\";i:774;s:26:\"Big Shoulders Stencil Text\";i:775;s:17:\"Cormorant Unicase\";i:776;s:7:\"Festive\";i:777;s:9:\"Corinthia\";i:778;s:11:\"Overlock SC\";i:779;s:7:\"Puritan\";i:780;s:10:\"Medula One\";i:781;s:25:\"Encode Sans Semi Expanded\";i:782;s:5:\"Vibur\";i:783;s:14:\"UnifrakturCook\";i:784;s:7:\"Slackey\";i:785;s:17:\"Noto Sans Sinhala\";i:786;s:11:\"Cantora One\";i:787;s:5:\"Tauri\";i:788;s:10:\"Engagement\";i:789;s:13:\"League Script\";i:790;s:14:\"Baloo Bhaina 2\";i:791;s:16:\"Ibarra Real Nova\";i:792;s:12:\"MuseoModerno\";i:793;s:8:\"Denk One\";i:794;s:10:\"Poor Story\";i:795;s:14:\"Akaya Kanadaka\";i:796;s:8:\"Kite One\";i:797;s:6:\"Chango\";i:798;s:7:\"Milonga\";i:799;s:7:\"Manuale\";i:800;s:6:\"Sarina\";i:801;s:10:\"Song Myung\";i:802;s:4:\"Buda\";i:803;s:8:\"Almendra\";i:804;s:18:\"Macondo Swash Caps\";i:805;s:12:\"Germania One\";i:806;s:30:\"Libre Barcode 39 Extended Text\";i:807;s:6:\"Besley\";i:808;s:5:\"Modak\";i:809;s:5:\"Stoke\";i:810;s:6:\"Kranky\";i:811;s:7:\"Paprika\";i:812;s:13:\"MedievalSharp\";i:813;s:20:\"IM Fell French Canon\";i:814;s:6:\"Habibi\";i:815;s:10:\"Sonsie One\";i:816;s:9:\"Yeon Sung\";i:817;s:14:\"Lovers Quarrel\";i:818;s:9:\"Nova Flat\";i:819;s:12:\"Gamja Flower\";i:820;s:11:\"DotGothic16\";i:821;s:16:\"Akaya Telivigala\";i:822;s:17:\"Libre Barcode 128\";i:823;s:10:\"Kulim Park\";i:824;s:8:\"Tomorrow\";i:825;s:7:\"Allison\";i:826;s:7:\"Bellota\";i:827;s:6:\"Ribeye\";i:828;s:8:\"Redacted\";i:829;s:13:\"Mystery Quest\";i:830;s:17:\"Saira Stencil One\";i:831;s:8:\"Ramaraja\";i:832;s:20:\"Zilla Slab Highlight\";i:833;s:16:\"Fontdiner Swanky\";i:834;s:20:\"Libre Caslon Display\";i:835;s:9:\"Cute Font\";i:836;s:5:\"Julee\";i:837;s:13:\"Sulphur Point\";i:838;s:8:\"Prociono\";i:839;s:7:\"Ephesis\";i:840;s:12:\"ZCOOL KuaiLe\";i:841;s:9:\"Margarine\";i:842;s:16:\"Londrina Outline\";i:843;s:5:\"Khmer\";i:844;s:6:\"Farsan\";i:845;s:7:\"Iceberg\";i:846;s:10:\"Lexend Exa\";i:847;s:4:\"Asar\";i:848;s:5:\"Inika\";i:849;s:14:\"Uncial Antiqua\";i:850;s:6:\"Nokora\";i:851;s:8:\"Rosarivo\";i:852;s:5:\"Dekko\";i:853;s:11:\"Lakki Reddy\";i:854;s:6:\"Sumana\";i:855;s:20:\"Stint Ultra Expanded\";i:856;s:11:\"Meie Script\";i:857;s:5:\"Fenix\";i:858;s:5:\"Kufam\";i:859;s:13:\"Croissant One\";i:860;s:11:\"Donegal One\";i:861;s:11:\"Vampiro One\";i:862;s:6:\"Chicle\";i:863;s:9:\"Rationale\";i:864;s:13:\"Fuzzy Bubbles\";i:865;s:23:\"IM Fell French Canon SC\";i:866;s:10:\"Single Day\";i:867;s:10:\"New Rocker\";i:868;s:11:\"Text Me One\";i:869;s:10:\"Pirata One\";i:870;s:9:\"Condiment\";i:871;s:10:\"Autour One\";i:872;s:20:\"Sree Krushnadevaraya\";i:873;s:8:\"Jomhuria\";i:874;s:16:\"Andika New Basic\";i:875;s:10:\"Cagliostro\";i:876;s:9:\"Simonetta\";i:877;s:7:\"Akronim\";i:878;s:6:\"Ruluko\";i:879;s:7:\"Petrona\";i:880;s:9:\"Kotta One\";i:881;s:18:\"IBM Plex Sans Thai\";i:882;s:7:\"Crushed\";i:883;s:8:\"Sancreek\";i:884;s:8:\"Gayathri\";i:885;s:5:\"Glory\";i:886;s:7:\"Rowdies\";i:887;s:16:\"Noto Sans Arabic\";i:888;s:6:\"Angkor\";i:889;s:9:\"Potta One\";i:890;s:14:\"Quintessential\";i:891;s:10:\"Rum Raisin\";i:892;s:18:\"Swanky and Moo Moo\";i:893;s:7:\"Stylish\";i:894;s:14:\"Be Vietnam Pro\";i:895;s:7:\"Nosifer\";i:896;s:14:\"Hachi Maru Pop\";i:897;s:7:\"Offside\";i:898;s:6:\"Piedra\";i:899;s:15:\"Redacted Script\";i:900;s:9:\"Kumar One\";i:901;s:9:\"Kavivanar\";i:902;s:8:\"Chilanka\";i:903;s:10:\"Eagle Lake\";i:904;s:29:\"Big Shoulders Stencil Display\";i:905;s:6:\"Griffy\";i:906;s:9:\"Wellfleet\";i:907;s:8:\"Underdog\";i:908;s:11:\"Inria Serif\";i:909;s:4:\"Moul\";i:910;s:5:\"Asset\";i:911;s:14:\"East Sea Dokdo\";i:912;s:15:\"Londrina Shadow\";i:913;s:20:\"IM Fell Great Primer\";i:914;s:6:\"Ruthie\";i:915;s:13:\"Bigelow Rules\";i:916;s:8:\"Zen Dots\";i:917;s:16:\"Scheherazade New\";i:918;s:12:\"Gemunu Libre\";i:919;s:5:\"Junge\";i:920;s:18:\"IM Fell DW Pica SC\";i:921;s:4:\"Sura\";i:922;s:14:\"Princess Sofia\";i:923;s:10:\"Barriecito\";i:924;s:11:\"Ruge Boogie\";i:925;s:10:\"Tulpen One\";i:926;s:7:\"Miniver\";i:927;s:6:\"Felipa\";i:928;s:5:\"Dorsa\";i:929;s:13:\"Sirin Stencil\";i:930;s:18:\"Noto Nastaliq Urdu\";i:931;s:6:\"Risque\";i:932;s:4:\"Gotu\";i:933;s:16:\"Elsie Swash Caps\";i:934;s:7:\"Tourney\";i:935;s:6:\"Barrio\";i:936;s:7:\"Yaldevi\";i:937;s:8:\"Gorditas\";i:938;s:8:\"WindSong\";i:939;s:9:\"Kantumruy\";i:940;s:9:\"Marko One\";i:941;s:14:\"Modern Antiqua\";i:942;s:14:\"Noto Sans Mono\";i:943;s:6:\"Spirax\";i:944;s:8:\"Chathura\";i:945;s:7:\"Content\";i:946;s:9:\"Redressed\";i:947;s:5:\"Combo\";i:948;s:7:\"Sahitya\";i:949;s:8:\"Monofett\";i:950;s:5:\"Bayon\";i:951;s:13:\"Maiden Orange\";i:952;s:8:\"Red Rose\";i:953;s:5:\"Mogra\";i:954;s:13:\"Mrs Sheppards\";i:955;s:7:\"Arbutus\";i:956;s:9:\"Jomolhari\";i:957;s:6:\"Kavoon\";i:958;s:12:\"Ravi Prakash\";i:959;s:11:\"Linden Hill\";i:960;s:13:\"Ribeye Marrow\";i:961;s:17:\"Kumar One Outline\";i:962;s:12:\"Brygada 1918\";i:963;s:11:\"Lexend Mega\";i:964;s:8:\"Joti One\";i:965;s:13:\"Rhodium Libre\";i:966;s:5:\"Molle\";i:967;s:11:\"Metal Mania\";i:968;s:10:\"Beth Ellen\";i:969;s:12:\"Diplomata SC\";i:970;s:8:\"Lancelot\";i:971;s:9:\"Romanesco\";i:972;s:16:\"Fascinate Inline\";i:973;s:9:\"Diplomata\";i:974;s:5:\"Stick\";i:975;s:23:\"Black And White Picture\";i:976;s:11:\"Almendra SC\";i:977;s:18:\"Noto Serif Bengali\";i:978;s:10:\"Devonshire\";i:979;s:11:\"Lexend Giga\";i:980;s:13:\"Glass Antiqua\";i:981;s:25:\"Libre Barcode 39 Extended\";i:982;s:12:\"Viaoda Libre\";i:983;s:12:\"Jolly Lodger\";i:984;s:8:\"Galdeano\";i:985;s:11:\"Bigshot One\";i:986;s:14:\"Kaisei Tokumin\";i:987;s:10:\"Inria Sans\";i:988;s:14:\"Zen Old Mincho\";i:989;s:22:\"Libre Barcode 128 Text\";i:990;s:14:\"Jim Nightshade\";i:991;s:8:\"Girassol\";i:992;s:15:\"Caesar Dressing\";i:993;s:10:\"Atomic Age\";i:994;s:16:\"Luxurious Script\";i:995;s:16:\"Baloo Bhaijaan 2\";i:996;s:7:\"Galindo\";i:997;s:11:\"Orelega One\";i:998;s:7:\"Peddana\";i:999;s:7:\"Revalia\";i:1000;s:6:\"Smythe\";i:1001;s:6:\"Koulen\";i:1002;s:15:\"Londrina Sketch\";i:1003;s:7:\"Dangrek\";i:1004;s:8:\"Srisakdi\";i:1005;s:23:\"Jacques Francois Shadow\";i:1006;s:9:\"Train One\";i:1007;s:15:\"GFS Neohellenic\";i:1008;s:5:\"Ewert\";i:1009;s:17:\"Noto Sans Myanmar\";i:1010;s:7:\"Plaster\";i:1011;s:14:\"Kirang Haerang\";i:1012;s:10:\"Keania One\";i:1013;s:6:\"Gupter\";i:1014;s:9:\"Bona Nova\";i:1015;s:15:\"Zen Maru Gothic\";i:1016;s:7:\"Bahiana\";i:1017;s:12:\"Purple Purse\";i:1018;s:23:\"IM Fell Great Primer SC\";i:1019;s:12:\"Kaisei Decol\";i:1020;s:14:\"Bungee Outline\";i:1021;s:12:\"Hanalei Fill\";i:1022;s:14:\"Miss Fajardose\";i:1023;s:6:\"Grenze\";i:1024;s:14:\"Odor Mean Chey\";i:1025;s:7:\"Trochut\";i:1026;s:6:\"Unlock\";i:1027;s:9:\"Chela One\";i:1028;s:9:\"Oldenburg\";i:1029;s:9:\"Sunshiney\";i:1030;s:8:\"Federant\";i:1031;s:11:\"Dr Sugiyama\";i:1032;s:11:\"Lexend Tera\";i:1033;s:19:\"Zen Kaku Gothic New\";i:1034;s:7:\"Snippet\";i:1035;s:6:\"Smooch\";i:1036;s:9:\"Nova Slim\";i:1037;s:6:\"Yomogi\";i:1038;s:16:\"Jacques Francois\";i:1039;s:12:\"Montagu Slab\";i:1040;s:5:\"Metal\";i:1041;s:18:\"Noto Sans Georgian\";i:1042;s:13:\"Zhi Mang Xing\";i:1043;s:11:\"Emblema One\";i:1044;s:7:\"Flavors\";i:1045;s:7:\"Macondo\";i:1046;s:9:\"Texturina\";i:1047;s:10:\"Kdam Thmor\";i:1048;s:11:\"Kaisei Opti\";i:1049;s:11:\"Meow Script\";i:1050;s:18:\"Noto Sans Armenian\";i:1051;s:9:\"Fascinate\";i:1052;s:10:\"Mr Bedfort\";i:1053;s:9:\"Syne Mono\";i:1054;s:11:\"Rampart One\";i:1055;s:16:\"Almendra Display\";i:1056;s:5:\"Vibes\";i:1057;s:7:\"Fuggles\";i:1058;s:23:\"Zen Kaku Gothic Antique\";i:1059;s:8:\"Klee One\";i:1060;s:14:\"Butterfly Kids\";i:1061;s:10:\"Truculenta\";i:1062;s:9:\"Nerko One\";i:1063;s:12:\"Gowun Batang\";i:1064;s:8:\"Siemreap\";i:1065;s:6:\"Smokum\";i:1066;s:9:\"Bahianita\";i:1067;s:9:\"Erica One\";i:1068;s:20:\"Sedgwick Ave Display\";i:1069;s:8:\"Freehand\";i:1070;s:11:\"Passero One\";i:1071;s:7:\"Fruktur\";i:1072;s:17:\"Noto Sans Symbols\";i:1073;s:11:\"Suwannaphum\";i:1074;s:9:\"Gwendolyn\";i:1075;s:9:\"Sevillana\";i:1076;s:11:\"Seymour One\";i:1077;s:11:\"Hina Mincho\";i:1078;s:22:\"IM Fell Double Pica SC\";i:1079;s:14:\"Otomanopee One\";i:1080;s:13:\"Stalinist One\";i:1081;s:5:\"Bokor\";i:1082;s:16:\"Kaisei HarunoUmi\";i:1083;s:6:\"Bonbon\";i:1084;s:16:\"Liu Jian Mao Cao\";i:1085;s:11:\"Preahvihear\";i:1086;s:15:\"Bungee Hairline\";i:1087;s:7:\"Lacquer\";i:1088;s:20:\"IBM Plex Sans Arabic\";i:1089;s:13:\"Snowburst One\";i:1090;s:7:\"Hanalei\";i:1091;s:16:\"Miltonian Tattoo\";i:1092;s:8:\"Zen Loop\";i:1093;s:9:\"Comforter\";i:1094;s:6:\"Gidugu\";i:1095;s:6:\"Ballet\";i:1096;s:7:\"Hahmlet\";i:1097;s:6:\"Chenla\";i:1098;s:9:\"Miltonian\";i:1099;s:16:\"IBM Plex Sans KR\";i:1100;s:9:\"Karantina\";i:1101;s:10:\"Butcherman\";i:1102;s:11:\"Zen Antique\";i:1103;s:7:\"Astloch\";i:1104;s:16:\"Supermercado One\";i:1105;s:7:\"Murecho\";i:1106;s:5:\"Benne\";i:1107;s:11:\"Nova Script\";i:1108;s:11:\"New Tegomin\";i:1109;s:6:\"Aubrey\";i:1110;s:6:\"Taprom\";i:1111;s:17:\"BioRhyme Expanded\";i:1112;s:10:\"Birthstone\";i:1113;s:9:\"Nova Oval\";i:1114;s:9:\"Long Cang\";i:1115;s:8:\"Nova Cut\";i:1116;s:14:\"Stick No Bills\";i:1117;s:8:\"Moulpali\";i:1118;s:10:\"Sofadi One\";i:1119;s:16:\"Shippori Antique\";i:1120;s:6:\"Gluten\";i:1121;s:16:\"Noto Sans Gothic\";i:1122;s:12:\"Geostar Fill\";i:1123;s:16:\"Zen Antique Soft\";i:1124;s:9:\"Suravaram\";i:1125;s:8:\"Petemoss\";i:1126;s:11:\"Alumni Sans\";i:1127;s:14:\"Bonheur Royale\";i:1128;s:17:\"Birthstone Bounce\";i:1129;s:10:\"Andada Pro\";i:1130;s:9:\"Carattere\";i:1131;s:20:\"Noto Serif Malayalam\";i:1132;s:15:\"Comforter Brush\";i:1133;s:8:\"Dhurjati\";i:1134;s:5:\"Imbue\";i:1135;s:16:\"Mochiy Pop P One\";i:1136;s:9:\"Xanh Mono\";i:1137;s:13:\"Zen Kurenaido\";i:1138;s:14:\"Encode Sans SC\";i:1139;s:8:\"Fasthand\";i:1140;s:6:\"Langar\";i:1141;s:7:\"Estonia\";i:1142;s:14:\"Palette Mosaic\";i:1143;s:11:\"Gowun Dodum\";i:1144;s:11:\"Lexend Peta\";i:1145;s:25:\"Big Shoulders Inline Text\";i:1146;s:5:\"Genos\";i:1147;s:24:\"Libre Barcode EAN13 Text\";i:1148;s:5:\"Kenia\";i:1149;s:13:\"Zen Tokyo Zoo\";i:1150;s:7:\"Geostar\";i:1151;s:16:\"Noto Serif Tamil\";i:1152;s:8:\"M PLUS 1\";i:1153;s:8:\"Trispace\";i:1154;s:14:\"Grechen Fuemen\";i:1155;s:26:\"Noto Sans Tamil Supplement\";i:1156;s:6:\"Warnes\";i:1157;s:6:\"Qahiri\";i:1158;s:13:\"M PLUS 1 Code\";i:1159;s:7:\"Cherish\";i:1160;s:15:\"Are You Serious\";i:1161;s:5:\"Kings\";i:1162;s:8:\"M PLUS 2\";i:1163;s:13:\"Flow Circular\";i:1164;s:10:\"Yuji Syuku\";i:1165;s:13:\"Rubik Beastly\";i:1166;s:13:\"Fleur De Leah\";i:1167;s:28:\"Big Shoulders Inline Display\";i:1168;s:9:\"Hurricane\";i:1169;s:12:\"Syne Tactile\";i:1170;s:25:\"IBM Plex Sans Thai Looped\";i:1171;s:12:\"Flow Rounded\";i:1172;s:10:\"Flow Block\";i:1173;s:2:\"Oi\";i:1174;s:7:\"Grey Qo\";i:1175;s:9:\"Yuji Boku\";i:1176;s:6:\"Dongle\";i:1177;s:12:\"Puppies Play\";i:1178;s:17:\"Passions Conflict\";i:1179;s:11:\"Sassy Frass\";i:1180;s:8:\"Yuji Mai\";i:1181;s:14:\"Koh Santepheap\";i:1182;s:12:\"Gideon Roman\";i:1183;s:19:\"Shippori Antique B1\";i:1184;s:7:\"Explora\";i:1185;s:7:\"Caramel\";i:1186;s:20:\"IBM Plex Sans Hebrew\";i:1187;s:24:\"IBM Plex Sans Devanagari\";i:1188;s:16:\"Noto Sans Coptic\";i:1189;s:17:\"M PLUS Code Latin\";i:1190;s:19:\"Noto Serif Georgian\";i:1191;s:18:\"Noto Serif Sinhala\";i:1192;s:13:\"Noto Sans Lao\";i:1193;s:18:\"Noto Sans Tai Viet\";i:1194;s:15:\"Noto Serif Thai\";i:1195;s:12:\"Red Hat Mono\";i:1196;s:5:\"Uchen\";i:1197;s:15:\"Noto Sans Khmer\";i:1198;s:17:\"Noto Sans Deseret\";i:1199;s:19:\"Noto Serif Armenian\";i:1200;s:19:\"Noto Sans Symbols 2\";i:1201;s:28:\"Noto Sans Caucasian Albanian\";i:1202;s:18:\"Noto Sans Javanese\";i:1203;s:16:\"Noto Serif Khmer\";i:1204;s:19:\"Noto Serif Ethiopic\";i:1205;s:16:\"Noto Sans Brahmi\";i:1206;s:21:\"Noto Sans Thai Looped\";i:1207;s:21:\"Noto Serif Devanagari\";i:1208;s:14:\"Noto Serif Lao\";i:1209;s:18:\"Noto Sans Cherokee\";i:1210;s:17:\"Noto Sans Cypriot\";i:1211;s:26:\"Noto Sans Imperial Aramaic\";i:1212;s:17:\"Noto Sans Tagalog\";i:1213;s:23:\"Noto Sans Old Hungarian\";i:1214;s:17:\"Noto Serif Hebrew\";i:1215;s:14:\"Noto Sans Cham\";i:1216;s:16:\"Noto Sans Thaana\";i:1217;s:19:\"Noto Serif Gujarati\";i:1218;s:18:\"Noto Sans Ol Chiki\";i:1219;s:20:\"Noto Sans Old Turkic\";i:1220;s:18:\"Noto Serif Kannada\";i:1221;s:17:\"Noto Rashi Hebrew\";i:1222;s:18:\"Noto Serif Myanmar\";i:1223;s:17:\"Noto Serif Yezidi\";i:1224;s:19:\"Noto Serif Gurmukhi\";i:1225;s:18:\"Noto Serif Tibetan\";i:1226;s:10:\"Noto Music\";i:1227;s:16:\"Noto Sans Carian\";i:1228;s:29:\"Noto Sans Canadian Aboriginal\";i:1229;s:17:\"Noto Serif Telugu\";i:1230;s:18:\"Noto Sans Tifinagh\";i:1231;s:16:\"Noto Sans Tai Le\";i:1232;s:22:\"Noto Sans Meetei Mayek\";i:1233;s:17:\"Noto Sans Osmanya\";i:1234;s:18:\"Noto Sans Tai Tham\";i:1235;s:18:\"Noto Sans Balinese\";i:1236;s:20:\"Noto Sans Saurashtra\";i:1237;s:22:\"Noto Sans Sora Sompeng\";i:1238;s:20:\"Noto Sans Old Italic\";i:1239;s:33:\"Noto Serif Nyiakeng Puachue Hmong\";i:1240;s:19:\"Noto Sans Mongolian\";i:1241;s:24:\"Noto Sans Adlam Unjoined\";i:1242;s:19:\"Noto Sans Sundanese\";i:1243;s:17:\"Noto Sans Grantha\";i:1244;s:31:\"Noto Sans Anatolian Hieroglyphs\";i:1245;s:15:\"Noto Sans Adlam\";i:1246;s:32:\"Noto Sans Inscriptional Parthian\";i:1247;s:21:\"Noto Sans Medefaidrin\";i:1248;s:15:\"Noto Sans Bamum\";i:1249;s:25:\"Noto Sans Hanifi Rohingya\";i:1250;s:18:\"Noto Sans Kayah Li\";i:1251;s:16:\"Noto Serif Dogra\";i:1252;s:30:\"Noto Sans Egyptian Hieroglyphs\";i:1253;s:14:\"Noto Sans Lisu\";i:1254;s:31:\"Noto Sans Inscriptional Pahlavi\";i:1255;s:18:\"Noto Sans Linear B\";i:1256;s:12:\"Noto Sans Yi\";i:1257;s:19:\"Noto Serif Balinese\";i:1258;s:19:\"Noto Sans Samaritan\";i:1259;s:17:\"Noto Sans Hanunoo\";i:1260;s:16:\"Noto Sans Syriac\";i:1261;s:27:\"Noto Sans Old South Arabian\";i:1262;s:20:\"Noto Sans Phoenician\";i:1263;s:16:\"Noto Sans Kaithi\";i:1264;s:14:\"Noto Sans Math\";i:1265;s:18:\"Noto Serif Grantha\";i:1266;s:21:\"Noto Sans Old Persian\";i:1267;s:27:\"Noto Sans Old North Arabian\";i:1268;s:19:\"Noto Sans Cuneiform\";i:1269;s:17:\"Noto Serif Tangut\";i:1270;s:15:\"Noto Serif Ahom\";i:1271;s:15:\"Noto Sans Batak\";i:1272;s:15:\"Noto Sans Runic\";i:1273;s:21:\"Noto Sans New Tai Lue\";i:1274;s:17:\"Noto Sans Avestan\";i:1275;s:24:\"Noto Sans Mayan Numerals\";i:1276;s:18:\"Noto Sans Mahajani\";i:1277;s:18:\"Noto Sans Buginese\";i:1278;s:17:\"Noto Sans Tirhuta\";i:1279;s:19:\"Noto Sans Palmyrene\";i:1280;s:26:\"Noto Sans Zanabazar Square\";i:1281;s:15:\"Noto Sans Limbu\";i:1282;s:17:\"Noto Sans Elbasan\";i:1283;s:18:\"Noto Sans Tagbanwa\";i:1284;s:20:\"Noto Sans Old Permic\";i:1285;s:14:\"Noto Sans Newa\";i:1286;s:16:\"Noto Sans Rejang\";i:1287;s:22:\"Noto Sans Syloti Nagri\";i:1288;s:23:\"Noto Sans Gunjala Gondi\";i:1289;s:19:\"Noto Sans Khudawadi\";i:1290;s:20:\"Noto Sans Kharoshthi\";i:1291;s:17:\"Noto Sans Marchen\";i:1292;s:16:\"Noto Sans Khojki\";i:1293;s:14:\"Noto Sans Modi\";i:1294;s:23:\"Noto Sans Masaram Gondi\";i:1295;s:29:\"Noto Sans Indic Siyaq Numbers\";i:1296;s:16:\"Noto Sans Lycian\";i:1297;s:18:\"Noto Sans Linear A\";i:1298;s:18:\"Noto Sans Phags Pa\";i:1299;s:25:\"Noto Sans Psalter Pahlavi\";i:1300;s:21:\"Noto Sans Pau Cin Hau\";i:1301;s:18:\"Noto Sans Duployan\";i:1302;s:21:\"Noto Sans Old Sogdian\";i:1303;s:15:\"Noto Sans Osage\";i:1304;s:17:\"Noto Sans Sogdian\";i:1305;s:19:\"Noto Sans Nabataean\";i:1306;s:17:\"Noto Sans Siddham\";i:1307;s:19:\"Noto Sans Bhaiksuki\";i:1308;s:17:\"Noto Sans Elymaic\";i:1309;s:17:\"Noto Sans Multani\";i:1310;s:18:\"Noto Sans Ugaritic\";i:1311;s:16:\"Noto Sans Chakma\";i:1312;s:22:\"Noto Sans Pahawh Hmong\";i:1313;s:21:\"Noto Sans Warang Citi\";i:1314;s:13:\"Noto Sans Mro\";i:1315;s:18:\"Noto Sans Meroitic\";i:1316;s:17:\"Noto Sans Sharada\";i:1317;s:14:\"Noto Sans Miao\";i:1318;s:13:\"Noto Sans Vai\";i:1319;s:20:\"Noto Sans Glagolitic\";i:1320;s:22:\"Noto Traditional Nushu\";i:1321;s:16:\"Noto Sans Hatran\";i:1322;s:16:\"Noto Sans Lepcha\";i:1323;s:15:\"Noto Sans Nushu\";i:1324;s:19:\"Noto Sans Bassa Vah\";i:1325;s:15:\"Noto Sans Ogham\";i:1326;s:17:\"Noto Sans Shavian\";i:1327;s:16:\"Noto Sans Lydian\";i:1328;s:14:\"Noto Sans N Ko\";i:1329;s:15:\"Noto Sans Takri\";i:1330;s:15:\"Noto Sans Buhid\";i:1331;s:20:\"Noto Sans Manichaean\";i:1332;s:16:\"Noto Sans Wancho\";i:1333;s:17:\"Noto Sans Soyombo\";i:1334;s:23:\"Yuji Hentaigana Akebono\";i:1335;s:11:\"Moo Lah Lah\";i:1336;s:8:\"Licorice\";i:1337;s:11:\"Inspiration\";i:1338;s:14:\"Island Moments\";i:1339;s:9:\"Waterfall\";i:1340;s:9:\"Oooh Baby\";i:1341;s:21:\"Yuji Hentaigana Akari\";i:1342;s:3:\"Ole\";i:1343;s:9:\"Mea Culpa\";i:1344;s:10:\"Moon Dance\";i:1345;s:15:\"Qwitcher Grypen\";i:1346;s:14:\"Source Serif 4\";i:1347;s:7:\"Rock 3D\";i:1348;s:10:\"Love Light\";i:1349;s:7:\"Shizuru\";i:1350;s:11:\"Spline Sans\";i:1351;s:15:\"Luxurious Roman\";i:1352;s:12:\"The Nautigal\";i:1353;s:15:\"Vujahday Script\";i:1354;s:12:\"Twinkle Star\";i:1355;s:8:\"Pushster\";i:1356;s:15:\"Imperial Script\";i:1357;s:12:\"Kolker Brush\";}','no'),(482,'_site_transient_timeout_wp_remote_block_patterns_3e3bcd3bc6f0a41b5f8a7672e63009d2','1674316732','no'),(483,'_site_transient_wp_remote_block_patterns_3e3bcd3bc6f0a41b5f8a7672e63009d2','a:30:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1417:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:680px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-5\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\"></div>\n</div>\n\n\n\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:105:\"core/column,core/columns,core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2028:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"dimRatio\":50,\"overlayColor\":\"black\",\"minHeight\":680,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:680px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:columns {\"isStackedOnMobile\":false} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:784:\"\n<div class=\"wp-elements-89b1d0b7c3b99256e438e69463efaa91 wp-block-group alignfull has-white-color has-black-background-color has-text-color has-background has-link-color is-layout-constrained\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-9\" style=\"padding-top:1em;padding-bottom:1em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"wp-elements-d3cc6515209f0de8407b215e27b6ee7c wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1008:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-white-color has-black-background-color has-text-color has-background has-link-color\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"1em\",\"top\":\"1em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:1em;padding-bottom:1em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:594:\"\n<div class=\"wp-block-group alignfull is-layout-flow\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-13\" style=\"padding-top:2em;padding-bottom:2em\">\n<div class=\"wp-block-group is-layout-flex\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-medium-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:779:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"2em\",\"top\":\"2em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:2em;padding-bottom:2em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:823:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-18\" style=\"padding-top:2em;padding-bottom:4em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-layout-flow wp-container-15\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p style=\"margin-top:0px;\" class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:944:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4em\",\"top\":\"2em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:2em;padding-bottom:4em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0px\"}}},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:468:\"\n<div class=\"wp-block-group alignfull is-layout-flow\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-22\" style=\"padding-top:2em;padding-bottom:4em\">\n<div class=\"wp-block-group is-layout-flex\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:753:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4em\",\"top\":\"2em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:2em;padding-bottom:4em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:22:\"Header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1341:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-26\" style=\"padding-top:1em;padding-right:1em;padding-bottom:0em;padding-left:1em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:490px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=f60b088dac6c7cc04eeebf67f600e079\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\"></p>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:83:\"core/cover,core/group,core/navigation,core/paragraph,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1962:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0em\",\"top\":\"1em\",\"right\":\"1em\",\"left\":\"1em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:1em;padding-right:1em;padding-bottom:0em;padding-left:1em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=f60b088dac6c7cc04eeebf67f600e079\",\"id\":null,\"dimRatio\":0,\"minHeight\":490,\"minHeightUnit\":\"px\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:490px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=f60b088dac6c7cc04eeebf67f600e079\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:482:\"\n<div class=\"wp-block-group alignfull is-layout-flow\" style=\"padding-top:2em;padding-bottom:4em\"><div class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-text-align-center wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:397:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"bottom\":\"4em\"}}}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:2em;padding-bottom:4em\"><!-- wp:site-logo {\"align\":\"center\"} /-->\n\n<!-- wp:site-title {\"textAlign\":\"center\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:27:\"Header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:404:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-nowrap is-layout-flex wp-container-31\" style=\"padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:612:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"30px\",\"right\":\"30px\",\"bottom\":\"30px\",\"left\":\"30px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"},\"style\":{\"spacing\":{\"blockGap\":\"30px\"}},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:607:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-34\" style=\"padding-top:1em;padding-bottom:1em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:721:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"1em\",\"top\":\"1em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:1em;padding-bottom:1em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:15:\"Centered footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:288:\"\n<div class=\"wp-block-group alignfull is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow\" style=\"padding-top:4em;padding-bottom:2em\">\n<p class=\"has-text-align-center has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Centered footer with the sentence \"Proudly powered by WordPress\".\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:531:\"<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2016:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\" style=\"padding-top:4em;padding-bottom:2em\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-42\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:100%\">\n<div class=\"wp-block-group alignwide is-layout-flow\"><form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"><label for=\"wp-block-search__input-38\" class=\"wp-block-search__label screen-reader-text\">Search</label><div class=\"wp-block-search__inside-wrapper \" style=\"width: 100%\"><input type=\"search\" id=\"wp-block-search__input-38\" class=\"wp-block-search__input wp-block-search__input\" name=\"s\" value=\"\" placeholder=\"\" style=\"border-width: 1px\" required /><button type=\"submit\" class=\"wp-block-search__button has-icon wp-element-button\" style=\"border-width: 1px\" aria-label=\"Search\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n <path d=\"M13.5 6C10.5 6 8 8.5 8 11.5c0 1.1.3 2.1.9 3l-3.4 3 1 1.1 3.4-2.9c1 .9 2.2 1.4 3.6 1.4 3 0 5.5-2.5 5.5-5.5C19 8.5 16.5 6 13.5 6zm0 9.5c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z\"></path>\n </svg></button></div></form></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:100%\"></div>\n</div>\n\n\n\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-bottom is-layout-flex wp-container-45\">\n<div class=\"wp-block-column is-vertically-aligned-bottom is-layout-flow\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-bottom is-layout-flow\">\n<p class=\"has-text-align-right has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:90:\"core/column,core/columns,core/group,core/paragraph,core/search,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1727:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:group {\"align\":\"wide\"} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"bottom\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-bottom\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-right has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:518:\"\n<div class=\"wp-block-group alignfull is-layout-flow\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-47\" style=\"padding-top:4em;padding-bottom:2em\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<p class=\"has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:692:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"2em\",\"top\":\"4em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:330:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-50\" style=\"padding-top:4em;padding-bottom:2em\">\n\n\n<p class=\"has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:719:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"2em\",\"top\":\"4em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1252:\"\n<div class=\"wp-elements-61b879d84aac944553e1bd4d3909d18a wp-block-group alignfull has-white-color has-black-background-color has-text-color has-background has-link-color is-layout-flow\" style=\"padding-top:4em;padding-bottom:2em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-55\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-medium-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p><strong>Social Media</strong></p>\n\n\n\n<p><a href=\"#\">Facebook</a><br><a href=\"#\">Instagram</a><br><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p><strong>Where We Are</strong></p>\n\n\n\n<p>2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignfull is-layout-flow\" style=\"padding-top:4em;padding-bottom:2em\">\n<p class=\"has-text-align-left\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:84:\"core/column,core/columns,core/group,core/paragraph,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1728:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Social Media</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a><br><a href=\"#\">Instagram</a><br><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Where We Are</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4341:\"\n<div class=\"wp-block-group alignfull is-layout-flow\" style=\"padding-top:4em;padding-bottom:2em\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-58\"><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\">Block Pattern Directory</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline has-medium-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<ul class=\"wp-block-social-links is-style-logos-only is-content-justification-center is-layout-flex wp-container-59\"><li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://#\" 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-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://#\" 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=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li></ul>\n\n\n\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:106:\"core/group,core/paragraph,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1393:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:social-links {\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with credit line and navigation\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:331:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-62\" style=\"padding-top:4em;padding-bottom:2em\">\n<p class=\"has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with credit line on the left and navigation on the right.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:708:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"2em\",\"top\":\"4em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:454:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\" style=\"padding-top:4em;padding-bottom:2em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-66\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:80%\">\n<p class=\"has-text-align-left has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:20%\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:741:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"80%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:80%\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-left has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1204:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-71\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:952:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-75\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2840:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-77\">\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-81\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-84\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1989:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-88\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-92\">\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1368:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1336:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-98\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1182:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-101\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:27;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Quote\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:673:\"\n<hr class=\"wp-block-separator is-style-default\" />\n\n\n\n<div class=\"wp-block-image is-style-rounded\"><figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><p>&#8220;Contributing makes me feel like I&#8217;m being useful to the planet.&#8221;</p><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{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:1:{i:0;s:10:\"core/quote\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:36:\"core/image,core/quote,core/separator\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1012:\"<!-- wp:separator {\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator is-style-default\" />\n<!-- /wp:separator -->\n\n<!-- wp:image {\"align\":\"center\",\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} -->\n<div class=\"wp-block-image is-style-rounded\"><figure class=\"aligncenter size-large is-resized\"><img src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><p>\"Contributing makes me feel like I\'m being useful to the planet.\"</p><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator is-style-default\" />\n<!-- /wp:separator -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1424:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-104\">\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:717:\"\n<figure class=\"wp-block-gallery alignwide columns-2 is-cropped wp-block-gallery-105 is-layout-flex\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" data-link=\"#\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" data-link=\"#\" /></figure></li></ul></figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";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:12:\"core/gallery\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:737:\"<!-- wp:gallery {\"ids\":[null,null],\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" data-link=\"#\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" data-link=\"#\" /></figure></li></ul></figure>\n<!-- /wp:gallery -->\";}}','no'),(484,'_site_transient_timeout_wp_remote_block_patterns_7a1d9460627c7770660bc17a0fca1ae6','1674316732','no'),(485,'_site_transient_wp_remote_block_patterns_7a1d9460627c7770660bc17a0fca1ae6','a:15:{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:6359:\"\n<div class=\"wp-block-group has-white-background-color has-background 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\">Block Pattern Directory</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-1\">\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-2\" 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 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-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-bandcamp 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=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitter 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=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitch 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=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{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:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\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<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\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<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\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<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\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<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:899:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-4\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";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:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3340:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-12\">\n<div class=\"wp-elements-9b0ec38802488b5326b5833c551a99b8 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#ffe97d;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for one adult</li><li>One free ticket per special exhibition</li><li>Two single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-6\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-elements-9add2e813d78c88d00f9bd37bafd7af9 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#d1d1e1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Four free tickets per special exhibition</li><li>Four single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-8\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-elements-2500c6475a3fa956c7c9f0264bdaf6c7 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#c0ebf1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Five free tickets per special exhibition</li><li>Six single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-10\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:102:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/paragraph,core/separator\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"buttons\";i:1;s:7:\"columns\";i:2;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:5340:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#ffe97d;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for one adult</li><li>One free ticket per special exhibition</li><li>Two single-use guest passes per year</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#d1d1e1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Four free tickets per special exhibition</li><li>Four single-use guest passes per year</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#c0ebf1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Five free tickets per special exhibition</li><li>Six single-use guest passes per year</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2221:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";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:41:\"core/group,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1657:\"\n<div class=\"wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97 wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-elements-71b4a847bbd96313422a1303e9ba41f3 wp-block-group has-link-color is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"wp-elements-0860918d5b16b9e1778b1966b333b980 has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{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:54:\"core/group,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:566;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Event announcement and details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1614:\"\n<div class=\"wp-elements-b69341fa8ca2b5011df7156020136c46 wp-block-group alignfull has-black-color has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#d2cdc7\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"alignwide wp-block-heading\" style=\"font-size:46px;font-weight:400;line-height:1.1\">HÉLÈNE DUMAS<br><em>FRAGMENTS</em></h2>\n\n\n\n<h3 class=\"alignwide wp-block-heading\" style=\"font-size:46px;font-weight:400;line-height:1.1\">20/4 — 9/9/2021<br>SOUTH LONDON ART GALLERY</h3>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-18\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:75%\">\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https://mywptesting.site/wp-content/uploads/2021/06/Histoire_naturelle_..._-fragments-_-_Upper_cover_C108eee15-1.jpg\" alt=\"\" class=\"wp-image-3173\" /></figure>\n</div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-21\">\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:25px\">MORE INFO AT: WP.ORG · +44 21 1234 5678</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-align-right\" style=\"font-size:25px\">INSTAGRAM · <a href=\"#\">TICKETS</a></p>\n</div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{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:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2622:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#d2cdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|black\"}}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-group alignfull has-black-color has-text-color has-background has-link-color\" style=\"background-color:#d2cdc7\"><!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"46px\",\"lineHeight\":\"1.1\",\"fontWeight\":\"400\"}}} -->\n<h2 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">HÉLÈNE DUMAS<br><em>FRAGMENTS</em></h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"46px\",\"lineHeight\":\"1.1\",\"fontWeight\":\"400\"}}} -->\n<h3 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">20/4 — 9/9/2021<br>SOUTH LONDON ART GALLERY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"75%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:75%\"><!-- wp:image {\"id\":3173,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://mywptesting.site/wp-content/uploads/2021/06/Histoire_naturelle_..._-fragments-_-_Upper_cover_C108eee15-1.jpg\" alt=\"\" class=\"wp-image-3173\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"25px\"}}} -->\n<p style=\"font-size:25px\">MORE INFO AT: WP.ORG · +44 21 1234 5678</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"25px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:25px\">INSTAGRAM · <a href=\"#\">TICKETS</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1628:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-27\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img decoding=\"async\" loading=\"lazy\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"(max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-25\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Offset images with descriptions.\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1754:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-30\">\n<div class=\"wp-block-column is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"\" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<p style=\"font-size:14px\"><strong>White Irises</strong><br>Ogawa Kazumasa</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p style=\"font-size:14px\"><strong>Cherry Blossom</strong><br>Ogawa Kazumasa</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"\" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"(max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:32:\"Offset images with descriptions.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:62:\"core/column,core/columns,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1175:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"\" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>White Irises</strong><br>Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cherry Blossom</strong><br>Ogawa Kazumasa</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"\" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1415:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-35\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-38\">\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1509:\"\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-43\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<div class=\"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 has-text-color has-background\" style=\"background-color:#262626;color:#efefef\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1624:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"background-color:#262626;color:#efefef\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:952:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-47\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2840:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-49\">\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-53\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-56\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1181:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-60\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";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:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','no'),(527,'_site_transient_timeout_theme_roots','1674317910','no'),(528,'_site_transient_theme_roots','a:5:{s:5:\"enwoo\";s:7:\"/themes\";s:10:\"squaretype\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(531,'_transient_timeout_global_styles_squaretype','1674316373','no'),(532,'_transient_global_styles_squaretype','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #FFFFFF;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #ce2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb902;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #01d083;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--secondary: #818181;--wp--preset--color--gray-50: #f8f9fa;--wp--preset--color--gray-100: #f8f9fb;--wp--preset--color--gray-200: #e9ecef;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(533,'_site_transient_timeout_kirki_googlefonts_cache','1674320130','no'),(534,'_site_transient_kirki_googlefonts_cache','a:1358:{s:7:\"ABeeZee\";a:3:{s:5:\"label\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:5:\"label\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:5:\"label\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Abril Fatface\";a:3:{s:5:\"label\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Aclonica\";a:3:{s:5:\"label\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:5:\"label\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:5:\"label\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:5:\"label\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:5:\"label\";s:10:\"Advent Pro\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:5:\"label\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Akaya Kanadaka\";a:3:{s:5:\"label\";s:14:\"Akaya Kanadaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Akaya Telivigala\";a:3:{s:5:\"label\";s:16:\"Akaya Telivigala\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Akronim\";a:3:{s:5:\"label\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aladin\";a:3:{s:5:\"label\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Alata\";a:3:{s:5:\"label\";s:5:\"Alata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Alatsi\";a:3:{s:5:\"label\";s:6:\"Alatsi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Aldrich\";a:3:{s:5:\"label\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:5:\"label\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:5:\"label\";s:8:\"Alegreya\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:5:\"label\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:5:\"label\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:5:\"label\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:5:\"label\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:5:\"label\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Alfa Slab One\";a:3:{s:5:\"label\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:5:\"label\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:5:\"label\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:5:\"label\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Allan\";a:3:{s:5:\"label\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:5:\"label\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:5:\"label\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Allison\";a:3:{s:5:\"label\";s:7:\"Allison\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Allura\";a:3:{s:5:\"label\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Almarai\";a:3:{s:5:\"label\";s:7:\"Almarai\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Almendra\";a:3:{s:5:\"label\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:5:\"label\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:5:\"label\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alumni Sans\";a:3:{s:5:\"label\";s:11:\"Alumni Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Amarante\";a:3:{s:5:\"label\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:5:\"label\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:5:\"label\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:5:\"label\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:5:\"label\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:5:\"label\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:5:\"label\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:5:\"label\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Andada Pro\";a:3:{s:5:\"label\";s:10:\"Andada Pro\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:5:\"label\";s:6:\"Andika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Andika New Basic\";a:3:{s:5:\"label\";s:16:\"Andika New Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:5:\"label\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:5:\"label\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:5:\"label\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:5:\"label\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:5:\"label\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:5:\"label\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Antonio\";a:3:{s:5:\"label\";s:7:\"Antonio\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Arapey\";a:3:{s:5:\"label\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:5:\"label\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:5:\"label\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:5:\"label\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:5:\"label\";s:7:\"Archivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:5:\"label\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:5:\"label\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Are You Serious\";a:3:{s:5:\"label\";s:15:\"Are You Serious\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Aref Ruqaa\";a:3:{s:5:\"label\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Arima Madurai\";a:3:{s:5:\"label\";s:13:\"Arima Madurai\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:5:\"label\";s:5:\"Arimo\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:5:\"label\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:5:\"label\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:5:\"label\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:5:\"label\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:5:\"label\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:5:\"label\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:5:\"label\";s:4:\"Asap\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:5:\"label\";s:14:\"Asap Condensed\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:5:\"label\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:5:\"label\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:5:\"label\";s:9:\"Assistant\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:5:\"label\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:5:\"label\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:5:\"label\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Atkinson Hyperlegible\";a:3:{s:5:\"label\";s:21:\"Atkinson Hyperlegible\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:5:\"label\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:5:\"label\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:5:\"label\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:5:\"label\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:5:\"label\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Average\";a:3:{s:5:\"label\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:5:\"label\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:5:\"label\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Azeret Mono\";a:3:{s:5:\"label\";s:11:\"Azeret Mono\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"B612\";a:3:{s:5:\"label\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:5:\"label\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Bad Script\";a:3:{s:5:\"label\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Bahiana\";a:3:{s:5:\"label\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bahianita\";a:3:{s:5:\"label\";s:9:\"Bahianita\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:5:\"label\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bakbak One\";a:3:{s:5:\"label\";s:10:\"Bakbak One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Ballet\";a:3:{s:5:\"label\";s:6:\"Ballet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Baloo 2\";a:3:{s:5:\"label\";s:7:\"Baloo 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Bhai 2\";a:3:{s:5:\"label\";s:12:\"Baloo Bhai 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Baloo Bhaijaan 2\";a:3:{s:5:\"label\";s:16:\"Baloo Bhaijaan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Bhaina 2\";a:3:{s:5:\"label\";s:14:\"Baloo Bhaina 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Chettan 2\";a:3:{s:5:\"label\";s:15:\"Baloo Chettan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Baloo Da 2\";a:3:{s:5:\"label\";s:10:\"Baloo Da 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Paaji 2\";a:3:{s:5:\"label\";s:13:\"Baloo Paaji 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Tamma 2\";a:3:{s:5:\"label\";s:13:\"Baloo Tamma 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Tammudu 2\";a:3:{s:5:\"label\";s:15:\"Baloo Tammudu 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Thambi 2\";a:3:{s:5:\"label\";s:14:\"Baloo Thambi 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Balsamiq Sans\";a:3:{s:5:\"label\";s:13:\"Balsamiq Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:5:\"label\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:5:\"label\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:5:\"label\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:5:\"label\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:5:\"label\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Barriecito\";a:3:{s:5:\"label\";s:10:\"Barriecito\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barrio\";a:3:{s:5:\"label\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:5:\"label\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Baskervville\";a:3:{s:5:\"label\";s:12:\"Baskervville\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Battambang\";a:3:{s:5:\"label\";s:10:\"Battambang\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:5:\"label\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:5:\"label\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Be Vietnam Pro\";a:3:{s:5:\"label\";s:14:\"Be Vietnam Pro\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bebas Neue\";a:3:{s:5:\"label\";s:10:\"Bebas Neue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Belgrano\";a:3:{s:5:\"label\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:5:\"label\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:5:\"label\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bellota\";a:3:{s:5:\"label\";s:7:\"Bellota\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bellota Text\";a:3:{s:5:\"label\";s:12:\"Bellota Text\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"BenchNine\";a:3:{s:5:\"label\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Benne\";a:3:{s:5:\"label\";s:5:\"Benne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bentham\";a:3:{s:5:\"label\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:5:\"label\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Besley\";a:3:{s:5:\"label\";s:6:\"Besley\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Beth Ellen\";a:3:{s:5:\"label\";s:10:\"Beth Ellen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:5:\"label\";s:5:\"Bevan\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Big Shoulders Display\";a:3:{s:5:\"label\";s:21:\"Big Shoulders Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:28:\"Big Shoulders Inline Display\";a:3:{s:5:\"label\";s:28:\"Big Shoulders Inline Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Big Shoulders Inline Text\";a:3:{s:5:\"label\";s:25:\"Big Shoulders Inline Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:29:\"Big Shoulders Stencil Display\";a:3:{s:5:\"label\";s:29:\"Big Shoulders Stencil Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:26:\"Big Shoulders Stencil Text\";a:3:{s:5:\"label\";s:26:\"Big Shoulders Stencil Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Big Shoulders Text\";a:3:{s:5:\"label\";s:18:\"Big Shoulders Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:5:\"label\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:5:\"label\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:5:\"label\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:5:\"label\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:5:\"label\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Birthstone\";a:3:{s:5:\"label\";s:10:\"Birthstone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Birthstone Bounce\";a:3:{s:5:\"label\";s:17:\"Birthstone Bounce\";s:8:\"variants\";a:2:{i:0;s:3:\"500\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Biryani\";a:3:{s:5:\"label\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:5:\"label\";s:6:\"Bitter\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:5:\"label\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:5:\"label\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:5:\"label\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Blinker\";a:3:{s:5:\"label\";s:7:\"Blinker\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Bodoni Moda\";a:3:{s:5:\"label\";s:11:\"Bodoni Moda\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Bokor\";a:3:{s:5:\"label\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bona Nova\";a:3:{s:5:\"label\";s:9:\"Bona Nova\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bonbon\";a:3:{s:5:\"label\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Bonheur Royale\";a:3:{s:5:\"label\";s:14:\"Bonheur Royale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:5:\"label\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:5:\"label\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:5:\"label\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Brawler\";a:3:{s:5:\"label\";s:7:\"Brawler\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:5:\"label\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Brygada 1918\";a:3:{s:5:\"label\";s:12:\"Brygada 1918\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:5:\"label\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:5:\"label\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:8:\"category\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:5:\"label\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:5:\"label\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:5:\"label\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:5:\"label\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:5:\"label\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:5:\"label\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:5:\"label\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:5:\"label\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:5:\"label\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:5:\"label\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:5:\"label\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:5:\"label\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:5:\"label\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:5:\"label\";s:5:\"Cairo\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caladea\";a:3:{s:5:\"label\";s:7:\"Caladea\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Calistoga\";a:3:{s:5:\"label\";s:9:\"Calistoga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Calligraffitti\";a:3:{s:5:\"label\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:5:\"label\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:5:\"label\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:5:\"label\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:5:\"label\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:5:\"label\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:5:\"label\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:5:\"label\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caramel\";a:3:{s:5:\"label\";s:7:\"Caramel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Carattere\";a:3:{s:5:\"label\";s:9:\"Carattere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cardo\";a:3:{s:5:\"label\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Carme\";a:3:{s:5:\"label\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:5:\"label\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:5:\"label\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:5:\"label\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Castoro\";a:3:{s:5:\"label\";s:7:\"Castoro\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Catamaran\";a:3:{s:5:\"label\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:5:\"label\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:5:\"label\";s:6:\"Caveat\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:5:\"label\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:5:\"label\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:5:\"label\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:5:\"label\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:5:\"label\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:5:\"label\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Charm\";a:3:{s:5:\"label\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:5:\"label\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:5:\"label\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:5:\"label\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:5:\"label\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:5:\"label\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:5:\"label\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Cherish\";a:3:{s:5:\"label\";s:7:\"Cherish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Cherry Cream Soda\";a:3:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:5:\"label\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:5:\"label\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:5:\"label\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chilanka\";a:3:{s:5:\"label\";s:8:\"Chilanka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Chivo\";a:3:{s:5:\"label\";s:5:\"Chivo\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Chonburi\";a:3:{s:5:\"label\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:5:\"label\";s:6:\"Cinzel\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:5:\"label\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:5:\"label\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Coda\";a:3:{s:5:\"label\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Coda Caption\";a:3:{s:5:\"label\";s:12:\"Coda Caption\";s:8:\"variants\";a:1:{i:0;s:3:\"800\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Codystar\";a:3:{s:5:\"label\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:5:\"label\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:5:\"label\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:5:\"label\";s:9:\"Comfortaa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comforter\";a:3:{s:5:\"label\";s:9:\"Comforter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Comforter Brush\";a:3:{s:5:\"label\";s:15:\"Comforter Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Comic Neue\";a:3:{s:5:\"label\";s:10:\"Comic Neue\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Coming Soon\";a:3:{s:5:\"label\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Commissioner\";a:3:{s:5:\"label\";s:12:\"Commissioner\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Concert One\";a:3:{s:5:\"label\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:5:\"label\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:5:\"label\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:5:\"label\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:5:\"label\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:5:\"label\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:5:\"label\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:5:\"label\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Corinthia\";a:3:{s:5:\"label\";s:9:\"Corinthia\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Cormorant\";a:3:{s:5:\"label\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:5:\"label\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:5:\"label\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:5:\"label\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:5:\"label\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:5:\"label\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:5:\"label\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Courier Prime\";a:3:{s:5:\"label\";s:13:\"Courier Prime\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Cousine\";a:3:{s:5:\"label\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:5:\"label\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:5:\"label\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:5:\"label\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:5:\"label\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Crimson Pro\";a:3:{s:5:\"label\";s:11:\"Crimson Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:5:\"label\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:5:\"label\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:5:\"label\";s:6:\"Cuprum\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:5:\"label\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:5:\"label\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:5:\"label\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Mono\";a:3:{s:5:\"label\";s:7:\"DM Mono\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Sans\";a:3:{s:5:\"label\";s:7:\"DM Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"DM Serif Display\";a:3:{s:5:\"label\";s:16:\"DM Serif Display\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"DM Serif Text\";a:3:{s:5:\"label\";s:13:\"DM Serif Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Damion\";a:3:{s:5:\"label\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:5:\"label\";s:14:\"Dancing Script\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:5:\"label\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Darker Grotesque\";a:3:{s:5:\"label\";s:16:\"Darker Grotesque\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"David Libre\";a:3:{s:5:\"label\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:5:\"label\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:5:\"label\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Dela Gothic One\";a:3:{s:5:\"label\";s:15:\"Dela Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Delius\";a:3:{s:5:\"label\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:5:\"label\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:5:\"label\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:5:\"label\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:5:\"label\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:5:\"label\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:5:\"label\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Diplomata\";a:3:{s:5:\"label\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:5:\"label\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:5:\"label\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:5:\"label\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:5:\"label\";s:6:\"Domine\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:5:\"label\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Dongle\";a:3:{s:5:\"label\";s:6:\"Dongle\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Doppio One\";a:3:{s:5:\"label\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:5:\"label\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:5:\"label\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"DotGothic16\";a:3:{s:5:\"label\";s:11:\"DotGothic16\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:5:\"label\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Dynalight\";a:3:{s:5:\"label\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:5:\"label\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:5:\"label\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:5:\"label\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:5:\"label\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:5:\"label\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:5:\"label\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"El Messiri\";a:3:{s:5:\"label\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:5:\"label\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:5:\"label\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:5:\"label\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:5:\"label\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:5:\"label\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:5:\"label\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:5:\"label\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:5:\"label\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Encode Sans SC\";a:3:{s:5:\"label\";s:14:\"Encode Sans SC\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:5:\"label\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:5:\"label\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:5:\"label\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:5:\"label\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:5:\"label\";s:9:\"Enriqueta\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Ephesis\";a:3:{s:5:\"label\";s:7:\"Ephesis\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Epilogue\";a:3:{s:5:\"label\";s:8:\"Epilogue\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Erica One\";a:3:{s:5:\"label\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:5:\"label\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Estonia\";a:3:{s:5:\"label\";s:7:\"Estonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Euphoria Script\";a:3:{s:5:\"label\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:5:\"label\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:5:\"label\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:5:\"label\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:5:\"label\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Explora\";a:3:{s:5:\"label\";s:7:\"Explora\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Fahkwang\";a:3:{s:5:\"label\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:5:\"label\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Farro\";a:3:{s:5:\"label\";s:5:\"Farro\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Farsan\";a:3:{s:5:\"label\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:5:\"label\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:5:\"label\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:5:\"label\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:5:\"label\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fauna One\";a:3:{s:5:\"label\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:5:\"label\";s:8:\"Faustina\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:5:\"label\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:5:\"label\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:5:\"label\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:5:\"label\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Festive\";a:3:{s:5:\"label\";s:7:\"Festive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Finger Paint\";a:3:{s:5:\"label\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fira Code\";a:3:{s:5:\"label\";s:9:\"Fira Code\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Mono\";a:3:{s:5:\"label\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:5:\"label\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:5:\"label\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:5:\"label\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:5:\"label\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:5:\"label\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:5:\"label\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Fleur De Leah\";a:3:{s:5:\"label\";s:13:\"Fleur De Leah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Flow Block\";a:3:{s:5:\"label\";s:10:\"Flow Block\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Flow Circular\";a:3:{s:5:\"label\";s:13:\"Flow Circular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Flow Rounded\";a:3:{s:5:\"label\";s:12:\"Flow Rounded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:5:\"label\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:5:\"label\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Francois One\";a:3:{s:5:\"label\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:5:\"label\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Fraunces\";a:3:{s:5:\"label\";s:8:\"Fraunces\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:5:\"label\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:5:\"label\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Fredoka One\";a:3:{s:5:\"label\";s:11:\"Fredoka One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Freehand\";a:3:{s:5:\"label\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:5:\"label\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:5:\"label\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:5:\"label\";s:7:\"Fruktur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:5:\"label\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fuggles\";a:3:{s:5:\"label\";s:7:\"Fuggles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Fuzzy Bubbles\";a:3:{s:5:\"label\";s:13:\"Fuzzy Bubbles\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"GFS Didot\";a:3:{s:5:\"label\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:5:\"label\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:5:\"label\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:5:\"label\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Galada\";a:3:{s:5:\"label\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:5:\"label\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:5:\"label\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:5:\"label\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Gayathri\";a:3:{s:5:\"label\";s:8:\"Gayathri\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Gelasio\";a:3:{s:5:\"label\";s:7:\"Gelasio\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gemunu Libre\";a:3:{s:5:\"label\";s:12:\"Gemunu Libre\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Genos\";a:3:{s:5:\"label\";s:5:\"Genos\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gentium Basic\";a:3:{s:5:\"label\";s:13:\"Gentium Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Gentium Book Basic\";a:3:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:5:\"label\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Georama\";a:3:{s:5:\"label\";s:7:\"Georama\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:5:\"label\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:5:\"label\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:5:\"label\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gideon Roman\";a:3:{s:5:\"label\";s:12:\"Gideon Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:5:\"label\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:5:\"label\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Girassol\";a:3:{s:5:\"label\";s:8:\"Girassol\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Give You Glory\";a:3:{s:5:\"label\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:5:\"label\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:5:\"label\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Glory\";a:3:{s:5:\"label\";s:5:\"Glory\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Gluten\";a:3:{s:5:\"label\";s:6:\"Gluten\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Goblin One\";a:3:{s:5:\"label\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:5:\"label\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Goldman\";a:3:{s:5:\"label\";s:7:\"Goldman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Gorditas\";a:3:{s:5:\"label\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:5:\"label\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gotu\";a:3:{s:5:\"label\";s:4:\"Gotu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gowun Batang\";a:3:{s:5:\"label\";s:12:\"Gowun Batang\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Gowun Dodum\";a:3:{s:5:\"label\";s:11:\"Gowun Dodum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Graduate\";a:3:{s:5:\"label\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:5:\"label\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Grandstander\";a:3:{s:5:\"label\";s:12:\"Grandstander\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gravitas One\";a:3:{s:5:\"label\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:5:\"label\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Grechen Fuemen\";a:3:{s:5:\"label\";s:14:\"Grechen Fuemen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Grenze\";a:3:{s:5:\"label\";s:6:\"Grenze\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Grenze Gotisch\";a:3:{s:5:\"label\";s:14:\"Grenze Gotisch\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Grey Qo\";a:3:{s:5:\"label\";s:7:\"Grey Qo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Griffy\";a:3:{s:5:\"label\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:5:\"label\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Gudea\";a:3:{s:5:\"label\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:5:\"label\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gupter\";a:3:{s:5:\"label\";s:6:\"Gupter\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Gurajada\";a:3:{s:5:\"label\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Gwendolyn\";a:3:{s:5:\"label\";s:9:\"Gwendolyn\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Habibi\";a:3:{s:5:\"label\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Hachi Maru Pop\";a:3:{s:5:\"label\";s:14:\"Hachi Maru Pop\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hahmlet\";a:3:{s:5:\"label\";s:7:\"Hahmlet\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Halant\";a:3:{s:5:\"label\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:5:\"label\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:5:\"label\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:5:\"label\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:5:\"label\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hanuman\";a:3:{s:5:\"label\";s:7:\"Hanuman\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:5:\"label\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:5:\"label\";s:9:\"Harmattan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:5:\"label\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:5:\"label\";s:5:\"Heebo\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:5:\"label\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Hepta Slab\";a:3:{s:5:\"label\";s:10:\"Hepta Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:5:\"label\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Hina Mincho\";a:3:{s:5:\"label\";s:11:\"Hina Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Hind\";a:3:{s:5:\"label\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:5:\"label\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:5:\"label\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:5:\"label\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:5:\"label\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:5:\"label\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:5:\"label\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:5:\"label\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Hurricane\";a:3:{s:5:\"label\";s:9:\"Hurricane\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"IBM Plex Mono\";a:3:{s:5:\"label\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:5:\"label\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"IBM Plex Sans Arabic\";a:3:{s:5:\"label\";s:20:\"IBM Plex Sans Arabic\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:5:\"label\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"IBM Plex Sans Devanagari\";a:3:{s:5:\"label\";s:24:\"IBM Plex Sans Devanagari\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"IBM Plex Sans Hebrew\";a:3:{s:5:\"label\";s:20:\"IBM Plex Sans Hebrew\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"IBM Plex Sans KR\";a:3:{s:5:\"label\";s:16:\"IBM Plex Sans KR\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"IBM Plex Sans Thai\";a:3:{s:5:\"label\";s:18:\"IBM Plex Sans Thai\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"IBM Plex Sans Thai Looped\";a:3:{s:5:\"label\";s:25:\"IBM Plex Sans Thai Looped\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:5:\"label\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:5:\"label\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:5:\"label\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Ibarra Real Nova\";a:3:{s:5:\"label\";s:16:\"Ibarra Real Nova\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:5:\"label\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:5:\"label\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Imbue\";a:3:{s:5:\"label\";s:5:\"Imbue\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Imperial Script\";a:3:{s:5:\"label\";s:15:\"Imperial Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Imprima\";a:3:{s:5:\"label\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:5:\"label\";s:11:\"Inconsolata\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:5:\"label\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:5:\"label\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:5:\"label\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:5:\"label\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Inria Sans\";a:3:{s:5:\"label\";s:10:\"Inria Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inria Serif\";a:3:{s:5:\"label\";s:11:\"Inria Serif\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Inspiration\";a:3:{s:5:\"label\";s:11:\"Inspiration\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inter\";a:3:{s:5:\"label\";s:5:\"Inter\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Irish Grover\";a:3:{s:5:\"label\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Island Moments\";a:3:{s:5:\"label\";s:14:\"Island Moments\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Istok Web\";a:3:{s:5:\"label\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:5:\"label\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:5:\"label\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:5:\"label\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:5:\"label\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:5:\"label\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:5:\"label\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"JetBrains Mono\";a:3:{s:5:\"label\";s:14:\"JetBrains Mono\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Jim Nightshade\";a:3:{s:5:\"label\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Jockey One\";a:3:{s:5:\"label\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:5:\"label\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:5:\"label\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Jomolhari\";a:3:{s:5:\"label\";s:9:\"Jomolhari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Josefin Sans\";a:3:{s:5:\"label\";s:12:\"Josefin Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:5:\"label\";s:12:\"Josefin Slab\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jost\";a:3:{s:5:\"label\";s:4:\"Jost\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Joti One\";a:3:{s:5:\"label\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:5:\"label\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:5:\"label\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:5:\"label\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:5:\"label\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:5:\"label\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:5:\"label\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:5:\"label\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:5:\"label\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kadwa\";a:3:{s:5:\"label\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Kaisei Decol\";a:3:{s:5:\"label\";s:12:\"Kaisei Decol\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Kaisei HarunoUmi\";a:3:{s:5:\"label\";s:16:\"Kaisei HarunoUmi\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Kaisei Opti\";a:3:{s:5:\"label\";s:11:\"Kaisei Opti\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Kaisei Tokumin\";a:3:{s:5:\"label\";s:14:\"Kaisei Tokumin\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:5:\"label\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:5:\"label\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:5:\"label\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kantumruy\";a:3:{s:5:\"label\";s:9:\"Kantumruy\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Karantina\";a:3:{s:5:\"label\";s:9:\"Karantina\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Karla\";a:3:{s:5:\"label\";s:5:\"Karla\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:5:\"label\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:5:\"label\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:5:\"label\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:5:\"label\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:5:\"label\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kdam Thmor\";a:3:{s:5:\"label\";s:10:\"Kdam Thmor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Keania One\";a:3:{s:5:\"label\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:5:\"label\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:5:\"label\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:5:\"label\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:5:\"label\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:5:\"label\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kings\";a:3:{s:5:\"label\";s:5:\"Kings\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Kirang Haerang\";a:3:{s:5:\"label\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:5:\"label\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kiwi Maru\";a:3:{s:5:\"label\";s:9:\"Kiwi Maru\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Klee One\";a:3:{s:5:\"label\";s:8:\"Klee One\";s:8:\"variants\";a:2:{i:0;s:3:\"600\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Knewave\";a:3:{s:5:\"label\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:5:\"label\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:5:\"label\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Koh Santepheap\";a:3:{s:5:\"label\";s:14:\"Koh Santepheap\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Kolker Brush\";a:3:{s:5:\"label\";s:12:\"Kolker Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kosugi\";a:3:{s:5:\"label\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:5:\"label\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:5:\"label\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:5:\"label\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:5:\"label\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:5:\"label\";s:5:\"Kreon\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:5:\"label\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:5:\"label\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:5:\"label\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kufam\";a:3:{s:5:\"label\";s:5:\"Kufam\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Kulim Park\";a:3:{s:5:\"label\";s:10:\"Kulim Park\";s:8:\"variants\";a:10:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:5:\"label\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:5:\"label\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kumbh Sans\";a:3:{s:5:\"label\";s:10:\"Kumbh Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kurale\";a:3:{s:5:\"label\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:5:\"label\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lacquer\";a:3:{s:5:\"label\";s:7:\"Lacquer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Laila\";a:3:{s:5:\"label\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lakki Reddy\";a:3:{s:5:\"label\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:5:\"label\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:5:\"label\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Langar\";a:3:{s:5:\"label\";s:6:\"Langar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:5:\"label\";s:6:\"Lateef\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lato\";a:3:{s:5:\"label\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:5:\"label\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Leckerli One\";a:3:{s:5:\"label\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:5:\"label\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:5:\"label\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:5:\"label\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:5:\"label\";s:8:\"Lemonada\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lexend\";a:3:{s:5:\"label\";s:6:\"Lexend\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Deca\";a:3:{s:5:\"label\";s:11:\"Lexend Deca\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Lexend Exa\";a:3:{s:5:\"label\";s:10:\"Lexend Exa\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Giga\";a:3:{s:5:\"label\";s:11:\"Lexend Giga\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Mega\";a:3:{s:5:\"label\";s:11:\"Lexend Mega\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Peta\";a:3:{s:5:\"label\";s:11:\"Lexend Peta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Tera\";a:3:{s:5:\"label\";s:11:\"Lexend Tera\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Lexend Zetta\";a:3:{s:5:\"label\";s:12:\"Lexend Zetta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Libre Barcode 128\";a:3:{s:5:\"label\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:5:\"label\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:5:\"label\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:5:\"label\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:5:\"label\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:5:\"label\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Libre Barcode EAN13 Text\";a:3:{s:5:\"label\";s:24:\"Libre Barcode EAN13 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:5:\"label\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Libre Caslon Display\";a:3:{s:5:\"label\";s:20:\"Libre Caslon Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Libre Caslon Text\";a:3:{s:5:\"label\";s:17:\"Libre Caslon Text\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:5:\"label\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Licorice\";a:3:{s:5:\"label\";s:8:\"Licorice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Life Savers\";a:3:{s:5:\"label\";s:11:\"Life Savers\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:5:\"label\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:5:\"label\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:5:\"label\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:5:\"label\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Literata\";a:3:{s:5:\"label\";s:8:\"Literata\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Liu Jian Mao Cao\";a:3:{s:5:\"label\";s:16:\"Liu Jian Mao Cao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Livvic\";a:3:{s:5:\"label\";s:6:\"Livvic\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Lobster\";a:3:{s:5:\"label\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:5:\"label\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:5:\"label\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:5:\"label\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:5:\"label\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:5:\"label\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Long Cang\";a:3:{s:5:\"label\";s:9:\"Long Cang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lora\";a:3:{s:5:\"label\";s:4:\"Lora\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Love Light\";a:3:{s:5:\"label\";s:10:\"Love Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:21:\"Love Ya Like A Sister\";a:3:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:5:\"label\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:5:\"label\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:5:\"label\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:5:\"label\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Luxurious Roman\";a:3:{s:5:\"label\";s:15:\"Luxurious Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Luxurious Script\";a:3:{s:5:\"label\";s:16:\"Luxurious Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"M PLUS 1\";a:3:{s:5:\"label\";s:8:\"M PLUS 1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"M PLUS 1 Code\";a:3:{s:5:\"label\";s:13:\"M PLUS 1 Code\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"M PLUS 1p\";a:3:{s:5:\"label\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"M PLUS 2\";a:3:{s:5:\"label\";s:8:\"M PLUS 2\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Code Latin\";a:3:{s:5:\"label\";s:17:\"M PLUS Code Latin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:5:\"label\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Ma Shan Zheng\";a:3:{s:5:\"label\";s:13:\"Ma Shan Zheng\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Macondo\";a:3:{s:5:\"label\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:5:\"label\";s:4:\"Mada\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:5:\"label\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:5:\"label\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:5:\"label\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:5:\"label\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:5:\"label\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:5:\"label\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:5:\"label\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:5:\"label\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manjari\";a:3:{s:5:\"label\";s:7:\"Manjari\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manrope\";a:3:{s:5:\"label\";s:7:\"Manrope\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Mansalva\";a:3:{s:5:\"label\";s:8:\"Mansalva\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Manuale\";a:3:{s:5:\"label\";s:7:\"Manuale\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:5:\"label\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:5:\"label\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:5:\"label\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:5:\"label\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:5:\"label\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:5:\"label\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:5:\"label\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:5:\"label\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:5:\"label\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Marvel\";a:3:{s:5:\"label\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:5:\"label\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:5:\"label\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Maven Pro\";a:3:{s:5:\"label\";s:9:\"Maven Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:5:\"label\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Mea Culpa\";a:3:{s:5:\"label\";s:9:\"Mea Culpa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Meddon\";a:3:{s:5:\"label\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:5:\"label\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:5:\"label\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:5:\"label\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:5:\"label\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:5:\"label\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Meow Script\";a:3:{s:5:\"label\";s:11:\"Meow Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:5:\"label\";s:8:\"Merienda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merienda One\";a:3:{s:5:\"label\";s:12:\"Merienda One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:5:\"label\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:5:\"label\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:5:\"label\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:5:\"label\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:5:\"label\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:5:\"label\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:5:\"label\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:5:\"label\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:5:\"label\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:5:\"label\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:5:\"label\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:5:\"label\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:5:\"label\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:5:\"label\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:5:\"label\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Mochiy Pop One\";a:3:{s:5:\"label\";s:14:\"Mochiy Pop One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Mochiy Pop P One\";a:3:{s:5:\"label\";s:16:\"Mochiy Pop P One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:5:\"label\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:5:\"label\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:5:\"label\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Mohave\";a:3:{s:5:\"label\";s:6:\"Mohave\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Molengo\";a:3:{s:5:\"label\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:5:\"label\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:5:\"label\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:5:\"label\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Monoton\";a:3:{s:5:\"label\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:5:\"label\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Montagu Slab\";a:3:{s:5:\"label\";s:12:\"Montagu Slab\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"MonteCarlo\";a:3:{s:5:\"label\";s:10:\"MonteCarlo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Montez\";a:3:{s:5:\"label\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:5:\"label\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:5:\"label\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:5:\"label\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Moo Lah Lah\";a:3:{s:5:\"label\";s:11:\"Moo Lah Lah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Moon Dance\";a:3:{s:5:\"label\";s:10:\"Moon Dance\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Moul\";a:3:{s:5:\"label\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:5:\"label\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:5:\"label\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:5:\"label\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:5:\"label\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:5:\"label\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:5:\"label\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:5:\"label\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:5:\"label\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:5:\"label\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Mulish\";a:3:{s:5:\"label\";s:6:\"Mulish\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Murecho\";a:3:{s:5:\"label\";s:7:\"Murecho\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"MuseoModerno\";a:3:{s:5:\"label\";s:12:\"MuseoModerno\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mystery Quest\";a:3:{s:5:\"label\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:5:\"label\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Nanum Brush Script\";a:3:{s:5:\"label\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:5:\"label\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:5:\"label\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:5:\"label\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:5:\"label\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Nerko One\";a:3:{s:5:\"label\";s:9:\"Nerko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:5:\"label\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:5:\"label\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:5:\"label\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"New Tegomin\";a:3:{s:5:\"label\";s:11:\"New Tegomin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"News Cycle\";a:3:{s:5:\"label\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Newsreader\";a:3:{s:5:\"label\";s:10:\"Newsreader\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Niconne\";a:3:{s:5:\"label\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:5:\"label\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:5:\"label\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:5:\"label\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:5:\"label\";s:6:\"Nokora\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Norican\";a:3:{s:5:\"label\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:5:\"label\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:5:\"label\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:5:\"label\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Kufi Arabic\";a:3:{s:5:\"label\";s:16:\"Noto Kufi Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Music\";a:3:{s:5:\"label\";s:10:\"Noto Music\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Naskh Arabic\";a:3:{s:5:\"label\";s:17:\"Noto Naskh Arabic\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Nastaliq Urdu\";a:3:{s:5:\"label\";s:18:\"Noto Nastaliq Urdu\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Rashi Hebrew\";a:3:{s:5:\"label\";s:17:\"Noto Rashi Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:5:\"label\";s:9:\"Noto Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Adlam\";a:3:{s:5:\"label\";s:15:\"Noto Sans Adlam\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"Noto Sans Adlam Unjoined\";a:3:{s:5:\"label\";s:24:\"Noto Sans Adlam Unjoined\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:31:\"Noto Sans Anatolian Hieroglyphs\";a:3:{s:5:\"label\";s:31:\"Noto Sans Anatolian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Arabic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Armenian\";a:3:{s:5:\"label\";s:18:\"Noto Sans Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Avestan\";a:3:{s:5:\"label\";s:17:\"Noto Sans Avestan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Balinese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Balinese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Bamum\";a:3:{s:5:\"label\";s:15:\"Noto Sans Bamum\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Bassa Vah\";a:3:{s:5:\"label\";s:19:\"Noto Sans Bassa Vah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Batak\";a:3:{s:5:\"label\";s:15:\"Noto Sans Batak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Bengali\";a:3:{s:5:\"label\";s:17:\"Noto Sans Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Bhaiksuki\";a:3:{s:5:\"label\";s:19:\"Noto Sans Bhaiksuki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Brahmi\";a:3:{s:5:\"label\";s:16:\"Noto Sans Brahmi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Buginese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Buginese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Buhid\";a:3:{s:5:\"label\";s:15:\"Noto Sans Buhid\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:29:\"Noto Sans Canadian Aboriginal\";a:3:{s:5:\"label\";s:29:\"Noto Sans Canadian Aboriginal\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Carian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Carian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:28:\"Noto Sans Caucasian Albanian\";a:3:{s:5:\"label\";s:28:\"Noto Sans Caucasian Albanian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Chakma\";a:3:{s:5:\"label\";s:16:\"Noto Sans Chakma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Cham\";a:3:{s:5:\"label\";s:14:\"Noto Sans Cham\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Cherokee\";a:3:{s:5:\"label\";s:18:\"Noto Sans Cherokee\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Coptic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Coptic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Cuneiform\";a:3:{s:5:\"label\";s:19:\"Noto Sans Cuneiform\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Cypriot\";a:3:{s:5:\"label\";s:17:\"Noto Sans Cypriot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Deseret\";a:3:{s:5:\"label\";s:17:\"Noto Sans Deseret\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Devanagari\";a:3:{s:5:\"label\";s:20:\"Noto Sans Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Display\";a:3:{s:5:\"label\";s:17:\"Noto Sans Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Duployan\";a:3:{s:5:\"label\";s:18:\"Noto Sans Duployan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:30:\"Noto Sans Egyptian Hieroglyphs\";a:3:{s:5:\"label\";s:30:\"Noto Sans Egyptian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Elbasan\";a:3:{s:5:\"label\";s:17:\"Noto Sans Elbasan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Elymaic\";a:3:{s:5:\"label\";s:17:\"Noto Sans Elymaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Georgian\";a:3:{s:5:\"label\";s:18:\"Noto Sans Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Glagolitic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Glagolitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Gothic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Grantha\";a:3:{s:5:\"label\";s:17:\"Noto Sans Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Gujarati\";a:3:{s:5:\"label\";s:18:\"Noto Sans Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Gunjala Gondi\";a:3:{s:5:\"label\";s:23:\"Noto Sans Gunjala Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Gurmukhi\";a:3:{s:5:\"label\";s:18:\"Noto Sans Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans HK\";a:3:{s:5:\"label\";s:12:\"Noto Sans HK\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Noto Sans Hanifi Rohingya\";a:3:{s:5:\"label\";s:25:\"Noto Sans Hanifi Rohingya\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Hanunoo\";a:3:{s:5:\"label\";s:17:\"Noto Sans Hanunoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Hatran\";a:3:{s:5:\"label\";s:16:\"Noto Sans Hatran\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Hebrew\";a:3:{s:5:\"label\";s:16:\"Noto Sans Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Imperial Aramaic\";a:3:{s:5:\"label\";s:26:\"Noto Sans Imperial Aramaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:29:\"Noto Sans Indic Siyaq Numbers\";a:3:{s:5:\"label\";s:29:\"Noto Sans Indic Siyaq Numbers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:31:\"Noto Sans Inscriptional Pahlavi\";a:3:{s:5:\"label\";s:31:\"Noto Sans Inscriptional Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:32:\"Noto Sans Inscriptional Parthian\";a:3:{s:5:\"label\";s:32:\"Noto Sans Inscriptional Parthian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:5:\"label\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Javanese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Javanese\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:5:\"label\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Kaithi\";a:3:{s:5:\"label\";s:16:\"Noto Sans Kaithi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Kannada\";a:3:{s:5:\"label\";s:17:\"Noto Sans Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Kayah Li\";a:3:{s:5:\"label\";s:18:\"Noto Sans Kayah Li\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Kharoshthi\";a:3:{s:5:\"label\";s:20:\"Noto Sans Kharoshthi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Khmer\";a:3:{s:5:\"label\";s:15:\"Noto Sans Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Khojki\";a:3:{s:5:\"label\";s:16:\"Noto Sans Khojki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Khudawadi\";a:3:{s:5:\"label\";s:19:\"Noto Sans Khudawadi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans Lao\";a:3:{s:5:\"label\";s:13:\"Noto Sans Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lepcha\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lepcha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Limbu\";a:3:{s:5:\"label\";s:15:\"Noto Sans Limbu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Linear A\";a:3:{s:5:\"label\";s:18:\"Noto Sans Linear A\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Linear B\";a:3:{s:5:\"label\";s:18:\"Noto Sans Linear B\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Lisu\";a:3:{s:5:\"label\";s:14:\"Noto Sans Lisu\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lycian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lycian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lydian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lydian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Mahajani\";a:3:{s:5:\"label\";s:18:\"Noto Sans Mahajani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Malayalam\";a:3:{s:5:\"label\";s:19:\"Noto Sans Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Mandaic\";a:3:{s:5:\"label\";s:17:\"Noto Sans Mandaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Manichaean\";a:3:{s:5:\"label\";s:20:\"Noto Sans Manichaean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Marchen\";a:3:{s:5:\"label\";s:17:\"Noto Sans Marchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Masaram Gondi\";a:3:{s:5:\"label\";s:23:\"Noto Sans Masaram Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Math\";a:3:{s:5:\"label\";s:14:\"Noto Sans Math\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"Noto Sans Mayan Numerals\";a:3:{s:5:\"label\";s:24:\"Noto Sans Mayan Numerals\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Medefaidrin\";a:3:{s:5:\"label\";s:21:\"Noto Sans Medefaidrin\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Meetei Mayek\";a:3:{s:5:\"label\";s:22:\"Noto Sans Meetei Mayek\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Meroitic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Meroitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Miao\";a:3:{s:5:\"label\";s:14:\"Noto Sans Miao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Modi\";a:3:{s:5:\"label\";s:14:\"Noto Sans Modi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Mongolian\";a:3:{s:5:\"label\";s:19:\"Noto Sans Mongolian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Mono\";a:3:{s:5:\"label\";s:14:\"Noto Sans Mono\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Noto Sans Mro\";a:3:{s:5:\"label\";s:13:\"Noto Sans Mro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Multani\";a:3:{s:5:\"label\";s:17:\"Noto Sans Multani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Myanmar\";a:3:{s:5:\"label\";s:17:\"Noto Sans Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans N Ko\";a:3:{s:5:\"label\";s:14:\"Noto Sans N Ko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Nabataean\";a:3:{s:5:\"label\";s:19:\"Noto Sans Nabataean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans New Tai Lue\";a:3:{s:5:\"label\";s:21:\"Noto Sans New Tai Lue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Newa\";a:3:{s:5:\"label\";s:14:\"Noto Sans Newa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Nushu\";a:3:{s:5:\"label\";s:15:\"Noto Sans Nushu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Ogham\";a:3:{s:5:\"label\";s:15:\"Noto Sans Ogham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ol Chiki\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ol Chiki\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Old Hungarian\";a:3:{s:5:\"label\";s:23:\"Noto Sans Old Hungarian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Italic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Italic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:27:\"Noto Sans Old North Arabian\";a:3:{s:5:\"label\";s:27:\"Noto Sans Old North Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Permic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Permic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Old Persian\";a:3:{s:5:\"label\";s:21:\"Noto Sans Old Persian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Old Sogdian\";a:3:{s:5:\"label\";s:21:\"Noto Sans Old Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:27:\"Noto Sans Old South Arabian\";a:3:{s:5:\"label\";s:27:\"Noto Sans Old South Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Turkic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Turkic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Oriya\";a:3:{s:5:\"label\";s:15:\"Noto Sans Oriya\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Osage\";a:3:{s:5:\"label\";s:15:\"Noto Sans Osage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Osmanya\";a:3:{s:5:\"label\";s:17:\"Noto Sans Osmanya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Pahawh Hmong\";a:3:{s:5:\"label\";s:22:\"Noto Sans Pahawh Hmong\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Palmyrene\";a:3:{s:5:\"label\";s:19:\"Noto Sans Palmyrene\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Pau Cin Hau\";a:3:{s:5:\"label\";s:21:\"Noto Sans Pau Cin Hau\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Phags Pa\";a:3:{s:5:\"label\";s:18:\"Noto Sans Phags Pa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Phoenician\";a:3:{s:5:\"label\";s:20:\"Noto Sans Phoenician\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Noto Sans Psalter Pahlavi\";a:3:{s:5:\"label\";s:25:\"Noto Sans Psalter Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Rejang\";a:3:{s:5:\"label\";s:16:\"Noto Sans Rejang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Runic\";a:3:{s:5:\"label\";s:15:\"Noto Sans Runic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:5:\"label\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Samaritan\";a:3:{s:5:\"label\";s:19:\"Noto Sans Samaritan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Saurashtra\";a:3:{s:5:\"label\";s:20:\"Noto Sans Saurashtra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sharada\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sharada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Shavian\";a:3:{s:5:\"label\";s:17:\"Noto Sans Shavian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Siddham\";a:3:{s:5:\"label\";s:17:\"Noto Sans Siddham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sinhala\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sogdian\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Sora Sompeng\";a:3:{s:5:\"label\";s:22:\"Noto Sans Sora Sompeng\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Soyombo\";a:3:{s:5:\"label\";s:17:\"Noto Sans Soyombo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Sundanese\";a:3:{s:5:\"label\";s:19:\"Noto Sans Sundanese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Syloti Nagri\";a:3:{s:5:\"label\";s:22:\"Noto Sans Syloti Nagri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Symbols\";a:3:{s:5:\"label\";s:17:\"Noto Sans Symbols\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Symbols 2\";a:3:{s:5:\"label\";s:19:\"Noto Sans Symbols 2\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Syriac\";a:3:{s:5:\"label\";s:16:\"Noto Sans Syriac\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:5:\"label\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Tagalog\";a:3:{s:5:\"label\";s:17:\"Noto Sans Tagalog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tagbanwa\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tagbanwa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Tai Le\";a:3:{s:5:\"label\";s:16:\"Noto Sans Tai Le\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tai Tham\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tai Tham\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tai Viet\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tai Viet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Takri\";a:3:{s:5:\"label\";s:15:\"Noto Sans Takri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Tamil\";a:3:{s:5:\"label\";s:15:\"Noto Sans Tamil\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Tamil Supplement\";a:3:{s:5:\"label\";s:26:\"Noto Sans Tamil Supplement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Telugu\";a:3:{s:5:\"label\";s:16:\"Noto Sans Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Thaana\";a:3:{s:5:\"label\";s:16:\"Noto Sans Thaana\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Thai\";a:3:{s:5:\"label\";s:14:\"Noto Sans Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Thai Looped\";a:3:{s:5:\"label\";s:21:\"Noto Sans Thai Looped\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tifinagh\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tifinagh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Tirhuta\";a:3:{s:5:\"label\";s:17:\"Noto Sans Tirhuta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ugaritic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ugaritic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans Vai\";a:3:{s:5:\"label\";s:13:\"Noto Sans Vai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Wancho\";a:3:{s:5:\"label\";s:16:\"Noto Sans Wancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Warang Citi\";a:3:{s:5:\"label\";s:21:\"Noto Sans Warang Citi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans Yi\";a:3:{s:5:\"label\";s:12:\"Noto Sans Yi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Zanabazar Square\";a:3:{s:5:\"label\";s:26:\"Noto Sans Zanabazar Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:5:\"label\";s:10:\"Noto Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Ahom\";a:3:{s:5:\"label\";s:15:\"Noto Serif Ahom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Armenian\";a:3:{s:5:\"label\";s:19:\"Noto Serif Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Balinese\";a:3:{s:5:\"label\";s:19:\"Noto Serif Balinese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Bengali\";a:3:{s:5:\"label\";s:18:\"Noto Serif Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Noto Serif Devanagari\";a:3:{s:5:\"label\";s:21:\"Noto Serif Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Display\";a:3:{s:5:\"label\";s:18:\"Noto Serif Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Dogra\";a:3:{s:5:\"label\";s:16:\"Noto Serif Dogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Ethiopic\";a:3:{s:5:\"label\";s:19:\"Noto Serif Ethiopic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Georgian\";a:3:{s:5:\"label\";s:19:\"Noto Serif Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Grantha\";a:3:{s:5:\"label\";s:18:\"Noto Serif Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Gujarati\";a:3:{s:5:\"label\";s:19:\"Noto Serif Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Gurmukhi\";a:3:{s:5:\"label\";s:19:\"Noto Serif Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Hebrew\";a:3:{s:5:\"label\";s:17:\"Noto Serif Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:5:\"label\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:5:\"label\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Kannada\";a:3:{s:5:\"label\";s:18:\"Noto Serif Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Khmer\";a:3:{s:5:\"label\";s:16:\"Noto Serif Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Noto Serif Lao\";a:3:{s:5:\"label\";s:14:\"Noto Serif Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Noto Serif Malayalam\";a:3:{s:5:\"label\";s:20:\"Noto Serif Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Myanmar\";a:3:{s:5:\"label\";s:18:\"Noto Serif Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:33:\"Noto Serif Nyiakeng Puachue Hmong\";a:3:{s:5:\"label\";s:33:\"Noto Serif Nyiakeng Puachue Hmong\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:5:\"label\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Sinhala\";a:3:{s:5:\"label\";s:18:\"Noto Serif Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:5:\"label\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Tamil\";a:3:{s:5:\"label\";s:16:\"Noto Serif Tamil\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Tangut\";a:3:{s:5:\"label\";s:17:\"Noto Serif Tangut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Telugu\";a:3:{s:5:\"label\";s:17:\"Noto Serif Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Thai\";a:3:{s:5:\"label\";s:15:\"Noto Serif Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Tibetan\";a:3:{s:5:\"label\";s:18:\"Noto Serif Tibetan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Yezidi\";a:3:{s:5:\"label\";s:17:\"Noto Serif Yezidi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"Noto Traditional Nushu\";a:3:{s:5:\"label\";s:22:\"Noto Traditional Nushu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Nova Cut\";a:3:{s:5:\"label\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:5:\"label\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:5:\"label\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:5:\"label\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:5:\"label\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:5:\"label\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:5:\"label\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:5:\"label\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:5:\"label\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:5:\"label\";s:6:\"Nunito\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:5:\"label\";s:11:\"Nunito Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Odibee Sans\";a:3:{s:5:\"label\";s:11:\"Odibee Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Odor Mean Chey\";a:3:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Offside\";a:3:{s:5:\"label\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:2:\"Oi\";a:3:{s:5:\"label\";s:2:\"Oi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:5:\"label\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:5:\"label\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Ole\";a:3:{s:5:\"label\";s:3:\"Ole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Oleo Script\";a:3:{s:5:\"label\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:5:\"label\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Oooh Baby\";a:3:{s:5:\"label\";s:9:\"Oooh Baby\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Open Sans\";a:3:{s:5:\"label\";s:9:\"Open Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Open Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:5:\"label\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Orbitron\";a:3:{s:5:\"label\";s:8:\"Orbitron\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:5:\"label\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Orelega One\";a:3:{s:5:\"label\";s:11:\"Orelega One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:5:\"label\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:5:\"label\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:5:\"label\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Otomanopee One\";a:3:{s:5:\"label\";s:14:\"Otomanopee One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Outfit\";a:3:{s:5:\"label\";s:6:\"Outfit\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:5:\"label\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:5:\"label\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:5:\"label\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:5:\"label\";s:8:\"Overpass\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:5:\"label\";s:13:\"Overpass Mono\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:5:\"label\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Oxanium\";a:3:{s:5:\"label\";s:7:\"Oxanium\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oxygen\";a:3:{s:5:\"label\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:5:\"label\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:5:\"label\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:5:\"label\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:5:\"label\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:5:\"label\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:5:\"label\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:5:\"label\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:5:\"label\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Palanquin\";a:3:{s:5:\"label\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:5:\"label\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palette Mosaic\";a:3:{s:5:\"label\";s:14:\"Palette Mosaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Pangolin\";a:3:{s:5:\"label\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:5:\"label\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:5:\"label\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:5:\"label\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:5:\"label\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Passions Conflict\";a:3:{s:5:\"label\";s:17:\"Passions Conflict\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Pathway Gothic One\";a:3:{s:5:\"label\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:5:\"label\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:5:\"label\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:5:\"label\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:5:\"label\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:5:\"label\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:5:\"label\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:5:\"label\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:5:\"label\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:5:\"label\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Petemoss\";a:3:{s:5:\"label\";s:8:\"Petemoss\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:5:\"label\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:5:\"label\";s:7:\"Petrona\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:5:\"label\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Piazzolla\";a:3:{s:5:\"label\";s:9:\"Piazzolla\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Piedra\";a:3:{s:5:\"label\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:5:\"label\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:5:\"label\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:5:\"label\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Play\";a:3:{s:5:\"label\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:5:\"label\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Playfair Display\";a:3:{s:5:\"label\";s:16:\"Playfair Display\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:5:\"label\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Podkova\";a:3:{s:5:\"label\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:5:\"label\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:5:\"label\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Poly\";a:3:{s:5:\"label\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:5:\"label\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:5:\"label\";s:12:\"Pontano Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:5:\"label\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:5:\"label\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Potta One\";a:3:{s:5:\"label\";s:9:\"Potta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Pragati Narrow\";a:3:{s:5:\"label\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Praise\";a:3:{s:5:\"label\";s:6:\"Praise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Prata\";a:3:{s:5:\"label\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:5:\"label\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Press Start 2P\";a:3:{s:5:\"label\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:5:\"label\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:5:\"label\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:5:\"label\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:5:\"label\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:5:\"label\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:5:\"label\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Public Sans\";a:3:{s:5:\"label\";s:11:\"Public Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Puppies Play\";a:3:{s:5:\"label\";s:12:\"Puppies Play\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Puritan\";a:3:{s:5:\"label\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:5:\"label\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Pushster\";a:3:{s:5:\"label\";s:8:\"Pushster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Qahiri\";a:3:{s:5:\"label\";s:6:\"Qahiri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Quando\";a:3:{s:5:\"label\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:5:\"label\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:5:\"label\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:5:\"label\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:5:\"label\";s:9:\"Quicksand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:5:\"label\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:5:\"label\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Qwitcher Grypen\";a:3:{s:5:\"label\";s:15:\"Qwitcher Grypen\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:5:\"label\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Radley\";a:3:{s:5:\"label\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:5:\"label\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:5:\"label\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:5:\"label\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:5:\"label\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:5:\"label\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:5:\"label\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:5:\"label\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:5:\"label\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Rampart One\";a:3:{s:5:\"label\";s:11:\"Rampart One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:5:\"label\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:5:\"label\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:5:\"label\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:5:\"label\";s:4:\"Rasa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:5:\"label\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:5:\"label\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Readex Pro\";a:3:{s:5:\"label\";s:10:\"Readex Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Recursive\";a:3:{s:5:\"label\";s:9:\"Recursive\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Red Hat Display\";a:3:{s:5:\"label\";s:15:\"Red Hat Display\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Red Hat Mono\";a:3:{s:5:\"label\";s:12:\"Red Hat Mono\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Red Hat Text\";a:3:{s:5:\"label\";s:12:\"Red Hat Text\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Red Rose\";a:3:{s:5:\"label\";s:8:\"Red Rose\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Redacted\";a:3:{s:5:\"label\";s:8:\"Redacted\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Redacted Script\";a:3:{s:5:\"label\";s:15:\"Redacted Script\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Redressed\";a:3:{s:5:\"label\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:5:\"label\";s:9:\"Reem Kufi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:5:\"label\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Reggae One\";a:3:{s:5:\"label\";s:10:\"Reggae One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Revalia\";a:3:{s:5:\"label\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:5:\"label\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:5:\"label\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:5:\"label\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:5:\"label\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Road Rage\";a:3:{s:5:\"label\";s:9:\"Road Rage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:5:\"label\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:5:\"label\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:5:\"label\";s:11:\"Roboto Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Roboto Slab\";a:3:{s:5:\"label\";s:11:\"Roboto Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:5:\"label\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rock 3D\";a:3:{s:5:\"label\";s:7:\"Rock 3D\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rock Salt\";a:3:{s:5:\"label\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"RocknRoll One\";a:3:{s:5:\"label\";s:13:\"RocknRoll One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rokkitt\";a:3:{s:5:\"label\";s:7:\"Rokkitt\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:5:\"label\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:5:\"label\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:5:\"label\";s:7:\"Rosario\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:5:\"label\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:5:\"label\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rowdies\";a:3:{s:5:\"label\";s:7:\"Rowdies\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rozha One\";a:3:{s:5:\"label\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:5:\"label\";s:5:\"Rubik\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Rubik Beastly\";a:3:{s:5:\"label\";s:13:\"Rubik Beastly\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Rubik Mono One\";a:3:{s:5:\"label\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Ruda\";a:3:{s:5:\"label\";s:4:\"Ruda\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:5:\"label\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:5:\"label\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:5:\"label\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:5:\"label\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:5:\"label\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:5:\"label\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:5:\"label\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:5:\"label\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"STIX Two Text\";a:3:{s:5:\"label\";s:13:\"STIX Two Text\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sacramento\";a:3:{s:5:\"label\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:5:\"label\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:5:\"label\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:5:\"label\";s:5:\"Saira\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:5:\"label\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:5:\"label\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:5:\"label\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Saira Stencil One\";a:3:{s:5:\"label\";s:17:\"Saira Stencil One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Salsa\";a:3:{s:5:\"label\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:5:\"label\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:5:\"label\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:5:\"label\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"800\";i:3;s:9:\"800italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sansita Swashed\";a:3:{s:5:\"label\";s:15:\"Sansita Swashed\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sarabun\";a:3:{s:5:\"label\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:5:\"label\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:5:\"label\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:5:\"label\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Sassy Frass\";a:3:{s:5:\"label\";s:11:\"Sassy Frass\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Satisfy\";a:3:{s:5:\"label\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:5:\"label\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:5:\"label\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Scada\";a:3:{s:5:\"label\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Scheherazade New\";a:3:{s:5:\"label\";s:16:\"Scheherazade New\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Schoolbell\";a:3:{s:5:\"label\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:5:\"label\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:5:\"label\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:5:\"label\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:5:\"label\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:5:\"label\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Sen\";a:3:{s:5:\"label\";s:3:\"Sen\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sevillana\";a:3:{s:5:\"label\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:5:\"label\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:5:\"label\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Shalimar\";a:3:{s:5:\"label\";s:8:\"Shalimar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Shanti\";a:3:{s:5:\"label\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:5:\"label\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:5:\"label\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:5:\"label\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:16:\"Shippori Antique\";a:3:{s:5:\"label\";s:16:\"Shippori Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Shippori Antique B1\";a:3:{s:5:\"label\";s:19:\"Shippori Antique B1\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Shippori Mincho\";a:3:{s:5:\"label\";s:15:\"Shippori Mincho\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Shippori Mincho B1\";a:3:{s:5:\"label\";s:18:\"Shippori Mincho B1\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Shizuru\";a:3:{s:5:\"label\";s:7:\"Shizuru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Shojumaru\";a:3:{s:5:\"label\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:5:\"label\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:5:\"label\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:5:\"label\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:5:\"label\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:5:\"label\";s:7:\"Signika\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:5:\"label\";s:16:\"Signika Negative\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Simonetta\";a:3:{s:5:\"label\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:3:\"900\";i:1;s:9:\"900italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Single Day\";a:3:{s:5:\"label\";s:10:\"Single Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:5:\"label\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:5:\"label\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:5:\"label\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:5:\"label\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:5:\"label\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:5:\"label\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:5:\"label\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smokum\";a:3:{s:5:\"label\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smooch\";a:3:{s:5:\"label\";s:6:\"Smooch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Smythe\";a:3:{s:5:\"label\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:5:\"label\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:5:\"label\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:5:\"label\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:5:\"label\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:5:\"label\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Solway\";a:3:{s:5:\"label\";s:6:\"Solway\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Song Myung\";a:3:{s:5:\"label\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sonsie One\";a:3:{s:5:\"label\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sora\";a:3:{s:5:\"label\";s:4:\"Sora\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Sorts Mill Goudy\";a:3:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:5:\"label\";s:15:\"Source Code Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Source Sans 3\";a:3:{s:5:\"label\";s:13:\"Source Sans 3\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Source Sans Pro\";a:3:{s:5:\"label\";s:15:\"Source Sans Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Source Serif 4\";a:3:{s:5:\"label\";s:14:\"Source Serif 4\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Source Serif Pro\";a:3:{s:5:\"label\";s:16:\"Source Serif Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Space Grotesk\";a:3:{s:5:\"label\";s:13:\"Space Grotesk\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Space Mono\";a:3:{s:5:\"label\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Spartan\";a:3:{s:5:\"label\";s:7:\"Spartan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Special Elite\";a:3:{s:5:\"label\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:5:\"label\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:5:\"label\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:5:\"label\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:5:\"label\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:5:\"label\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Spline Sans\";a:3:{s:5:\"label\";s:11:\"Spline Sans\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Squada One\";a:3:{s:5:\"label\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:5:\"label\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:5:\"label\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:5:\"label\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:5:\"label\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:5:\"label\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:5:\"label\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:5:\"label\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stick\";a:3:{s:5:\"label\";s:5:\"Stick\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Stick No Bills\";a:3:{s:5:\"label\";s:14:\"Stick No Bills\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Stint Ultra Condensed\";a:3:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:5:\"label\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:5:\"label\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Style Script\";a:3:{s:5:\"label\";s:12:\"Style Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Stylish\";a:3:{s:5:\"label\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:5:\"label\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Sulphur Point\";a:3:{s:5:\"label\";s:13:\"Sulphur Point\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sumana\";a:3:{s:5:\"label\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:5:\"label\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:5:\"label\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:5:\"label\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:5:\"label\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:5:\"label\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:5:\"label\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:5:\"label\";s:11:\"Suwannaphum\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Swanky and Moo Moo\";a:3:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:5:\"label\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Syne\";a:3:{s:5:\"label\";s:4:\"Syne\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Syne Mono\";a:3:{s:5:\"label\";s:9:\"Syne Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Syne Tactile\";a:3:{s:5:\"label\";s:12:\"Syne Tactile\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Tajawal\";a:3:{s:5:\"label\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:5:\"label\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:5:\"label\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:5:\"label\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:5:\"label\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:5:\"label\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:5:\"label\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:5:\"label\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:5:\"label\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:5:\"label\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Texturina\";a:3:{s:5:\"label\";s:9:\"Texturina\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Thasadith\";a:3:{s:5:\"label\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:5:\"label\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"The Nautigal\";a:3:{s:5:\"label\";s:12:\"The Nautigal\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:5:\"label\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:5:\"label\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Timmana\";a:3:{s:5:\"label\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:5:\"label\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:5:\"label\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:5:\"label\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:6:\"italic\";i:10;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Tomorrow\";a:3:{s:5:\"label\";s:8:\"Tomorrow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Tourney\";a:3:{s:5:\"label\";s:7:\"Tourney\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Trade Winds\";a:3:{s:5:\"label\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Train One\";a:3:{s:5:\"label\";s:9:\"Train One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:5:\"label\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Trispace\";a:3:{s:5:\"label\";s:8:\"Trispace\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trocchi\";a:3:{s:5:\"label\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:5:\"label\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Truculenta\";a:3:{s:5:\"label\";s:10:\"Truculenta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trykker\";a:3:{s:5:\"label\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Tulpen One\";a:3:{s:5:\"label\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Turret Road\";a:3:{s:5:\"label\";s:11:\"Turret Road\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Twinkle Star\";a:3:{s:5:\"label\";s:12:\"Twinkle Star\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ubuntu\";a:3:{s:5:\"label\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Uchen\";a:3:{s:5:\"label\";s:5:\"Uchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Ultra\";a:3:{s:5:\"label\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Uncial Antiqua\";a:3:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:5:\"label\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:5:\"label\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:5:\"label\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:8:\"category\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:5:\"label\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:5:\"label\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:5:\"label\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Urbanist\";a:3:{s:5:\"label\";s:8:\"Urbanist\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"VT323\";a:3:{s:5:\"label\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:5:\"label\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:5:\"label\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:5:\"label\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Varta\";a:3:{s:5:\"label\";s:5:\"Varta\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:5:\"label\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Vesper Libre\";a:3:{s:5:\"label\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Viaoda Libre\";a:3:{s:5:\"label\";s:12:\"Viaoda Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibes\";a:3:{s:5:\"label\";s:5:\"Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibur\";a:3:{s:5:\"label\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:5:\"label\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:5:\"label\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Voces\";a:3:{s:5:\"label\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:5:\"label\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:5:\"label\";s:8:\"Vollkorn\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:5:\"label\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:5:\"label\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Vujahday Script\";a:3:{s:5:\"label\";s:15:\"Vujahday Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Waiting for the Sunrise\";a:3:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:5:\"label\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:5:\"label\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:5:\"label\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Waterfall\";a:3:{s:5:\"label\";s:9:\"Waterfall\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Wellfleet\";a:3:{s:5:\"label\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:5:\"label\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"WindSong\";a:3:{s:5:\"label\";s:8:\"WindSong\";s:8:\"variants\";a:2:{i:0;s:3:\"500\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wire One\";a:3:{s:5:\"label\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:5:\"label\";s:9:\"Work Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Xanh Mono\";a:3:{s:5:\"label\";s:9:\"Xanh Mono\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Yaldevi\";a:3:{s:5:\"label\";s:7:\"Yaldevi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:5:\"label\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:5:\"label\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:5:\"label\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:5:\"label\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:5:\"label\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:5:\"label\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Yomogi\";a:3:{s:5:\"label\";s:6:\"Yomogi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:5:\"label\";s:4:\"Yrsa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Yuji Boku\";a:3:{s:5:\"label\";s:9:\"Yuji Boku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Yuji Hentaigana Akari\";a:3:{s:5:\"label\";s:21:\"Yuji Hentaigana Akari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Yuji Hentaigana Akebono\";a:3:{s:5:\"label\";s:23:\"Yuji Hentaigana Akebono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Yuji Mai\";a:3:{s:5:\"label\";s:8:\"Yuji Mai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Yuji Syuku\";a:3:{s:5:\"label\";s:10:\"Yuji Syuku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Yusei Magic\";a:3:{s:5:\"label\";s:11:\"Yusei Magic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:5:\"label\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:5:\"label\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:5:\"label\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Zen Antique\";a:3:{s:5:\"label\";s:11:\"Zen Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Zen Antique Soft\";a:3:{s:5:\"label\";s:16:\"Zen Antique Soft\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Zen Dots\";a:3:{s:5:\"label\";s:8:\"Zen Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:23:\"Zen Kaku Gothic Antique\";a:3:{s:5:\"label\";s:23:\"Zen Kaku Gothic Antique\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Zen Kaku Gothic New\";a:3:{s:5:\"label\";s:19:\"Zen Kaku Gothic New\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Zen Kurenaido\";a:3:{s:5:\"label\";s:13:\"Zen Kurenaido\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Zen Loop\";a:3:{s:5:\"label\";s:8:\"Zen Loop\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Zen Maru Gothic\";a:3:{s:5:\"label\";s:15:\"Zen Maru Gothic\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Zen Old Mincho\";a:3:{s:5:\"label\";s:14:\"Zen Old Mincho\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Zen Tokyo Zoo\";a:3:{s:5:\"label\";s:13:\"Zen Tokyo Zoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Zeyada\";a:3:{s:5:\"label\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Zhi Mang Xing\";a:3:{s:5:\"label\";s:13:\"Zhi Mang Xing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:5:\"label\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:5:\"label\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_pk_post_views`
--
DROP TABLE IF EXISTS `wp_pk_post_views`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_pk_post_views` (
`id` bigint unsigned NOT NULL,
`type` tinyint unsigned NOT NULL,
`period` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`count` bigint unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_pk_post_views`
--
LOCK TABLES `wp_pk_post_views` WRITE;
/*!40000 ALTER TABLE `wp_pk_post_views` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_pk_post_views` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
`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,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=877 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!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','1673692663:1'),(4,5,'_wp_trash_meta_status','publish'),(5,5,'_wp_trash_meta_time','1673692672'),(8,7,'_form','<label> Your name\n [text* your-name autocomplete:name] </label>\n\n<label> Your email\n [email* your-email autocomplete:email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]'),(9,7,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:39:\"[_site_title] <wordpress@192.168.1.140>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(10,7,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:39:\"[_site_title] <wordpress@192.168.1.140>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(11,7,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(12,7,'_additional_settings',''),(13,7,'_locale','en_US'),(14,8,'_powerkit_reading_time','1'),(15,9,'_wp_attached_file','2023/01/log_file_2023-01-14__11-01-43.txt'),(16,168,'_wp_attached_file','2018/06/demo-image-00001-scaled.jpg'),(17,168,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:35:\"2018/06/demo-image-00001-scaled.jpg\";s:8:\"filesize\";i:59019;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2568;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"demo-image-00001-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1408;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8902;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"demo-image-00001-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25185;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"demo-image-00001-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40153;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:743;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2755;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:743;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2755;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:743;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1623;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3055;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2353;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-380x253.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3448;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8955;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5201;}s:21:\"csco-medium-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00001-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9462;}s:10:\"csco-large\";a:5:{s:4:\"file\";s:29:\"demo-image-00001-1160x680.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14563;}s:20:\"csco-large-uncropped\";a:5:{s:4:\"file\";s:29:\"demo-image-00001-1160x773.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16278;}s:16:\"csco-extra-large\";a:5:{s:4:\"file\";s:30:\"demo-image-00001-1920x1024.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:20:\"demo-image-00001.jpg\";}'),(19,169,'_wp_attached_file','2018/12/demo-image-00002-scaled.jpg'),(20,169,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:35:\"2018/12/demo-image-00002-scaled.jpg\";s:8:\"filesize\";i:82110;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3678;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"demo-image-00002-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1928;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12966;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"demo-image-00002-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36330;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"demo-image-00002-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56880;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00002-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:950;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3973;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00002-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:950;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3973;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00002-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:950;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2273;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4381;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3431;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-380x253.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5009;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13088;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7525;}s:21:\"csco-medium-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00002-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13903;}s:10:\"csco-large\";a:5:{s:4:\"file\";s:29:\"demo-image-00002-1160x680.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21060;}s:20:\"csco-large-uncropped\";a:5:{s:4:\"file\";s:29:\"demo-image-00002-1160x773.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23986;}s:16:\"csco-extra-large\";a:5:{s:4:\"file\";s:30:\"demo-image-00002-1920x1024.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:20:\"demo-image-00002.jpg\";}'),(21,170,'_wp_attached_file','2018/06/demo-image-00003-scaled.jpg'),(22,170,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:35:\"2018/06/demo-image-00003-scaled.jpg\";s:8:\"filesize\";i:64732;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2917;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"demo-image-00003-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15285;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10119;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"demo-image-00003-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28156;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"demo-image-00003-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44469;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00003-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:778;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3102;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00003-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:778;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3102;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00003-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:778;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1810;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3551;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2713;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-380x253.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3907;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10306;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5981;}s:21:\"csco-medium-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00003-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10750;}s:10:\"csco-large\";a:5:{s:4:\"file\";s:29:\"demo-image-00003-1160x680.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16600;}s:20:\"csco-large-uncropped\";a:5:{s:4:\"file\";s:29:\"demo-image-00003-1160x773.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18410;}s:16:\"csco-extra-large\";a:5:{s:4:\"file\";s:30:\"demo-image-00003-1920x1024.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:20:\"demo-image-00003.jpg\";}'),(24,171,'_wp_attached_file','2018/06/demo-image-00004.jpg'),(25,171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2018/06/demo-image-00004.jpg\";s:8:\"filesize\";i:49940;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2851;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"demo-image-00004-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15965;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1508;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"demo-image-00004-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19140;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"demo-image-00004-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30266;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"demo-image-00004-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48587;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00004-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:801;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2996;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00004-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:801;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2996;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00004-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:801;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1721;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3441;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2600;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-380x570.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6892;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10341;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00004-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5914;}s:21:\"csco-medium-uncropped\";a:5:{s:4:\"file\";s:29:\"demo-image-00004-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20227;}s:10:\"csco-large\";a:5:{s:4:\"file\";s:29:\"demo-image-00004-1160x680.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17633;}s:20:\"csco-large-uncropped\";a:5:{s:4:\"file\";s:30:\"demo-image-00004-1160x1741.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:1741;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36988;}s:16:\"csco-extra-large\";a:5:{s:4:\"file\";s:30:\"demo-image-00004-1706x1024.jpg\";s:5:\"width\";i:1706;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27816;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27,172,'_wp_attached_file','2018/12/demo-image-00005.jpg'),(28,172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2018/12/demo-image-00005.jpg\";s:8:\"filesize\";i:35269;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2065;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"demo-image-00005-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11108;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:994;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"demo-image-00005-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13222;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"demo-image-00005-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21542;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"demo-image-00005-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35270;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00005-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:578;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1326;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00005-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:578;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1326;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00005-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:578;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:793;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1293;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1024;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-380x570.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4647;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4242;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00005-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2266;}s:21:\"csco-medium-uncropped\";a:5:{s:4:\"file\";s:29:\"demo-image-00005-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14118;}s:10:\"csco-large\";a:5:{s:4:\"file\";s:29:\"demo-image-00005-1160x680.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7566;}s:20:\"csco-large-uncropped\";a:5:{s:4:\"file\";s:30:\"demo-image-00005-1160x1741.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:1741;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26517;}s:16:\"csco-extra-large\";a:5:{s:4:\"file\";s:30:\"demo-image-00005-1706x1024.jpg\";s:5:\"width\";i:1706;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14133;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29,173,'_wp_attached_file','2018/04/demo-image-00006.jpg'),(30,173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2018/04/demo-image-00006.jpg\";s:8:\"filesize\";i:62108;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3370;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"demo-image-00006-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18379;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1803;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"demo-image-00006-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21964;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"demo-image-00006-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34908;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"demo-image-00006-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55507;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00006-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:903;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3455;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00006-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:903;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3455;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:26:\"demo-image-00006-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:903;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1995;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3814;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2936;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-380x570.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7864;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11700;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:28:\"demo-image-00006-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6548;}s:21:\"csco-medium-uncropped\";a:5:{s:4:\"file\";s:29:\"demo-image-00006-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23369;}s:10:\"csco-large\";a:5:{s:4:\"file\";s:29:\"demo-image-00006-1160x680.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19522;}s:20:\"csco-large-uncropped\";a:5:{s:4:\"file\";s:30:\"demo-image-00006-1160x1741.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:1741;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42602;}s:16:\"csco-extra-large\";a:5:{s:4:\"file\";s:30:\"demo-image-00006-1706x1024.jpg\";s:5:\"width\";i:1706;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31013;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(82,342,'_powerkit_reading_time','0'),(83,342,'_menu_item_type','custom'),(84,342,'_menu_item_menu_item_parent','0'),(85,342,'_menu_item_object_id','342'),(86,342,'_menu_item_object','custom'),(87,342,'_menu_item_target',''),(88,342,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(89,342,'_menu_item_xfn',''),(90,342,'_menu_item_url','#'),(91,342,'_powerkit_reading_time','0'),(92,2014,'_powerkit_reading_time','0'),(93,2014,'_menu_item_type','post_type'),(94,2014,'_menu_item_menu_item_parent','342'),(95,2014,'_menu_item_object_id','1738'),(96,2014,'_menu_item_object','page'),(97,2014,'_menu_item_target',''),(98,2014,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(99,2014,'_menu_item_xfn',''),(100,2014,'_menu_item_url',''),(101,2014,'_powerkit_reading_time','0'),(103,2015,'_powerkit_reading_time','0'),(104,2015,'_menu_item_type','post_type'),(105,2015,'_menu_item_menu_item_parent','0'),(106,2015,'_menu_item_object_id','726'),(107,2015,'_menu_item_object','page'),(108,2015,'_menu_item_target',''),(109,2015,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(110,2015,'_menu_item_xfn',''),(111,2015,'_menu_item_url',''),(112,2015,'_powerkit_reading_time','0'),(114,2017,'_powerkit_reading_time','0'),(115,2017,'_menu_item_type','post_type'),(116,2017,'_menu_item_menu_item_parent','2155'),(117,2017,'_menu_item_object_id','1263'),(118,2017,'_menu_item_object','page'),(119,2017,'_menu_item_target',''),(120,2017,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(121,2017,'_menu_item_xfn',''),(122,2017,'_menu_item_url',''),(123,2017,'_powerkit_reading_time','0'),(126,2018,'_powerkit_reading_time','0'),(127,2018,'_menu_item_type','post_type'),(128,2018,'_menu_item_menu_item_parent','2155'),(129,2018,'_menu_item_object_id','925'),(130,2018,'_menu_item_object','page'),(131,2018,'_menu_item_target',''),(132,2018,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133,2018,'_menu_item_xfn',''),(134,2018,'_menu_item_url',''),(135,2018,'_powerkit_reading_time','0'),(138,2019,'_powerkit_reading_time','0'),(139,2019,'_menu_item_type','post_type'),(140,2019,'_menu_item_menu_item_parent','2155'),(141,2019,'_menu_item_object_id','1005'),(142,2019,'_menu_item_object','page'),(143,2019,'_menu_item_target',''),(144,2019,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(145,2019,'_menu_item_xfn',''),(146,2019,'_menu_item_url',''),(147,2019,'_powerkit_reading_time','0'),(150,2020,'_powerkit_reading_time','0'),(151,2020,'_menu_item_type','post_type'),(152,2020,'_menu_item_menu_item_parent','2043'),(153,2020,'_menu_item_object_id','1378'),(154,2020,'_menu_item_object','page'),(155,2020,'_menu_item_target',''),(156,2020,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(157,2020,'_menu_item_xfn',''),(158,2020,'_menu_item_url',''),(159,2020,'_powerkit_reading_time','0'),(162,2021,'_powerkit_reading_time','0'),(163,2021,'_menu_item_type','post_type'),(164,2021,'_menu_item_menu_item_parent','2043'),(165,2021,'_menu_item_object_id','1270'),(166,2021,'_menu_item_object','page'),(167,2021,'_menu_item_target',''),(168,2021,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(169,2021,'_menu_item_xfn',''),(170,2021,'_menu_item_url',''),(171,2021,'_powerkit_reading_time','0'),(174,2022,'_powerkit_reading_time','0'),(175,2022,'_menu_item_type','post_type'),(176,2022,'_menu_item_menu_item_parent','2155'),(177,2022,'_menu_item_object_id','936'),(178,2022,'_menu_item_object','page'),(179,2022,'_menu_item_target',''),(180,2022,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(181,2022,'_menu_item_xfn',''),(182,2022,'_menu_item_url',''),(183,2022,'_powerkit_reading_time','0'),(186,2023,'_powerkit_reading_time','0'),(187,2023,'_menu_item_type','post_type'),(188,2023,'_menu_item_menu_item_parent','2155'),(189,2023,'_menu_item_object_id','940'),(190,2023,'_menu_item_object','page'),(191,2023,'_menu_item_target',''),(192,2023,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(193,2023,'_menu_item_xfn',''),(194,2023,'_menu_item_url',''),(195,2023,'_powerkit_reading_time','0'),(198,2024,'_powerkit_reading_time','0'),(199,2024,'_menu_item_type','post_type'),(200,2024,'_menu_item_menu_item_parent','2043'),(201,2024,'_menu_item_object_id','1269'),(202,2024,'_menu_item_object','page'),(203,2024,'_menu_item_target',''),(204,2024,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(205,2024,'_menu_item_xfn',''),(206,2024,'_menu_item_url',''),(207,2024,'_powerkit_reading_time','0'),(210,2025,'_powerkit_reading_time','0'),(211,2025,'_menu_item_type','post_type'),(212,2025,'_menu_item_menu_item_parent','2155'),(213,2025,'_menu_item_object_id','1266'),(214,2025,'_menu_item_object','page'),(215,2025,'_menu_item_target',''),(216,2025,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(217,2025,'_menu_item_xfn',''),(218,2025,'_menu_item_url',''),(219,2025,'_powerkit_reading_time','0'),(222,2026,'_powerkit_reading_time','0'),(223,2026,'_menu_item_type','post_type'),(224,2026,'_menu_item_menu_item_parent','2155'),(225,2026,'_menu_item_object_id','929'),(226,2026,'_menu_item_object','page'),(227,2026,'_menu_item_target',''),(228,2026,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(229,2026,'_menu_item_xfn',''),(230,2026,'_menu_item_url',''),(231,2026,'_powerkit_reading_time','0'),(234,2027,'_powerkit_reading_time','0'),(235,2027,'_menu_item_type','post_type'),(236,2027,'_menu_item_menu_item_parent','2155'),(237,2027,'_menu_item_object_id','934'),(238,2027,'_menu_item_object','page'),(239,2027,'_menu_item_target',''),(240,2027,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(241,2027,'_menu_item_xfn',''),(242,2027,'_menu_item_url',''),(243,2027,'_powerkit_reading_time','0'),(246,2028,'_powerkit_reading_time','0'),(247,2028,'_menu_item_type','post_type'),(248,2028,'_menu_item_menu_item_parent','2155'),(249,2028,'_menu_item_object_id','999'),(250,2028,'_menu_item_object','page'),(251,2028,'_menu_item_target',''),(252,2028,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(253,2028,'_menu_item_xfn',''),(254,2028,'_menu_item_url',''),(255,2028,'_powerkit_reading_time','0'),(258,2029,'_powerkit_reading_time','0'),(259,2029,'_menu_item_type','post_type'),(260,2029,'_menu_item_menu_item_parent','2155'),(261,2029,'_menu_item_object_id','893'),(262,2029,'_menu_item_object','page'),(263,2029,'_menu_item_target',''),(264,2029,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(265,2029,'_menu_item_xfn',''),(266,2029,'_menu_item_url',''),(267,2029,'_powerkit_reading_time','0'),(270,2030,'_powerkit_reading_time','0'),(271,2030,'_menu_item_type','post_type'),(272,2030,'_menu_item_menu_item_parent','2043'),(273,2030,'_menu_item_object_id','1267'),(274,2030,'_menu_item_object','page'),(275,2030,'_menu_item_target',''),(276,2030,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(277,2030,'_menu_item_xfn',''),(278,2030,'_menu_item_url',''),(279,2030,'_powerkit_reading_time','0'),(282,2031,'_powerkit_reading_time','0'),(283,2031,'_menu_item_type','post_type'),(284,2031,'_menu_item_menu_item_parent','2043'),(285,2031,'_menu_item_object_id','1268'),(286,2031,'_menu_item_object','page'),(287,2031,'_menu_item_target',''),(288,2031,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(289,2031,'_menu_item_xfn',''),(290,2031,'_menu_item_url',''),(291,2031,'_powerkit_reading_time','0'),(294,2032,'_powerkit_reading_time','0'),(295,2032,'_menu_item_type','post_type'),(296,2032,'_menu_item_menu_item_parent','2155'),(297,2032,'_menu_item_object_id','1264'),(298,2032,'_menu_item_object','page'),(299,2032,'_menu_item_target',''),(300,2032,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(301,2032,'_menu_item_xfn',''),(302,2032,'_menu_item_url',''),(303,2032,'_powerkit_reading_time','0'),(306,2033,'_powerkit_reading_time','0'),(307,2033,'_menu_item_type','post_type'),(308,2033,'_menu_item_menu_item_parent','2155'),(309,2033,'_menu_item_object_id','1262'),(310,2033,'_menu_item_object','page'),(311,2033,'_menu_item_target',''),(312,2033,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(313,2033,'_menu_item_xfn',''),(314,2033,'_menu_item_url',''),(315,2033,'_powerkit_reading_time','0'),(318,2034,'_powerkit_reading_time','0'),(319,2034,'_menu_item_type','post_type'),(320,2034,'_menu_item_menu_item_parent','2155'),(321,2034,'_menu_item_object_id','1265'),(322,2034,'_menu_item_object','page'),(323,2034,'_menu_item_target',''),(324,2034,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(325,2034,'_menu_item_xfn',''),(326,2034,'_menu_item_url',''),(327,2034,'_powerkit_reading_time','0'),(330,2035,'_powerkit_reading_time','0'),(331,2035,'_menu_item_type','post_type'),(332,2035,'_menu_item_menu_item_parent','342'),(333,2035,'_menu_item_object_id','994'),(334,2035,'_menu_item_object','page'),(335,2035,'_menu_item_target',''),(336,2035,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(337,2035,'_menu_item_xfn',''),(338,2035,'_menu_item_url',''),(339,2035,'_powerkit_reading_time','0'),(341,2036,'_powerkit_reading_time','0'),(342,2036,'_menu_item_type','post_type'),(343,2036,'_menu_item_menu_item_parent','342'),(344,2036,'_menu_item_object_id','728'),(345,2036,'_menu_item_object','page'),(346,2036,'_menu_item_target',''),(347,2036,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(348,2036,'_menu_item_xfn',''),(349,2036,'_menu_item_url',''),(350,2036,'_powerkit_reading_time','0'),(352,2039,'_powerkit_reading_time','0'),(353,2039,'_menu_item_type','post_type'),(354,2039,'_menu_item_menu_item_parent','342'),(355,2039,'_menu_item_object_id','1748'),(356,2039,'_menu_item_object','page'),(357,2039,'_menu_item_target',''),(358,2039,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(359,2039,'_menu_item_xfn',''),(360,2039,'_menu_item_url',''),(361,2039,'_powerkit_reading_time','0'),(363,2043,'_powerkit_reading_time','0'),(364,2043,'_menu_item_type','custom'),(365,2043,'_menu_item_menu_item_parent','342'),(366,2043,'_menu_item_object_id','2043'),(367,2043,'_menu_item_object','custom'),(368,2043,'_menu_item_target',''),(369,2043,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(370,2043,'_menu_item_xfn',''),(371,2043,'_menu_item_url','#'),(372,2043,'_powerkit_reading_time','0'),(373,2073,'_powerkit_reading_time','0'),(374,2073,'_menu_item_type','post_type'),(375,2073,'_menu_item_menu_item_parent','0'),(376,2073,'_menu_item_object_id','2071'),(377,2073,'_menu_item_object','page'),(378,2073,'_menu_item_target',''),(379,2073,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(380,2073,'_menu_item_xfn',''),(381,2073,'_menu_item_url',''),(382,2073,'_powerkit_reading_time','0'),(384,2093,'_powerkit_reading_time','0'),(385,2093,'_menu_item_type','post_type'),(386,2093,'_menu_item_menu_item_parent','342'),(387,2093,'_menu_item_object_id','296'),(388,2093,'_menu_item_object','post'),(389,2093,'_menu_item_target',''),(390,2093,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(391,2093,'_menu_item_xfn',''),(392,2093,'_menu_item_url',''),(393,2093,'_powerkit_reading_time','0'),(405,2155,'_powerkit_reading_time','0'),(406,2155,'_powerkit_reading_time','0'),(407,2155,'_menu_item_type','custom'),(408,2155,'_menu_item_menu_item_parent','342'),(409,2155,'_menu_item_object_id','2155'),(410,2155,'_menu_item_object','custom'),(411,2155,'_menu_item_target',''),(412,2155,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(413,2155,'_menu_item_xfn',''),(414,2155,'_menu_item_url','#'),(415,726,'_powerkit_reading_time','1'),(416,726,'_wp_page_template','default'),(417,726,'_wxr_import_term','a:3:{s:8:\"taxonomy\";s:6:\"author\";s:4:\"slug\";s:12:\"cap-expertly\";s:4:\"name\";s:8:\"expertly\";}'),(418,728,'_powerkit_reading_time','3'),(419,728,'_wp_page_template','default'),(420,728,'_wxr_import_term','a:3:{s:8:\"taxonomy\";s:6:\"author\";s:4:\"slug\";s:12:\"cap-expertly\";s:4:\"name\";s:8:\"expertly\";}'),(421,893,'_powerkit_reading_time','1'),(423,925,'_powerkit_reading_time','1'),(425,929,'_powerkit_reading_time','1'),(427,934,'_powerkit_reading_time','3'),(429,936,'_powerkit_reading_time','2'),(431,940,'_powerkit_reading_time','1'),(433,994,'_powerkit_reading_time','2'),(434,999,'_powerkit_reading_time','1'),(436,1260,'_powerkit_reading_time','0'),(437,1260,'_wp_page_template','default'),(438,1262,'_powerkit_reading_time','3'),(439,1263,'_powerkit_reading_time','2'),(440,1264,'_powerkit_reading_time','1'),(441,1265,'_powerkit_reading_time','1'),(442,1266,'_powerkit_reading_time','1'),(443,1267,'_powerkit_reading_time','13'),(444,1268,'_powerkit_reading_time','3'),(445,1269,'_powerkit_reading_time','2'),(446,1270,'_powerkit_reading_time','2'),(449,260,'_powerkit_reading_time','2'),(450,260,'_thumbnail_id','170'),(451,260,'_wp_old_date','2018-04-30'),(454,263,'_powerkit_reading_time','2'),(455,263,'_thumbnail_id','173'),(456,263,'_wp_old_date','2018-02-07'),(459,264,'_powerkit_reading_time','2'),(460,264,'_thumbnail_id','168'),(461,264,'_wp_old_date','2018-05-05'),(464,270,'_powerkit_reading_time','2'),(465,270,'_thumbnail_id','168'),(466,270,'_wp_old_date','2018-01-10'),(469,271,'_powerkit_reading_time','2'),(470,271,'_thumbnail_id','169'),(471,271,'_wp_old_date','2018-03-04'),(474,273,'_powerkit_reading_time','2'),(475,273,'_thumbnail_id','171'),(476,273,'_wp_old_date','2018-05-04'),(479,275,'_powerkit_reading_time','2'),(480,275,'_thumbnail_id','173'),(481,275,'_wp_old_date','2018-02-26'),(484,276,'_powerkit_reading_time','2'),(485,276,'_thumbnail_id','168'),(486,276,'_wp_old_date','2018-01-03'),(491,279,'_powerkit_reading_time','2'),(492,279,'_thumbnail_id','170'),(493,279,'_wp_old_date','2018-02-22'),(496,283,'_powerkit_reading_time','2'),(497,283,'_thumbnail_id','169'),(498,283,'_wp_old_date','2018-01-05'),(501,284,'_powerkit_reading_time','2'),(502,284,'_thumbnail_id','170'),(503,284,'_wp_old_date','2018-03-09'),(506,287,'_powerkit_reading_time','2'),(507,287,'_thumbnail_id','173'),(508,287,'_wp_old_date','2018-02-03'),(511,289,'_powerkit_reading_time','2'),(512,289,'_thumbnail_id','169'),(513,289,'_wp_old_date','2018-02-24'),(516,290,'_powerkit_reading_time','2'),(517,290,'_thumbnail_id','170'),(518,290,'_wp_old_date','2018-02-14'),(521,292,'_powerkit_reading_time','2'),(522,292,'_thumbnail_id','172'),(523,292,'_wp_old_date','2018-01-19'),(524,1005,'_powerkit_reading_time','1'),(525,1378,'_powerkit_reading_time','1'),(526,1738,'_powerkit_reading_time','1'),(527,1738,'_wp_page_template','template-canvas-fullwidth.php'),(528,1748,'_powerkit_reading_time','1'),(529,2071,'_powerkit_reading_time','1'),(532,67,'_powerkit_reading_time','2'),(533,67,'_wp_old_slug','technology-prototype-disruptive-agile-development'),(534,67,'_thumbnail_id','168'),(535,67,'_wp_old_date','2018-10-14'),(538,259,'_powerkit_reading_time','2'),(539,259,'_wp_old_slug','vici-consequat-justo-enim-adipiscing-luctus-nullam-fringilla-pretium'),(540,259,'_wp_old_slug','nullam-fringilla-pretium-enim-adipiscing-luctus'),(541,259,'_thumbnail_id','169'),(542,259,'_wp_old_date','2018-10-06'),(545,261,'_powerkit_reading_time','2'),(546,261,'_thumbnail_id','171'),(547,261,'_wp_old_date','2018-05-11'),(550,262,'_powerkit_reading_time','2'),(551,262,'_thumbnail_id','172'),(552,262,'_wp_old_date','2018-08-25'),(555,265,'_powerkit_reading_time','2'),(556,265,'_thumbnail_id','169'),(557,265,'_wp_old_date','2018-10-04'),(560,266,'_powerkit_reading_time','2'),(561,266,'_thumbnail_id','170'),(562,266,'_wp_old_date','2018-06-19'),(565,267,'_powerkit_reading_time','2'),(566,267,'_thumbnail_id','171'),(567,267,'_wp_old_date','2018-10-24'),(570,268,'_powerkit_reading_time','2'),(571,268,'_thumbnail_id','172'),(572,268,'_wp_old_date','2018-07-16'),(575,269,'_powerkit_reading_time','2'),(576,269,'_thumbnail_id','173'),(577,269,'_wp_old_date','2018-10-19'),(580,272,'_powerkit_reading_time','2'),(581,272,'_thumbnail_id','170'),(582,272,'_wp_old_date','2018-06-09'),(585,280,'_powerkit_reading_time','2'),(586,280,'_thumbnail_id','172'),(587,280,'_wp_old_date','2018-05-08'),(590,281,'_powerkit_reading_time','2'),(591,281,'_thumbnail_id','173'),(592,281,'_wp_old_date','2018-09-19'),(595,282,'_powerkit_reading_time','2'),(596,282,'_thumbnail_id','168'),(597,282,'_wp_old_date','2018-07-24'),(600,286,'_powerkit_reading_time','2'),(601,286,'_thumbnail_id','172'),(602,286,'_wp_old_date','2018-08-26'),(605,288,'_powerkit_reading_time','3'),(606,288,'_thumbnail_id','168'),(607,288,'_wp_old_date','2018-11-23'),(608,288,'_wp_old_date','2019-11-23'),(611,291,'_powerkit_reading_time','2'),(612,291,'_thumbnail_id','171'),(613,291,'_wp_old_date','2018-09-22'),(616,293,'_powerkit_reading_time','2'),(617,293,'_thumbnail_id','173'),(618,293,'_wp_old_date','2018-06-07'),(621,294,'_powerkit_reading_time','2'),(622,294,'_thumbnail_id','168'),(623,294,'_wp_old_date','2018-10-05'),(626,295,'_powerkit_reading_time','2'),(627,295,'_thumbnail_id','169'),(628,295,'_wp_old_date','2018-08-17'),(631,297,'_powerkit_reading_time','2'),(632,297,'_thumbnail_id','171'),(633,297,'_wp_old_date','2018-07-15'),(634,2156,'_powerkit_reading_time','1'),(635,2156,'_form','<div class=\"cs-row\">\n<div class=\"cs-col-md-6\">\n<label> Your Name <span class=\"required\">*</span>\n [text* your-name] </label>\n</div><div class=\"cs-col-md-6\">\n<label> Your Email <span class=\"required\">*</span>\n [email* your-email] </label>\n</div>\n</div>\n<label for=\"cs-message\">Your Message <span class=\"required\">*</span></label>\n[textarea* your-message id:cs-message x5][/textarea*]\n[submit class:button class:button-primary \"Send\"]'),(636,2156,'_mail',''),(637,2156,'_mail_2',''),(638,2156,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(639,2156,'_additional_settings',''),(640,2156,'_locale','en_US'),(643,274,'_powerkit_reading_time','2'),(644,274,'_thumbnail_id','172'),(645,274,'_wp_old_date','2019-11-30'),(648,277,'_powerkit_reading_time','2'),(649,277,'_thumbnail_id','169'),(650,277,'_wp_old_date','2018-11-09'),(653,278,'_powerkit_reading_time','2'),(654,278,'_thumbnail_id','171'),(655,278,'_wp_old_date','2018-11-09'),(658,285,'_powerkit_reading_time','2'),(659,285,'_thumbnail_id','171'),(660,285,'_wp_old_date','2019-12-25'),(663,296,'_powerkit_reading_time','3'),(664,296,'_thumbnail_id','170'),(665,296,'_wp_old_date','2019-12-22'),(667,2165,'_wp_trash_meta_status','publish'),(668,2165,'_wp_trash_meta_time','1673694387'),(669,2165,'_powerkit_reading_time','1'),(670,2166,'_wp_trash_meta_status','publish'),(671,2166,'_wp_trash_meta_time','1673694423'),(672,2166,'_powerkit_reading_time','1'),(673,2167,'_powerkit_reading_time','1'),(674,2167,'_edit_lock','1673694507:1'),(675,2167,'_wp_trash_meta_status','publish'),(676,2167,'_wp_trash_meta_time','1673694525'),(677,2168,'_wp_trash_meta_status','publish'),(678,2168,'_wp_trash_meta_time','1673694566'),(679,2168,'_powerkit_reading_time','1'),(680,2169,'_powerkit_reading_time','1'),(681,2169,'_edit_lock','1673694628:1'),(682,2169,'_wp_trash_meta_status','publish'),(683,2169,'_wp_trash_meta_time','1673694648'),(684,2170,'_powerkit_reading_time','1'),(685,2170,'_edit_lock','1673694898:1'),(686,2170,'_wp_trash_meta_status','publish'),(687,2170,'_wp_trash_meta_time','1673694898'),(688,2171,'_wp_trash_meta_status','publish'),(689,2171,'_wp_trash_meta_time','1673695031'),(690,2171,'_powerkit_reading_time','1'),(691,2172,'_powerkit_reading_time','1'),(692,2172,'_edit_lock','1673695193:1'),(693,2173,'_powerkit_reading_time','0'),(694,2173,'_menu_item_type','custom'),(695,2173,'_menu_item_menu_item_parent','0'),(696,2173,'_menu_item_object_id','2173'),(697,2173,'_menu_item_object','custom'),(698,2173,'_menu_item_target',''),(699,2173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(700,2173,'_menu_item_xfn',''),(701,2173,'_menu_item_url','http://192.168.1.140:8011'),(702,2172,'_wp_trash_meta_status','publish'),(703,2172,'_wp_trash_meta_time','1673695237'),(709,342,'_wp_old_date','2018-07-01'),(710,2014,'_wp_old_date','2019-11-23'),(711,2155,'_wp_old_date','2019-11-24'),(712,2017,'_wp_old_date','2019-11-23'),(713,2018,'_wp_old_date','2019-11-23'),(714,2019,'_wp_old_date','2019-11-23'),(715,2022,'_wp_old_date','2019-11-23'),(716,2023,'_wp_old_date','2019-11-23'),(717,2025,'_wp_old_date','2019-11-23'),(718,2026,'_wp_old_date','2019-11-23'),(719,2027,'_wp_old_date','2019-11-23'),(720,2028,'_wp_old_date','2019-11-23'),(721,2029,'_wp_old_date','2019-11-23'),(722,2032,'_wp_old_date','2019-11-23'),(723,2033,'_wp_old_date','2019-11-23'),(724,2034,'_wp_old_date','2019-11-23'),(725,2043,'_wp_old_date','2019-11-23'),(726,2020,'_wp_old_date','2019-11-23'),(727,2021,'_wp_old_date','2019-11-23'),(728,2030,'_wp_old_date','2019-11-23'),(729,2031,'_wp_old_date','2019-11-23'),(730,2024,'_wp_old_date','2019-11-23'),(731,2035,'_wp_old_date','2019-11-23'),(732,2039,'_wp_old_date','2019-11-23'),(733,2036,'_wp_old_date','2019-11-23'),(734,2093,'_wp_old_date','2019-11-23'),(735,2015,'_wp_old_date','2019-11-23'),(736,2073,'_wp_old_date','2019-11-23'),(738,2174,'_wp_trash_meta_status','publish'),(739,2174,'_wp_trash_meta_time','1673695272'),(740,2174,'_powerkit_reading_time','5'),(741,2175,'_wp_trash_meta_status','publish'),(742,2175,'_wp_trash_meta_time','1673695373'),(743,2175,'_powerkit_reading_time','1'),(744,296,'powerkit_share_buttons_transient_facebook','1673739252'),(745,296,'powerkit_share_buttons_transient_pinterest','1673739253'),(746,1005,'_edit_lock','1673702199:1'),(747,2177,'_powerkit_reading_time','1'),(748,2177,'_edit_lock','1673716680:1'),(749,2177,'_wp_trash_meta_status','publish'),(750,2177,'_wp_trash_meta_time','1673716684'),(751,2178,'_powerkit_reading_time','1'),(752,2178,'_edit_lock','1673716738:1'),(753,2178,'_wp_trash_meta_status','publish'),(754,2178,'_wp_trash_meta_time','1673716730'),(755,2,'_edit_lock','1673716955:1'),(756,1,'_edit_lock','1673723266:1'),(757,1,'_powerkit_reading_time','1'),(758,2180,'_wp_attached_file','2023/01/test001.jpg'),(759,2180,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:19:\"2023/01/test001.jpg\";s:8:\"filesize\";i:215800;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"test001-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14822;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"test001-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"test001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8903;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"test001-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46954;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"test001-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129304;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:17:\"test001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5530;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:19:\"test001-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16488;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:17:\"test001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5530;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:19:\"test001-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16488;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:17:\"test001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5530;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:19:\"test001-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10273;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:19:\"test001-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19656;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:19:\"test001-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15216;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:19:\"test001-380x214.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19325;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:19:\"test001-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53124;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:19:\"test001-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32055;}s:21:\"csco-medium-uncropped\";a:5:{s:4:\"file\";s:19:\"test001-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49623;}s:10:\"csco-large\";a:5:{s:4:\"file\";s:20:\"test001-1160x680.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86996;}s:20:\"csco-large-uncropped\";a:5:{s:4:\"file\";s:20:\"test001-1160x653.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84631;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(762,1,'_thumbnail_id','2182'),(763,1,'_edit_last','1'),(764,1,'_abr_review_settings',''),(765,1,'csco_singular_sidebar','default'),(766,1,'csco_page_header_type','default'),(767,1,'csco_page_load_nextpost','default'),(768,1,'csco_post_video_location','a:0:{}'),(769,1,'csco_post_video_url',''),(770,1,'csco_post_video_bg_start_time','0'),(771,1,'csco_post_video_bg_end_time','0'),(772,274,'powerkit_share_buttons_transient_facebook','1673765748'),(773,274,'powerkit_share_buttons_transient_pinterest','1673765748'),(774,2182,'_wp_attached_file','2023/01/home_image.jpg'),(775,2182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:700;s:4:\"file\";s:22:\"2023/01/home_image.jpg\";s:8:\"filesize\";i:186921;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"home_image-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12270;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"home_image-1024x398.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54796;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"home_image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9151;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"home_image-768x299.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37570;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"home_image-1536x597.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97780;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:20:\"home_image-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5589;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:22:\"home_image-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17245;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:20:\"home_image-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5589;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:22:\"home_image-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17245;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:20:\"home_image-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5589;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:22:\"home_image-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10710;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:22:\"home_image-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19772;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:22:\"home_image-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15323;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:22:\"home_image-380x148.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15900;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:22:\"home_image-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54833;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:22:\"home_image-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32666;}s:21:\"csco-medium-uncropped\";a:5:{s:4:\"file\";s:22:\"home_image-800x311.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39307;}s:10:\"csco-large\";a:5:{s:4:\"file\";s:23:\"home_image-1160x680.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88843;}s:20:\"csco-large-uncropped\";a:5:{s:4:\"file\";s:23:\"home_image-1160x451.jpg\";s:5:\"width\";i:1160;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65591;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(780,2185,'_wp_attached_file','2023/01/logo-kevkem.png'),(781,2185,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:63;s:4:\"file\";s:23:\"2023/01/logo-kevkem.png\";s:8:\"filesize\";i:9590;s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"logo-kevkem-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2657;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:21:\"logo-kevkem-80x63.png\";s:5:\"width\";i:80;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1980;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:21:\"logo-kevkem-80x63.png\";s:5:\"width\";i:80;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1980;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:21:\"logo-kevkem-80x63.png\";s:5:\"width\";i:80;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1980;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:22:\"logo-kevkem-200x63.png\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3797;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(782,2186,'_wp_trash_meta_status','publish'),(783,2186,'_wp_trash_meta_time','1673723549'),(784,2186,'_powerkit_reading_time','1'),(785,2187,'_powerkit_reading_time','0'),(786,2188,'_powerkit_reading_time','0'),(787,2188,'_edit_lock','1674313100:1'),(788,2189,'_powerkit_reading_time','2'),(789,2189,'_edit_lock','1674317306:1'),(790,2189,'_edit_last','1'),(791,2189,'csco_singular_sidebar','default'),(792,2189,'csco_page_header_type','default'),(793,2189,'csco_post_video_location','a:0:{}'),(794,2189,'csco_post_video_url',''),(795,2189,'csco_post_video_bg_start_time','0'),(796,2189,'csco_post_video_bg_end_time','0'),(797,2191,'_powerkit_reading_time','3'),(798,2191,'_edit_lock','1674316036:1'),(799,2191,'_edit_last','1'),(800,2191,'csco_singular_sidebar','default'),(801,2191,'csco_page_header_type','default'),(802,2191,'csco_post_video_location','a:0:{}'),(803,2191,'csco_post_video_url',''),(804,2191,'csco_post_video_bg_start_time','0'),(805,2191,'csco_post_video_bg_end_time','0'),(806,342,'_wp_old_date','2023-01-14'),(807,2014,'_wp_old_date','2023-01-14'),(808,2155,'_wp_old_date','2023-01-14'),(809,2017,'_wp_old_date','2023-01-14'),(810,2018,'_wp_old_date','2023-01-14'),(811,2019,'_wp_old_date','2023-01-14'),(812,2022,'_wp_old_date','2023-01-14'),(813,2023,'_wp_old_date','2023-01-14'),(814,2025,'_wp_old_date','2023-01-14'),(815,2026,'_wp_old_date','2023-01-14'),(816,2027,'_wp_old_date','2023-01-14'),(817,2028,'_wp_old_date','2023-01-14'),(818,2029,'_wp_old_date','2023-01-14'),(819,2032,'_wp_old_date','2023-01-14'),(820,2033,'_wp_old_date','2023-01-14'),(821,2034,'_wp_old_date','2023-01-14'),(822,2043,'_wp_old_date','2023-01-14'),(823,2020,'_wp_old_date','2023-01-14'),(824,2021,'_wp_old_date','2023-01-14'),(825,2030,'_wp_old_date','2023-01-14'),(826,2031,'_wp_old_date','2023-01-14'),(827,2024,'_wp_old_date','2023-01-14'),(828,2035,'_wp_old_date','2023-01-14'),(829,2039,'_wp_old_date','2023-01-14'),(830,2036,'_wp_old_date','2023-01-14'),(831,2093,'_wp_old_date','2023-01-14'),(832,2015,'_wp_old_date','2023-01-14'),(833,2073,'_wp_old_date','2023-01-14'),(835,2194,'_powerkit_reading_time','0'),(836,2194,'_menu_item_type','post_type'),(837,2194,'_menu_item_menu_item_parent','0'),(838,2194,'_menu_item_object_id','2191'),(839,2194,'_menu_item_object','page'),(840,2194,'_menu_item_target',''),(841,2194,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(842,2194,'_menu_item_xfn',''),(843,2194,'_menu_item_url',''),(844,2195,'_powerkit_reading_time','0'),(845,2195,'_menu_item_type','post_type'),(846,2195,'_menu_item_menu_item_parent','0'),(847,2195,'_menu_item_object_id','2189'),(848,2195,'_menu_item_object','page'),(849,2195,'_menu_item_target',''),(850,2195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(851,2195,'_menu_item_xfn',''),(852,2195,'_menu_item_url',''),(853,2193,'_wp_trash_meta_status','publish'),(854,2193,'_wp_trash_meta_time','1674313409'),(855,2193,'_powerkit_reading_time','5'),(856,2196,'_wp_trash_meta_status','publish'),(857,2196,'_wp_trash_meta_time','1674313439'),(858,2196,'_powerkit_reading_time','1'),(859,2197,'_powerkit_reading_time','4'),(860,2197,'_edit_lock','1674313513:1'),(861,2197,'_wp_trash_meta_status','publish'),(862,2197,'_wp_trash_meta_time','1674313509'),(863,2199,'_wp_attached_file','2023/01/kev-kem-abou.jpg'),(864,2199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:358;s:4:\"file\";s:24:\"2023/01/kev-kem-abou.jpg\";s:8:\"filesize\";i:28208;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6192;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4067;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-768x344.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25376;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:22:\"kev-kem-abou-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1752;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9367;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:22:\"kev-kem-abou-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1752;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9367;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:22:\"kev-kem-abou-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1752;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4859;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10726;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7724;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-380x170.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8854;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:24:\"kev-kem-abou-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(865,2206,'_wp_attached_file','2023/01/care-1.jpg'),(866,2206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2023/01/care-1.jpg\";s:8:\"filesize\";i:30050;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"care-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10816;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"care-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:4666;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"care-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45989;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:16:\"care-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1928;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11672;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:16:\"care-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1928;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11672;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:16:\"care-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1928;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:18:\"care-1-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6114;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-1-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14685;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:18:\"care-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10509;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:18:\"care-1-380x238.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15556;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:18:\"care-1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37243;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:18:\"care-1-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(867,2211,'_wp_attached_file','2023/01/care-2.jpg'),(868,2211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2023/01/care-2.jpg\";s:8:\"filesize\";i:23381;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"care-2-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"care-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5052;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"care-2-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35669;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:16:\"care-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2073;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11317;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:16:\"care-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2073;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11317;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:16:\"care-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2073;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:18:\"care-2-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6121;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-2-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12791;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:18:\"care-2-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9632;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:18:\"care-2-380x238.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13547;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:18:\"care-2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28389;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:18:\"care-2-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";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:{}}}'),(869,2215,'_wp_attached_file','2023/01/care-3.jpg'),(870,2215,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2023/01/care-3.jpg\";s:8:\"filesize\";i:70732;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"care-3-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20061;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"care-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8572;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"care-3-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89608;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:16:\"care-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2950;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23114;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:16:\"care-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2950;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23114;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:16:\"care-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2950;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:18:\"care-3-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10846;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-3-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28082;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:18:\"care-3-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19522;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:18:\"care-3-380x238.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29865;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:18:\"care-3-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86581;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:18:\"care-3-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(871,2217,'_wp_attached_file','2023/01/care-4.jpg'),(872,2217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2023/01/care-4.jpg\";s:8:\"filesize\";i:41462;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"care-4-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"care-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7421;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"care-4-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58338;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:16:\"care-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2773;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17260;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:16:\"care-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2773;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17260;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:16:\"care-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2773;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:18:\"care-4-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8900;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-4-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20434;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:18:\"care-4-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14770;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:18:\"care-4-380x238.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21446;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:18:\"care-4-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50043;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:18:\"care-4-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(873,2221,'_wp_attached_file','2023/01/care-5.jpg'),(874,2221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2023/01/care-5.jpg\";s:8:\"filesize\";i:32488;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"care-5-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10076;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"care-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4792;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"care-5-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46805;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:16:\"care-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1932;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11599;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:16:\"care-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1932;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11599;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:16:\"care-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1932;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:18:\"care-5-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5799;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-5-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14178;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:18:\"care-5-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9827;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:18:\"care-5-380x238.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14855;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:18:\"care-5-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39900;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:18:\"care-5-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27525;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(875,2224,'_wp_attached_file','2023/01/care-6.jpg'),(876,2224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2023/01/care-6.jpg\";s:8:\"filesize\";i:19110;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"care-6-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6971;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"care-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4758;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"care-6-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27037;}s:10:\"cnvs-small\";a:5:{s:4:\"file\";s:16:\"care-6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2011;}s:14:\"cnvs-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8863;}s:8:\"pk-small\";a:5:{s:4:\"file\";s:16:\"care-6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2011;}s:12:\"pk-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8863;}s:10:\"csco-small\";a:5:{s:4:\"file\";s:16:\"care-6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2011;}s:17:\"csco-intermediate\";a:5:{s:4:\"file\";s:18:\"care-6-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4618;}s:14:\"csco-thumbnail\";a:5:{s:4:\"file\";s:18:\"care-6-380x220.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9122;}s:26:\"csco-thumbnail-alternative\";a:5:{s:4:\"file\";s:18:\"care-6-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6812;}s:24:\"csco-thumbnail-uncropped\";a:5:{s:4:\"file\";s:18:\"care-6-380x238.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9567;}s:11:\"csco-medium\";a:5:{s:4:\"file\";s:18:\"care-6-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23322;}s:23:\"csco-medium-alternative\";a:5:{s:4:\"file\";s:18:\"care-6-560x336.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16511;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext 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,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext 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',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=2231 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2023-01-14 10:32:07','2023-01-14 10:32:07','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1673717001215\"} -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','KevKem Chiropractic!','','publish','open','open','','hello-world','','','2023-01-14 19:07:14','2023-01-14 19:07:14','',0,'http://192.168.1.140:8011/?p=1',0,'post','',1),(2,1,'2023-01-14 10:32:07','2023-01-14 10:32:07','<!-- 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://192.168.1.140:8011/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2023-01-14 10:32:07','2023-01-14 10:32:07','',0,'http://192.168.1.140:8011/?page_id=2',0,'page','',0),(3,1,'2023-01-14 10:32:07','2023-01-14 10:32:07','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://192.168.1.140:8011.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-01-14 10:32:07','2023-01-14 10:32:07','',0,'http://192.168.1.140:8011/?page_id=3',0,'page','',0),(5,1,'2023-01-14 10:37:52','2023-01-14 10:37:52','{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 10:37:43\"\n }\n}','','','trash','closed','closed','','69fb03f2-e73c-444b-b4a1-f3ae3599bd6e','','','2023-01-14 10:37:52','2023-01-14 10:37:52','',0,'http://192.168.1.140:8011/?p=5',0,'customize_changeset','',0),(7,1,'2023-01-14 10:57:16','2023-01-14 10:57:16','<label> Your name\n [text* your-name autocomplete:name] </label>\n\n<label> Your email\n [email* your-email autocomplete:email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@192.168.1.140>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@192.168.1.140>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2023-01-14 10:57:16','2023-01-14 10:57:16','',0,'http://192.168.1.140:8011/?post_type=wpcf7_contact_form&p=7',0,'wpcf7_contact_form','',0),(8,1,'2023-01-14 11:00:11','2023-01-14 11:00:11',' <!-- wp:heading {\"align\":\"center\",\"level\":1,\"canvasClassName\":\"cnvs-block-core-heading-1\"} -->\n <h1 class=\"has-text-align-center\">I\'m working on something amazing!<br>But don\'t worry, I\'ll back soon. </h1>\n <!-- /wp:heading -->\n ','Coming Soon','','publish','closed','closed','','coming-soon','','','2023-01-14 11:00:11','2023-01-14 11:00:11','',0,'http://192.168.1.140:8011/?page_id=8',0,'page','',0),(9,1,'2023-01-14 11:01:43','2023-01-14 11:01:43','','One Click Demo Import - log_file_2023-01-14__11-01-43','','inherit','open','closed','','one-click-demo-import-log_file_2023-01-14__11-01-43','','','2023-01-14 11:01:43','2023-01-14 11:01:43','',0,'http://192.168.1.140:8011/wp-content/uploads/2023/01/log_file_2023-01-14__11-01-43.txt',0,'attachment','text/plain',0),(67,1,'2019-10-14 14:31:04','2019-10-14 14:31:04','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Vici Consequat Justo Enim Adipiscing Luctus Nullam Fringilla Pretium','Vel eget luctus a sem pede sit metus nulla maecenas. Etiam eleifend curabitur lorem. Viverra faucibus sem ultricies vitae etiam quam id feugiat in tellus vici ut.','publish','open','open','','vici-consequat-justo-enim-adipiscing-luctus','','','2019-10-14 14:31:04','2019-10-14 14:31:04','',0,'https://codesupply.co/?p=67',0,'post','',0),(168,1,'2018-06-22 23:23:36','2018-06-22 23:23:36','','demo-image-00001','Sit dis sed ante','inherit','open','closed','','demo-image-00001','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',67,'https://cloud.codesupply.co/demo-content/demo-image-00001.jpg',0,'attachment','image/jpeg',0),(169,1,'2018-12-22 21:48:00','2018-12-22 21:48:00','','demo-image-00002','Magnis nam penatibus','inherit','open','closed','','demo-image-00002','','','2018-12-22 21:48:00','2018-12-22 21:48:00','',0,'https://cloud.codesupply.co/demo-content/demo-image-00002.jpg',0,'attachment','image/jpeg',0),(170,1,'2018-06-30 13:10:41','2018-06-30 13:10:41','','demo-image-00003','Pede nascetur eros','inherit','open','closed','','demo-image-00003','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',67,'https://cloud.codesupply.co/demo-content/demo-image-00003.jpg',0,'attachment','image/jpeg',0),(171,1,'2018-06-29 22:19:23','2018-06-29 22:19:23','','demo-image-00004','Faucibus etiam libero','inherit','open','closed','','demo-image-00004','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',67,'https://cloud.codesupply.co/demo-content/demo-image-00004.jpg',0,'attachment','image/jpeg',0),(172,1,'2018-12-25 16:06:18','2018-12-25 16:06:18','','demo-image-00005','Pellentesque venenatis ac','inherit','open','closed','','demo-image-00005','','','2018-12-25 16:06:18','2018-12-25 16:06:18','',0,'https://cloud.codesupply.co/demo-content/demo-image-00005.jpg',0,'attachment','image/jpeg',0),(173,1,'2018-04-16 15:30:11','2018-04-16 15:30:11','','demo-image-00006','Viverra faucibus sem','inherit','open','closed','','demo-image-00006','','','2018-04-16 15:30:11','2018-04-16 15:30:11','',0,'https://cloud.codesupply.co/demo-content/demo-image-00006.jpg',0,'attachment','image/jpeg',0),(259,1,'2019-10-06 21:37:57','2019-10-06 21:37:57','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Ipsum Sociis Ac Pretium Enim Neque Rhoncus Adipiscing Luctus','','publish','open','open','','ipsum-sociis-ac-pretium-enim-neque-rhoncus-adipiscing-luctus','','','2019-10-06 21:37:57','2019-10-06 21:37:57','',0,'https://codesupply.co/vici-consequat-justo-enim-adipiscing-luctus-nullam-fringilla-pretium/',0,'post','',0),(260,1,'2019-04-30 12:43:42','2019-04-30 12:43:42','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Nunc libero etiam enim','','publish','open','open','','nunc-libero-etiam-enim','','','2019-04-30 12:43:42','2019-04-30 12:43:42','',0,'https://codesupply.co/nunc-libero-etiam-enim/',0,'post','',0),(261,1,'2019-05-11 04:13:25','2019-05-11 04:13:25','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Pellentesque porttitor nec amet','','publish','open','open','','pellentesque-porttitor-nec-amet','','','2019-05-11 04:13:25','2019-05-11 04:13:25','',0,'https://codesupply.co/pellentesque-porttitor-nec-amet/',0,'post','',0),(262,1,'2019-08-25 13:04:21','2019-08-25 13:04:21','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Tellus Justo Ipsum Sociis Neque Rhoncus Ac Pellentesque','','publish','open','open','','tellus-justo-ipsum-sociis-neque-rhoncus-ac-pellentesque','','','2019-08-25 13:04:21','2019-08-25 13:04:21','',0,'https://codesupply.co/tellus-justo-ipsum-sociis-neque-rhoncus-ac-pellentesque/',0,'post','',0),(263,1,'2019-02-07 04:29:11','2019-02-07 04:29:11','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Ante Nulla Dapibus Quis Sit Semper Metus Eget Libero','','publish','open','open','','ante-nulla-dapibus-quis-sit-semper-metus-eget-libero','','','2019-02-07 04:29:11','2019-02-07 04:29:11','',0,'https://codesupply.co/ante-nulla-dapibus-quis-sit-semper-metus-eget-libero/',0,'post','',0),(264,1,'2019-05-05 00:48:31','2019-05-05 00:48:31','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Et Natoque Vitae Quam Libero Massa Venenatis','','publish','open','open','','et-natoque-vitae-quam-libero-massa-venenatis','','','2019-05-05 00:48:31','2019-05-05 00:48:31','',0,'https://codesupply.co/et-natoque-vitae-quam-libero-massa-venenatis/',0,'post','',0),(265,1,'2019-10-04 23:01:55','2019-10-04 23:01:55','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Tellus Etiam Commodo Pellentesque Nec Elit Eu Adipiscing Quis Massa','','publish','open','open','','tellus-etiam-commodo-pellentesque-nec-elit-eu-adipiscing-quis-massa','','','2019-10-04 23:01:55','2019-10-04 23:01:55','',0,'https://codesupply.co/tellus-etiam-commodo-pellentesque-nec-elit-eu-adipiscing-quis-massa/',0,'post','',0),(266,1,'2019-06-19 11:29:46','2019-06-19 11:29:46','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Pulvinar Semper Nec Libero Enim Pede Nascetur Massa','','publish','open','open','','pulvinar-semper-nec-libero-enim-pede-nascetur-massa','','','2019-06-19 11:29:46','2019-06-19 11:29:46','',0,'https://codesupply.co/pulvinar-semper-nec-libero-enim-pede-nascetur-massa/',0,'post','',0),(267,1,'2019-10-24 20:12:00','2019-10-24 20:12:00','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Dictum Dapibus Nam Massa Veni Tempus','','publish','open','open','','dictum-dapibus-nam-massa-veni-tempus','','','2019-10-24 20:12:00','2019-10-24 20:12:00','',0,'https://codesupply.co/dictum-dapibus-nam-massa-veni-tempus/',0,'post','',0),(268,1,'2019-07-16 02:50:07','2019-07-16 02:50:07','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Natoque Eget Quis Ante Nam Lorem Imperdiet','','publish','open','open','','natoque-eget-quis-ante-nam-lorem-imperdiet','','','2019-07-16 02:50:07','2019-07-16 02:50:07','',0,'https://codesupply.co/natoque-eget-quis-ante-nam-lorem-imperdiet/',0,'post','',0),(269,1,'2019-10-19 21:49:17','2019-10-19 21:49:17','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Tincidunt Eget Integer Quisque Cum Donec Quam Et Tellus Venenatis Sit Aenean','','publish','open','open','','tincidunt-eget-integer-quisque-cum-donec-quam-et-tellus-venenatis-sit-aenean','','','2019-10-19 21:49:17','2019-10-19 21:49:17','',0,'https://codesupply.co/tincidunt-eget-integer-quisque-cum-donec-quam-et-tellus-venenatis-sit-aenean/',0,'post','',0),(270,1,'2019-01-10 01:54:45','2019-01-10 01:54:45','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Eget Viverra Pellentesque Nullam Ultricies','','publish','open','open','','eget-viverra-pellentesque-nullam-ultricies','','','2019-01-10 01:54:45','2019-01-10 01:54:45','',0,'https://codesupply.co/eget-viverra-pellentesque-nullam-ultricies/',0,'post','',0),(271,1,'2019-03-04 10:23:26','2019-03-04 10:23:26','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Donec Cras Ut Eget Justo Nec Semper Sapien Viverra Ante','','publish','open','open','','donec-cras-ut-eget-justo-nec-semper-sapien-viverra-ante','','','2019-03-04 10:23:26','2019-03-04 10:23:26','',0,'https://codesupply.co/donec-cras-ut-eget-justo-nec-semper-sapien-viverra-ante/',0,'post','',0),(272,1,'2019-06-09 02:14:07','2019-06-09 02:14:07','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Phasellus Rhoncus Vitae Tellus Amet Nec Dis','','publish','open','open','','phasellus-rhoncus-vitae-tellus-amet-nec-dis','','','2019-06-09 02:14:07','2019-06-09 02:14:07','',0,'https://codesupply.co/phasellus-rhoncus-vitae-tellus-amet-nec-dis/',0,'post','',0),(273,1,'2019-05-04 14:17:04','2019-05-04 14:17:04','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Et Ante Donec Rutrum Integer Amet Ligula Vel Imperdiet Eu Viverra Eget','','publish','open','open','','et-ante-donec-rutrum-integer-amet-ligula-vel-imperdiet-eu-viverra-eget','','','2019-05-04 14:17:04','2019-05-04 14:17:04','',0,'https://codesupply.co/et-ante-donec-rutrum-integer-amet-ligula-vel-imperdiet-eu-viverra-eget/',0,'post','',0),(274,1,'2019-11-20 00:39:00','2019-11-20 00:39:00','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Sit Ligula Metus Sem. Eget Elementum Amet Tellus','','publish','open','open','','sit-ligula-metus-sem-eget-elementum-amet-tellus','','','2019-11-20 00:39:00','2019-11-20 00:39:00','',0,'https://codesupply.co/sit-ligula-metus-sem-eget-elementum-amet-tellus/',0,'post','',0),(275,1,'2019-02-26 22:29:27','2019-02-26 22:29:27','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Justo Eleifend Venenatis Rhoncus Natoque Pretium Etiam Odio','','publish','open','open','','justo-eleifend-venenatis-rhoncus-natoque-pretium-etiam-odio','','','2019-02-26 22:29:27','2019-02-26 22:29:27','',0,'https://codesupply.co/justo-eleifend-venenatis-rhoncus-natoque-pretium-etiam-odio/',0,'post','',0),(276,1,'2019-01-03 23:17:05','2019-01-03 23:17:05','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Vitae Nec Adipiscing Quis Semper Quam Tellus Nascetur Mollis','','publish','open','open','','vitae-nec-adipiscing-quis-semper-quam-tellus-nascetur-mollis','','','2019-01-03 23:17:05','2019-01-03 23:17:05','',0,'https://codesupply.co/vitae-nec-adipiscing-quis-semper-quam-tellus-nascetur-mollis/',0,'post','',0),(277,1,'2019-11-09 19:48:55','2019-11-09 19:48:55','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Nisi Dolor Etiam Eleifend Pretium Libero Quis Amet Nam Vel A Consequat Penatibus','','publish','open','open','','nisi-dolor-etiam-eleifend-pretium-libero-quis-amet-nam-vel-a-consequat-penatibus','','','2019-11-09 19:48:55','2019-11-09 19:48:55','',0,'https://codesupply.co/nisi-dolor-etiam-eleifend-pretium-libero-quis-amet-nam-vel-a-consequat-penatibus/',0,'post','',0),(278,1,'2019-11-09 22:57:07','2019-11-09 22:57:07','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Eleifend Amet Penatibus Etiam','','publish','open','open','','eleifend-amet-penatibus-etiam','','','2019-11-09 22:57:07','2019-11-09 22:57:07','',0,'https://codesupply.co/eleifend-amet-penatibus-etiam/',0,'post','',0),(279,1,'2019-02-22 23:05:31','2019-02-22 23:05:31','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Sapien Lorem Libero Augue Tincidunt','','publish','open','open','','sapien-lorem-libero-augue-tincidunt','','','2019-02-22 23:05:31','2019-02-22 23:05:31','',0,'https://codesupply.co/sapien-lorem-libero-augue-tincidunt/',0,'post','',0),(280,1,'2019-05-08 20:17:48','2019-05-08 20:17:48','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Tiam Ac Felis Quam Fringilla Ante Ultricies Enim Pede Eget','','publish','open','open','','tiam-ac-felis-quam-fringilla-ante-ultricies-enim-pede-eget','','','2019-05-08 20:17:48','2019-05-08 20:17:48','',0,'https://codesupply.co/tiam-ac-felis-quam-fringilla-ante-ultricies-enim-pede-eget/',0,'post','',0),(281,1,'2019-09-19 02:53:07','2019-09-19 02:53:07','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Quis Nascetur Aenean Ipsum Vici','','publish','open','open','','quis-nascetur-aenean-ipsum-vici','','','2019-09-19 02:53:07','2019-09-19 02:53:07','',0,'https://codesupply.co/quis-nascetur-aenean-ipsum-vici/',0,'post','',0),(282,1,'2019-07-24 18:24:54','2019-07-24 18:24:54','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Amet Consequat Sapien Aliquam Aenean Rhoncus Pellentesque Nunc','','publish','open','open','','amet-consequat-sapien-aliquam-aenean-rhoncus-pellentesque-nunc','','','2019-07-24 18:24:54','2019-07-24 18:24:54','',0,'https://codesupply.co/amet-consequat-sapien-aliquam-aenean-rhoncus-pellentesque-nunc/',0,'post','',0),(283,1,'2019-01-05 14:10:04','2019-01-05 14:10:04','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Dapibus Viverra Eleifend Rhoncus Eros Aliquam Vivamus','','publish','open','open','','dapibus-viverra-eleifend-rhoncus-eros-aliquam-vivamus','','','2019-01-05 14:10:04','2019-01-05 14:10:04','',0,'https://codesupply.co/dapibus-viverra-eleifend-rhoncus-eros-aliquam-vivamus/',0,'post','',0),(284,1,'2019-03-09 15:06:49','2019-03-09 15:06:49','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Nulla Neque Consectetuer Ac Mus Donec Penatibus Consequat Ut Ultricies','','publish','open','open','','nulla-neque-consectetuer-ac-mus-donec-penatibus-consequat-ut-ultricies','','','2019-03-09 15:06:49','2019-03-09 15:06:49','',0,'https://codesupply.co/nulla-neque-consectetuer-ac-mus-donec-penatibus-consequat-ut-ultricies/',0,'post','',0),(285,1,'2019-11-17 03:01:00','2019-11-17 03:01:00','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Penatibus Nulla Ut Sit Etiam Sociis Nisi Porttitor','','publish','open','open','','penatibus-nulla-ut-sit-etiam-sociis-nisi-porttitor','','','2019-11-17 03:01:00','2019-11-17 03:01:00','',0,'https://codesupply.co/penatibus-nulla-ut-sit-etiam-sociis-nisi-porttitor/',0,'post','',0),(286,1,'2019-08-26 04:06:32','2019-08-26 04:06:32','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Vel Consequat Eget Eros Ut Sem Nunc Augue Donec Aenean Nec Tellus Vitae Vulputate','','publish','open','open','','vel-consequat-eget-eros-ut-sem-nunc-augue-donec-aenean-nec-tellus-vitae-vulputate','','','2019-08-26 04:06:32','2019-08-26 04:06:32','',0,'https://codesupply.co/vel-consequat-eget-eros-ut-sem-nunc-augue-donec-aenean-nec-tellus-vitae-vulputate/',0,'post','',0),(287,1,'2019-02-03 03:05:51','2019-02-03 03:05:51','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Vel Amet Pulvinar Massa Integer Libero Dui Tempus Ante Justo Ut Viverra','','publish','open','open','','vel-amet-pulvinar-massa-integer-libero-dui-tempus-ante-justo-ut-viverra','','','2019-02-03 03:05:51','2019-02-03 03:05:51','',0,'https://codesupply.co/vel-amet-pulvinar-massa-integer-libero-dui-tempus-ante-justo-ut-viverra/',0,'post','',0),(288,1,'2019-11-01 01:38:00','2019-11-01 01:38:00','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523537732\"} -->\n<p>Aenean eleifend ante maecenas pulvinar montes lorem et pede dis dolor pretium donec dictum. Vici consequat justo enim. Venenatis eget adipiscing luctus lorem. Adipiscing veni amet luctus enim sem libero tellus viverra venenatis aliquam. Commodo natoque quam pulvinar elit.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/toc {\"canvasLocation\":\"root\"} /-->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574523538056\"} -->\n<h2>Nam condimentum varius justo</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535124\"} -->\n<p>Eget aenean tellus venenatis. Donec odio tempus. Felis arcu <a href=\"#\">pretium metus</a> nullam quam aenean sociis quis sem neque vici libero. Venenatis nullam fringilla pretium magnis aliquam nunc vulputate integer augue ultricies cras. Eget viverra feugiat cras ut. Sit natoque montes tempus ligula eget vitae pede rhoncus maecenas consectetuer commodo condimentum aenean.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1574523538327\"} -->\n<blockquote class=\"wp-block-quote\"><p>Quis adipiscing ligula donec ullamcorper tellus. Id odio vulputate aliquam nullam vitae tincidunt semper etiam quam donec quis</p><cite>Donec Massa Integer</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538404\"} -->\n<p>Ut eu sem aenean imperdiet. Hendrerit penatibus <strong>sem adipiscing</strong> aliquet consequat nec orci nascetur.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538557\"} -->\n<p>Etiam massa quam dolor aenean maecenas sociis tellus consectetuer. In sit donec massa integer nisi mus viverra odio ultricies ridiculus. Sapien sem lorem. Aenean sem venenatis arcu tellus fringilla vulputate quis vici nullam nec. Cum quam veni lorem elit aliquet pede in enim. Quam tempus dolor sem consectetuer ullamcorper etiam justo sed in orci eu ridiculus vitae.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"className\":\"pk-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1574523538750\"} -->\n<ol class=\"pk-list-styled\"><li>Mollis lorem vitae varius.</li><li>Felis laoreet justo aenean curabitur <a href=\"#\">donec consequat</a> sit nascetur tellus dapibus.</li><li>Maecenas imperdiet vitae vidi vel parturient eleifend mollis eu libero.</li><li>Dictum libero felis feugiat fringilla sed etiam vel sem nullam elit vitae eu.</li><li>Felis nec eget curabitur sapien nisi aliquam pretium donec dapibus feugiat. Faucibus enim venenatis mus semper.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535153\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538758\"} -->\n<p>Enim dapibus ante sapien eleifend <em>dis vulputate</em> quis viverra ultricies vitae eros. Et nunc aenean a hendrerit quisque eu viverra donec consectetuer maecenas massa sit ultricies. Tellus ante quis vici elementum etiam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574523535163\"} -->\n<h2>Faucibus nullam luctus felis pretium donec</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535169\"} -->\n<p>Amet tempus viverra ut libero nascetur id veni ridiculus rhoncus. Dis donec cras ultricies. Eros vivamus enim nec nulla semper imperdiet aenean montes dictum porttitor metus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535173\"} -->\n<p>Sit dis sed ante integer ullamcorper vel donec tellus a. Nisi vici vulputate elit quis adipiscing aenean imperdiet justo varius. Vel <strong>eget luctus</strong> a sem pede sit metus nulla maecenas. Etiam eleifend curabitur lorem. Viverra faucibus sem ultricies vitae etiam quam id feugiat in tellus vici ut. Tellus quam varius commodo luctus aliquam nec amet nullam quis viverra sit fringilla consectetuer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"pk-list-positive\",\"canvasClassName\":\"cnvs-block-core-list-1574523535179\"} -->\n<ul class=\"pk-list-positive\"><li>Ultricies sit semper leo dolor maecenas.</li><li>Magnis nam penatibus justo nec quis eget amet venenatis integer rutrum eleifend commodo tincidunt.</li><li>Aenean nunc pretium lorem ullamcorper leo.</li><li>Nec arcu ullamcorper lorem mus eu.</li><li>Elit natoque mollis quisque.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535185\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535189\"} -->\n<p>Metus eros tellus viverra justo sapien quam nisi odio eu nullam. Justo neque nam ipsum ullamcorper lorem pellentesque donec condimentum porttitor. Orci ac tempus ridiculus quis maecenas imperdiet neque nascetur veni.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1574523535194\"} -->\n<h3>Tincidunt veni tellus orci aenean consectetuer</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535200\"} -->\n<p>Sociis consequat adipiscing sit curabitur donec sem luctus cras natoque vulputate dolor eget dapibus. Nec vitae eros ullamcorper laoreet dapibus mus ac ante viverra. A aenean sit augue curabitur et parturient nisi sed enim. Nulla nec quis sit quisque sem commodo ultricies neque. Lorem eget venenatis dui ante luctus ultricies tellus montes. Quis in sapien tempus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535211\"} -->\n<p>Aliquam enim arcu ut. Vulputate pede nisi arcu ut nullam. Ac elit ut ullamcorper aenean dolor pede nec aliquam. Cum enim a. Ut dui phasellus cras. Vivamus pulvinar justo faucibus nec semper lorem nullam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535215\"} -->\n<p>Ut pede leo libero cum ridiculus quis arcu natoque ullamcorper eget nulla sociis. Semper condimentum quam integer lorem. Amet ac <em>dis semper eget</em> a dictum ligula. Justo eu ut. Id ridiculus lorem ut amet dis orci tellus etiam aenean pellentesque. Ultricies dui vel ipsum eleifend dolor ante donec justo nullam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535219\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1574523535224\"} -->\n<h3>Eu ridiculus fringilla</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535228\"} -->\n<p>Nam dictum vitae penatibus ligula id sem eget ante faucibus feugiat nascetur vel. Pretium vitae mus rhoncus sit maecenas quam felis orci adipiscing. Aenean parturient eget quam. Leo vel lorem sociis phasellus arcu dolor. Dis donec eu pede.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535233\"} -->\n<p>Venenatis ante veni nullam ridiculus penatibus <a href=\"#\">vidi eu consectetuer</a> integer. Vulputate ipsum lorem nascetur rhoncus. Aliquam vitae elit blandit enim eget laoreet. Dapibus leo sociis quis nulla adipiscing amet integer sem ullamcorper in maecenas eu imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535239\"} -->\n<p>Ante blandit amet ultricies ut in nam massa rhoncus. Eget eu massa nisi quis viverra dapibus aliquam. Id ridiculus lorem ut amet dis orci tellus etiam aenean pellentesque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535243\"} -->\n<p>Maecenas tempus aenean nulla <strong>viverra neque</strong> vel nec cras justo sapien condimentum ut varius. Blandit sem etiam vel nullam vulputate sociis amet varius dolor. Vitae a ut. Etiam rhoncus ante sit. Nisi nullam donec dui eu phasellus a elementum elit faucibus nec. Eros eu pulvinar pede luctus sit aenean lorem.</p>\n<!-- /wp:paragraph -->','Etiam Ante Sem Enim Ipsum Amet Eros Ligula Ullamcorper Vivamus Eu','','publish','open','open','','etiam-ante-sem-enim-ipsum-amet-eros-ligula-ullamcorper-vivamus-eu','','','2019-11-01 01:38:00','2019-11-01 01:38:00','',0,'https://codesupply.co/etiam-ante-sem-enim-ipsum-amet-eros-ligula-ullamcorper-vivamus-eu/',0,'post','',0),(289,1,'2019-02-24 19:13:59','2019-02-24 19:13:59','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Et Tellus Id Magnis Nisi Maecenas Eget Nam','','publish','open','open','','et-tellus-id-magnis-nisi-maecenas-eget-nam','','','2019-02-24 19:13:59','2019-02-24 19:13:59','',0,'https://codesupply.co/et-tellus-id-magnis-nisi-maecenas-eget-nam/',0,'post','',0),(290,1,'2019-02-14 19:33:48','2019-02-14 19:33:48','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Rhoncus Ante Sit Nulla Sed Tellus Blandit Eleifend Nascetur','','publish','open','open','','rhoncus-ante-sit-nulla-sed-tellus-blandit-eleifend-nascetur','','','2019-02-14 19:33:48','2019-02-14 19:33:48','',0,'https://codesupply.co/rhoncus-ante-sit-nulla-sed-tellus-blandit-eleifend-nascetur/',0,'post','',0),(291,1,'2019-09-22 11:46:07','2019-09-22 11:46:07','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Massa Tincidunt Vel','','publish','open','open','','massa-tincidunt-vel','','','2019-09-22 11:46:07','2019-09-22 11:46:07','',0,'https://codesupply.co/massa-tincidunt-vel/',0,'post','',0),(292,1,'2019-01-19 14:34:23','2019-01-19 14:34:23','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Tempus Vitae Quis Rutrum Vel Ut Eget Eu Pulvinar Blandit','','publish','open','open','','tempus-vitae-quis-rutrum-vel-ut-eget-eu-pulvinar-blandit','','','2019-01-19 14:34:23','2019-01-19 14:34:23','',0,'https://codesupply.co/tempus-vitae-quis-rutrum-vel-ut-eget-eu-pulvinar-blandit/',0,'post','',0),(293,1,'2019-06-07 03:18:56','2019-06-07 03:18:56','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Leo A Vel Pretium Imperdiet Aenean','','publish','open','open','','leo-a-vel-pretium-imperdiet-aenean','','','2019-06-07 03:18:56','2019-06-07 03:18:56','',0,'https://codesupply.co/leo-a-vel-pretium-imperdiet-aenean/',0,'post','',0),(294,1,'2019-10-05 15:21:28','2019-10-05 15:21:28','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Maecenas Tincidunt Eget Libero Massa Vitae','','publish','open','open','','maecenas-tincidunt-eget-libero-massa-vitae','','','2019-10-05 15:21:28','2019-10-05 15:21:28','',0,'https://codesupply.co/maecenas-tincidunt-eget-libero-massa-vitae/',0,'post','',0),(295,1,'2019-08-17 14:06:35','2019-08-17 14:06:35','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','A Vivamus Penatibus Enim Sit Et Quam Vel Consequat','','publish','open','open','','a-vivamus-penatibus-enim-sit-et-quam-vel-consequat','','','2019-08-17 14:06:35','2019-08-17 14:06:35','',0,'https://codesupply.co/a-vivamus-penatibus-enim-sit-et-quam-vel-consequat/',0,'post','',0),(296,1,'2019-11-18 05:19:00','2019-11-18 05:19:00','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523537732\"} -->\n<p>Aenean eleifend ante maecenas pulvinar montes lorem et pede dis dolor pretium donec dictum. Vici consequat justo enim. Venenatis eget adipiscing luctus lorem. Adipiscing veni amet luctus enim sem libero tellus viverra venenatis aliquam. Commodo natoque quam pulvinar elit.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/toc {\"canvasLocation\":\"root\"} /-->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574523538056\"} -->\n<h2>Nam condimentum varius justo</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535124\"} -->\n<p>Eget aenean tellus venenatis. Donec odio tempus. Felis arcu <a href=\"#\">pretium metus</a> nullam quam aenean sociis quis sem neque vici libero. Venenatis nullam fringilla pretium magnis aliquam nunc vulputate integer augue ultricies cras. Eget viverra feugiat cras ut. Sit natoque montes tempus ligula eget vitae pede rhoncus maecenas consectetuer commodo condimentum aenean.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1574523538327\"} -->\n<blockquote class=\"wp-block-quote\"><p>Quis adipiscing ligula donec ullamcorper tellus. Id odio vulputate aliquam nullam vitae tincidunt semper etiam quam donec quis</p><cite>Donec Massa Integer</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538404\"} -->\n<p>Ut eu sem aenean imperdiet. Hendrerit penatibus <strong>sem adipiscing</strong> aliquet consequat nec orci nascetur.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538557\"} -->\n<p>Etiam massa quam dolor aenean maecenas sociis tellus consectetuer. In sit donec massa integer nisi mus viverra odio ultricies ridiculus. Sapien sem lorem. Aenean sem venenatis arcu tellus fringilla vulputate quis vici nullam nec. Cum quam veni lorem elit aliquet pede in enim. Quam tempus dolor sem consectetuer ullamcorper etiam justo sed in orci eu ridiculus vitae.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"className\":\"pk-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1574523538750\"} -->\n<ol class=\"pk-list-styled\"><li>Mollis lorem vitae varius.</li><li>Felis laoreet justo aenean curabitur <a href=\"#\">donec consequat</a> sit nascetur tellus dapibus.</li><li>Maecenas imperdiet vitae vidi vel parturient eleifend mollis eu libero.</li><li>Dictum libero felis feugiat fringilla sed etiam vel sem nullam elit vitae eu.</li><li>Felis nec eget curabitur sapien nisi aliquam pretium donec dapibus feugiat. Faucibus enim venenatis mus semper.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535153\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538758\"} -->\n<p>Enim dapibus ante sapien eleifend <em>dis vulputate</em> quis viverra ultricies vitae eros. Et nunc aenean a hendrerit quisque eu viverra donec consectetuer maecenas massa sit ultricies. Tellus ante quis vici elementum etiam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574523535163\"} -->\n<h2>Faucibus nullam luctus felis pretium donec</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535169\"} -->\n<p>Amet tempus viverra ut libero nascetur id veni ridiculus rhoncus. Dis donec cras ultricies. Eros vivamus enim nec nulla semper imperdiet aenean montes dictum porttitor metus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[172,171,173],\"canvasClassName\":\"cnvs-block-core-gallery-1574523658351\"} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/12/demo-image-00005-1-1160x1741.jpg\" alt=\"\" data-id=\"172\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/12/demo-image-00005-1.jpg\" data-link=\"http://codesupply.co/demo-image-00005/\" class=\"wp-image-172\"/><figcaption class=\"blocks-gallery-item__caption\">Pellentesque venenatis ac</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1-1160x1741.jpg\" alt=\"\" data-id=\"171\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1.jpg\" data-link=\"http://codesupply.co/2018/10/14/vici-consequat-justo-enim-adipiscing-luctus/demo-image-00004/\" class=\"wp-image-171\"/><figcaption class=\"blocks-gallery-item__caption\">Faucibus etiam libero</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/04/demo-image-00006-1-1160x1741.jpg\" alt=\"\" data-id=\"173\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/04/demo-image-00006-1.jpg\" data-link=\"http://codesupply.co/demo-image-00006/\" class=\"wp-image-173\"/><figcaption class=\"blocks-gallery-item__caption\">Viverra faucibus sem</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535173\"} -->\n<p>Sit dis sed ante integer ullamcorper vel donec tellus a. Nisi vici vulputate elit quis adipiscing aenean imperdiet justo varius. Vel <strong>eget luctus</strong> a sem pede sit metus nulla maecenas. Etiam eleifend curabitur lorem. Viverra faucibus sem ultricies vitae etiam quam id feugiat in tellus vici ut. Tellus quam varius commodo luctus aliquam nec amet nullam quis viverra sit fringilla consectetuer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"pk-list-positive\",\"canvasClassName\":\"cnvs-block-core-list-1574523535179\"} -->\n<ul class=\"pk-list-positive\"><li>Ultricies sit semper leo dolor maecenas.</li><li>Magnis nam penatibus justo nec quis eget amet venenatis integer rutrum eleifend commodo tincidunt.</li><li>Aenean nunc pretium lorem ullamcorper leo.</li><li>Nec arcu ullamcorper lorem mus eu.</li><li>Elit natoque mollis quisque.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535185\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535189\"} -->\n<p>Metus eros tellus viverra justo sapien quam nisi odio eu nullam. Justo neque nam ipsum ullamcorper lorem pellentesque donec condimentum porttitor. Orci ac tempus ridiculus quis maecenas imperdiet neque nascetur veni.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1574523535194\"} -->\n<h3>Tincidunt veni tellus orci aenean consectetuer</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535200\"} -->\n<p>Sociis consequat adipiscing sit curabitur donec sem luctus cras natoque vulputate dolor eget dapibus. Nec vitae eros ullamcorper laoreet dapibus mus ac ante viverra. A aenean sit augue curabitur et parturient nisi sed enim. Nulla nec quis sit quisque sem commodo ultricies neque. Lorem eget venenatis dui ante luctus ultricies tellus montes. Quis in sapien tempus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":170,\"canvasClassName\":\"cnvs-block-core-image-1574523535205\"} -->\n<figure class=\"wp-block-image\"><img src=\"http://192.168.1.140:8011/wp-content/uploads/2018/06/demo-image-00003.jpg\" alt=\"\" class=\"wp-image-170\"/><figcaption>Pede nascetur eros</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535211\"} -->\n<p>Aliquam enim arcu ut. Vulputate pede nisi arcu ut nullam. Ac elit ut ullamcorper aenean dolor pede nec aliquam. Cum enim a. Ut dui phasellus cras. Vivamus pulvinar justo faucibus nec semper lorem nullam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535215\"} -->\n<p>Ut pede leo libero cum ridiculus quis arcu natoque ullamcorper eget nulla sociis. Semper condimentum quam integer lorem. Amet ac <em>dis semper eget</em> a dictum ligula. Justo eu ut. Id ridiculus lorem ut amet dis orci tellus etiam aenean pellentesque. Ultricies dui vel ipsum eleifend dolor ante donec justo nullam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535219\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1574523535224\"} -->\n<h3>Eu ridiculus fringilla</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535228\"} -->\n<p>Nam dictum vitae penatibus ligula id sem eget ante faucibus feugiat nascetur vel. Pretium vitae mus rhoncus sit maecenas quam felis orci adipiscing. Aenean parturient eget quam. Leo vel lorem sociis phasellus arcu dolor. Dis donec eu pede.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[172,171,173],\"canvasClassName\":\"cnvs-block-core-gallery-1574523681348\"} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/12/demo-image-00005-1-1160x1741.jpg\" alt=\"\" data-id=\"172\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/12/demo-image-00005-1.jpg\" data-link=\"http://codesupply.co/demo-image-00005/\" class=\"wp-image-172\"/><figcaption class=\"blocks-gallery-item__caption\">Pellentesque venenatis ac</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1-1160x1741.jpg\" alt=\"\" data-id=\"171\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1.jpg\" data-link=\"http://codesupply.co/2018/10/14/vici-consequat-justo-enim-adipiscing-luctus/demo-image-00004/\" class=\"wp-image-171\"/><figcaption class=\"blocks-gallery-item__caption\">Faucibus etiam libero</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/04/demo-image-00006-1-1160x1741.jpg\" alt=\"\" data-id=\"173\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/04/demo-image-00006-1.jpg\" data-link=\"http://codesupply.co/demo-image-00006/\" class=\"wp-image-173\"/><figcaption class=\"blocks-gallery-item__caption\">Viverra faucibus sem</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535233\"} -->\n<p>Venenatis ante veni nullam ridiculus penatibus <a href=\"#\">vidi eu consectetuer</a> integer. Vulputate ipsum lorem nascetur rhoncus. Aliquam vitae elit blandit enim eget laoreet. Dapibus leo sociis quis nulla adipiscing amet integer sem ullamcorper in maecenas eu imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535239\"} -->\n<p>Ante blandit amet ultricies ut in nam massa rhoncus. Eget eu massa nisi quis viverra dapibus aliquam. Id ridiculus lorem ut amet dis orci tellus etiam aenean pellentesque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535243\"} -->\n<p>Maecenas tempus aenean nulla <strong>viverra neque</strong> vel nec cras justo sapien condimentum ut varius. Blandit sem etiam vel nullam vulputate sociis amet varius dolor. Vitae a ut. Etiam rhoncus ante sit. Nisi nullam donec dui eu phasellus a elementum elit faucibus nec. Eros eu pulvinar pede luctus sit aenean lorem.</p>\n<!-- /wp:paragraph -->','A Pretium Enim Dolor Donec Eu Venenatis Curabitur','','publish','open','open','','a-pretium-enim-dolor-donec-eu-venenatis-curabitur','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',0,'https://codesupply.co/a-pretium-enim-dolor-donec-eu-venenatis-curabitur/',0,'post','',0),(297,1,'2019-07-15 07:06:10','2019-07-15 07:06:10','<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459365\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Structured gripped tape invisible moulded cups for sauppor firm hold strong powermesh front liner sport detail. Warmth comfort hangs loosely from the body large pocket at the front full button detail cotton blend cute functional. Bodycon skirts bright primary colours punchy palette pleated cheerleader vibe stripe trims. Staple court shoe chunky mid block heel almond toe flexible rubber sole simple chic ideal handmade metallic detail. Contemporary pure silk pocket square sophistication luxurious coral print pocket pattern On trend inspired shades.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459374\"} -->\n<p>Striking pewter studded epaulettes silver zips inner drawstring waist channel urban edge single-breasted jacket.&nbsp;Engraved attention to detail elegant with neutral colours cheme quartz leather strap fastens with a pin a buckle clasp. Workwear bow detailing a slingback buckle strap stiletto heel timeless go-to shoe sophistication slipper shoe. Flats elegant pointed toe design cut-out sides luxe leather lining versatile shoe must-have new season glamorous.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more {\"canvasClassName\":\"cnvs-block-core-more-1569250459382\"} -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1569250459387\"} -->\n<blockquote class=\"wp-block-quote\"><p>Knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral.</p><cite>Timeless clean perfume</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459394\"} -->\n<p>Foam padding in the insoles leather finest quality staple flat slip-on design pointed toe off-duty shoe. Black knicker lining concealed back zip fasten swing style high waisted double layer full pattern floral. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1569250459398\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Crisp fresh iconic elegant timeless clean perfume</li><li>Neck straight sharp silhouette and dart detail</li><li>Machine wash cold slim fit premium stretch selvedge denim comfortable low waist</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569250459405\"} -->\n<p>See-through delicate embroidered organza blue lining luxury acetate-mix stretch pleat detailing. Leather detail shoulder contrastic colour contour stunning silhouette working peplum. Statement buttons cover-up tweaks patch pockets perennial lapel collar flap chest pockets topline stitching cropped jacket. Effortless comfortable full leather lining eye-catching unique detail to the toe low \'cut-away\' sides clean and sleek. Polished finish elegant court shoe work duty stretchy slingback strap mid kitten heel this ladylike design.</p>\n<!-- /wp:paragraph -->','Integer Maecenas Eget Viverra','Aenean eleifend ante maecenas pulvinar montes lorem et pede dis dolor pretium donec dictum. Vici consequat justo enim. Venenatis eget adipiscing luctus lorem.','publish','open','open','','integer-maecenas-eget-viverra','','','2019-07-15 07:06:10','2019-07-15 07:06:10','',0,'https://codesupply.co/integer-maecenas-eget-viverra/',0,'post','',0),(342,1,'2023-01-21 15:05:09','2018-07-01 03:33:29','','Features','','publish','closed','closed','','features','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'https://codesupply.co/?p=342',5,'nav_menu_item','',0),(726,1,'2018-06-25 12:27:53','2018-06-25 12:27:53','<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1574515939981\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574515940052\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1574515986293\"} -->\n<h3>Contact Form 7 Integration </h3>\n<!-- /wp:heading -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574515940068\",\"canvasLocation\":\"default\",\"size\":8} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574515959951\"} -->\n<p> You may easily setup a contact form with the <a href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a> integrated support. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574515959879\"} -->\n<p>For more information please refer to the&nbsp;<a href=\"https://contactform7.com/getting-started-with-contact-form-7/\">Getting Started</a>&nbsp;tutorial, that explains how to display a form on your page, and how to customize your forms and mail.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:separator {\"className\":\"is-style-wide is-cnvs-separator-id-1574516040902\",\"canvasClassName\":\"cnvs-block-core-separator-1574516040898\",\"canvasBlockId\":1574516040902} -->\n<hr class=\"wp-block-separator is-style-wide is-cnvs-separator-id-1574516040902\"/>\n<!-- /wp:separator -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1574515998844\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574515998911\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1574516027132\"} -->\n<h3>Get in Touch ?</h3>\n<!-- /wp:heading -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574515998928\",\"canvasLocation\":\"default\",\"size\":8} -->\n<!-- wp:shortcode {\"canvasClassName\":\"cnvs-block-core-shortcode-1574516017831\"} -->\n[contact-form-7 id=\"5\" title=\"Contact Us\"]\n<!-- /wp:shortcode -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->','Contact Form','','publish','closed','closed','','contact-form','','','2018-06-25 12:27:53','2018-06-25 12:27:53','',0,'https://codesupply.co/?page_id=33',0,'page','',0),(728,1,'2018-06-28 15:31:46','2018-06-28 15:31:46','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564563575039\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564563576160\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564563576134\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/toc {\"canvasClassName\":\"cnvs-block-toc-1569597447269\",\"canvasLocation\":\"root\",\"depth\":1} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248868\"} -->\n<p>Tempus ante condimentum sem hendrerit eu phasellus vidi et quis orci arcu quam augue. Hendrerit amet id a condimentum semper felis. Donec sed lorem feugiat aenean ante cras elementum pede. Quis eget blandit felis et.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1569596248873\"} -->\n<h2>List</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248878\"} -->\n<p>Vici ac felis tellus in pretium. Etiam dui pretium eget vel laoreet cras rhoncus aenean imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/posts {\"canvasClassName\":\"cnvs-block-featured-posts-1569596324572\",\"canvasLocation\":\"root\",\"layout\":\"list\",\"showExcerpt\":false,\"layout_list_archivePostsCount\":3} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248887\"} -->\n<p>Vitae integer tempus eget sem aenean amet leo pretium nam enim dui nulla sed. Rutrum dolor <em>sapien</em> aenean consequat mollis ut justo arcu pellentesque quisque dis natoque nec. Pretium vitae blandit vel elit faucibus vici amet ridiculus. Aenean natoque ipsum eget. Sem varius justo pede veni feugiat. Maecenas vitae feugiat pellentesque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1569596248893\"} -->\n<h2>Post Slider</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248899\"} -->\n<p>Maecenas ridiculus lorem sit vitae eu. Justo sit vulputate etiam vel pede natoque enim consequat metus tellus massa feugiat hendrerit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1569662380689\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569596440347\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:canvas/posts {\"canvasClassName\":\"cnvs-block-featured-posts-1569662089672\",\"canvasLocation\":\"section-sidebar\",\"layout\":\"sidebar-slider\",\"layout_sidebar-slider_orientation\":\"portrait\",\"layout_sidebar-slider_widgetPostsCount\":3,\"layout_sidebar-slider_typographyHeading\":\"1.25rem\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569596440353\",\"canvasLocation\":\"default\",\"size\":8} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596452040\"} -->\n<p>Consequat tincidunt hendrerit eu odio vulputate luctus eleifend dolor ligula. Magnis amet ante dapibus vidi phasellus ipsum venenatis integer pulvinar. Felis curabitur eu ipsum dapibus nisi hendrerit. Nec adipiscing feugiat quam et dui libero nullam rhoncus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596452045\"} -->\n<p>Nullam penatibus ut. Nam elit natoque <strong>imperdiet</strong> fringilla vidi quis. Eu venenatis eleifend natoque orci ultricies sit eros ac nullam quam. Massa pede ridiculus tellus. Vel nam massa mus eget ligula porttitor et. Maecenas imperdiet dolor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596452050\"} -->\n<p>Sem aliquet aenean blandit libero faucibus nam mollis nulla ut eleifend. Vel vivamus rhoncus tempus ante nec amet imperdiet venenatis vitae. Etiam hendrerit ultricies. Aenean sapien nisi rhoncus ullamcorper nec. Eget nascetur quis.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1569662186370\"} -->\n<h2>Side Widget</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569662182678\"} -->\n<p>Maecenas ridiculus lorem sit vitae eu. Justo sit vulputate etiam vel pede natoque enim consequat metus tellus massa feugiat hendrerit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1569596440193\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569662174459\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:canvas/posts {\"canvasClassName\":\"cnvs-block-featured-posts-1569662174453\",\"canvasLocation\":\"section-sidebar\",\"layout\":\"sidebar-large\",\"layout_sidebar-large_widgetPostsCount\":1,\"layout_sidebar-large_typographyHeading\":\"1.25rem\",\"layout_sidebar-slider_orientation\":\"portrait\",\"layout_sidebar-slider_widgetPostsCount\":3} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569662174489\",\"canvasLocation\":\"default\",\"size\":8} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569662174466\"} -->\n<p>Consequat tincidunt hendrerit eu odio vulputate luctus eleifend dolor ligula. Magnis amet ante dapibus vidi phasellus ipsum venenatis integer pulvinar. Felis curabitur eu ipsum dapibus nisi hendrerit. Nec adipiscing feugiat quam et dui libero nullam rhoncus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569662174473\"} -->\n<p>Nullam penatibus ut. Nam elit natoque <strong>imperdiet</strong> fringilla vidi quis. Eu venenatis eleifend natoque orci ultricies sit eros ac nullam quam. Massa pede ridiculus tellus. Vel nam massa mus eget ligula porttitor et. Maecenas imperdiet dolor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569662174480\"} -->\n<p>Sem aliquet aenean blandit libero faucibus nam mollis nulla ut eleifend. Vel vivamus rhoncus tempus ante nec amet imperdiet venenatis vitae.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248910\"} -->\n<p>Massa a eleifend quis nunc mus justo nisi aenean penatibus nulla. Tempus pulvinar amet eget. In varius orci eget. Enim nulla etiam et nam id mollis nullam sit consectetuer magnis eu. Tempus ante lorem pede imperdiet nam etiam felis viverra. Nam et nec natoque aenean <strong>vivamus</strong> sapien amet vulputate ligula curabitur.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1569596248913\"} -->\n<h2>Grid</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248918\"} -->\n<p>Leo nec enim eget pulvinar sem ridiculus etiam elementum vitae. Ridiculus integer id pretium sit justo etiam curabitur orci pulvinar adipiscing vel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/posts {\"canvasClassName\":\"cnvs-block-featured-posts-1569596523045\",\"canvasLocation\":\"root\",\"layout\":\"grid\",\"showExcerpt\":false,\"layout_grid_archivePostsCount\":2,\"layout_grid_thumbnailOrientation\":\"landscape\"} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248927\"} -->\n<p>Enim tellus quam vici phasellus nam elit. Donec libero leo nam ante sem eget condimentum nec veni felis enim quisque vitae. Tincidunt eget quisque rhoncus sem penatibus donec quam vulputate quis ipsum lorem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248944\"} -->\n<p>Eu nunc donec. Orci etiam lorem nisi eu fringilla eget vel dis dapibus ultricies justo. Curabitur <em>tincidunt cras</em> porttitor. Enim vidi dapibus aenean pretium quis et nullam etiam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569596248972\"} -->\n<p>Nam vici ut quis semper consectetuer tempus sit quam vitae enim. In parturient ipsum penatibus enim lorem vitae eget venenatis sit ligula. Dapibus maecenas ultricies enim ante ligula. Condimentum amet montes imperdiet aenean rhoncus donec etiam. Vivamus sit nec amet ipsum vitae nam viverra justo lorem vel. Pellentesque vulputate consectetuer amet.</p>\n<!-- /wp:paragraph -->','Inline Posts','','publish','closed','closed','','inline-posts','','','2018-06-28 15:31:46','2018-06-28 15:31:46','',0,'https://codesupply.co/?page_id=345',0,'page','',0),(893,1,'2019-07-31 06:42:30','2019-07-31 06:42:30','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564555417403\"} -->\n<h2 class=\"is-style-default\">Inline</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866093\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866723\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659250138\"} -->\n<h5 id=\"light\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866715\",\"canvasLocation\":\"section-content\",\"template\":\"inline\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866735\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659255597\"} -->\n<h5 id=\"bold\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866729\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"inline\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866097\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866748\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659262960\"} -->\n<h5 id=\"light-background\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866743\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-bg\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866760\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659273076\"} -->\n<h5 id=\"bold-background\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866754\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-rounded\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1567066222873\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1567066223149\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1567066223127\"} -->\n<h5 id=\"light-background\"> Bold Background </h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1567066223140\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-bg\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1567066223172\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1567066223157\"} -->\n<h5 id=\"bold-background\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1567066223164\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866101\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866775\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659280011\"} -->\n<h5 id=\"light-rounded\">Dark Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866769\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-dark-bg\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866786\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659286388\"} -->\n<h5 id=\"bold-rounded\">Dark Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866781\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-dark-rounded\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564557217824\"} -->\n<h2 class=\"is-style-default\"> Vertical List</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866106\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866810\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659381617\"} -->\n<h5 id=\"light-2\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866795\",\"canvasLocation\":\"section-sidebar\",\"template\":\"vertical\",\"showLabels\":false,\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866832\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659388139\"} -->\n<h5 id=\"bold-2\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866823\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"vertical\",\"showLabels\":false,\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564659300419\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659393004\"} -->\n<h5 id=\"light-background-2\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564659374660\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"vertical\",\"showLabels\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866111\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866854\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659492404\"} -->\n<h5 id=\"bold-background-2\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866845\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"vertical\",\"showLabels\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866875\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659499013\"} -->\n<h5 id=\"light-rounded-2\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866864\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"vertical\",\"showLabels\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564659445222\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659607038\"} -->\n<h5>Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564659520998\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"vertical\",\"showLabels\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565692866115\"} -->\n<h2 class=\"is-style-default\"> 2 columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866118\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866900\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659578688\"} -->\n<h5 id=\"light-3\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866892\",\"canvasLocation\":\"section-sidebar\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866914\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659584004\"} -->\n<h5 id=\"bold-3\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866908\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564659550777\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659589026\"} -->\n<h5 id=\"light-background-3\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564659593102\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866124\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866934\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659637915\"} -->\n<h5 id=\"bold-background-3\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866926\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866953\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659644917\"} -->\n<h5 id=\"light-rounded-3\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866943\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564659556814\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659651838\"} -->\n<h5 id=\"bold-rounded-3\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564659654743\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565692866137\"} -->\n<h2 class=\"is-style-default\">3 columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866145\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866976\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659191334\"} -->\n<h5 id=\"light-4\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866968\",\"canvasLocation\":\"section-content\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866994\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659185858\"} -->\n<h5 id=\"bold-4\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866985\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866153\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867009\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659174519\"} -->\n<h5 id=\"light-background-4\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867002\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867031\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659167234\"} -->\n<h5 id=\"bold-background-4\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867020\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866162\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867048\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659157845\"} -->\n<h5 id=\"light-rounded-4\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867039\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867067\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659146780\"} -->\n<h5 id=\"bold-rounded-4\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867059\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565692866169\"} -->\n<h2 class=\"is-style-default\">4 columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866177\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867084\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659121587\"} -->\n<h5 id=\"light-5\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867077\",\"canvasLocation\":\"section-content\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867102\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659115904\"} -->\n<h5 id=\"bold-5\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867093\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866196\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867125\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659108680\"} -->\n<h5 id=\"light-background-5\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867115\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867142\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659101245\"} -->\n<h5 id=\"bold-background-5\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867132\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866200\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867159\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659035162\"} -->\n<h5 id=\"light-rounded-5\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867150\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867184\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659028730\"} -->\n<h5 id=\"bold-rounded-5\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867169\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564557374609\"} -->\n<h2 class=\"is-style-default\">6 columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564555895956\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564555895996\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658964250\"} -->\n<h5 id=\"light-6\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564555921404\",\"canvasLocation\":\"section-content\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564555896060\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658949534\"} -->\n<h5 id=\"light-background-6\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564555935773\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564555956239\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564555956278\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658955728\"} -->\n<h5 id=\"bold-6\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564556017736\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564555956322\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658933461\"} -->\n<h5 id=\"bold-background-6\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564555962955\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564556048174\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564556048210\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658923737\"} -->\n<h5 id=\"light-rounded-6\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564556064327\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564556048252\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658915603\"} -->\n<h5 id=\"bold-rounded-6\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564556103658\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564557792351\"} -->\n<h2 class=\"is-style-default\"> All Supported Social Links </h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564557796095\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-4\"} /-->','Social Links','','publish','closed','closed','','social-links','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',1260,'http://codesupply.co/?page_id=893',0,'page','',0),(925,1,'2019-07-31 09:20:49','2019-07-31 09:20:49','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564564691557\"} -->\n<h2 class=\"is-style-default\">Dismissible Alerts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564702830\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-danger\",\"dismissible\":true} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564702870\"} -->\n<p>\n\nDui ullamcorper libero ut eleifend ridiculus consequat.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564702831\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\",\"dismissible\":true} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564702871\"} -->\n<p>\n\nDui ullamcorper libero ut eleifend ridiculus consequat.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564702832\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-info\",\"dismissible\":true} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564702872\"} -->\n<p>\n\nDui ullamcorper libero ut eleifend ridiculus consequat.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564702833\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-success\",\"dismissible\":true} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564702873\"} -->\n<p>\n\nDui ullamcorper libero ut eleifend ridiculus consequat.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564564770046\"} -->\n<h2 class=\"is-style-default\" id=\"multi-line-alerts\">Multi-Line Alerts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564770034\"} -->\n<p>Here’re some examples of multi-line alerts with headings and paragraphs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564780254\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-danger\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564781304\"} -->\n<h6>Sociis Porttitor et Quis</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569488515285\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564780255\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564781305\"} -->\n<h6>Sociis Porttitor et Quis</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564781312\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564780256\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-info\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564781306\"} -->\n<h6>Sociis Porttitor et Quis</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564781317\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564780258\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-success\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564781308\"} -->\n<h6>Sociis Porttitor et Quis</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564781319\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->','Alerts','','publish','closed','closed','','alerts','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',1260,'http://codesupply.co/?page_id=925',0,'page','',0),(929,1,'2019-07-31 09:24:50','2019-07-31 09:24:50','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931420\",\"canvasLocation\":\"root\",\"width\":25,\"height\":16,\"animated\":true} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931421\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-dark\",\"width\":50,\"height\":16,\"animated\":true,\"displayPercent\":true} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931422\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-success\",\"width\":75,\"height\":2,\"striped\":false} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931423\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-info\",\"width\":25,\"height\":16,\"striped\":false} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931424\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-warning\",\"width\":50,\"height\":1,\"striped\":false} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931425\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-danger\",\"width\":75,\"height\":16,\"displayPercent\":true} /-->','Progress Bars','','publish','closed','closed','','progress-bars','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',1260,'http://codesupply.co/?page_id=929',0,'page','',0),(934,1,'2019-07-31 09:33:33','2019-07-31 09:33:33','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565482077\"} -->\n<h2 class=\"is-style-default\" id=\"solid\">Solid</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565482119\"} -->\n<p>Amet imperdiet vulputate. Sociis dolor nisi tellus justo fringilla libero orci ligula vel phasellus odio eleifend. Ante quam quis varius. Donec aenean sed quisque varius rutrum quam tellus. Massa quis justo et leo ipsum aliquet ullamcorper curabitur eu ut sem. Veni maecenas et rhoncus vivamus metus consectetuer nisi ante etiam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565482063\"} -->\n<p>Dui ullamcorper libero ut eleifend ridiculus consequat. Enim augue ante. Justo imperdiet sapien. Imperdiet ligula dictum amet nec tellus id quis libero. Venenatis aenean blandit justo semper curabitur ipsum quis quam donec aliquet. Varius dapibus aenean massa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide is-cnvs-separator-id-1574522713494\",\"canvasClassName\":\"cnvs-block-core-separator-1564565499408\"} -->\n<hr class=\"wp-block-separator is-style-wide is-cnvs-separator-id-1574522713494\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565520865\"} -->\n<h2 class=\"is-style-default\" id=\"double\">Double</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565520904\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper. Etiam dis aenean nam leo magnis. Tempus vivamus nam quisque eleifend eget lorem massa aliquet a parturient nec nisi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565520847\"} -->\n<p>Justo nullam vel ipsum consequat aliquam ut ligula cras. Maecenas pretium nam orci leo quis a augue. Ante sem aenean consequat phasellus eget dis et odio sociis. Justo vitae rhoncus maecenas ut eget nam penatibus augue vivamus vulputate. Venenatis veni vitae semper rutrum pretium ullamcorper augue luctus. Eget odio rhoncus nullam pellentesque vici et aenean ut nisi commodo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-cnvs-separator-double is-cnvs-separator-id-1574522713503\",\"canvasClassName\":\"cnvs-block-core-separator-1564565535801\"} -->\n<hr class=\"wp-block-separator is-style-cnvs-separator-double is-cnvs-separator-id-1574522713503\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565563528\"} -->\n<h2 class=\"is-style-default\" id=\"dotted\">Dotted</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565563531\"} -->\n<p>A quam veni. Tincidunt veni et. Pulvinar nec magnis semper quis justo donec venenatis sed et. Ut etiam veni amet enim. Vitae ante varius. Pede eu massa justo vel penatibus eget viverra commodo lorem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565563516\"} -->\n<p>Donec nascetur tellus quam ullamcorper vel. Etiam faucibus elementum et. Ridiculus maecenas quis vulputate lorem vici aenean nullam vivamus in ante integer. Eu magnis vel donec mus. Hendrerit sociis quam lorem. Nisi eget vitae blandit eros varius aliquet ante.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-cnvs-separator-dotted is-cnvs-separator-id-1574522713512\",\"canvasClassName\":\"cnvs-block-core-separator-1564565573821\"} -->\n<hr class=\"wp-block-separator is-style-cnvs-separator-dotted is-cnvs-separator-id-1574522713512\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565591579\"} -->\n<h2 class=\"is-style-default\" id=\"dashed\">Dashed</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565591551\"} -->\n<p>Imperdiet vici condimentum sem etiam quis leo pede nec. Amet etiam feugiat sapien tincidunt eget. Luctus quam ut cum sem dui rhoncus nec eu maecenas. Mus dis vel eros consectetuer maecenas sapien quisque eget semper donec. Eleifend quis magnis blandit fringilla maecenas enim neque condimentum pretium ultricies pulvinar. Vel nisi aenean imperdiet a viverra pulvinar sed ligula pede mus lorem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565591535\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-cnvs-separator-dashed is-cnvs-separator-id-1574522713520\",\"canvasClassName\":\"cnvs-block-core-separator-1564565595858\"} -->\n<hr class=\"wp-block-separator is-style-cnvs-separator-dashed is-cnvs-separator-id-1574522713520\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565607476\"} -->\n<p>Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus. Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565608516\"} -->\n<p>Massa ac venenatis faucibus maecenas leo nunc eleifend a ultricies sem hendrerit nam. Vitae dis venenatis hendrerit vulputate eleifend dui ultricies rhoncus mus. Tincidunt vitae semper adipiscing quam eros lorem ut vel elementum pellentesque nec parturient. Lorem nam eu a sem quis. Rhoncus vulputate eget fringilla mollis massa rutrum ipsum magnis. Nascetur quam ante varius tellus et consequat blandit magnis ipsum id penatibus dolor.</p>\n<!-- /wp:paragraph -->','Separators','','publish','closed','closed','','separators','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',1260,'http://codesupply.co/?page_id=934',0,'page','',0),(936,1,'2019-07-31 09:37:04','2019-07-31 09:37:04','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565727857\"} -->\n<h2 class=\"is-style-default\" id=\"with-posts\">With Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564565759236\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565759267\",\"canvasLocation\":\"default\",\"size\":5} -->\n<!-- wp:canvas/facebook-fanpage {\"canvasClassName\":\"cnvs-block-facebook-fanpage-1564565791090\",\"canvasLocation\":\"section-content\",\"href\":\"https://facebook.com/envato/\",\"showFacepile\":true,\"showPosts\":true} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565759312\",\"canvasLocation\":\"default\",\"size\":7} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565779977\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565780562\"} -->\n<p>Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus. Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565780498\"} -->\n<p>Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565862194\"} -->\n<h2 class=\"is-style-default\" id=\"without-posts\">Without Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564565867072\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565867107\",\"canvasLocation\":\"default\",\"size\":5} -->\n<!-- wp:canvas/facebook-fanpage {\"canvasClassName\":\"cnvs-block-facebook-fanpage-1564565885229\",\"canvasLocation\":\"section-content\",\"href\":\"https://facebook.com/envato/\",\"showFacepile\":true} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565867146\",\"canvasLocation\":\"default\",\"size\":7} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565874259\"} -->\n<p>\n\nMassa ac venenatis faucibus maecenas leo nunc eleifend a ultricies sem hendrerit nam. Vitae dis venenatis hendrerit vulputate eleifend dui ultricies rhoncus mus. Tincidunt vitae semper adipiscing quam eros lorem ut vel elementum pellentesque nec parturient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565874740\"} -->\n<p>Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565922351\"} -->\n<h2 class=\"is-style-default\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564565934708\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565934753\",\"canvasLocation\":\"default\",\"size\":5} -->\n<!-- wp:canvas/facebook-fanpage {\"canvasClassName\":\"cnvs-block-facebook-fanpage-1564565950879\",\"canvasLocation\":\"section-content\",\"href\":\"https://facebook.com/envato/\",\"showCover\":false,\"smallHeader\":true} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565934810\",\"canvasLocation\":\"default\",\"size\":7} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565965004\"} -->\n<p>Massa ac venenatis faucibus maecenas leo nunc eleifend a ultricies sem hendrerit nam. Vitae dis venenatis hendrerit vulputate eleifend dui ultricies rhoncus mus. Tincidunt vitae semper adipiscing quam eros lorem ut vel elementum pellentesque nec parturient. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->','Facebook Fanpage','','publish','closed','closed','','facebook-fanpage','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',1260,'http://codesupply.co/?page_id=936',0,'page','',0),(940,1,'2019-07-31 10:12:44','2019-07-31 10:12:44','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564567781295\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564567781338\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564567867942\"} -->\n<h2 class=\"is-style-default\" id=\"2-columns\">2 Columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1564567811859\",\"canvasLocation\":\"section-sidebar\",\"showHeader\":false,\"columns\":2,\"buttonStyle\":\"squared\",\"buttonFullWidth\":true} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564567781400\",\"canvasLocation\":\"default\",\"size\":8} -->\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564567873152\"} -->\n<h2 class=\"is-style-default\" id=\"3-columns\">3 Columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1564567879082\",\"canvasLocation\":\"section-content\",\"showHeader\":false,\"showFollowButton\":false,\"number\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564568531815\"} -->\n<h2 class=\"is-style-default\">5 Columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1564567929489\",\"canvasLocation\":\"root\",\"showHeader\":false,\"showFollowButton\":false,\"number\":10,\"columns\":5} /-->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564569036452\"} -->\n<h2 class=\"is-style-default\"> Featured Style </h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564569069444\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564569069492\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:group {\"className\":\"is-style-cnvs-block-bg-light\",\"canvasClassName\":\"cnvs-block-core-group-1574258549609\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-bg-light\"><div class=\"wp-block-group__inner-container\"><!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1565615152485\",\"canvasLocation\":\"default\",\"number\":6,\"buttonStyle\":\"squared\",\"buttonSize\":\"md\"} /--></div></div>\n<!-- /wp:group -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564569069533\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:group {\"className\":\"is-style-cnvs-block-shadow\",\"canvasClassName\":\"cnvs-block-core-group-1574258571614\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-shadow\"><div class=\"wp-block-group__inner-container\"><!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1565615197827\",\"canvasLocation\":\"default\",\"number\":6,\"buttonStyle\":\"squared\",\"buttonSize\":\"md\"} /--></div></div>\n<!-- /wp:group -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->','Instagram Feed','','publish','closed','closed','','instagram-feed','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',1260,'http://codesupply.co/?page_id=940',0,'page','',0),(994,1,'2019-07-31 11:40:04','2019-07-31 11:40:04','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564572809583\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564572810965\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572810949\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/toc {\"canvasClassName\":\"cnvs-block-toc-1564572834670\",\"canvasLocation\":\"root\",\"depth\":1} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572839605\"} -->\n<p>Quis tellus felis neque nulla tincidunt donec. Eleifend ut elit hendrerit vel imperdiet curabitur et eget. Semper lorem aliquam tellus imperdiet etiam sociis nec donec. Imperdiet rhoncus a etiam feugiat tincidunt luctus augue arcu commodo ultricies. Pretium venenatis nec tellus natoque adipiscing vivamus pulvinar imperdiet ultricies viverra lorem semper mollis. Vulputate et nam eget justo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-cnvs-heading-numbered\",\"canvasClassName\":\"cnvs-block-core-heading-1564572840319\"} -->\n<h2 class=\"is-style-cnvs-heading-numbered\" id=\"slider\">Slider</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572840298\"} -->\n<p>Ipsum orci nisi pellentesque natoque libero aenean sapien fringilla mollis varius nec feugiat laoreet. Quis vitae dolor lorem imperdiet ante sit. Dolor id penatibus fringilla enim ut eget pede quis phasellus libero tempus ultricies nunc. Eu ligula vel dapibus eget. Nunc eget sit elit dictum cum nam. Libero phasellus nunc pede adipiscing dis imperdiet nec rhoncus eu sem pulvinar amet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/slider-gallery {\"canvasClassName\":\"cnvs-block-slider-gallery-1564572857183\",\"canvasLocation\":\"root\",\"images\":[171,173,172],\"imageSize\":\"large\",\"showCaptions\":true} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572859356\"} -->\n<p>Cum tellus ipsum commodo et fringilla ligula augue integer dui a montes amet. Venenatis vitae aenean. Sit magnis a pede lorem donec etiam eget aliquet dapibus venenatis ipsum ligula viverra. Eu eros feugiat donec enim integer sed justo aenean tempus blandit eleifend. Ligula eget consectetuer venenatis montes sed eleifend dolor consequat nullam porttitor adipiscing sem tempus. Quis rhoncus dictum nisi ullamcorper. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-cnvs-heading-numbered\",\"canvasClassName\":\"cnvs-block-core-heading-1564572904716\"} -->\n<h2 class=\"is-style-cnvs-heading-numbered\" id=\"justified\">Justified</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572904703\"} -->\n<p>Massa quam eget metus lorem tincidunt rhoncus imperdiet pede aenean eleifend donec tellus. Nullam venenatis sit maecenas. Vulputate tincidunt eleifend. Amet quis vel justo. Leo ultricies vulputate rhoncus mus sit amet libero. In tellus nullam pellentesque justo amet dui.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/justified-gallery {\"canvasClassName\":\"cnvs-block-justified-gallery-1564572917054\",\"canvasLocation\":\"root\",\"images\":[171,169,168,173,172],\"imageSize\":\"medium\",\"lastRow\":\"justify\",\"showCaptions\":true} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572953316\"} -->\n<p>Maecenas enim ultricies commodo adipiscing dolor pede montes tellus ridiculus vidi. Dapibus ipsum ante aenean. Ultricies orci quis eget augue sapien condimentum ante eros dolor ut lorem. Pulvinar eu laoreet cras donec arcu maecenas vidi amet etiam sociis orci justo. Imperdiet tellus felis etiam enim sem. Ante dolor vulputate dapibus ligula quis enim rutrum luctus eleifend nisi sem eget justo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572954275\"} -->\n<p>Adipiscing pede sit nisi ipsum tempus id eget. Tincidunt nec amet a libero metus elit consequat ridiculus. Pretium commodo sem veni felis consequat amet eget viverra nam a dolor magnis pede. Lorem aliquet feugiat. Vulputate sit faucibus. Rhoncus vitae dis nisi dolor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-cnvs-heading-numbered\",\"canvasClassName\":\"cnvs-block-core-heading-1564572964733\"} -->\n<h2 class=\"is-style-cnvs-heading-numbered\" id=\"grid\">Grid</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574578449530\"} -->\n<p>Nam dictum vitae penatibus ligula id sem eget ante faucibus feugiat nascetur vel. Pretium vitae mus rhoncus sit maecenas quam felis orci adipiscing. Aenean parturient eget quam. Leo vel lorem sociis phasellus arcu dolor. Dis donec eu pede.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[171,173,172]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://cloud.codesupply.co/demo-content/demo-image-00004-682x1024.jpg\" alt=\"\" data-id=\"171\"/><figcaption>Faucibus etiam libero</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://cloud.codesupply.co/demo-content/demo-image-00006-682x1024.jpg\" alt=\"\" data-id=\"173\"/><figcaption>Viverra faucibus sem</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://cloud.codesupply.co/demo-content/demo-image-00005-682x1024.jpg\" alt=\"\" data-id=\"172\"/><figcaption>Pellentesque venenatis ac</figcaption></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574768333188\"} -->\n<p> Maecenas enim ultricies commodo adipiscing dolor pede montes tellus ridiculus vidi. Dapibus ipsum ante aenean. Ultricies orci quis eget augue sapien condimentum ante eros dolor ut lorem. Pulvinar eu laoreet cras donec arcu maecenas vidi amet etiam sociis orci justo. Imperdiet tellus felis etiam enim sem. Ante dolor vulputate dapibus ligula quis enim rutrum luctus eleifend nisi sem eget justo. </p>\n<!-- /wp:paragraph -->','Gallery Blocks','','publish','closed','closed','','galleries','','','2019-07-31 11:40:04','2019-07-31 11:40:04','',0,'http://codesupply.co/?page_id=994',0,'page','',0),(999,1,'2019-07-31 11:52:43','2019-07-31 11:52:43','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564573507260\"} -->\n<h2 class=\"is-style-default\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573662919\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-light\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565686209870\"} -->\n<h2 class=\"is-style-default\">Bold</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686194280\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold-light\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1565686215772\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564573507261\"} -->\n<h2 class=\"is-style-default\">Simple &amp; Light Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573516318\"} -->\n<h5 id=\"light\">First Two Large Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573527865\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-default\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573616326\"} -->\n<h5>Equal Width Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573625556\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-default\",\"layout\":\"equal\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573655706\"} -->\n<h5>Simple Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573662920\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-default\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1564573944867\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564573507262\"} -->\n<h2 class=\"is-style-default\">Simple &amp; Dark Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573516319\"} -->\n<h5 id=\"light\">First Two Large Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573527866\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-dark-back\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573616327\"} -->\n<h5>Equal Width Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573625555\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-dark-back\",\"layout\":\"equal\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573655707\"} -->\n<h5>Simple Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573662921\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-dark-back\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1565438487068\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565686244005\"} -->\n<h2 class=\"is-style-default\">Simple &amp; Bold Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686247124\"} -->\n<h5 id=\"light\">First Two Large Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686250573\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-bold-back is-style-pk-share-buttons-bold-bg\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686255295\"} -->\n<h5>Equal Width Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686259505\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-bold-back is-style-pk-share-buttons-bold-bg\",\"layout\":\"equal\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686263371\"} -->\n<h5>Simple Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686267285\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-bold-back is-style-pk-share-buttons-bold-bg\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1565686239094\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565686350591\"} -->\n<h2 class=\"is-style-default\">Bold &amp; Light Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686374029\"} -->\n<h5 id=\"light\">First Two Large Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686381728\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686400467\"} -->\n<h5>Equal Width Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686412455\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold\",\"layout\":\"equal\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686424050\"} -->\n<h5>Simple Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686436317\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1565686348024\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565438363713\"} -->\n<h2 class=\"is-style-default\"> All Supported Share Buttons </h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565438374473\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold-bg\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\",\"xing\",\"linkedin\",\"stumbleupon\",\"pocket\",\"whatsapp\",\"fb-messenger\",\"viber\",\"ok\",\"vkontakte\",\"telegram\",\"line\",\"reddit\",\"mix\"],\"showTitles\":false} /-->','Share Buttons','','publish','closed','closed','','share-buttons','','','2023-01-14 11:02:46','2023-01-14 11:02:46','',1260,'http://codesupply.co/?page_id=999',0,'page','',0),(1005,1,'2019-07-31 12:00:38','2019-07-31 12:00:38','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564574331684\"} -->\n<h2 class=\"is-style-default\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564574271321\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574271364\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:canvas/author {\"canvasClassName\":\"cnvs-block-author-1564574276138\",\"canvasLocation\":\"section-content\",\"author\":\"1\",\"showArchiveBtn\":true,\"buttonStyle\":\"squared\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574271422\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574295517\"} -->\n<p>\n\nNec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574295911\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574258324624\"} -->\n<h2>With Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564574368825\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574368878\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:canvas/author {\"canvasClassName\":\"cnvs-block-author-1564574376643\",\"canvasLocation\":\"section-content\",\"author\":\"1\",\"bgImage\":{\"id\":171,\"url\":\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1.jpg\"},\"showArchiveBtn\":true,\"buttonStyle\":\"squared\",\"buttonSize\":\"lg\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574368926\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574397889\"} -->\n<p> Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus.&nbsp;Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574258343312\"} -->\n<h2>Contributors Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564574539824\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574539858\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:canvas/contributors {\"canvasLocation\":\"section-content\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574539905\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574611340\"} -->\n<p> Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574613636\"} -->\n<p> Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574616462\"} -->\n<p>Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574258355528\"} -->\n<h2>Contributors With Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/contributors {\"canvasLocation\":\"root\",\"showRecentPosts\":true} /-->\n\n<!-- wp:canvas/contributors {\"canvasClassName\":\"cnvs-block-contributors-1564574673947\",\"canvasLocation\":\"root\",\"contributors\":[\"3\",\"4\"],\"showRecentPosts\":true,\"countRecentPosts\":5} /-->','Author','','publish','closed','closed','','author','','','2019-07-31 12:00:38','2019-07-31 12:00:38','',1260,'http://codesupply.co/?page_id=1005',0,'page','',0),(1260,1,'2019-07-31 07:24:11','2019-07-31 07:24:11','','Content Blocks','','publish','closed','closed','','content-blocks','','','2019-07-31 07:24:11','2019-07-31 07:24:11','',0,'http://codesupply.co/?page_id=904',0,'page','',0),(1262,1,'2019-07-31 08:59:20','2019-07-31 08:59:20','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564563575039\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564563576160\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564563576134\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564563592429\"} -->\n<h2 class=\"is-style-default\" id=\"tabs\">Tabs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564563592396\"} -->\n<h3 id=\"horizontal\">Horizontal</h3>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/tabs {\"canvasClassName\":\"cnvs-block-tabs-1565615365651\",\"canvasLocation\":\"root\",\"tabsData\":[\"Marketing\",\"Design\",\"Research \"]} -->\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615367453\",\"canvasLocation\":\"default\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615367368\"} -->\n<p>Vulputate adipiscing vitae imperdiet hendrerit rhoncus eu. Pretium commodo nec faucibus. Aenean sit quis etiam condimentum nam in. Nunc id eget maecenas rutrum dapibus consequat eu dui nam. Aenean vici magnis quam justo etiam vulputate dapibus ridiculus mus sit varius. Ante nec in ultricies dapibus tincidunt eget arcu sem vel eu sit ut. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615367483\",\"canvasLocation\":\"default\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615367465\"} -->\n<p>Imperdiet vici condimentum sem etiam quis leo pede nec. Amet etiam feugiat sapien tincidunt eget. Luctus quam ut cum sem dui rhoncus nec eu maecenas. Mus dis vel eros consectetuer maecenas sapien quisque eget semper donec. Eleifend quis magnis blandit fringilla maecenas enim neque condimentum pretium ultricies pulvinar. Vel nisi aenean imperdiet a viverra pulvinar sed ligula pede mus lorem. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615367619\",\"canvasLocation\":\"default\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615367603\"} -->\n<p>Amet imperdiet vulputate. Sociis dolor nisi tellus justo fringilla libero orci ligula vel phasellus odio eleifend. Ante quam quis varius. Donec aenean sed quisque varius rutrum quam tellus. Massa quis justo et leo ipsum aliquet ullamcorper curabitur eu ut sem. Veni maecenas et rhoncus vivamus metus consectetuer nisi ante etiam. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n<!-- /wp:canvas/tabs -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564563705801\"} -->\n<h3 class=\"is-style-default\"> Vertical </h3>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/tabs {\"canvasClassName\":\"cnvs-block-tabs-1564563599022\",\"canvasLocation\":\"root\",\"tabsData\":[\"Marketing \",\"Design\",\"Research \"],\"tabsPosition\":\"vertical\"} -->\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1564563599052\",\"canvasLocation\":\"default\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564563599099\"} -->\n<p>Vulputate adipiscing vitae imperdiet hendrerit rhoncus eu. Pretium commodo nec faucibus. Aenean sit quis etiam condimentum nam in. Nunc id eget maecenas rutrum dapibus consequat eu dui nam. Aenean vici magnis quam justo etiam vulputate dapibus ridiculus mus sit varius. Ante nec in ultricies dapibus tincidunt eget arcu sem vel eu sit ut. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1564563599105\",\"canvasLocation\":\"default\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564563629951\"} -->\n<p>Imperdiet vici condimentum sem etiam quis leo pede nec. Amet etiam feugiat sapien tincidunt eget. Luctus quam ut cum sem dui rhoncus nec eu maecenas. Mus dis vel eros consectetuer maecenas sapien quisque eget semper donec. Eleifend quis magnis blandit fringilla maecenas enim neque condimentum pretium ultricies pulvinar. Vel nisi aenean imperdiet a viverra pulvinar sed ligula pede mus lorem. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1564563644155\",\"canvasLocation\":\"default\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564563650362\"} -->\n<p>Amet imperdiet vulputate. Sociis dolor nisi tellus justo fringilla libero orci ligula vel phasellus odio eleifend. Ante quam quis varius. Donec aenean sed quisque varius rutrum quam tellus. Massa quis justo et leo ipsum aliquet ullamcorper curabitur eu ut sem. Veni maecenas et rhoncus vivamus metus consectetuer nisi ante etiam. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n<!-- /wp:canvas/tabs -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564563755902\"} -->\n<h2 class=\"is-style-default\" id=\"pills\">Pills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1569489141723\"} -->\n<h3> Horizontal </h3>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/tabs {\"canvasClassName\":\"cnvs-block-tabs-1565615459429\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-tabs-pills\",\"tabsData\":[\"Marketing\",\"Design\",\"Research \"]} -->\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615459476\",\"canvasLocation\":\"default\",\"className\":\"wp-block-powerkit-tab\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab wp-block-powerkit-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615459532\"} -->\n<p>Vulputate adipiscing vitae imperdiet hendrerit rhoncus eu. Pretium commodo nec faucibus. Aenean sit quis etiam condimentum nam in. Nunc id eget maecenas rutrum dapibus consequat eu dui nam. Aenean vici magnis quam justo etiam vulputate dapibus ridiculus mus sit varius. Ante nec in ultricies dapibus tincidunt eget arcu sem vel eu sit ut. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615459541\",\"canvasLocation\":\"default\",\"className\":\"wp-block-powerkit-tab\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab wp-block-powerkit-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615512703\"} -->\n<p>Imperdiet vici condimentum sem etiam quis leo pede nec. Amet etiam feugiat sapien tincidunt eget. Luctus quam ut cum sem dui rhoncus nec eu maecenas. Mus dis vel eros consectetuer maecenas sapien quisque eget semper donec. Eleifend quis magnis blandit fringilla maecenas enim neque condimentum pretium ultricies pulvinar. Vel nisi aenean imperdiet a viverra pulvinar sed ligula pede mus lorem. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615480451\",\"canvasLocation\":\"default\",\"className\":\"wp-block-powerkit-tab\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab wp-block-powerkit-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615521204\"} -->\n<p>Amet imperdiet vulputate. Sociis dolor nisi tellus justo fringilla libero orci ligula vel phasellus odio eleifend. Ante quam quis varius. Donec aenean sed quisque varius rutrum quam tellus. Massa quis justo et leo ipsum aliquet ullamcorper curabitur eu ut sem. Veni maecenas et rhoncus vivamus metus consectetuer nisi ante etiam. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n<!-- /wp:canvas/tabs -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564563755844\"} -->\n<h3 id=\"horizontal-2\">Vertical </h3>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/tabs {\"canvasClassName\":\"cnvs-block-tabs-1565615538964\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-tabs-pills\",\"tabsData\":[\"Marketing\",\"Design\",\"Research \"],\"tabsPosition\":\"vertical\"} -->\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615539009\",\"canvasLocation\":\"default\",\"className\":\"wp-block-powerkit-tab\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab wp-block-powerkit-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615539046\"} -->\n<p>Vulputate adipiscing vitae imperdiet hendrerit rhoncus eu. Pretium commodo nec faucibus. Aenean sit quis etiam condimentum nam in. Nunc id eget maecenas rutrum dapibus consequat eu dui nam. Aenean vici magnis quam justo etiam vulputate dapibus ridiculus mus sit varius. Ante nec in ultricies dapibus tincidunt eget arcu sem vel eu sit ut.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615539052\",\"canvasLocation\":\"default\",\"className\":\"wp-block-powerkit-tab\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab wp-block-powerkit-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615599151\"} -->\n<p>Imperdiet vici condimentum sem etiam quis leo pede nec. Amet etiam feugiat sapien tincidunt eget. Luctus quam ut cum sem dui rhoncus nec eu maecenas. Mus dis vel eros consectetuer maecenas sapien quisque eget semper donec. Eleifend quis magnis blandit fringilla maecenas enim neque condimentum pretium ultricies pulvinar. Vel nisi aenean imperdiet a viverra pulvinar sed ligula pede mus lorem. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n\n<!-- wp:canvas/tab {\"canvasClassName\":\"cnvs-block-tab-1565615576620\",\"canvasLocation\":\"default\",\"className\":\"wp-block-powerkit-tab\"} -->\n<div class=\"wp-block-canvas-tab cnvs-block-tab wp-block-powerkit-tab\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565615606388\"} -->\n<p>Amet imperdiet vulputate. Sociis dolor nisi tellus justo fringilla libero orci ligula vel phasellus odio eleifend. Ante quam quis varius. Donec aenean sed quisque varius rutrum quam tellus. Massa quis justo et leo ipsum aliquet ullamcorper curabitur eu ut sem. Veni maecenas et rhoncus vivamus metus consectetuer nisi ante etiam.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:canvas/tab -->\n<!-- /wp:canvas/tabs -->','Tabs & Pills','','publish','closed','closed','','tabs-pills','','','2019-07-31 08:59:20','2019-07-31 08:59:20','',1260,'http://codesupply.co/?page_id=912',0,'page','',0),(1263,1,'2019-07-31 09:10:52','2019-07-31 09:10:52','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564563953874\"} -->\n<h2 class=\"is-style-default\" id=\"multiple-accordion-tabs\">Multiple Accordion Tabs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/collapsibles {\"canvasClassName\":\"cnvs-block-collapsibles-1564563997556\",\"canvasLocation\":\"root\",\"count\":3} -->\n<!-- wp:canvas/collapsible {\"canvasClassName\":\"cnvs-block-collapsible-1564563997589\",\"canvasLocation\":\"default\",\"title\":\" Marketing \"} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564045823\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/collapsible -->\n\n<!-- wp:canvas/collapsible {\"canvasClassName\":\"cnvs-block-collapsible-1564563997611\",\"canvasLocation\":\"default\",\"title\":\" Design \"} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564069231\"} -->\n<p>Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus. Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/collapsible -->\n\n<!-- wp:canvas/collapsible {\"canvasClassName\":\"cnvs-block-collapsible-1564564109192\",\"canvasLocation\":\"default\",\"title\":\" Research\"} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564199553\"} -->\n<p>Enim elementum ridiculus nulla semper dui lorem nisi adipiscing aenean cum rhoncus. Dolor venenatis sapien nam montes libero id aliquam ligula quam consequat. A ipsum etiam nec pretium adipiscing commodo condimentum. Ipsum felis pulvinar cras ut vitae elit quis massa nisi penatibus. Vel commodo natoque quam rutrum vivamus eu aenean augue quis nisi ut eleifend hendrerit. Tincidunt rutrum elit laoreet eget nulla et. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/collapsible -->\n<!-- /wp:canvas/collapsibles -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564564210599\"} -->\n<h2 class=\"is-style-default\" id=\"single-spoiler\">Single Spoiler</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/collapsibles {\"canvasClassName\":\"cnvs-block-collapsibles-1564564225579\",\"canvasLocation\":\"root\",\"count\":1} -->\n<!-- wp:canvas/collapsible {\"canvasClassName\":\"cnvs-block-collapsible-1564564225624\",\"canvasLocation\":\"default\",\"title\":\" View Spoiler\"} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564241433\"} -->\n<p>\n\nNec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/collapsible -->\n<!-- /wp:canvas/collapsibles -->','Accordions','','publish','closed','closed','','accordions','','','2019-07-31 09:10:52','2019-07-31 09:10:52','',1260,'http://codesupply.co/?page_id=917',0,'page','',0),(1264,1,'2019-07-31 09:12:17','2019-07-31 09:12:17','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564564460434\"} -->\n<h2 class=\"is-style-default\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/opt-in-form {\"canvasClassName\":\"cnvs-block-opt-in-form-1565761333892\",\"canvasLocation\":\"root\",\"colorLegend_dark\":\"#818181\"} /-->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564564520297\"} -->\n<h2 class=\"is-style-default\">With First Name</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"className\":\"is-style-cnvs-block-bg-light\",\"canvasClassName\":\"cnvs-block-core-group-1574259070797\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-bg-light\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"textColor\":\"secondary\",\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1567086515966\"} -->\n<p class=\"has-text-color has-medium-font-size has-secondary-color\">Get notified of the best deals on our WordPress themes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/opt-in-form {\"canvasClassName\":\"cnvs-block-opt-in-form-1564564403953\",\"canvasLocation\":\"root\",\"showName\":true,\"colorLegend_dark\":\"#818181\"} /--></div></div>\n<!-- /wp:group -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564564550370\"} -->\n<h2 class=\"is-style-default\">With Background Image</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":169,\"canvasClassName\":\"cnvs-block-core-cover-1574259123257\"} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1567086456956\"} -->\n<p class=\"has-text-color has-medium-font-size has-very-light-gray-color\">\n\nGet notified of the best deals on our WordPress themes.\n\n</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/opt-in-form {\"canvasClassName\":\"cnvs-block-opt-in-form-1565761381941\",\"canvasLocation\":\"default\",\"colorLegend\":\"#eeeeee\",\"colorLegend_dark\":\"#FFFFFF\"} /--></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":169,\"canvasClassName\":\"cnvs-block-core-cover-1574259194615\"} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574259194752\"} -->\n<p class=\"has-text-color has-medium-font-size has-very-light-gray-color\">\n\nGet notified of the best deals on our WordPress themes.\n\n</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/opt-in-form {\"canvasClassName\":\"cnvs-block-opt-in-form-1565761477845\",\"canvasLocation\":\"default\",\"showName\":true,\"colorLegend\":\"#eeeeee\",\"colorLegend_dark\":\"#FFFFFF\"} /--></div></div>\n<!-- /wp:cover -->','Subscription Forms','','publish','closed','closed','','subscription-forms','','','2019-07-31 09:12:17','2019-07-31 09:12:17','',1260,'http://codesupply.co/?page_id=919',0,'page','',0),(1265,1,'2019-07-31 10:25:08','2019-07-31 10:25:08','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564568672750\"} -->\n<h2 class=\"is-style-default\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564568681757\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564568681788\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:canvas/twitter {\"canvasClassName\":\"cnvs-block-twitter-1564568630184\",\"canvasLocation\":\"section-content\",\"layout\":\"default\",\"showHeader\":false,\"showFollowButton\":false} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564568681829\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564568699426\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564568699940\"} -->\n<p>Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus. Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564568737309\"} -->\n<h2 class=\"is-style-default\"> With Additional Info </h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564568763762\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564568763816\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:canvas/twitter {\"canvasClassName\":\"cnvs-block-twitter-1564568777780\",\"canvasLocation\":\"section-content\",\"layout\":\"default\",\"buttonStyle\":\"squared\",\"buttonSize\":\"md\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564568763871\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564568770678\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564568771093\"} -->\n<p>Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564568797123\"} -->\n<p> Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564568819712\"} -->\n<h2 class=\"is-style-default\">Slider</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564568828200\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564568828249\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:group {\"className\":\"is-style-cnvs-block-bg-light\",\"canvasClassName\":\"cnvs-block-core-group-1574259632271\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-bg-light\"><div class=\"wp-block-group__inner-container\"><!-- wp:canvas/twitter {\"canvasClassName\":\"cnvs-block-twitter-1565615782925\",\"canvasLocation\":\"default\",\"layout\":\"slider\",\"username\":\"envato\",\"number\":3,\"buttonStyle\":\"squared\",\"buttonSize\":\"md\"} /--></div></div>\n<!-- /wp:group -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564568828296\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:group {\"className\":\"is-style-cnvs-block-shadow\",\"canvasClassName\":\"cnvs-block-core-group-1574259695961\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-shadow\"><div class=\"wp-block-group__inner-container\"><!-- wp:canvas/twitter {\"canvasClassName\":\"cnvs-block-twitter-1565615817110\",\"canvasLocation\":\"default\",\"layout\":\"slider\",\"username\":\"envato\",\"number\":3,\"buttonStyle\":\"squared\",\"buttonSize\":\"md\"} /--></div></div>\n<!-- /wp:group -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->','Twitter Feed','','publish','closed','closed','','twitter-feed','','','2019-07-31 10:25:08','2019-07-31 10:25:08','',1260,'http://codesupply.co/?page_id=950',0,'page','',0),(1266,1,'2019-07-31 10:36:05','2019-07-31 10:36:05','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564569290414\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564569290456\",\"canvasLocation\":\"default\",\"size\":5} -->\n<!-- wp:canvas/pinterest-board {\"canvasClassName\":\"cnvs-block-pinterest-board-1564569304547\",\"canvasLocation\":\"section-content\",\"href\":\"https://pinterest.com/envato/stunning-photographs/\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564569290513\",\"canvasLocation\":\"default\",\"size\":7} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564569316914\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564569317437\"} -->\n<p>Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus. Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->','Pinterest Board','','publish','closed','closed','','pinterest-board','','','2019-07-31 10:36:05','2019-07-31 10:36:05','',1260,'http://codesupply.co/?page_id=954',0,'page','',0),(1267,1,'2019-07-31 11:18:14','2019-07-31 11:18:14','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/toc {\"canvasClassName\":\"cnvs-block-toc-1564571474783\",\"canvasLocation\":\"root\"} /-->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564571492397\"} -->\n<h2 id=\"bordered-blocks\">Bordered Blocks</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571492399\"} -->\n<p>Integer nullam rhoncus metus a consequat ante donec magnis massa consectetuer ridiculus dis. Dolor porttitor eu.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564571492402\"} -->\n<h3 id=\"top-bottom-borders\">Single Border</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571492376\"} -->\n<p>Sit arcu quis sem cum aliquam. Donec libero nam eget leo. Fringilla ante mollis. Nec ligula aenean vitae integer massa tincidunt nulla donec vel quis porttitor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"is-style-cnvs-block-single-border\",\"canvasClassName\":\"cnvs-block-core-group-1574262402801\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-single-border\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574262406746\"} -->\n<p class=\"has-text-align-center is-style-cnvs-paragraph-callout\">Duis pretium rhoncus euismod. Donec ante risus, feugiat sit amet metus quis, congue imperdiet lectus. Etiam vel pharetra orci. Mauris blandit. </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564571609293\"} -->\n<h3 id=\"four-side-borders\">Four-Side Borders</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571609298\"} -->\n<p>Nascetur eget aliquam sociis nullam libero penatibus dolor. Orci phasellus quis pede nullam felis adipiscing nascetur sit justo. Sit ullamcorper vitae.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4,\"canvasClassName\":\"cnvs-block-core-heading-1564571609300\"} -->\n<h4 id=\"center-aligned\">Center-Aligned</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571609276\"} -->\n<p>Tincidunt vulputate eu. Ligula lorem neque nec quis aenean penatibus eget nam ultricies felis feugiat arcu nulla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"is-style-cnvs-block-bordered\",\"canvasClassName\":\"cnvs-block-core-group-1574262505654\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-bordered\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574262508314\"} -->\n<p class=\"has-text-align-center is-style-cnvs-paragraph-callout\">Ullamcorper sit amet rutrum varius id quam enim maecenas etiam vulputate aenean.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571657345\"} -->\n<p>Sem dapibus nulla imperdiet vel. Consequat neque a cum pellentesque tincidunt eleifend. Nulla donec ut quam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4,\"canvasClassName\":\"cnvs-block-core-heading-1564571658489\"} -->\n<h4 id=\"left-aligned\">Left-Aligned</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571658476\"} -->\n<p>Pretium lorem a odio elementum cras ligula. Nec vulputate venenatis eget tincidunt libero ligula mus vivamus pulvinar. Eros eget vulputate sociis nulla. Pellentesque ligula rhoncus ullamcorper commodo nisi ut eget vel venenatis sed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"align\":\"left\",\"className\":\"is-style-cnvs-block-bordered\",\"canvasClassName\":\"cnvs-block-core-group-1574263105855\"} -->\n<div class=\"wp-block-group alignleft is-style-cnvs-block-bordered\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574266329195\"} -->\n<p class=\"is-style-cnvs-paragraph-callout\">Vel vici donec ridiculus quis tincidunt consequat elit. Aliquet lorem mollis luctus.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564659839717\"} -->\n<p>Elit dictum neque eu tellus aenean ultricies sit commodo eget. Mus ut faucibus felis imperdiet etiam orci donec natoque aenean amet vel nisi. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571711161\"} -->\n<p>Nullam curabitur nulla aenean eu nunc libero consequat maecenas viverra enim elit. Varius etiam et consectetuer vivamus vulputate natoque ut nullam dictum nunc justo hendrerit massa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571712749\"} -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse pharetra arcu eu dui scelerisque gravida. Cras fringilla gravida lectus a luctus. Nunc in eros at lectus ultricies tempor. Nulla facilisi. Etiam id imperdiet ante, eget fringilla purus. Maecenas feugiat magna in venenatis lobortis. Pellentesque viverra, mi ut ornare tristique, turpis purus suscipit lectus, eu sodales dolor justo eu ex.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571712752\"} -->\n<p>Donec commodo, eros sed porta accumsan, est leo euismod ligula, quis rhoncus tellus sem ut risus. Morbi eget vehicula odio. Etiam vestibulum libero scelerisque ullamcorper blandit. Cras at blandit nibh, eget rhoncus ligula. Phasellus in dolor vel sem laoreet tincidunt ut convallis ipsum. Praesent orci felis, lacinia quis bibendum eu, aliquet eget lorem. Aenean in orci nec nunc efficitur rhoncus. Nullam et purus luctus, dictum quam at, sagittis erat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571712793\"} -->\n<p>Aenean tincidunt nibh a dui ullamcorper laoreet. Pellentesque mattis ullamcorper tellus, non vulputate nisl luctus imperdiet. Nulla gravida orci ac purus euismod, et placerat turpis dapibus. Etiam vel tristique turpis, tincidunt cursus neque. Nam vel suscipit turpis, a pharetra nibh. Curabitur lobortis justo a lectus vulputate, id ultrices turpis venenatis. In vitae risus vel dui porttitor tempor a id erat. Nulla sit amet porta lectus, nec sodales neque</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4,\"canvasClassName\":\"cnvs-block-core-heading-1564571712757\"} -->\n<h4 id=\"right-aligned\">Right-Aligned</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571712733\"} -->\n<p>Dolor sapien dictum ut libero. Integer magnis tincidunt quis nulla nam justo amet vidi sit elit. Ante pede massa nisi nullam tellus dolor dui mus quis tempus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564659886769\"} -->\n<p>Nec quam sit dolor ultricies etiam elementum vulputate eleifend. Praesent orci felis, lacinia quis bibendum eu, aliquet eget lorem. Aenean in orci nec nunc efficitur rhoncus. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"align\":\"right\",\"className\":\"is-style-cnvs-block-bordered\",\"canvasClassName\":\"cnvs-block-core-group-1574320891298\"} -->\n<div class=\"wp-block-group alignright is-style-cnvs-block-bordered\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574320896035\"} -->\n<p class=\"is-style-cnvs-paragraph-callout\">Aenean consequat aliquet laoreet venenatis nam enim. Laoreet vidi aliquet rhoncus. </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571765399\"} -->\n<p>Nam curabitur amet. Blandit curabitur sem integer rhoncus lorem imperdiet felis. Vitae tincidunt cum etiam ligula tempus quis phasellus varius eleifend ipsum consequat dis. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571766573\"} -->\n<p>Viverra ligula etiam felis sociis consequat metus nascetur vitae ultricies eget lorem vel faucibus. Eros sed pellentesque. Commodo nam ut.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571766578\"} -->\n<p>Cras venenatis volutpat odio, ut finibus erat luctus vulputate. Mauris sit amet lacus a mi gravida vehicula nec vel metus. In non pharetra enim, in consequat magna. Donec pulvinar id metus ac aliquet. Pellentesque pretium urna tincidunt leo laoreet, ac convallis elit vulputate. Vivamus commodo orci iaculis mattis aliquet. Morbi auctor mauris vitae metus rutrum luctus. Mauris mollis lectus nec gravida blandit. Mauris feugiat faucibus nulla eget imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571766633\"} -->\n<p>Nunc nulla dui, tempus congue luctus vitae, commodo eu nibh. Curabitur quis cursus erat. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate, feugiat tellus vel, rhoncus est.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564571766585\"} -->\n<h2 id=\"light-blocks\">Light Blocks</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571766588\"} -->\n<p>Aliquet enim dui libero lorem eget natoque pede. Justo cum sem ipsum etiam ultricies. Ipsum neque quam in tellus phasellus ut aenean augue justo eget.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564571766590\"} -->\n<h3 id=\"center-aligned-2\">Center-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571766553\"} -->\n<p>Tincidunt vulputate eu. Ligula lorem neque nec quis aenean penatibus eget nam ultricies felis feugiat arcu nulla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"is-style-cnvs-block-bg-light\",\"canvasClassName\":\"cnvs-block-core-group-1574320980942\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-bg-light\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574320984031\"} -->\n<p class=\"has-text-align-center is-style-cnvs-paragraph-callout\">Ullamcorper sit amet rutrum varius id quam enim maecenas etiam vulputate aenean.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571809168\"} -->\n<p>Sem dapibus nulla imperdiet vel. Consequat neque a cum pellentesque tincidunt eleifend. Nulla donec ut quam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564571810189\"} -->\n<h3 id=\"left-aligned-2\">Left-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571810171\"} -->\n<p>Pretium lorem a odio elementum cras ligula. Nec vulputate venenatis eget tincidunt libero ligula mus vivamus pulvinar. Eros eget vulputate sociis nulla. Pellentesque ligula rhoncus ullamcorper commodo nisi ut eget vel venenatis sed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"align\":\"left\",\"className\":\"is-style-cnvs-block-bg-light\",\"canvasClassName\":\"cnvs-block-core-group-1574321044479\"} -->\n<div class=\"wp-block-group alignleft is-style-cnvs-block-bg-light\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321049288\"} -->\n<p class=\"is-style-cnvs-paragraph-callout\">Vel vici donec ridiculus quis tincidunt consequat elit. Aliquet lorem mollis luctus.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564659936436\"} -->\n<p>Elit dictum neque eu tellus aenean ultricies sit commodo eget. Mus ut faucibus felis imperdiet etiam orci donec natoque aenean amet vel nisi. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571854024\"} -->\n<p>Nullam curabitur nulla aenean eu nunc libero consequat maecenas viverra enim elit. Varius etiam et consectetuer vivamus vulputate natoque ut nullam dictum nunc justo hendrerit massa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571855257\"} -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse pharetra arcu eu dui scelerisque gravida. Cras fringilla gravida lectus a luctus. Nunc in eros at lectus ultricies tempor. Nulla facilisi. Etiam id imperdiet ante, eget fringilla purus. Maecenas feugiat magna in venenatis lobortis. Pellentesque viverra, mi ut ornare tristique, turpis purus suscipit lectus, eu sodales dolor justo eu ex.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571855314\"} -->\n<p>Donec commodo, eros sed porta accumsan, est leo euismod ligula, quis rhoncus tellus sem ut risus. Morbi eget vehicula odio. Etiam vestibulum libero scelerisque ullamcorper blandit. Cras at blandit nibh, eget rhoncus ligula. Phasellus in dolor vel sem laoreet tincidunt ut convallis ipsum. Praesent orci felis, lacinia quis bibendum eu, aliquet eget lorem. Aenean in orci nec nunc efficitur rhoncus. Nullam et purus luctus, dictum quam at, sagittis erat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571855265\"} -->\n<p>Aenean tincidunt nibh a dui ullamcorper laoreet. Pellentesque mattis ullamcorper tellus, non vulputate nisl luctus imperdiet. Nulla gravida orci ac purus euismod, et placerat turpis dapibus. Etiam vel tristique turpis, tincidunt cursus neque. Nam vel suscipit turpis, a pharetra nibh. Curabitur lobortis justo a lectus vulputate, id ultrices turpis venenatis. In vitae risus vel dui porttitor tempor a id erat. Nulla sit amet porta lectus, nec sodales neque</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564571855269\"} -->\n<h3 id=\"right-aligned-2\">Right-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571855239\"} -->\n<p>Dolor sapien dictum ut libero. Integer magnis tincidunt quis nulla nam justo amet vidi sit elit. Ante pede massa nisi nullam tellus dolor dui mus quis tempus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"align\":\"right\",\"className\":\"is-style-cnvs-block-bg-light\",\"canvasClassName\":\"cnvs-block-core-group-1574321080593\"} -->\n<div class=\"wp-block-group alignright is-style-cnvs-block-bg-light\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321086621\"} -->\n<p class=\"is-style-cnvs-paragraph-callout\">Aenean consequat aliquet laoreet venenatis nam enim. Laoreet vidi aliquet rhoncus. </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564659987869\"} -->\n<p> Viverra ligula etiam felis sociis consequat metus nascetur vitae ultricies eget lorem vel faucibus. Eros sed pellentesque. Commodo nam utvenenatis nam enim. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571944606\"} -->\n<p>Nam curabitur amet. Blandit curabitur sem integer rhoncus lorem imperdiet felis. Vitae tincidunt cum etiam ligula tempus quis phasellus varius eleifend ipsum consequat dis.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571945826\"} -->\n<p>Viverra ligula etiam felis sociis consequat metus nascetur vitae ultricies eget lorem vel faucibus. Eros sed pellentesque. Commodo nam ut.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571945898\"} -->\n<p>Cras venenatis volutpat odio, ut finibus erat luctus vulputate. Mauris sit amet lacus a mi gravida vehicula nec vel metus. In non pharetra enim, in consequat magna. Donec pulvinar id metus ac aliquet. Pellentesque pretium urna tincidunt leo laoreet, ac convallis elit vulputate. Vivamus commodo orci iaculis mattis aliquet. Morbi auctor mauris vitae metus rutrum luctus. Mauris mollis lectus nec gravida blandit. Mauris feugiat faucibus nulla eget imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571945834\"} -->\n<p>Nunc nulla dui, tempus congue luctus vitae, commodo eu nibh. Curabitur quis cursus erat. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate, feugiat tellus vel, rhoncus est.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564571945837\"} -->\n<h2 id=\"inverse-blocks\">Inverse Blocks</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571945841\"} -->\n<p>Nascetur eget aliquam sociis nullam libero penatibus dolor. Orci phasellus quis pede nullam felis adipiscing nascetur sit justo. Sit ullamcorper vitae.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564571945844\"} -->\n<h3 id=\"center-aligned-3\">Center-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571945809\"} -->\n<p>Tincidunt vulputate eu. Ligula lorem neque nec quis aenean penatibus eget nam ultricies felis feugiat arcu nulla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"is-style-cnvs-block-bg-inverse\",\"canvasClassName\":\"cnvs-block-core-group-1574321123258\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-bg-inverse\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321130164\"} -->\n<p class=\"has-text-align-center is-style-cnvs-paragraph-callout\">Ullamcorper sit amet rutrum varius id quam enim maecenas etiam vulputate aenean.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571983814\"} -->\n<p>Sem dapibus nulla imperdiet vel. Consequat neque a cum pellentesque tincidunt eleifend. Nulla donec ut quam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564571985021\"} -->\n<h3 id=\"left-aligned-3\">Left-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564571985004\"} -->\n<p>Pretium lorem a odio elementum cras ligula. Nec vulputate venenatis eget tincidunt libero ligula mus vivamus pulvinar. Eros eget vulputate sociis nulla. Pellentesque ligula rhoncus ullamcorper commodo nisi ut eget vel venenatis sed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"align\":\"left\",\"className\":\"is-style-cnvs-block-bg-inverse\",\"canvasClassName\":\"cnvs-block-core-group-1574321170869\"} -->\n<div class=\"wp-block-group alignleft is-style-cnvs-block-bg-inverse\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321177248\"} -->\n<p class=\"is-style-cnvs-paragraph-callout\">Vel vici donec ridiculus quis tincidunt consequat elit. Aliquet lorem mollis luctus.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564660048162\"} -->\n<p> Elit dictum neque eu tellus aenean ultricies sit commodo eget. Mus ut faucibus felis imperdiet etiam orci donec natoque aenean amet vel nisi. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572031247\"} -->\n<p>Nullam curabitur nulla aenean eu nunc libero consequat maecenas viverra enim elit. Varius etiam et consectetuer vivamus vulputate natoque ut nullam dictum nunc justo hendrerit massa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572032494\"} -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse pharetra arcu eu dui scelerisque gravida. Cras fringilla gravida lectus a luctus. Nunc in eros at lectus ultricies tempor. Nulla facilisi. Etiam id imperdiet ante, eget fringilla purus. Maecenas feugiat magna in venenatis lobortis. Pellentesque viverra, mi ut ornare tristique, turpis purus suscipit lectus, eu sodales dolor justo eu ex.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572032553\"} -->\n<p>Donec commodo, eros sed porta accumsan, est leo euismod ligula, quis rhoncus tellus sem ut risus. Morbi eget vehicula odio. Etiam vestibulum libero scelerisque ullamcorper blandit. Cras at blandit nibh, eget rhoncus ligula. Phasellus in dolor vel sem laoreet tincidunt ut convallis ipsum. Praesent orci felis, lacinia quis bibendum eu, aliquet eget lorem. Aenean in orci nec nunc efficitur rhoncus. Nullam et purus luctus, dictum quam at, sagittis erat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572032502\"} -->\n<p>Aenean tincidunt nibh a dui ullamcorper laoreet. Pellentesque mattis ullamcorper tellus, non vulputate nisl luctus imperdiet. Nulla gravida orci ac purus euismod, et placerat turpis dapibus. Etiam vel tristique turpis, tincidunt cursus neque. Nam vel suscipit turpis, a pharetra nibh. Curabitur lobortis justo a lectus vulputate, id ultrices turpis venenatis. In vitae risus vel dui porttitor tempor a id erat. Nulla sit amet porta lectus, nec sodales neque</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572032506\"} -->\n<h3 id=\"right-aligned-3\">Right-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572032478\"} -->\n<p>Dolor sapien dictum ut libero. Integer magnis tincidunt quis nulla nam justo amet vidi sit elit. Ante pede massa nisi nullam tellus dolor dui mus quis tempus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"align\":\"right\",\"className\":\"is-style-cnvs-block-bg-inverse\",\"canvasClassName\":\"cnvs-block-core-group-1574321210666\"} -->\n<div class=\"wp-block-group alignright is-style-cnvs-block-bg-inverse\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321215705\"} -->\n<p class=\"is-style-cnvs-paragraph-callout\">Aenean consequat aliquet laoreet venenatis nam enim. Laoreet vidi aliquet rhoncus. </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564660100340\"} -->\n<p>Nec quam sit dolor ultricies etiam elementum vulputate eleifend. Laoreet venenatis nam enim tellus vulputate tincidunt. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572091678\"} -->\n<p>Nam curabitur amet. Blandit curabitur sem integer rhoncus lorem imperdiet felis. Vitae tincidunt cum etiam ligula tempus quis phasellus varius eleifend ipsum consequat dis.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572092696\"} -->\n<p>Viverra ligula etiam felis sociis consequat metus nascetur vitae ultricies eget lorem vel faucibus. Eros sed pellentesque. Commodo nam ut.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572092700\"} -->\n<p>Cras venenatis volutpat odio, ut finibus erat luctus vulputate. Mauris sit amet lacus a mi gravida vehicula nec vel metus. In non pharetra enim, in consequat magna. Donec pulvinar id metus ac aliquet. Pellentesque pretium urna tincidunt leo laoreet, ac convallis elit vulputate. Vivamus commodo orci iaculis mattis aliquet. Morbi auctor mauris vitae metus rutrum luctus. Mauris mollis lectus nec gravida blandit. Mauris feugiat faucibus nulla eget imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572092812\"} -->\n<p>Nunc nulla dui, tempus congue luctus vitae, commodo eu nibh. Curabitur quis cursus erat. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate, feugiat tellus vel, rhoncus est.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572092828\"} -->\n<h2 id=\"shadow-blocks\">Shadow Blocks</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572092712\"} -->\n<p>Nascetur eget aliquam sociis nullam libero penatibus dolor. Orci phasellus quis pede nullam felis adipiscing nascetur sit justo. Sit ullamcorper vitae.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572092716\"} -->\n<h3 id=\"center-aligned-4\">Center-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572092677\"} -->\n<p>Tincidunt vulputate eu. Ligula lorem neque nec quis aenean penatibus eget nam ultricies felis feugiat arcu nulla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"is-style-cnvs-block-shadow\",\"canvasClassName\":\"cnvs-block-core-group-1574321248186\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-shadow\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321254859\"} -->\n<p class=\"has-text-align-center is-style-cnvs-paragraph-callout\">Ullamcorper sit amet rutrum varius id quam enim maecenas etiam vulputate aenean.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572128168\"} -->\n<p>Sem dapibus nulla imperdiet vel. Consequat neque a cum pellentesque tincidunt eleifend. Nulla donec ut quam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572129578\"} -->\n<h3 id=\"left-aligned-4\">Left-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572129561\"} -->\n<p>Pretium lorem a odio elementum cras ligula. Nec vulputate venenatis eget tincidunt libero ligula mus vivamus pulvinar. Eros eget vulputate sociis nulla. Pellentesque ligula rhoncus ullamcorper commodo nisi ut eget vel venenatis sed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"align\":\"left\",\"className\":\"is-style-cnvs-block-shadow\",\"canvasClassName\":\"cnvs-block-core-group-1574321278153\"} -->\n<div class=\"wp-block-group alignleft is-style-cnvs-block-shadow\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321283411\"} -->\n<p class=\"is-style-cnvs-paragraph-callout\">Vel vici donec ridiculus quis tincidunt consequat elit. Aliquet lorem mollis luctus.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564660156373\"} -->\n<p> Elit dictum neque eu tellus aenean ultricies sit commodo eget. Mus ut faucibus felis imperdiet etiam orci donec natoque aenean amet vel nisi. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572179814\"} -->\n<p>Nullam curabitur nulla aenean eu nunc libero consequat maecenas viverra enim elit. Varius etiam et consectetuer vivamus vulputate natoque ut nullam dictum nunc justo hendrerit massa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572181532\"} -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse pharetra arcu eu dui scelerisque gravida. Cras fringilla gravida lectus a luctus. Nunc in eros at lectus ultricies tempor. Nulla facilisi. Etiam id imperdiet ante, eget fringilla purus. Maecenas feugiat magna in venenatis lobortis. Pellentesque viverra, mi ut ornare tristique, turpis purus suscipit lectus, eu sodales dolor justo eu ex.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572181537\"} -->\n<p>Donec commodo, eros sed porta accumsan, est leo euismod ligula, quis rhoncus tellus sem ut risus. Morbi eget vehicula odio. Etiam vestibulum libero scelerisque ullamcorper blandit. Cras at blandit nibh, eget rhoncus ligula. Phasellus in dolor vel sem laoreet tincidunt ut convallis ipsum. Praesent orci felis, lacinia quis bibendum eu, aliquet eget lorem. Aenean in orci nec nunc efficitur rhoncus. Nullam et purus luctus, dictum quam at, sagittis erat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572181604\"} -->\n<p>Aenean tincidunt nibh a dui ullamcorper laoreet. Pellentesque mattis ullamcorper tellus, non vulputate nisl luctus imperdiet. Nulla gravida orci ac purus euismod, et placerat turpis dapibus. Etiam vel tristique turpis, tincidunt cursus neque. Nam vel suscipit turpis, a pharetra nibh. Curabitur lobortis justo a lectus vulputate, id ultrices turpis venenatis. In vitae risus vel dui porttitor tempor a id erat. Nulla sit amet porta lectus, nec sodales neque</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572181550\"} -->\n<h3 id=\"right-aligned-4\">Right-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572181512\"} -->\n<p>Dolor sapien dictum ut libero. Integer magnis tincidunt quis nulla nam justo amet vidi sit elit. Ante pede massa nisi nullam tellus dolor dui mus quis tempus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"align\":\"right\",\"className\":\"is-style-cnvs-block-shadow\",\"canvasClassName\":\"cnvs-block-core-group-1574321308826\"} -->\n<div class=\"wp-block-group alignright is-style-cnvs-block-shadow\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph {\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321311554\"} -->\n<p class=\"is-style-cnvs-paragraph-callout\">Aenean consequat aliquet laoreet venenatis nam enim. Laoreet vidi aliquet rhoncus. </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564660213163\"} -->\n<p>Elit dictum neque eu tellus aenean ultricies sit commodo eget. Mus ut faucibus felis imperdiet etiam orci donec natoque aenean amet vel nisi. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572230799\"} -->\n<p>Nam curabitur amet. Blandit curabitur sem integer rhoncus lorem imperdiet felis. Vitae tincidunt cum etiam ligula tempus quis phasellus varius eleifend ipsum consequat dis.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1565614717687\"} -->\n<p>Viverra ligula etiam felis sociis consequat metus nascetur vitae ultricies eget lorem vel faucibus. Eros sed pellentesque. Commodo nam ut.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572231615\"} -->\n<p>Cras venenatis volutpat odio, ut finibus erat luctus vulputate. Mauris sit amet lacus a mi gravida vehicula nec vel metus. In non pharetra enim, in consequat magna. Donec pulvinar id metus ac aliquet. Pellentesque pretium urna tincidunt leo laoreet, ac convallis elit vulputate. Vivamus commodo orci iaculis mattis aliquet. Morbi auctor mauris vitae metus rutrum luctus. Mauris mollis lectus nec gravida blandit. Mauris feugiat faucibus nulla eget imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1164572092828\"} -->\n<h2 id=\"shadow-blocks\">Background Blocks</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1264572092712\"} -->\n<p>Nascetur eget aliquam sociis nullam libero penatibus dolor. Orci phasellus quis pede nullam felis adipiscing nascetur sit justo. Sit ullamcorper vitae.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1364572092716\"} -->\n<h3 id=\"center-aligned-4\">Center-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1464572092677\"} -->\n<p>Tincidunt vulputate eu. Ligula lorem neque nec quis aenean penatibus eget nam ultricies felis feugiat arcu nulla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":170,\"canvasClassName\":\"cnvs-block-core-cover-1574321369638\"} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"customTextColor\":\"#ffffff\",\"fontSize\":\"large\",\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321383484\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-text-align-center has-large-font-size is-style-cnvs-paragraph-callout\">Ullamcorper sit amet rutrum varius id quam enim maecenas etiam vulputate aenean.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1764572128168\"} -->\n<p>Sem dapibus nulla imperdiet vel. Consequat neque a cum pellentesque tincidunt eleifend. Nulla donec ut quam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1864572129578\"} -->\n<h3 id=\"left-aligned-4\">Left-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1964572129561\"} -->\n<p>Pretium lorem a odio elementum cras ligula. Nec vulputate venenatis eget tincidunt libero ligula mus vivamus pulvinar. Eros eget vulputate sociis nulla. Pellentesque ligula rhoncus ullamcorper commodo nisi ut eget vel venenatis sed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":171,\"align\":\"left\",\"canvasClassName\":\"cnvs-block-core-cover-1574321441246\"} -->\n<div class=\"wp-block-cover alignleft has-background-dim\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"placeholder\":\"Write title…\",\"customTextColor\":\"#ffffff\",\"fontSize\":\"large\",\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321451706\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-large-font-size is-style-cnvs-paragraph-callout\">Vel vici donec ridiculus quis tincidunt consequat elit. Aliquet lorem mollis luctus.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1114660156373\"} -->\n<p> Elit dictum neque eu tellus aenean ultricies sit commodo eget. Mus ut faucibus felis imperdiet etiam orci donec natoque aenean amet vel nisi. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1124572179814\"} -->\n<p>Nullam curabitur nulla aenean eu nunc libero consequat maecenas viverra enim elit. Varius etiam et consectetuer vivamus vulputate natoque ut nullam dictum nunc justo hendrerit massa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1134572181532\"} -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse pharetra arcu eu dui scelerisque gravida. Cras fringilla gravida lectus a luctus. Nunc in eros at lectus ultricies tempor. Nulla facilisi. Etiam id imperdiet ante, eget fringilla purus. Maecenas feugiat magna in venenatis lobortis. Pellentesque viverra, mi ut ornare tristique, turpis purus suscipit lectus, eu sodales dolor justo eu ex.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1144572181537\"} -->\n<p>Donec commodo, eros sed porta accumsan, est leo euismod ligula, quis rhoncus tellus sem ut risus. Morbi eget vehicula odio. Etiam vestibulum libero scelerisque ullamcorper blandit. Cras at blandit nibh, eget rhoncus ligula. Phasellus in dolor vel sem laoreet tincidunt ut convallis ipsum. Praesent orci felis, lacinia quis bibendum eu, aliquet eget lorem. Aenean in orci nec nunc efficitur rhoncus. Nullam et purus luctus, dictum quam at, sagittis erat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1154572181604\"} -->\n<p>Aenean tincidunt nibh a dui ullamcorper laoreet. Pellentesque mattis ullamcorper tellus, non vulputate nisl luctus imperdiet. Nulla gravida orci ac purus euismod, et placerat turpis dapibus. Etiam vel tristique turpis, tincidunt cursus neque. Nam vel suscipit turpis, a pharetra nibh. Curabitur lobortis justo a lectus vulputate, id ultrices turpis venenatis. In vitae risus vel dui porttitor tempor a id erat. Nulla sit amet porta lectus, nec sodales neque</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1164572181550\"} -->\n<h3 id=\"right-aligned-4\">Right-Aligned</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1174572181512\"} -->\n<p>Dolor sapien dictum ut libero. Integer magnis tincidunt quis nulla nam justo amet vidi sit elit. Ante pede massa nisi nullam tellus dolor dui mus quis tempus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":171,\"align\":\"right\",\"canvasClassName\":\"cnvs-block-core-cover-1574321540115\"} -->\n<div class=\"wp-block-cover alignright has-background-dim\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"placeholder\":\"Write title…\",\"customTextColor\":\"#ffffff\",\"fontSize\":\"large\",\"className\":\"is-style-cnvs-paragraph-callout\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574321551718\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-large-font-size is-style-cnvs-paragraph-callout\">Aenean consequat aliquet laoreet venenatis nam enim. Laoreet vidi aliquet rhoncus. </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1194660213163\"} -->\n<p>Elit dictum neque eu tellus aenean ultricies sit commodo eget. Mus ut faucibus felis imperdiet etiam orci donec natoque aenean amet vel nisi. Suspendisse placerat lorem vitae arcu scelerisque eleifend. Nam leo tellus, pharetra id posuere non, semper quis ligula. Nunc quis rutrum enim. Praesent egestas sapien nec tellus eleifend, feugiat cursus erat condimentum. Cras egestas dolor ac lacus euismod pulvinar. Donec et arcu vulputate. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1204572230799\"} -->\n<p>Nam curabitur amet. Blandit curabitur sem integer rhoncus lorem imperdiet felis. Vitae tincidunt cum etiam ligula tempus quis phasellus varius eleifend ipsum consequat dis.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572231634\"} -->\n<p>Viverra ligula etiam felis sociis consequat metus nascetur vitae ultricies eget lorem vel faucibus. Eros sed pellentesque. Commodo nam ut.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1214572231615\"} -->\n<p>Cras venenatis volutpat odio, ut finibus erat luctus vulputate. Mauris sit amet lacus a mi gravida vehicula nec vel metus. In non pharetra enim, in consequat magna. Donec pulvinar id metus ac aliquet. Pellentesque pretium urna tincidunt leo laoreet, ac convallis elit vulputate. Vivamus commodo orci iaculis mattis aliquet. Morbi auctor mauris vitae metus rutrum luctus. Mauris mollis lectus nec gravida blandit. Mauris feugiat faucibus nulla eget imperdiet.</p>\n<!-- /wp:paragraph -->','Styled Blocks','','publish','closed','closed','','styled-blocks','','','2019-07-31 11:18:14','2019-07-31 11:18:14','',1260,'http://codesupply.co/?page_id=980',0,'page','',0),(1268,1,'2019-07-31 11:27:39','2019-07-31 11:27:39','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1569242428612\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1569242453709\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569242453717\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">CANVAS</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/toc {\"canvasClassName\":\"cnvs-block-toc-1564572335093\",\"canvasLocation\":\"root\"} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572352230\"} -->\n<p>Quam maecenas vitae laoreet eget donec etiam ullamcorper varius a. Ultricies eu eros leo sem ut aenean. Maecenas montes donec vel. Nec sit augue cras a id rhoncus lorem nunc. Vici ante enim rhoncus eget aenean tincidunt vitae eleifend. Et veni quis tellus felis vulputate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572354236\"} -->\n<h2 id=\"simple-lists\">Simple Lists</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354239\"} -->\n<p>Quis arcu enim pulvinar vitae. Porttitor faucibus felis vivamus enim venenatis. Phasellus enim metus amet quis curabitur elementum tellus eget pede nec a nam ipsum. Sed ante quis aenean eu justo pede tincidunt amet ligula rhoncus libero. Mollis pretium faucibus ante libero vitae lorem consectetuer. Quam eu dolor lorem magnis eleifend augue penatibus sem amet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572354242\"} -->\n<h3 id=\"ordered\">Ordered</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true,\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1564572354244\"} -->\n<ol class=\"is-style-cnvs-list-styled\"><li>Tempus amet ut etiam donec nascetur ante phasellus pede eu quam rhoncus in eget.</li><li>Dis aenean justo sem eu.</li><li>Viverra montes pretium nec eget.</li><li>Eget aenean tempus vulputate quam.</li><li>Nec dapibus neque semper ut aenean ligula metus natoque orci nisi cras.</li><li>Nam sit tellus vel imperdiet ligula.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354248\"} -->\n<p>Enim etiam eleifend libero dapibus semper felis aenean metus porttitor vitae. Cum nam aenean vel blandit ultricies et semper amet imperdiet leo commodo nunc. Libero pretium quam ante donec maecenas blandit rhoncus nunc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572354253\"} -->\n<h3 id=\"unordered\">Unordered</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1564572354256\"} -->\n<ul class=\"is-style-cnvs-list-styled\"><li>Tempus amet ut etiam donec nascetur ante phasellus pede eu quam rhoncus in eget.</li><li>Dis aenean justo sem eu.</li><li>Viverra montes pretium nec eget.</li><li>Eget aenean tempus vulputate quam.</li><li>Nec dapibus neque semper ut aenean ligula metus natoque orci nisi cras.</li><li>Nam sit tellus vel imperdiet ligula.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354260\"} -->\n<p>Nisi ipsum etiam enim ligula sed augue cum odio imperdiet consectetuer metus sit. Condimentum pretium nullam venenatis vulputate. Eleifend amet lorem elit aenean.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572354264\"} -->\n<h2 id=\"positive-lists\">Positive Lists</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354267\"} -->\n<p>Quis arcu enim pulvinar vitae. Porttitor faucibus felis vivamus enim venenatis. Phasellus enim metus amet quis curabitur elementum tellus eget pede nec a nam ipsum. Sed ante quis aenean eu justo pede tincidunt amet ligula rhoncus libero. Mollis pretium faucibus ante libero vitae lorem consectetuer. Quam eu dolor lorem magnis eleifend augue penatibus sem amet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572354270\"} -->\n<h3 id=\"ordered-2\">Ordered</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true,\"className\":\"is-style-cnvs-list-styled-positive\",\"canvasClassName\":\"cnvs-block-core-list-1564572354272\"} -->\n<ol class=\"is-style-cnvs-list-styled-positive\"><li>Tempus amet ut etiam donec nascetur ante phasellus pede eu quam rhoncus in eget.</li><li>Dis aenean justo sem eu.</li><li>Viverra montes pretium nec eget.</li><li>Eget aenean tempus vulputate quam.</li><li>Nec dapibus neque semper ut aenean ligula metus natoque orci nisi cras.</li><li>Nam sit tellus vel imperdiet ligula.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354274\"} -->\n<p>Enim etiam eleifend libero dapibus semper felis aenean metus porttitor vitae. Cum nam aenean vel blandit ultricies et semper amet imperdiet leo commodo nunc. Libero pretium quam ante donec maecenas blandit rhoncus nunc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572354277\"} -->\n<h3 id=\"unordered-2\">Unordered</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled-positive\",\"canvasClassName\":\"cnvs-block-core-list-1564572354279\"} -->\n<ul class=\"is-style-cnvs-list-styled-positive\"><li>Tempus amet ut etiam donec nascetur ante phasellus pede eu quam rhoncus in eget.</li><li>Dis aenean justo sem eu.</li><li>Viverra montes pretium nec eget.</li><li>Eget aenean tempus vulputate quam.</li><li>Nec dapibus neque semper ut aenean ligula metus natoque orci nisi cras.</li><li>Nam sit tellus vel imperdiet ligula.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354281\"} -->\n<p>Nisi ipsum etiam enim ligula sed augue cum odio imperdiet consectetuer metus sit. Condimentum pretium nullam venenatis vulputate. Eleifend amet lorem elit aenean.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572354286\"} -->\n<h2 id=\"negative-lists\">Negative Lists</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354290\"} -->\n<p>Ridiculus libero phasellus vulputate nam odio nulla viverra laoreet maecenas vel eleifend. Dictum eu vel luctus. Nisi massa integer semper nullam amet phasellus penatibus. Quam ligula donec venenatis quis aenean neque vulputate eget montes tempus massa. Vel justo sem vici leo commodo consequat massa. Dictum aenean tempus enim sem ultricies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572354294\"} -->\n<h3 id=\"ordered-3\">Ordered</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true,\"className\":\"is-style-cnvs-list-styled-negative\",\"canvasClassName\":\"cnvs-block-core-list-1564572354298\"} -->\n<ol class=\"is-style-cnvs-list-styled-negative\"><li>Tempus amet ut etiam donec nascetur ante phasellus pede eu quam rhoncus in eget.</li><li>Dis aenean justo sem eu.</li><li>Viverra montes pretium nec eget.</li><li>Eget aenean tempus vulputate quam.</li><li>Nec dapibus neque semper ut aenean ligula metus natoque orci nisi cras.</li><li>Nam sit tellus vel imperdiet ligula.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354301\"} -->\n<p>Enim etiam eleifend libero dapibus semper felis aenean metus porttitor vitae. Cum nam aenean vel blandit ultricies et semper amet imperdiet leo commodo nunc. Libero pretium quam ante donec maecenas blandit rhoncus nunc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1564572354304\"} -->\n<h3 id=\"unordered-3\">Unordered</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"className\":\"is-style-cnvs-list-styled-negative\",\"canvasClassName\":\"cnvs-block-core-list-1564572354336\"} -->\n<ul class=\"is-style-cnvs-list-styled-negative\"><li>Tempus amet ut etiam donec nascetur ante phasellus pede eu quam rhoncus in eget.</li><li>Dis aenean justo sem eu.</li><li>Viverra montes pretium nec eget.</li><li>Eget aenean tempus vulputate quam.</li><li>Nec dapibus neque semper ut aenean ligula metus natoque orci nisi cras.</li><li>Nam sit tellus vel imperdiet ligula.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572354206\"} -->\n<p>Id libero odio pulvinar penatibus maecenas sem venenatis quisque lorem amet ultricies sociis veni. Maecenas id cum integer nam sem ultricies. Phasellus sed quis eleifend eget nisi eros viverra rhoncus ligula adipiscing aenean. Magnis amet donec lorem aenean laoreet eu curabitur hendrerit nam quam. Donec pretium a nascetur etiam sociis quis elit justo eu. Sit ipsum eget venenatis sapien et cum magnis sem.</p>\n<!-- /wp:paragraph -->','Styled Lists','','publish','closed','closed','','styled-lists','','','2019-07-31 11:27:39','2019-07-31 11:27:39','',1260,'http://codesupply.co/?page_id=987',0,'page','',0),(1269,1,'2019-07-31 11:29:10','2019-07-31 11:29:10','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1569242428612\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1569242453709\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569242453717\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">CANVAS</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/toc {\"canvasClassName\":\"cnvs-block-toc-1564572512944\",\"canvasLocation\":\"root\"} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572522744\"} -->\n<p>Eu nascetur tempus quam eget veni lorem felis maecenas. Sem vivamus metus rhoncus. Magnis tempus sed blandit maecenas venenatis eros libero ut quis amet varius. Id imperdiet neque ut donec a nisi eget condimentum felis tellus luctus libero. Sed nisi ante maecenas nec etiam eget feugiat nunc donec metus. Mollis dolor donec leo etiam pellentesque nulla natoque ultricies et.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-cnvs-heading-numbered\",\"canvasClassName\":\"cnvs-block-core-heading-1564572523713\"} -->\n<h2 class=\"is-style-cnvs-heading-numbered\" id=\"metus-adipiscing-aenean-massa\">Metus adipiscing aenean massa</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572523716\"} -->\n<p>Nec veni odio mus fringilla vici ligula orci aliquet eleifend rhoncus neque. Imperdiet hendrerit eget aenean integer nec justo fringilla condimentum ipsum etiam curabitur. Vitae eu sem. Vici vidi luctus. Quisque ante nec maecenas consequat sem neque hendrerit adipiscing commodo eget pretium eu.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572523718\"} -->\n<p>Ut venenatis vel imperdiet libero nec aliquet rhoncus blandit porttitor vivamus tempus condimentum pretium. Consequat sit quam hendrerit vel libero sem ante. Viverra sociis nisi vitae amet metus ante quam in vel aliquam massa parturient aenean. Quam dui lorem. Adipiscing dis elementum leo viverra quis. Donec rhoncus nam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-cnvs-heading-numbered\",\"canvasClassName\":\"cnvs-block-core-heading-1564572523720\"} -->\n<h2 class=\"is-style-cnvs-heading-numbered\" id=\"eleifend-sapien-vulputate\">Eleifend sapien vulputate</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572523726\"} -->\n<p>Tellus etiam maecenas faucibus nulla ante. Nisi quis orci dolor. Ut pellentesque aenean pede venenatis rhoncus sit tempus sem. Aenean orci rutrum laoreet eget pede cras. Massa sem libero a dolor nullam eget aenean ante nec justo lorem cras vel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"is-style-cnvs-heading-numbered\",\"canvasClassName\":\"cnvs-block-core-heading-1564572523729\"} -->\n<h3 class=\"is-style-cnvs-heading-numbered\" id=\"aliquam-enim-arcu-ut\">Aliquam enim arcu ut</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572523731\"} -->\n<p>Vulputate pede nisi arcu ut nullam. Ac elit ut ullamcorper aenean dolor pede nec aliquam. Cum enim a. Ut dui phasellus cras. Vivamus pulvinar justo faucibus nec semper lorem nullam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572523734\"} -->\n<p>Ut pede leo libero cum ridiculus quis arcu natoque ullamcorper eget nulla sociis. Semper condimentum quam integer lorem. Amet ac dis semper eget a dictum ligula. Justo eu ut. Id ridiculus lorem ut amet dis orci tellus etiam aenean pellentesque. Ultricies dui vel ipsum eleifend dolor ante donec justo nullam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"className\":\"is-style-cnvs-heading-numbered\",\"canvasClassName\":\"cnvs-block-core-heading-1564572523736\"} -->\n<h3 class=\"is-style-cnvs-heading-numbered\" id=\"ligula-orci-justo-imperdiet\">Ligula orci justo imperdiet</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572523738\"} -->\n<p>Sociis imperdiet eget pulvinar quam cras vel tempus nec id. Etiam ac nulla pulvinar aenean nec. Nullam amet curabitur nam vulputate imperdiet sapien. Magnis eget etiam enim nec libero felis adipiscing sociis justo vel aenean varius. Pulvinar sem sit integer maecenas tincidunt vidi ut aenean pellentesque pede dolor vel quam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572523782\"} -->\n<p>Nullam vidi imperdiet tincidunt ante. Ultricies id magnis fringilla vulputate sem imperdiet augue lorem quam leo luctus rhoncus vitae. Eu elementum nam natoque ligula nisi sit aenean pretium justo. Sapien eu viverra nec dolor. Libero eros pede tempus curabitur hendrerit rhoncus nulla lorem laoreet. Tincidunt cum a ac viverra penatibus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-cnvs-heading-numbered\",\"canvasClassName\":\"cnvs-block-core-heading-1564572523746\"} -->\n<h2 class=\"is-style-cnvs-heading-numbered\" id=\"ut-fringilla-nec-enim-sit-nullam-pede\">Ut fringilla nec enim sit nullam pede</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572523690\"} -->\n<p>Vulputate tempus ac a ut lorem enim condimentum. Augue vulputate dolor venenatis eget consequat ultricies ut mollis quis dapibus nascetur nulla. Eu justo dictum maecenas venenatis luctus imperdiet fringilla. Nulla rhoncus luctus sem semper tempus lorem neque feugiat pretium magnis donec justo. Ultricies sociis ullamcorper leo aenean tellus.</p>\n<!-- /wp:paragraph -->','Numbered Headings','','publish','closed','closed','','numbered-headings','','','2019-07-31 11:29:10','2019-07-31 11:29:10','',1260,'http://codesupply.co/?page_id=989',0,'page','',0),(1270,1,'2019-07-31 11:31:05','2019-07-31 11:31:05','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1569242428612\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1569242453709\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569242453717\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">CANVAS</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572608599\"} -->\n<h2 id=\"simple\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"dropCap\":true,\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608602\"} -->\n<p class=\"has-drop-cap\">Aenean eget mus orci aliquet phasellus enim. Nullam felis dis viverra ridiculus blandit consectetuer. Nisi lorem enim amet ut viverra nascetur blandit justo tincidunt ante commodo vitae. Vitae ipsum leo justo libero mus aenean venenatis ut ante penatibus nisi vulputate tempus. Natoque quam dapibus sit ante. Lorem elit libero et integer vel nisi aenean eu sed id ut eget.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608604\"} -->\n<p>Cras curabitur nisi ligula amet et condimentum sapien quis etiam aenean. Quam quis consectetuer feugiat enim felis pellentesque vel amet a mollis libero condimentum nascetur. Tellus adipiscing dapibus amet sit pede ultricies ligula. Massa parturient faucibus vidi. Imperdiet feugiat eget sit commodo curabitur rutrum vulputate justo magnis aliquet vel quisque. Pulvinar arcu felis.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572608606\"} -->\n<h2 id=\"bordered\">Bordered</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bordered\",\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608608\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bordered\">Quam venenatis. Eget aliquam nam parturient vulputate ante dui faucibus dolor et ullamcorper nisi. Etiam dapibus feugiat ante vidi. Tellus quam aenean ullamcorper vici a. Et ante sociis massa enim ut pellentesque eu nam. Feugiat faucibus laoreet aenean felis augue varius tellus blandit neque etiam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608610\"} -->\n<p>Elementum et elit quis maecenas consequat felis sem etiam leo. Eleifend quis dolor hendrerit a dapibus ipsum feugiat. Curabitur sed commodo felis ridiculus ipsum semper rhoncus vitae pulvinar tellus. Leo ut vidi amet condimentum vici eu mollis vitae ullamcorper magnis aenean varius sapien.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572608613\"} -->\n<h2 id=\"border-right\">Border Right</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-border-right\",\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608615\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-border-right\">Nte orci dapibus libero. A aenean vivamus vulputate magnis dolor felis. Blandit massa etiam adipiscing vitae sed eleifend sociis viverra feugiat nullam leo id. Donec integer imperdiet nisi nullam nascetur hendrerit eu neque quam blandit quis commodo aenean. Ligula eu dis quis tellus laoreet enim et. Sed pede a enim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608617\"} -->\n<p>Dictum consequat natoque justo ante quam ligula hendrerit ut felis. Ligula nullam nisi blandit dui eros. Eget varius dolor sem eleifend semper ridiculus neque. Vidi quam imperdiet ac.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572608619\"} -->\n<h2 id=\"light\">Light</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bg-light\",\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608661\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bg-light\">Feugiat justo consectetuer dolor libero commodo ac nisi pretium quis natoque odio. Ipsum ullamcorper aliquam tellus pede felis donec. Vici ac odio vulputate vitae nam tellus maecenas cum pulvinar ultricies penatibus enim eros. Nam vulputate integer. Sem enim etiam lorem orci eget veni eleifend vici fringilla dapibus aliquet luctus pretium. Pede eget donec pretium ante.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608624\"} -->\n<p>Dolor mus ut eu sit pretium tempus adipiscing vel maecenas quis. Felis aenean dis imperdiet tellus maecenas vitae rutrum eros. Eget ipsum libero vitae. Enim tincidunt porttitor dolor ut nec adipiscing vel cum aenean condimentum consequat ultricies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1564572608627\"} -->\n<h2 id=\"inverse\">Inverse</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"dropCap\":true,\"className\":\"is-cnvs-dropcap-bg-dark\",\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608629\"} -->\n<p class=\"has-drop-cap is-cnvs-dropcap-bg-dark\">Mec vulputate eget nulla aenean pede laoreet eleifend rutrum. Elementum nec tellus sem sit mollis etiam massa quam veni. Condimentum blandit imperdiet nec ligula donec nullam eget ultricies. Quisque sociis libero ipsum nunc montes quam a dis amet ligula natoque. Nascetur ante ridiculus ultricies eget eros orci etiam amet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564572608565\"} -->\n<p>Pretium ridiculus venenatis metus commodo ante id cum eros sociis et pede. Eget nulla hendrerit enim. Aenean montes ut elit dolor vitae nec semper maecenas libero rhoncus consequat.</p>\n<!-- /wp:paragraph -->','Drop Caps','','publish','closed','closed','','drop-caps','','','2019-07-31 11:31:05','2019-07-31 11:31:05','',1260,'http://codesupply.co/?page_id=992',0,'page','',0),(1378,1,'2019-09-23 12:36:46','2019-09-23 12:36:46','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1569242428612\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1569242453709\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569242453717\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">CANVAS</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1569241568529\"} -->\n<h2 id=\"variations\">Variations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569241568535\"} -->\n<p><span class=\"cnvs-badge is-cnvs-badge-color-primary\">PRIMARY</span>&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-secondary\">SECONDARY</span>&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-success\">SUCCESS</span>&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-danger\">DANGER</span>&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-warning\">WARNING</span>&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-info\">INFO</span>&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-dark\">DARK</span>&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-light\">LIGHT</span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1569241568541\"} -->\n<h2 id=\"buttons\">Buttons</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1574517373061\",\"canvasLocation\":\"root\",\"columns\":4} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569241975293\",\"canvasLocation\":\"default\",\"size\":3} -->\n<!-- wp:button {\"canvasClassName\":\"cnvs-block-core-button-1569241767722\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"/\">Button <span class=\"cnvs-badge is-cnvs-badge-color-light\">new</span></a></div>\n<!-- /wp:button -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569241975303\",\"canvasLocation\":\"default\",\"size\":3} -->\n<!-- wp:button {\"backgroundColor\":\"very-light-gray\",\"customTextColor\":\"#000000\",\"canvasClassName\":\"cnvs-block-core-button-1569241803115\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background has-very-light-gray-background-color\" href=\"/\" style=\"color:#000000\">Button <span class=\"cnvs-badge is-cnvs-badge-color-light\">new</span></a></div>\n<!-- /wp:button -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569241997632\",\"canvasLocation\":\"default\",\"size\":3} -->\n<!-- wp:button {\"customBackgroundColor\":\"#28a745\",\"canvasClassName\":\"cnvs-block-core-button-1569242127658\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"background-color:#28a745\">Button <span class=\"cnvs-badge is-cnvs-badge-color-light\">new</span></a></div>\n<!-- /wp:button -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569241998253\",\"canvasLocation\":\"default\",\"size\":3} -->\n<!-- wp:button {\"customBackgroundColor\":\"#17a2b8\",\"canvasClassName\":\"cnvs-block-core-button-1569242156923\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"background-color:#17a2b8\">button <span class=\"cnvs-badge is-cnvs-badge-color-light\">new</span></a></div>\n<!-- /wp:button -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1569241975215\",\"canvasLocation\":\"root\",\"columns\":4} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569242274661\",\"canvasLocation\":\"default\",\"size\":3} -->\n<!-- wp:button {\"textColor\":\"very-dark-gray\",\"customBackgroundColor\":\"#ffc107\",\"canvasClassName\":\"cnvs-block-core-button-1569242274654\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-very-dark-gray-color has-background\" href=\"/\" style=\"background-color:#ffc107\">Button <span class=\"cnvs-badge is-cnvs-badge-color-light\">new</span></a></div>\n<!-- /wp:button -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569242274673\",\"canvasLocation\":\"default\",\"size\":3} -->\n<!-- wp:button {\"textColor\":\"very-light-gray\",\"customBackgroundColor\":\"#dc3545\",\"canvasClassName\":\"cnvs-block-core-button-1569242274668\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-very-light-gray-color has-background\" href=\"/\" style=\"background-color:#dc3545\">Button <span class=\"cnvs-badge is-cnvs-badge-color-light\">new</span></a></div>\n<!-- /wp:button -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569242274685\",\"canvasLocation\":\"default\",\"size\":3} /-->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569242274697\",\"canvasLocation\":\"default\",\"size\":3} /-->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1569241568551\"} -->\n<h2 id=\"headings\">Headings</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569241568557\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":1,\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1569241568562\"} -->\n<h1 class=\"is-style-default\">Example heading&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-default\">NEW</span></h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1569241568567\"} -->\n<h2>Example heading&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-default\">NEW</span></h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1569241568571\"} -->\n<h3>Example heading&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-default\">NEW</span></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4,\"canvasClassName\":\"cnvs-block-core-heading-1569241568577\"} -->\n<h4>Example heading&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-default\">NEW</span></h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1569241568584\"} -->\n<h5>Example heading&nbsp;<span class=\"cnvs-badge is-cnvs-badge-color-default\">NEW</span></h5>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1569241568590\"} -->\n<h6>Example heading&nbsp;<span class=\"pk-badge\">NEW</span></h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569241568595\"} -->\n<p>Sit nisi ridiculus elit a eget. Ipsum id eu faucibus. Pede condimentum etiam et cras lorem eget. Ligula ultricies quis. Varius nunc pulvinar vitae nam tellus. Ultricies penatibus eu vitae aenean parturient etiam massa vel tellus vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569241568603\"} -->\n<p>Aenean id ut. Ac condimentum tempus tellus blandit felis libero etiam vel maecenas feugiat quam eget pede. Cras commodo ut rutrum enim dolor. Felis consequat vitae mollis eros mus ut vel. Tellus ut penatibus id sed sapien viverra tincidunt enim vulputate pede blandit et integer. Imperdiet sit in eros semper.</p>\n<!-- /wp:paragraph -->','Badges','','publish','closed','closed','','badges','','','2019-09-23 12:36:46','2019-09-23 12:36:46','',1260,'https://codesupply.co/?page_id=1378',0,'page','',0),(1738,1,'2019-09-26 11:18:50','2019-09-26 11:18:50','<!-- wp:canvas/section {\"canvasClassName\":\"cnvs-block-section-1572878045000\",\"canvasLocation\":\"root\",\"layout\":\"full\"} -->\n<!-- wp:canvas/section-content {\"canvasClassName\":\"cnvs-block-section-content-1572878046368\",\"canvasLocation\":\"default\"} -->\n<!-- wp:heading {\"level\":1,\"canvasClassName\":\"cnvs-block-core-heading-1572878075931\"} -->\n<h1>Category Blocks</h1>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"section-wide\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-title-block\",\"canvasClassName\":\"cnvs-block-core-heading-1569497391724\"} -->\n<h2 class=\"is-style-title-block\">Fullwidth </h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/featured-categories {\"canvasClassName\":\"cnvs-block-featured-categories-1569497374852\",\"canvasLocation\":\"section-wide\",\"layout\":\"tiles\",\"maximum\":4} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569497411425\"} -->\n<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus lobortis diam at lorem venenatis, lobortis faucibus mauris tincidunt. Vivamus eu euismod quam. Nam lobortis erat sit amet turpis porta venenatis. Nulla malesuada ut nunc nec dapibus. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569497427184\"} -->\n<p>Morbi bibendum, felis eu placerat viverra, lectus est tempor lectus, vel euismod purus risus et lorem. Fusce blandit metus ac nisl congue, in aliquet dui efficitur. Aliquam vel velit eget purus pharetra placerat id in purus. Phasellus sed urna dignissim, lacinia leo posuere, rhoncus felis. Aliquam et elit sapien. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/section-content -->\n<!-- /wp:canvas/section -->\n\n<!-- wp:canvas/section {\"canvasClassName\":\"cnvs-block-section-1569497090600\",\"canvasLocation\":\"root\",\"layout\":\"with-sidebar\"} -->\n<!-- wp:canvas/section-content {\"canvasClassName\":\"cnvs-block-section-content-1569497091874\",\"canvasLocation\":\"default\"} -->\n<!-- wp:heading {\"className\":\"is-style-title-block\",\"canvasClassName\":\"cnvs-block-core-heading-1569497189490\"} -->\n<h2 class=\"is-style-title-block\">Inside a Sidebar Section</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/featured-categories {\"canvasClassName\":\"cnvs-block-featured-categories-1569497102425\",\"canvasLocation\":\"section-content\",\"layout\":\"tiles\",\"maximum\":4} /-->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569497386157\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/section-content -->\n\n<!-- wp:canvas/section-sidebar {\"canvasClassName\":\"cnvs-block-section-sidebar-1569497091980\",\"canvasLocation\":\"default\"} -->\n<!-- wp:heading {\"className\":\"is-style-title-block\",\"canvasClassName\":\"cnvs-block-core-heading-1569497163957\"} -->\n<h2 class=\"is-style-title-block\">Widget</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/featured-categories {\"canvasClassName\":\"cnvs-block-featured-categories-1569497112754\",\"canvasLocation\":\"section-sidebar\",\"layout\":\"vertical-list\",\"maximum\":4} /-->\n<!-- /wp:canvas/section-sidebar -->\n<!-- /wp:canvas/section -->','Category Blocks','','publish','closed','closed','','category-blocks','','','2019-09-26 11:18:50','2019-09-26 11:18:50','',0,'https://codesupply.co/?page_id=1738',0,'page','',0),(1748,1,'2019-09-26 11:33:29','2019-09-26 11:33:29','<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1569497730983\",\"canvasLocation\":\"root\",\"marginBottom\":80,\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569497731027\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":169,\"dimRatio\":0,\"minHeight\":260,\"className\":\"is-cnvs-vert-align-middle\",\"canvasClassName\":\"cnvs-block-core-cover-1574261382253\"} -->\n<div class=\"wp-block-cover is-cnvs-vert-align-middle\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:260px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:button {\"align\":\"center\",\"canvasClassName\":\"cnvs-block-core-button-1569497852708\"} -->\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\">Browse Shop</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574261620734\"} -->\n<p></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569497731104\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":169,\"dimRatio\":0,\"minHeight\":260,\"className\":\"is-cnvs-vert-align-middle\",\"canvasClassName\":\"cnvs-block-core-cover-1574261480269\"} -->\n<div class=\"wp-block-cover is-cnvs-vert-align-middle\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:260px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:button {\"align\":\"center\",\"canvasClassName\":\"cnvs-block-core-button-1574261480323\"} -->\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\"> <strong>ABOUT ME</strong></a></div>\n<!-- /wp:button --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1569497736161\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":169,\"dimRatio\":0,\"minHeight\":260,\"className\":\"is-cnvs-vert-align-middle\",\"canvasClassName\":\"cnvs-block-core-cover-1574261511981\"} -->\n<div class=\"wp-block-cover is-cnvs-vert-align-middle\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:260px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:button {\"align\":\"center\",\"canvasClassName\":\"cnvs-block-core-button-1574261512034\"} -->\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\"> <strong>FOLLOW</strong></a></div>\n<!-- /wp:button --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1574261552646\",\"canvasLocation\":\"root\",\"marginBottom\":80,\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574261552747\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":172,\"minHeight\":540,\"className\":\"is-cnvs-vert-align-middle\",\"canvasClassName\":\"cnvs-block-core-cover-1574261552730\"} -->\n<div class=\"wp-block-cover has-background-dim is-cnvs-vert-align-middle\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:540px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"center\",\"level\":3,\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-heading-1569498200178\"} -->\n<h3 class=\"has-text-color has-text-align-center\" style=\"color:#ffffff\">Fun Things to Do in Rome</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569498242014\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-text-align-center\">Structured gripped tape invisible moulded cups for suppor firm hold strong powermesh front liner sport detail…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"align\":\"center\",\"canvasClassName\":\"cnvs-block-core-button-1569498134436\"} -->\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\">View post</a></div>\n<!-- /wp:button --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574261552760\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":172,\"minHeight\":540,\"className\":\"is-cnvs-vert-align-middle\",\"canvasClassName\":\"cnvs-block-core-cover-1574261552754\"} -->\n<div class=\"wp-block-cover has-background-dim is-cnvs-vert-align-middle\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:540px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"center\",\"level\":3,\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-heading-1569498343928\"} -->\n<h3 class=\"has-text-color has-text-align-center\" style=\"color:#ffffff\">Wardrobe Essentials: Chinos</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574261651916\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-text-align-center\"> Structured gripped tape invisible moulded cups for suppor firm hold strong powermesh front liner sport detail… </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"align\":\"center\",\"canvasClassName\":\"cnvs-block-core-button-1569498134450\"} -->\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\">View Post</a></div>\n<!-- /wp:button --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574261552774\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":172,\"minHeight\":540,\"className\":\"is-cnvs-vert-align-middle\",\"canvasClassName\":\"cnvs-block-core-cover-1574261552767\"} -->\n<div class=\"wp-block-cover has-background-dim is-cnvs-vert-align-middle\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:540px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"center\",\"level\":3,\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-heading-1569498413540\"} -->\n<h3 class=\"has-text-color has-text-align-center\" style=\"color:#ffffff\">How To Make It Work For Work</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-paragraph-1569498433331\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-text-align-center\">Structured gripped tape invisible moulded cups for suppor firm hold strong powermesh front liner sport detail…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"align\":\"center\",\"canvasClassName\":\"cnvs-block-core-button-1569498134464\"} -->\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\">View post</a></div>\n<!-- /wp:button --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1574261804185\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574261804301\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":172,\"minHeight\":540,\"className\":\"is-cnvs-vert-align-bottom\",\"canvasClassName\":\"cnvs-block-core-cover-1574261804283\"} -->\n<div class=\"wp-block-cover has-background-dim is-cnvs-vert-align-bottom\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:540px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"left\",\"level\":3,\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-heading-1574261804408\"} -->\n<h3 class=\"has-text-color has-text-align-left\" style=\"color:#ffffff\">Fun Things to Do in Rome</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574261804417\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-text-align-left\">Structured gripped tape invisible moulded cups for suppor firm hold strong powermesh front liner sport detail…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"canvasClassName\":\"cnvs-block-core-button-1574261804424\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\">View post</a></div>\n<!-- /wp:button --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574261804321\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":172,\"minHeight\":540,\"className\":\"is-cnvs-vert-align-bottom\",\"canvasClassName\":\"cnvs-block-core-cover-1574261804312\"} -->\n<div class=\"wp-block-cover has-background-dim is-cnvs-vert-align-bottom\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:540px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"left\",\"level\":3,\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-heading-1574261804433\"} -->\n<h3 class=\"has-text-color has-text-align-left\" style=\"color:#ffffff\">Wardrobe Essentials: Chinos</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574261804439\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-text-align-left\"> Structured gripped tape invisible moulded cups for suppor firm hold strong powermesh front liner sport detail… </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"canvasClassName\":\"cnvs-block-core-button-1574261804445\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\">View Post</a></div>\n<!-- /wp:button --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1574261804337\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:cover {\"url\":\"https://cloud.codesupply.co/demo-content/demo-image-00001.jpg\",\"id\":172,\"minHeight\":540,\"className\":\"is-cnvs-vert-align-bottom\",\"canvasClassName\":\"cnvs-block-core-cover-1574261804330\"} -->\n<div class=\"wp-block-cover has-background-dim is-cnvs-vert-align-bottom\" style=\"background-image:url(https://cloud.codesupply.co/demo-content/demo-image-00001.jpg);min-height:540px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"left\",\"level\":3,\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-heading-1574261804454\"} -->\n<h3 class=\"has-text-color has-text-align-left\" style=\"color:#ffffff\">How To Make It Work For Work</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"customTextColor\":\"#ffffff\",\"canvasClassName\":\"cnvs-block-core-paragraph-1574261804461\"} -->\n<p style=\"color:#ffffff\" class=\"has-text-color has-text-align-left\">Structured gripped tape invisible moulded cups for suppor firm hold strong powermesh front liner sport detail…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"canvasClassName\":\"cnvs-block-core-button-1574261804471\"} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\">View post</a></div>\n<!-- /wp:button --></div></div>\n<!-- /wp:cover -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->','Promo Blocks','','publish','closed','closed','','promo-blocks','','','2019-09-26 11:33:29','2019-09-26 11:33:29','',0,'https://codesupply.co/?page_id=1748',0,'page','',0),(2014,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2014','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://codesupply.co/?p=2014',6,'nav_menu_item','',0),(2015,1,'2023-01-21 15:05:09','2019-11-23 13:28:45','','Contact Us','','publish','closed','closed','','2015','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://codesupply.co/?p=2015',4,'nav_menu_item','',0),(2017,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2017','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2017',8,'nav_menu_item','',0),(2018,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2018','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2018',9,'nav_menu_item','',0),(2019,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2019','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2019',10,'nav_menu_item','',0),(2020,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2020','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2020',22,'nav_menu_item','',0),(2021,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2021','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2021',23,'nav_menu_item','',0),(2022,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2022','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2022',11,'nav_menu_item','',0),(2023,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2023','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2023',12,'nav_menu_item','',0),(2024,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2024','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2024',26,'nav_menu_item','',0),(2025,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2025','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2025',13,'nav_menu_item','',0),(2026,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2026','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2026',14,'nav_menu_item','',0),(2027,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2027','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2027',15,'nav_menu_item','',0),(2028,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2028','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2028',16,'nav_menu_item','',0),(2029,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2029','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2029',17,'nav_menu_item','',0),(2030,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2030','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2030',24,'nav_menu_item','',0),(2031,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2031','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2031',25,'nav_menu_item','',0),(2032,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2032','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2032',18,'nav_menu_item','',0),(2033,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2033','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2033',19,'nav_menu_item','',0),(2034,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2034','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',1260,'http://codesupply.co/?p=2034',20,'nav_menu_item','',0),(2035,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2035','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://codesupply.co/?p=2035',27,'nav_menu_item','',0),(2036,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2036','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://codesupply.co/?p=2036',29,'nav_menu_item','',0),(2039,1,'2023-01-21 15:05:09','2019-11-23 13:28:45',' ','','','publish','closed','closed','','2039','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://codesupply.co/?p=2039',28,'nav_menu_item','',0),(2043,1,'2023-01-21 15:05:09','2019-11-23 13:42:17','','Content Formatting','','publish','closed','closed','','content-formatting','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://codesupply.co/?p=2043',21,'nav_menu_item','',0),(2071,1,'2019-11-23 14:41:07','2019-11-23 14:41:07','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574520064520\"} -->\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 {\"canvasClassName\":\"cnvs-block-core-quote-1574520064526\"} -->\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ña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574520064533\"} -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1574520064541\"} -->\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 {\"canvasClassName\":\"cnvs-block-core-paragraph-1574520064548\"} -->\n<p>As a new WordPress user, you should go to <a href=\"http://wordpress.test/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','closed','','sample-page-2','','','2019-11-23 14:41:07','2019-11-23 14:41:07','',0,'http://codesupply.co/?page_id=2071',0,'page','',0),(2073,1,'2023-01-21 15:03:29','2019-11-23 14:41:29',' ','','','publish','closed','closed','','2073','','','2023-01-21 15:03:29','2023-01-21 15:03:29','',0,'http://codesupply.co/?p=2073',31,'nav_menu_item','',0),(2093,1,'2023-01-21 15:05:09','2019-11-23 15:40:09','','Paginated Post','','publish','closed','closed','','paginated-post','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://codesupply.co/?p=2093',30,'nav_menu_item','',0),(2155,1,'2023-01-21 15:05:09','2019-11-24 08:02:17','','Content Blocks','','publish','closed','closed','','content-blocks','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://codesupply.co/?p=2155',7,'nav_menu_item','',0),(2156,1,'2019-11-23 13:14:43','2019-11-23 13:14:43','<div class=\"cs-row\">\n<div class=\"cs-col-md-6\">\n<label> Your Name <span class=\"required\">*</span>\n [text* your-name] </label>\n</div><div class=\"cs-col-md-6\">\n<label> Your Email <span class=\"required\">*</span>\n [email* your-email] </label>\n</div>\n</div>\n<label for=\"cs-message\">Your Message <span class=\"required\">*</span></label>\n[textarea* your-message id:cs-message x5][/textarea*]\n[submit class:button class:button-primary \"Send\"]\n1\ncodesupply.co \"[your-subject]\"\ncodesupply.co <wordpress@codesupply.co>\nplazorax@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on codesupply.co (http://codesupply.co)\nReply-To: [your-email]\n\n\n\n\ncodesupply.co \"[your-subject]\"\ncodesupply.co <wordpress@codesupply.co>\n[your-email]\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on codesupply.co (http://codesupply.co)\nReply-To: plazorax@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Us','','publish','closed','closed','','contact-form-1-2','','','2019-11-23 13:14:43','2019-11-23 13:14:43','',0,'http://codesupply.co/?post_type=wpcf7_contact_form&amp;p=5',0,'wpcf7_contact_form','',0),(2157,1,'2019-07-31 06:42:30','2019-07-31 06:42:30','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564555417403\"} -->\n<h2 class=\"is-style-default\">Inline</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866093\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866723\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659250138\"} -->\n<h5 id=\"light\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866715\",\"canvasLocation\":\"section-content\",\"template\":\"inline\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866735\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659255597\"} -->\n<h5 id=\"bold\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866729\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"inline\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866097\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866748\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659262960\"} -->\n<h5 id=\"light-background\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866743\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-bg\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866760\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659273076\"} -->\n<h5 id=\"bold-background\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866754\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-rounded\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1567066222873\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1567066223149\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1567066223127\"} -->\n<h5 id=\"light-background\"> Bold Background </h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1567066223140\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-bg\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1567066223172\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1567066223157\"} -->\n<h5 id=\"bold-background\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1567066223164\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866101\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866775\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659280011\"} -->\n<h5 id=\"light-rounded\">Dark Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866769\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-dark-bg\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866786\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659286388\"} -->\n<h5 id=\"bold-rounded\">Dark Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866781\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-dark-rounded\",\"showLabels\":false,\"showTitles\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564557217824\"} -->\n<h2 class=\"is-style-default\"> Vertical List</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866106\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866810\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659381617\"} -->\n<h5 id=\"light-2\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866795\",\"canvasLocation\":\"section-sidebar\",\"template\":\"vertical\",\"showLabels\":false,\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866832\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659388139\"} -->\n<h5 id=\"bold-2\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866823\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"vertical\",\"showLabels\":false,\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564659300419\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659393004\"} -->\n<h5 id=\"light-background-2\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564659374660\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"vertical\",\"showLabels\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866111\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866854\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659492404\"} -->\n<h5 id=\"bold-background-2\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866845\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"vertical\",\"showLabels\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866875\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659499013\"} -->\n<h5 id=\"light-rounded-2\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866864\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"vertical\",\"showLabels\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564659445222\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659607038\"} -->\n<h5>Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564659520998\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"vertical\",\"showLabels\":false,\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565692866115\"} -->\n<h2 class=\"is-style-default\"> 2 columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866118\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866900\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659578688\"} -->\n<h5 id=\"light-3\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866892\",\"canvasLocation\":\"section-sidebar\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866914\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659584004\"} -->\n<h5 id=\"bold-3\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866908\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564659550777\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659589026\"} -->\n<h5 id=\"light-background-3\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564659593102\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866124\",\"canvasLocation\":\"root\",\"columns\":3} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866934\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659637915\"} -->\n<h5 id=\"bold-background-3\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866926\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866953\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659644917\"} -->\n<h5 id=\"light-rounded-3\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866943\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564659556814\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659651838\"} -->\n<h5 id=\"bold-rounded-3\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564659654743\",\"canvasLocation\":\"section-sidebar\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"col-2\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565692866137\"} -->\n<h2 class=\"is-style-default\">3 columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866145\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866976\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659191334\"} -->\n<h5 id=\"light-4\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866968\",\"canvasLocation\":\"section-content\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692866994\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659185858\"} -->\n<h5 id=\"bold-4\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692866985\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866153\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867009\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659174519\"} -->\n<h5 id=\"light-background-4\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867002\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867031\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659167234\"} -->\n<h5 id=\"bold-background-4\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867020\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866162\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867048\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659157845\"} -->\n<h5 id=\"light-rounded-4\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867039\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867067\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659146780\"} -->\n<h5 id=\"bold-rounded-4\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867059\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"col-3\",\"count\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565692866169\"} -->\n<h2 class=\"is-style-default\">4 columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866177\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867084\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659121587\"} -->\n<h5 id=\"light-5\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867077\",\"canvasLocation\":\"section-content\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867102\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659115904\"} -->\n<h5 id=\"bold-5\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867093\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866196\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867125\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659108680\"} -->\n<h5 id=\"light-background-5\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867115\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867142\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659101245\"} -->\n<h5 id=\"bold-background-5\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867132\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1565692866200\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867159\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659035162\"} -->\n<h5 id=\"light-rounded-5\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867150\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1565692867184\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564659028730\"} -->\n<h5 id=\"bold-rounded-5\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1565692867169\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"col-4\",\"count\":8} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564557374609\"} -->\n<h2 class=\"is-style-default\">6 columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564555895956\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564555895996\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658964250\"} -->\n<h5 id=\"light-6\">Light</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564555921404\",\"canvasLocation\":\"section-content\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564555896060\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658949534\"} -->\n<h5 id=\"light-background-6\">Light Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564555935773\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-bg\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564555956239\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564555956278\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658955728\"} -->\n<h5 id=\"bold-6\">Bold</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564556017736\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564555956322\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658933461\"} -->\n<h5 id=\"bold-background-6\">Bold Background</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564555962955\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-bg\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564556048174\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564556048210\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658923737\"} -->\n<h5 id=\"light-rounded-6\">Light Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564556064327\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564556048252\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564658915603\"} -->\n<h5 id=\"bold-rounded-6\">Bold Rounded</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564556103658\",\"canvasLocation\":\"section-content\",\"className\":\"is-style-pk-social-links-bold-rounded\",\"template\":\"col-6\",\"showLabels\":false,\"showTitles\":false,\"count\":12} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564557792351\"} -->\n<h2 class=\"is-style-default\"> All Supported Social Links </h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/social-links {\"canvasClassName\":\"cnvs-block-social-links-1564557796095\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-social-links-light-rounded\",\"template\":\"col-4\"} /-->','Social Links','','inherit','closed','closed','','893-revision-v1','','','2019-07-31 06:42:30','2019-07-31 06:42:30','',893,'http://192.168.1.140:8011/?p=2157',0,'revision','',0),(2158,1,'2019-07-31 09:20:49','2019-07-31 09:20:49','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564564691557\"} -->\n<h2 class=\"is-style-default\">Dismissible Alerts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564702830\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-danger\",\"dismissible\":true} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564702870\"} -->\n<p>\n\nDui ullamcorper libero ut eleifend ridiculus consequat.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564702831\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\",\"dismissible\":true} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564702871\"} -->\n<p>\n\nDui ullamcorper libero ut eleifend ridiculus consequat.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564702832\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-info\",\"dismissible\":true} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564702872\"} -->\n<p>\n\nDui ullamcorper libero ut eleifend ridiculus consequat.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564702833\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-success\",\"dismissible\":true} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564702873\"} -->\n<p>\n\nDui ullamcorper libero ut eleifend ridiculus consequat.\n\n</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564564770046\"} -->\n<h2 class=\"is-style-default\" id=\"multi-line-alerts\">Multi-Line Alerts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564770034\"} -->\n<p>Here’re some examples of multi-line alerts with headings and paragraphs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564780254\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-danger\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564781304\"} -->\n<h6>Sociis Porttitor et Quis</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1569488515285\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564780255\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564781305\"} -->\n<h6>Sociis Porttitor et Quis</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564781312\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564780256\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-info\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564781306\"} -->\n<h6>Sociis Porttitor et Quis</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564781317\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564780258\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-success\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564781308\"} -->\n<h6>Sociis Porttitor et Quis</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564781319\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->','Alerts','','inherit','closed','closed','','925-revision-v1','','','2019-07-31 09:20:49','2019-07-31 09:20:49','',925,'http://192.168.1.140:8011/?p=2158',0,'revision','',0),(2159,1,'2019-07-31 09:24:50','2019-07-31 09:24:50','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931420\",\"canvasLocation\":\"root\",\"width\":25,\"height\":16,\"animated\":true} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931421\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-dark\",\"width\":50,\"height\":16,\"animated\":true,\"displayPercent\":true} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931422\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-success\",\"width\":75,\"height\":2,\"striped\":false} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931423\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-info\",\"width\":25,\"height\":16,\"striped\":false} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931424\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-warning\",\"width\":50,\"height\":1,\"striped\":false} /-->\n\n<!-- wp:canvas/progress {\"canvasClassName\":\"cnvs-block-progress-1564564931425\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-progress-danger\",\"width\":75,\"height\":16,\"displayPercent\":true} /-->','Progress Bars','','inherit','closed','closed','','929-revision-v1','','','2019-07-31 09:24:50','2019-07-31 09:24:50','',929,'http://192.168.1.140:8011/?p=2159',0,'revision','',0),(2160,1,'2019-07-31 09:33:33','2019-07-31 09:33:33','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565482077\"} -->\n<h2 class=\"is-style-default\" id=\"solid\">Solid</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565482119\"} -->\n<p>Amet imperdiet vulputate. Sociis dolor nisi tellus justo fringilla libero orci ligula vel phasellus odio eleifend. Ante quam quis varius. Donec aenean sed quisque varius rutrum quam tellus. Massa quis justo et leo ipsum aliquet ullamcorper curabitur eu ut sem. Veni maecenas et rhoncus vivamus metus consectetuer nisi ante etiam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565482063\"} -->\n<p>Dui ullamcorper libero ut eleifend ridiculus consequat. Enim augue ante. Justo imperdiet sapien. Imperdiet ligula dictum amet nec tellus id quis libero. Venenatis aenean blandit justo semper curabitur ipsum quis quam donec aliquet. Varius dapibus aenean massa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide is-cnvs-separator-id-1574522713494\",\"canvasClassName\":\"cnvs-block-core-separator-1564565499408\"} -->\n<hr class=\"wp-block-separator is-style-wide is-cnvs-separator-id-1574522713494\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565520865\"} -->\n<h2 class=\"is-style-default\" id=\"double\">Double</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565520904\"} -->\n<p>Ullamcorper aenean enim sociis porttitor et quis vitae. Nec tincidunt quam a rhoncus quisque amet id in. A luctus dis pellentesque nulla ultricies amet. Enim nisi eget tempus etiam eleifend ut nec aenean ullamcorper. Etiam dis aenean nam leo magnis. Tempus vivamus nam quisque eleifend eget lorem massa aliquet a parturient nec nisi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565520847\"} -->\n<p>Justo nullam vel ipsum consequat aliquam ut ligula cras. Maecenas pretium nam orci leo quis a augue. Ante sem aenean consequat phasellus eget dis et odio sociis. Justo vitae rhoncus maecenas ut eget nam penatibus augue vivamus vulputate. Venenatis veni vitae semper rutrum pretium ullamcorper augue luctus. Eget odio rhoncus nullam pellentesque vici et aenean ut nisi commodo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-cnvs-separator-double is-cnvs-separator-id-1574522713503\",\"canvasClassName\":\"cnvs-block-core-separator-1564565535801\"} -->\n<hr class=\"wp-block-separator is-style-cnvs-separator-double is-cnvs-separator-id-1574522713503\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565563528\"} -->\n<h2 class=\"is-style-default\" id=\"dotted\">Dotted</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565563531\"} -->\n<p>A quam veni. Tincidunt veni et. Pulvinar nec magnis semper quis justo donec venenatis sed et. Ut etiam veni amet enim. Vitae ante varius. Pede eu massa justo vel penatibus eget viverra commodo lorem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565563516\"} -->\n<p>Donec nascetur tellus quam ullamcorper vel. Etiam faucibus elementum et. Ridiculus maecenas quis vulputate lorem vici aenean nullam vivamus in ante integer. Eu magnis vel donec mus. Hendrerit sociis quam lorem. Nisi eget vitae blandit eros varius aliquet ante.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-cnvs-separator-dotted is-cnvs-separator-id-1574522713512\",\"canvasClassName\":\"cnvs-block-core-separator-1564565573821\"} -->\n<hr class=\"wp-block-separator is-style-cnvs-separator-dotted is-cnvs-separator-id-1574522713512\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565591579\"} -->\n<h2 class=\"is-style-default\" id=\"dashed\">Dashed</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565591551\"} -->\n<p>Imperdiet vici condimentum sem etiam quis leo pede nec. Amet etiam feugiat sapien tincidunt eget. Luctus quam ut cum sem dui rhoncus nec eu maecenas. Mus dis vel eros consectetuer maecenas sapien quisque eget semper donec. Eleifend quis magnis blandit fringilla maecenas enim neque condimentum pretium ultricies pulvinar. Vel nisi aenean imperdiet a viverra pulvinar sed ligula pede mus lorem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565591535\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-cnvs-separator-dashed is-cnvs-separator-id-1574522713520\",\"canvasClassName\":\"cnvs-block-core-separator-1564565595858\"} -->\n<hr class=\"wp-block-separator is-style-cnvs-separator-dashed is-cnvs-separator-id-1574522713520\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565607476\"} -->\n<p>Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus. Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565608516\"} -->\n<p>Massa ac venenatis faucibus maecenas leo nunc eleifend a ultricies sem hendrerit nam. Vitae dis venenatis hendrerit vulputate eleifend dui ultricies rhoncus mus. Tincidunt vitae semper adipiscing quam eros lorem ut vel elementum pellentesque nec parturient. Lorem nam eu a sem quis. Rhoncus vulputate eget fringilla mollis massa rutrum ipsum magnis. Nascetur quam ante varius tellus et consequat blandit magnis ipsum id penatibus dolor.</p>\n<!-- /wp:paragraph -->','Separators','','inherit','closed','closed','','934-revision-v1','','','2019-07-31 09:33:33','2019-07-31 09:33:33','',934,'http://192.168.1.140:8011/?p=2160',0,'revision','',0),(2161,1,'2019-07-31 09:37:04','2019-07-31 09:37:04','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565727857\"} -->\n<h2 class=\"is-style-default\" id=\"with-posts\">With Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564565759236\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565759267\",\"canvasLocation\":\"default\",\"size\":5} -->\n<!-- wp:canvas/facebook-fanpage {\"canvasClassName\":\"cnvs-block-facebook-fanpage-1564565791090\",\"canvasLocation\":\"section-content\",\"href\":\"https://facebook.com/envato/\",\"showFacepile\":true,\"showPosts\":true} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565759312\",\"canvasLocation\":\"default\",\"size\":7} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565779977\"} -->\n<p>Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565780562\"} -->\n<p>Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus. Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565780498\"} -->\n<p>Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565862194\"} -->\n<h2 class=\"is-style-default\" id=\"without-posts\">Without Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564565867072\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565867107\",\"canvasLocation\":\"default\",\"size\":5} -->\n<!-- wp:canvas/facebook-fanpage {\"canvasClassName\":\"cnvs-block-facebook-fanpage-1564565885229\",\"canvasLocation\":\"section-content\",\"href\":\"https://facebook.com/envato/\",\"showFacepile\":true} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565867146\",\"canvasLocation\":\"default\",\"size\":7} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565874259\"} -->\n<p>\n\nMassa ac venenatis faucibus maecenas leo nunc eleifend a ultricies sem hendrerit nam. Vitae dis venenatis hendrerit vulputate eleifend dui ultricies rhoncus mus. Tincidunt vitae semper adipiscing quam eros lorem ut vel elementum pellentesque nec parturient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565874740\"} -->\n<p>Feugiat nec ante amet nam dolor etiam sed quis eleifend ipsum. Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564565922351\"} -->\n<h2 class=\"is-style-default\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564565934708\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565934753\",\"canvasLocation\":\"default\",\"size\":5} -->\n<!-- wp:canvas/facebook-fanpage {\"canvasClassName\":\"cnvs-block-facebook-fanpage-1564565950879\",\"canvasLocation\":\"section-content\",\"href\":\"https://facebook.com/envato/\",\"showCover\":false,\"smallHeader\":true} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564565934810\",\"canvasLocation\":\"default\",\"size\":7} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564565965004\"} -->\n<p>Massa ac venenatis faucibus maecenas leo nunc eleifend a ultricies sem hendrerit nam. Vitae dis venenatis hendrerit vulputate eleifend dui ultricies rhoncus mus. Tincidunt vitae semper adipiscing quam eros lorem ut vel elementum pellentesque nec parturient. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->','Facebook Fanpage','','inherit','closed','closed','','936-revision-v1','','','2019-07-31 09:37:04','2019-07-31 09:37:04','',936,'http://192.168.1.140:8011/?p=2161',0,'revision','',0),(2162,1,'2019-07-31 10:12:44','2019-07-31 10:12:44','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564567781295\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564567781338\",\"canvasLocation\":\"default\",\"size\":4} -->\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564567867942\"} -->\n<h2 class=\"is-style-default\" id=\"2-columns\">2 Columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1564567811859\",\"canvasLocation\":\"section-sidebar\",\"showHeader\":false,\"columns\":2,\"buttonStyle\":\"squared\",\"buttonFullWidth\":true} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564567781400\",\"canvasLocation\":\"default\",\"size\":8} -->\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564567873152\"} -->\n<h2 class=\"is-style-default\" id=\"3-columns\">3 Columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1564567879082\",\"canvasLocation\":\"section-content\",\"showHeader\":false,\"showFollowButton\":false,\"number\":6} /-->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564568531815\"} -->\n<h2 class=\"is-style-default\">5 Columns</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1564567929489\",\"canvasLocation\":\"root\",\"showHeader\":false,\"showFollowButton\":false,\"number\":10,\"columns\":5} /-->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564569036452\"} -->\n<h2 class=\"is-style-default\"> Featured Style </h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564569069444\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564569069492\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:group {\"className\":\"is-style-cnvs-block-bg-light\",\"canvasClassName\":\"cnvs-block-core-group-1574258549609\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-bg-light\"><div class=\"wp-block-group__inner-container\"><!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1565615152485\",\"canvasLocation\":\"default\",\"number\":6,\"buttonStyle\":\"squared\",\"buttonSize\":\"md\"} /--></div></div>\n<!-- /wp:group -->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564569069533\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:group {\"className\":\"is-style-cnvs-block-shadow\",\"canvasClassName\":\"cnvs-block-core-group-1574258571614\"} -->\n<div class=\"wp-block-group is-style-cnvs-block-shadow\"><div class=\"wp-block-group__inner-container\"><!-- wp:canvas/instagram {\"canvasClassName\":\"cnvs-block-instagram-1565615197827\",\"canvasLocation\":\"default\",\"number\":6,\"buttonStyle\":\"squared\",\"buttonSize\":\"md\"} /--></div></div>\n<!-- /wp:group -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->','Instagram Feed','','inherit','closed','closed','','940-revision-v1','','','2019-07-31 10:12:44','2019-07-31 10:12:44','',940,'http://192.168.1.140:8011/?p=2162',0,'revision','',0),(2163,1,'2019-07-31 11:52:43','2019-07-31 11:52:43','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564573507260\"} -->\n<h2 class=\"is-style-default\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573662919\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-light\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565686209870\"} -->\n<h2 class=\"is-style-default\">Bold</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686194280\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold-light\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1565686215772\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564573507261\"} -->\n<h2 class=\"is-style-default\">Simple &amp; Light Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573516318\"} -->\n<h5 id=\"light\">First Two Large Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573527865\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-default\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573616326\"} -->\n<h5>Equal Width Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573625556\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-default\",\"layout\":\"equal\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573655706\"} -->\n<h5>Simple Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573662920\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-default\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1564573944867\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564573507262\"} -->\n<h2 class=\"is-style-default\">Simple &amp; Dark Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573516319\"} -->\n<h5 id=\"light\">First Two Large Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573527866\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-dark-back\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573616327\"} -->\n<h5>Equal Width Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573625555\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-dark-back\",\"layout\":\"equal\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1564573655707\"} -->\n<h5>Simple Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1564573662921\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-dark-back\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1565438487068\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565686244005\"} -->\n<h2 class=\"is-style-default\">Simple &amp; Bold Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686247124\"} -->\n<h5 id=\"light\">First Two Large Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686250573\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-bold-back is-style-pk-share-buttons-bold-bg\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686255295\"} -->\n<h5>Equal Width Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686259505\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-bold-back is-style-pk-share-buttons-bold-bg\",\"layout\":\"equal\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686263371\"} -->\n<h5>Simple Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686267285\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-simple-bold-back is-style-pk-share-buttons-bold-bg\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1565686239094\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565686350591\"} -->\n<h2 class=\"is-style-default\">Bold &amp; Light Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686374029\"} -->\n<h5 id=\"light\">First Two Large Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686381728\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686400467\"} -->\n<h5>Equal Width Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686412455\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold\",\"layout\":\"equal\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:heading {\"level\":5,\"canvasClassName\":\"cnvs-block-core-heading-1565686424050\"} -->\n<h5>Simple Buttons</h5>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565686436317\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold\",\"layout\":\"simple\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\"],\"showTitles\":false} /-->\n\n<!-- wp:spacer {\"height\":40,\"canvasClassName\":\"cnvs-block-core-spacer-1565686348024\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1565438363713\"} -->\n<h2 class=\"is-style-default\"> All Supported Share Buttons </h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/share-buttons {\"canvasClassName\":\"cnvs-block-share-buttons-1565438374473\",\"canvasLocation\":\"root\",\"className\":\"is-style-pk-share-buttons-bold-bg\",\"accounts\":[\"facebook\",\"twitter\",\"pinterest\",\"mail\",\"xing\",\"linkedin\",\"stumbleupon\",\"pocket\",\"whatsapp\",\"fb-messenger\",\"viber\",\"ok\",\"vkontakte\",\"telegram\",\"line\",\"reddit\",\"mix\"],\"showTitles\":false} /-->','Share Buttons','','inherit','closed','closed','','999-revision-v1','','','2019-07-31 11:52:43','2019-07-31 11:52:43','',999,'http://192.168.1.140:8011/?p=2163',0,'revision','',0),(2164,1,'2019-11-18 05:19:00','2019-11-18 05:19:00','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523537732\"} -->\n<p>Aenean eleifend ante maecenas pulvinar montes lorem et pede dis dolor pretium donec dictum. Vici consequat justo enim. Venenatis eget adipiscing luctus lorem. Adipiscing veni amet luctus enim sem libero tellus viverra venenatis aliquam. Commodo natoque quam pulvinar elit.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:canvas/toc {\"canvasLocation\":\"root\"} /-->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574523538056\"} -->\n<h2>Nam condimentum varius justo</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535124\"} -->\n<p>Eget aenean tellus venenatis. Donec odio tempus. Felis arcu <a href=\"#\">pretium metus</a> nullam quam aenean sociis quis sem neque vici libero. Venenatis nullam fringilla pretium magnis aliquam nunc vulputate integer augue ultricies cras. Eget viverra feugiat cras ut. Sit natoque montes tempus ligula eget vitae pede rhoncus maecenas consectetuer commodo condimentum aenean.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote {\"canvasClassName\":\"cnvs-block-core-quote-1574523538327\"} -->\n<blockquote class=\"wp-block-quote\"><p>Quis adipiscing ligula donec ullamcorper tellus. Id odio vulputate aliquam nullam vitae tincidunt semper etiam quam donec quis</p><cite>Donec Massa Integer</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538404\"} -->\n<p>Ut eu sem aenean imperdiet. Hendrerit penatibus <strong>sem adipiscing</strong> aliquet consequat nec orci nascetur.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538557\"} -->\n<p>Etiam massa quam dolor aenean maecenas sociis tellus consectetuer. In sit donec massa integer nisi mus viverra odio ultricies ridiculus. Sapien sem lorem. Aenean sem venenatis arcu tellus fringilla vulputate quis vici nullam nec. Cum quam veni lorem elit aliquet pede in enim. Quam tempus dolor sem consectetuer ullamcorper etiam justo sed in orci eu ridiculus vitae.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"className\":\"pk-list-styled\",\"canvasClassName\":\"cnvs-block-core-list-1574523538750\"} -->\n<ol class=\"pk-list-styled\"><li>Mollis lorem vitae varius.</li><li>Felis laoreet justo aenean curabitur <a href=\"#\">donec consequat</a> sit nascetur tellus dapibus.</li><li>Maecenas imperdiet vitae vidi vel parturient eleifend mollis eu libero.</li><li>Dictum libero felis feugiat fringilla sed etiam vel sem nullam elit vitae eu.</li><li>Felis nec eget curabitur sapien nisi aliquam pretium donec dapibus feugiat. Faucibus enim venenatis mus semper.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535153\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523538758\"} -->\n<p>Enim dapibus ante sapien eleifend <em>dis vulputate</em> quis viverra ultricies vitae eros. Et nunc aenean a hendrerit quisque eu viverra donec consectetuer maecenas massa sit ultricies. Tellus ante quis vici elementum etiam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574523535163\"} -->\n<h2>Faucibus nullam luctus felis pretium donec</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535169\"} -->\n<p>Amet tempus viverra ut libero nascetur id veni ridiculus rhoncus. Dis donec cras ultricies. Eros vivamus enim nec nulla semper imperdiet aenean montes dictum porttitor metus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[172,171,173],\"canvasClassName\":\"cnvs-block-core-gallery-1574523658351\"} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/12/demo-image-00005-1-1160x1741.jpg\" alt=\"\" data-id=\"172\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/12/demo-image-00005-1.jpg\" data-link=\"http://codesupply.co/demo-image-00005/\" class=\"wp-image-172\"/><figcaption class=\"blocks-gallery-item__caption\">Pellentesque venenatis ac</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1-1160x1741.jpg\" alt=\"\" data-id=\"171\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1.jpg\" data-link=\"http://codesupply.co/2018/10/14/vici-consequat-justo-enim-adipiscing-luctus/demo-image-00004/\" class=\"wp-image-171\"/><figcaption class=\"blocks-gallery-item__caption\">Faucibus etiam libero</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/04/demo-image-00006-1-1160x1741.jpg\" alt=\"\" data-id=\"173\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/04/demo-image-00006-1.jpg\" data-link=\"http://codesupply.co/demo-image-00006/\" class=\"wp-image-173\"/><figcaption class=\"blocks-gallery-item__caption\">Viverra faucibus sem</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535173\"} -->\n<p>Sit dis sed ante integer ullamcorper vel donec tellus a. Nisi vici vulputate elit quis adipiscing aenean imperdiet justo varius. Vel <strong>eget luctus</strong> a sem pede sit metus nulla maecenas. Etiam eleifend curabitur lorem. Viverra faucibus sem ultricies vitae etiam quam id feugiat in tellus vici ut. Tellus quam varius commodo luctus aliquam nec amet nullam quis viverra sit fringilla consectetuer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"className\":\"pk-list-positive\",\"canvasClassName\":\"cnvs-block-core-list-1574523535179\"} -->\n<ul class=\"pk-list-positive\"><li>Ultricies sit semper leo dolor maecenas.</li><li>Magnis nam penatibus justo nec quis eget amet venenatis integer rutrum eleifend commodo tincidunt.</li><li>Aenean nunc pretium lorem ullamcorper leo.</li><li>Nec arcu ullamcorper lorem mus eu.</li><li>Elit natoque mollis quisque.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535185\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535189\"} -->\n<p>Metus eros tellus viverra justo sapien quam nisi odio eu nullam. Justo neque nam ipsum ullamcorper lorem pellentesque donec condimentum porttitor. Orci ac tempus ridiculus quis maecenas imperdiet neque nascetur veni.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1574523535194\"} -->\n<h3>Tincidunt veni tellus orci aenean consectetuer</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535200\"} -->\n<p>Sociis consequat adipiscing sit curabitur donec sem luctus cras natoque vulputate dolor eget dapibus. Nec vitae eros ullamcorper laoreet dapibus mus ac ante viverra. A aenean sit augue curabitur et parturient nisi sed enim. Nulla nec quis sit quisque sem commodo ultricies neque. Lorem eget venenatis dui ante luctus ultricies tellus montes. Quis in sapien tempus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":170,\"canvasClassName\":\"cnvs-block-core-image-1574523535205\"} -->\n<figure class=\"wp-block-image\"><img src=\"https://cloud.codesupply.co/demo-content/demo-image-00003.jpg\" alt=\"\" class=\"wp-image-170\"/><figcaption>Pede nascetur eros</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535211\"} -->\n<p>Aliquam enim arcu ut. Vulputate pede nisi arcu ut nullam. Ac elit ut ullamcorper aenean dolor pede nec aliquam. Cum enim a. Ut dui phasellus cras. Vivamus pulvinar justo faucibus nec semper lorem nullam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535215\"} -->\n<p>Ut pede leo libero cum ridiculus quis arcu natoque ullamcorper eget nulla sociis. Semper condimentum quam integer lorem. Amet ac <em>dis semper eget</em> a dictum ligula. Justo eu ut. Id ridiculus lorem ut amet dis orci tellus etiam aenean pellentesque. Ultricies dui vel ipsum eleifend dolor ante donec justo nullam.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:nextpage {\"canvasClassName\":\"cnvs-block-core-nextpage-1574523535219\"} -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1574523535224\"} -->\n<h3>Eu ridiculus fringilla</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535228\"} -->\n<p>Nam dictum vitae penatibus ligula id sem eget ante faucibus feugiat nascetur vel. Pretium vitae mus rhoncus sit maecenas quam felis orci adipiscing. Aenean parturient eget quam. Leo vel lorem sociis phasellus arcu dolor. Dis donec eu pede.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[172,171,173],\"canvasClassName\":\"cnvs-block-core-gallery-1574523681348\"} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/12/demo-image-00005-1-1160x1741.jpg\" alt=\"\" data-id=\"172\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/12/demo-image-00005-1.jpg\" data-link=\"http://codesupply.co/demo-image-00005/\" class=\"wp-image-172\"/><figcaption class=\"blocks-gallery-item__caption\">Pellentesque venenatis ac</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1-1160x1741.jpg\" alt=\"\" data-id=\"171\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1.jpg\" data-link=\"http://codesupply.co/2018/10/14/vici-consequat-justo-enim-adipiscing-luctus/demo-image-00004/\" class=\"wp-image-171\"/><figcaption class=\"blocks-gallery-item__caption\">Faucibus etiam libero</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://codesupply.co/wp-content/uploads/2018/04/demo-image-00006-1-1160x1741.jpg\" alt=\"\" data-id=\"173\" data-full-url=\"http://codesupply.co/wp-content/uploads/2018/04/demo-image-00006-1.jpg\" data-link=\"http://codesupply.co/demo-image-00006/\" class=\"wp-image-173\"/><figcaption class=\"blocks-gallery-item__caption\">Viverra faucibus sem</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535233\"} -->\n<p>Venenatis ante veni nullam ridiculus penatibus <a href=\"#\">vidi eu consectetuer</a> integer. Vulputate ipsum lorem nascetur rhoncus. Aliquam vitae elit blandit enim eget laoreet. Dapibus leo sociis quis nulla adipiscing amet integer sem ullamcorper in maecenas eu imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535239\"} -->\n<p>Ante blandit amet ultricies ut in nam massa rhoncus. Eget eu massa nisi quis viverra dapibus aliquam. Id ridiculus lorem ut amet dis orci tellus etiam aenean pellentesque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1574523535243\"} -->\n<p>Maecenas tempus aenean nulla <strong>viverra neque</strong> vel nec cras justo sapien condimentum ut varius. Blandit sem etiam vel nullam vulputate sociis amet varius dolor. Vitae a ut. Etiam rhoncus ante sit. Nisi nullam donec dui eu phasellus a elementum elit faucibus nec. Eros eu pulvinar pede luctus sit aenean lorem.</p>\n<!-- /wp:paragraph -->','A Pretium Enim Dolor Donec Eu Venenatis Curabitur','','inherit','closed','closed','','296-revision-v1','','','2019-11-18 05:19:00','2019-11-18 05:19:00','',296,'http://192.168.1.140:8011/?p=2164',0,'revision','',0),(2165,1,'2023-01-14 11:06:27','2023-01-14 11:06:27','{\n \"squaretype::header_width\": {\n \"value\": \"fullwidth\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:06:27\"\n }\n}','','','trash','closed','closed','','035c21fd-2d2c-4278-8043-e169fff72520','','','2023-01-14 11:06:27','2023-01-14 11:06:27','',0,'http://192.168.1.140:8011/?p=2165',0,'customize_changeset','',0),(2166,1,'2023-01-14 11:07:03','2023-01-14 11:07:03','{\n \"squaretype::header_offcanvas\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:07:03\"\n },\n \"squaretype::header_search_button\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:07:03\"\n }\n}','','','trash','closed','closed','','496806e1-42ee-49f9-8b50-6bc27f10cd66','','','2023-01-14 11:07:03','2023-01-14 11:07:03','',0,'http://192.168.1.140:8011/?p=2166',0,'customize_changeset','',0),(2167,1,'2023-01-14 11:08:45','2023-01-14 11:08:45','{\n \"squaretype::page_sidebar\": {\n \"value\": \"disabled\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:08:27\"\n },\n \"squaretype::page_header_type\": {\n \"value\": \"none\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:08:27\"\n },\n \"squaretype::page_excerpt\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:08:45\"\n }\n}','','','trash','closed','closed','','be4cf6f9-437f-46df-8727-473ba9c8ee98','','','2023-01-14 11:08:45','2023-01-14 11:08:45','',0,'http://192.168.1.140:8011/?p=2167',0,'customize_changeset','',0),(2168,1,'2023-01-14 11:09:26','2023-01-14 11:09:26','{\n \"squaretype::post_meta\": {\n \"value\": [],\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:09:26\"\n }\n}','','','trash','closed','closed','','3fbd7043-630f-4f9d-b99e-d9c4a2320251','','','2023-01-14 11:09:26','2023-01-14 11:09:26','',0,'http://192.168.1.140:8011/?p=2168',0,'customize_changeset','',0),(2169,1,'2023-01-14 11:10:48','2023-01-14 11:10:48','{\n \"squaretype::post_sidebar\": {\n \"value\": \"disabled\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:10:28\"\n },\n \"squaretype::post_prev_next\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:10:28\"\n }\n}','','','trash','closed','closed','','8f165472-bd08-4dd1-8bfe-de0cc34525fc','','','2023-01-14 11:10:48','2023-01-14 11:10:48','',0,'http://192.168.1.140:8011/?p=2169',0,'customize_changeset','',0),(2170,1,'2023-01-14 11:14:58','2023-01-14 11:14:58','{\n \"squaretype::hero\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:12:26\"\n },\n \"squaretype::general_hero_layout\": {\n \"value\": \"fullwidth\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:12:26\"\n },\n \"squaretype::general_hero_meta\": {\n \"value\": [],\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:14:58\"\n },\n \"squaretype::column_hero\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:13:31\"\n },\n \"squaretype::general_hero_more_button\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:14:28\"\n }\n}','','','trash','closed','closed','','aef7a9af-ad32-4bdf-b2fc-9ae68423e9da','','','2023-01-14 11:14:58','2023-01-14 11:14:58','',0,'http://192.168.1.140:8011/?p=2170',0,'customize_changeset','',0),(2171,1,'2023-01-14 11:17:11','2023-01-14 11:17:11','{\n \"squaretype::home_layout\": {\n \"value\": \"full\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:17:11\"\n },\n \"squaretype::home_sidebar\": {\n \"value\": \"disabled\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:17:11\"\n }\n}','','','trash','closed','closed','','befca47c-b51c-45ee-bf41-95d5ce668e5c','','','2023-01-14 11:17:11','2023-01-14 11:17:11','',0,'http://192.168.1.140:8011/?p=2171',0,'customize_changeset','',0),(2172,1,'2023-01-14 11:20:36','2023-01-14 11:20:36','{\n \"squaretype::home_post_meta\": {\n \"value\": [],\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:18:57\"\n },\n \"squaretype::home_layout\": {\n \"value\": \"grid\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:18:57\"\n },\n \"nav_menu_item[-5557670972108130000]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 35,\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://192.168.1.140:8011\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": 9,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:20:36\"\n }\n}','','','trash','closed','closed','','81754f5c-ee88-4f82-87da-df819c2a5418','','','2023-01-14 11:20:36','2023-01-14 11:20:36','',0,'http://192.168.1.140:8011/?p=2172',0,'customize_changeset','',0),(2173,1,'2023-01-14 11:21:12','2023-01-14 11:20:37','','Home','','publish','closed','closed','','home','','','2023-01-14 11:21:12','2023-01-14 11:21:12','',0,'http://192.168.1.140:8011/?p=2173',1,'nav_menu_item','',0),(2174,1,'2023-01-14 11:21:11','2023-01-14 11:21:11','{\n \"nav_menu_item[341]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 341,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Categories\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 2,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[337]\": {\n \"value\": {\n \"menu_item_parent\": 341,\n \"object_id\": 5,\n \"object\": \"category\",\n \"type\": \"taxonomy\",\n \"type_label\": \"Category\",\n \"url\": \"http://192.168.1.140:8011/?cat=5\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 3,\n \"status\": \"publish\",\n \"original_title\": \"Maecenas\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[338]\": {\n \"value\": {\n \"menu_item_parent\": 341,\n \"object_id\": 2,\n \"object\": \"category\",\n \"type\": \"taxonomy\",\n \"type_label\": \"Category\",\n \"url\": \"http://192.168.1.140:8011/?cat=2\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 4,\n \"status\": \"publish\",\n \"original_title\": \"Aenean Eleifend\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[339]\": {\n \"value\": {\n \"menu_item_parent\": 341,\n \"object_id\": 8,\n \"object\": \"category\",\n \"type\": \"taxonomy\",\n \"type_label\": \"Category\",\n \"url\": \"http://192.168.1.140:8011/?cat=8\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 5,\n \"status\": \"publish\",\n \"original_title\": \"Vulputate\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[340]\": {\n \"value\": {\n \"menu_item_parent\": 341,\n \"object_id\": 4,\n \"object\": \"category\",\n \"type\": \"taxonomy\",\n \"type_label\": \"Category\",\n \"url\": \"http://192.168.1.140:8011/?cat=4\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 6,\n \"status\": \"publish\",\n \"original_title\": \"Etiam\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[342]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 342,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Features\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 7,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2014]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 1738,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1738\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 8,\n \"status\": \"publish\",\n \"original_title\": \"Category Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2155]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 2155,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Content Blocks\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 9,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2017]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1263,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1263\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 10,\n \"status\": \"publish\",\n \"original_title\": \"Accordions\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2018]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 925,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=925\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 11,\n \"status\": \"publish\",\n \"original_title\": \"Alerts\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2019]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1005,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1005\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 12,\n \"status\": \"publish\",\n \"original_title\": \"Author\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2022]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 936,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=936\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 13,\n \"status\": \"publish\",\n \"original_title\": \"Facebook Fanpage\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2023]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 940,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=940\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 14,\n \"status\": \"publish\",\n \"original_title\": \"Instagram Feed\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2025]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1266,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1266\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 15,\n \"status\": \"publish\",\n \"original_title\": \"Pinterest Board\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2026]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 929,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=929\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 16,\n \"status\": \"publish\",\n \"original_title\": \"Progress Bars\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2027]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 934,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=934\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 17,\n \"status\": \"publish\",\n \"original_title\": \"Separators\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2028]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 999,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=999\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 18,\n \"status\": \"publish\",\n \"original_title\": \"Share Buttons\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2029]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 893,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=893\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 19,\n \"status\": \"publish\",\n \"original_title\": \"Social Links\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2032]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1264,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1264\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 20,\n \"status\": \"publish\",\n \"original_title\": \"Subscription Forms\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2033]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1262,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1262\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 21,\n \"status\": \"publish\",\n \"original_title\": \"Tabs & Pills\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2034]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1265,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1265\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 22,\n \"status\": \"publish\",\n \"original_title\": \"Twitter Feed\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2043]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 2043,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Content Formatting\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 23,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2020]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1378,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1378\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 24,\n \"status\": \"publish\",\n \"original_title\": \"Badges\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2021]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1270,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1270\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 25,\n \"status\": \"publish\",\n \"original_title\": \"Drop Caps\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2030]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1267,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1267\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 26,\n \"status\": \"publish\",\n \"original_title\": \"Styled Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2031]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1268,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1268\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 27,\n \"status\": \"publish\",\n \"original_title\": \"Styled Lists\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2024]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1269,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1269\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 28,\n \"status\": \"publish\",\n \"original_title\": \"Numbered Headings\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2035]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 994,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=994\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 29,\n \"status\": \"publish\",\n \"original_title\": \"Gallery Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2039]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 1748,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=1748\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 30,\n \"status\": \"publish\",\n \"original_title\": \"Promo Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2036]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 728,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=728\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 31,\n \"status\": \"publish\",\n \"original_title\": \"Inline Posts\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2093]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 296,\n \"object\": \"post\",\n \"type\": \"post_type\",\n \"type_label\": \"Post\",\n \"url\": \"http://192.168.1.140:8011/?p=296\",\n \"title\": \"Paginated Post\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 32,\n \"status\": \"publish\",\n \"original_title\": \"A Pretium Enim Dolor Donec Eu Venenatis Curabitur\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2015]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 726,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=726\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 33,\n \"status\": \"publish\",\n \"original_title\": \"Contact Form\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2073]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 2071,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://192.168.1.140:8011/?page_id=2071\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 34,\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2154]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 2154,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Buy Now\",\n \"url\": \"https://codesupply.co/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 35,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n },\n \"nav_menu_item[2173]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://192.168.1.140:8011\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": 9,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:21:11\"\n }\n}','','','trash','closed','closed','','b6b3405b-2d7a-471a-9912-bebd8cc090e5','','','2023-01-14 11:21:11','2023-01-14 11:21:11','',0,'http://192.168.1.140:8011/?p=2174',0,'customize_changeset','',0),(2175,1,'2023-01-14 11:22:53','2023-01-14 11:22:53','{\n \"nav_menu_item[341]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:22:53\"\n },\n \"nav_menu_item[337]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:22:53\"\n },\n \"nav_menu_item[338]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:22:53\"\n },\n \"nav_menu_item[339]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:22:53\"\n },\n \"nav_menu_item[340]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 11:22:53\"\n }\n}','','','trash','closed','closed','','ed4f247d-c53d-4a89-ac84-a3685ed3388c','','','2023-01-14 11:22:53','2023-01-14 11:22:53','',0,'http://192.168.1.140:8011/?p=2175',0,'customize_changeset','',0),(2176,1,'2023-01-14 11:49:12','2023-01-14 11:49:12','<!-- wp:canvas/alert {\"canvasClassName\":\"cnvs-block-alert-1564564660843\",\"canvasLocation\":\"root\",\"className\":\"is-style-cnvs-block-alert-warning\"} -->\n<!-- wp:heading {\"level\":6,\"canvasClassName\":\"cnvs-block-core-heading-1564564662210\"} -->\n<h6>Please Note</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564564662192\"} -->\n<p>You need to install and activate <a href=\"https://wordpress.org/plugins/powerkit/\">Powerkit</a> and <a href=\"https://wordpress.org/plugins/canvas/\">Canvas</a> to make this feature work.</p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/alert -->\n\n<!-- wp:heading {\"className\":\"is-style-default\",\"canvasClassName\":\"cnvs-block-core-heading-1564574331684\"} -->\n<h2 class=\"is-style-default\">Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564574271321\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574271364\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:canvas/author {\"canvasClassName\":\"cnvs-block-author-1564574276138\",\"canvasLocation\":\"section-content\",\"author\":\"1\",\"showArchiveBtn\":true,\"buttonStyle\":\"squared\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574271422\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574295517\"} -->\n<p>\n\nNec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante. Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574295911\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574258324624\"} -->\n<h2>With Background</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564574368825\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574368878\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:canvas/author {\"canvasClassName\":\"cnvs-block-author-1564574376643\",\"canvasLocation\":\"section-content\",\"author\":\"1\",\"bgImage\":{\"id\":171,\"url\":\"http://codesupply.co/wp-content/uploads/2018/06/demo-image-00004-1.jpg\"},\"showArchiveBtn\":true,\"buttonStyle\":\"squared\",\"buttonSize\":\"lg\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574368926\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574397889\"} -->\n<p> Metus curabitur ullamcorper dolor dapibus sapien quis vitae a nullam cras cum eget sem. Ut leo felis eu consectetuer donec cras nullam magnis nulla luctus. Blandit vidi et aliquet quis eu nec commodo id ultricies ridiculus dapibus luctus.&nbsp;Imperdiet nulla nisi quis viverra id consectetuer nec aenean semper porttitor sed. Pulvinar semper quis enim tincidunt viverra. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574258343312\"} -->\n<h2>Contributors Simple</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/row {\"canvasClassName\":\"cnvs-block-row-1564574539824\",\"canvasLocation\":\"root\"} -->\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574539858\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:canvas/contributors {\"canvasClassName\":\"cnvs-block-contributors-1673696882662\",\"canvasLocation\":\"section-content\"} /-->\n<!-- /wp:canvas/column -->\n\n<!-- wp:canvas/column {\"canvasClassName\":\"cnvs-block-column-1564574539905\",\"canvasLocation\":\"default\",\"size\":6} -->\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574611340\"} -->\n<p> Nec nascetur mus vici. Dolor rhoncus augue quisque parturient etiam imperdiet sit nisi tellus veni faucibus orci. Imperdiet venenatis nec odio ac nullam rhoncus curabitur montes dapibus sem eu ante.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574613636\"} -->\n<p> Condimentum a nec. Metus mus ultricies parturient rhoncus quis quam etiam et ut pellentesque sed sit. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1564574616462\"} -->\n<p>Tincidunt eleifend pellentesque justo sociis parturient rutrum semper vitae aenean nec massa eu vivamus. </p>\n<!-- /wp:paragraph -->\n<!-- /wp:canvas/column -->\n<!-- /wp:canvas/row -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1574258355528\"} -->\n<h2>Contributors With Posts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:canvas/contributors {\"canvasClassName\":\"cnvs-block-contributors-1673696882697\",\"canvasLocation\":\"root\",\"showRecentPosts\":true} /-->\n\n<!-- wp:canvas/contributors {\"canvasClassName\":\"cnvs-block-contributors-1564574673947\",\"canvasLocation\":\"root\",\"contributors\":[\"3\",\"4\"],\"showRecentPosts\":true,\"countRecentPosts\":5} /-->','Author','','inherit','closed','closed','','1005-autosave-v1','','','2023-01-14 11:49:12','2023-01-14 11:49:12','',1005,'http://192.168.1.140:8011/?p=2176',0,'revision','',0),(2177,1,'2023-01-14 17:18:04','2023-01-14 17:18:04','{\n \"squaretype::effects_navbar_scroll\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 17:17:32\"\n },\n \"squaretype::header_social_links\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 17:17:32\"\n },\n \"squaretype::header_follow_button_label\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 17:17:32\"\n }\n}','','','trash','closed','closed','','b1eacfa0-5075-4a84-b346-1d546d54ebef','','','2023-01-14 17:18:04','2023-01-14 17:18:04','',0,'http://192.168.1.140:8011/?p=2177',0,'customize_changeset','',0),(2178,1,'2023-01-14 17:18:49','2023-01-14 17:18:49','{\n \"squaretype::general_hero_preview_image\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 17:18:49\"\n }\n}','','','trash','closed','closed','','b8ecb769-ff85-4e2c-bb8f-db6185a481fc','','','2023-01-14 17:18:49','2023-01-14 17:18:49','',0,'http://192.168.1.140:8011/?p=2178',0,'customize_changeset','',0),(2180,1,'2023-01-14 17:25:54','2023-01-14 17:25:54','','test001','','inherit','open','closed','','test001','','','2023-01-14 17:25:54','2023-01-14 17:25:54','',1,'http://192.168.1.140:8011/wp-content/uploads/2023/01/test001.jpg',0,'attachment','image/jpeg',0),(2181,1,'2023-01-14 17:26:12','2023-01-14 17:26:12','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1673717001215\"} -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2023-01-14 17:26:12','2023-01-14 17:26:12','',1,'http://192.168.1.140:8011/?p=2181',0,'revision','',0),(2182,1,'2023-01-14 19:03:10','2023-01-14 19:03:10','','home_image','','inherit','open','closed','','home_image','','','2023-01-14 19:03:10','2023-01-14 19:03:10','',0,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/home_image.jpg',0,'attachment','image/jpeg',0),(2184,1,'2023-01-14 19:07:04','2023-01-14 19:07:04','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1673717001215\"} -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','KevKem Chiropractic!','','inherit','closed','closed','','1-revision-v1','','','2023-01-14 19:07:04','2023-01-14 19:07:04','',1,'http://demo.kevkem.chiefsoft.net/?p=2184',0,'revision','',0),(2185,1,'2023-01-14 19:10:55','2023-01-14 19:10:55','','logo-kevkem','','inherit','open','closed','','logo-kevkem','','','2023-01-14 19:10:55','2023-01-14 19:10:55','',0,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/logo-kevkem.png',0,'attachment','image/png',0),(2186,1,'2023-01-14 19:12:29','2023-01-14 19:12:29','{\n \"squaretype::logo\": {\n \"value\": 2185,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 19:12:29\"\n },\n \"squaretype::large_logo\": {\n \"value\": 2185,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-14 19:12:29\"\n }\n}','','','trash','closed','closed','','d97b2fa8-a219-48bf-908e-616e7543e93d','','','2023-01-14 19:12:29','2023-01-14 19:12:29','',0,'http://demo.kevkem.chiefsoft.net/?p=2186',0,'customize_changeset','',0),(2187,1,'2023-01-21 12:39:57','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-01-21 12:39:57','0000-00-00 00:00:00','',0,'http://demo.kevkem.chiefsoft.net/?p=2187',0,'post','',0),(2188,1,'2023-01-21 14:58:19','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2023-01-21 14:58:19','0000-00-00 00:00:00','',0,'http://demo.kevkem.chiefsoft.net/?page_id=2188',0,'page','',0),(2189,1,'2023-01-21 14:59:30','2023-01-21 14:59:30','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313134114\"} -->\n<p>About us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674313714321\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717811\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:image {\"id\":2199,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674313782501\",\"marginLeft\":0} -->\n<figure class=\"wp-block-image size-full cnvs-block-core-image-1674313782501\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/kev-kem-abou.jpg\" alt=\"\" class=\"wp-image-2199\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674313743573\"} -->\n<h2>Meet the Chiropractor</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743582\"} -->\n<p>Edith Mobolade is board certified with 19 years of patient care as a clinical scientist and 9 years as a Chiropractor. She uses chiropractic care to improve the health and wellness in all areas of patient\'s lives, whether they are having problems with back pain or neck pain due to Auto accidents, work related accidents, or just want to start feeling better when they wake up in the morning. Dr. Mobolade takes a \"whole person\" approach in chiropractic care, which means looking for the underlying causes of disease, discomfort, and pain, as opposed to just treating the symptoms. Many seemingly unrelated symptoms often arise from imbalances in the spinal column, and Dr. Mobolade will be able to determine the root of the pain and create a personalized chiropractic and wellness plan to suit each patient\'s individual needs. Under the supervision and care of our caring and skilled chiropractor, patients report higher functioning in all areas of their lives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743595\"} -->\n<p>If you have any questions about our Austell chiropractor, or would like to learn more about chiropractic care at Kevkem Chiropractic Health &amp; Injury Rehab Center, please call us at&nbsp;770-778-0088&nbsp;today!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313871291\"} -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674313755107\"} -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717819\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313769991\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314012896\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314014992\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674314028041\"} -->\n<h3>Who we are</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314028051\"} -->\n<p>A chiropractic and injury rehabilitation center dedicated to providing quality drug free treatments and therapies in the Cobb county area for over 9 years. Conveniently located at the intersection of clay and Austell rd. Our office is well equipped with modern chiropractic and physio therapeutic instruments and equipment to meet all your treatment needs in a very comfortable and friendly clinic environment., We provide body vibration and hydroterm massage therapy, and a certified full service massage therapist is available.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314015001\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674316111685\"} -->\n<h3>Services</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"canvasClassName\":\"cnvs-block-core-list-1674316200962\"} -->\n<ul><!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316220817\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Chiropractic Care</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316251752\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Corrective Exercises</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316261775\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Lifestyle Advice</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316270055\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Nutritional Counseling</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316271063\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Massage Therapy</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316262939\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Spinal &amp; Postural Screenings</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314015021\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674314045295\"} -->\n<h3>Company Mission</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314045309\"} -->\n<p>Our goal at Kevkem Chiropractic Health &amp; Injury Rehab Center is to allow everyone to experience the benefits of chiropractic care and adjustments. We actively help you and your family in taking responsibility for your total health, wellness, and disease management. Our chiropractor will assist and guide you as you take the time to care for some of the most important people in your world: you and your family. In an effort to make living the wellness lifestyle as easy and affordable as possible, we can create a customized family chiropractic plan that is specific to you and your family.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','About Us','','publish','closed','closed','','about-us','','','2023-01-21 15:51:53','2023-01-21 15:51:53','',0,'http://demo.kevkem.chiefsoft.net/?page_id=2189',0,'page','',0),(2190,1,'2023-01-21 14:59:30','2023-01-21 14:59:30','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313134114\"} -->\n<p>About us</p>\n<!-- /wp:paragraph -->','About Us','','inherit','closed','closed','','2189-revision-v1','','','2023-01-21 14:59:30','2023-01-21 14:59:30','',2189,'http://demo.kevkem.chiefsoft.net/?p=2190',0,'revision','',0),(2191,1,'2023-01-21 15:01:22','2023-01-21 15:01:22','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315238729\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242808\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2211,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315308080\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-2.jpg\" alt=\"\" class=\"wp-image-2211\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242817\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315283374\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Corrective Exercises</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315283385\"} -->\n<p>At Kevkem Chiropractic Health &amp; Injury Rehab Center, we teach our patients how to perform special \"blueprint\" exercises which can help strengthen and correct the irregularities in their body which may be causing pain. Many of these corrective exercises can actually be performed in the comfort of your own home to help improve the effectiveness of your chiropractic care and spinal correction plan. In addition to skeletal misalignment, you may be experiencing pain that is caused by muscles and connective tissues which are out of their proper place. Other types of pain such as back pain, neck pain, and headaches are caused by muscles and tissues that are being used improperly, causing injuries over time. In each case, targeted corrective exercises and stretches from our experienced chiropractor will help you feel good while also helping your body achieve balance and health.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315428457\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430363\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315444693\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Lifestyle Advice</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315444706\"} -->\n<p>Many of our patients come to see our chiropractor to address a specific pain symptom such as back pain, neck pain or headaches. While our chiropractor will address each patient\'s specific condition with chiropractic care, we often find it helpful to \"coach\" our patients towards achieving a healthier lifestyle. For example, there may be certain activities that you should avoid or do differently to prevent yourself from unintentionally aggravating your particular health challenges. The goal of including lifestyle advice with a chiropractic care plan is to help each and every patient achieve the fulfilling and happy lifestyle they deserve, one that is full of the activities that are enjoyed most. We recognize that every single one of our patients is a whole person, and we use our expertise to help them reach total health</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430374\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2215,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315472013\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-3.jpg\" alt=\"\" class=\"wp-image-2215\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315550131\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551798\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2217,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315594321\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-4.jpg\" alt=\"\" class=\"wp-image-2217\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551815\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315570203\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Nutritional Counseling</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315570221\"} -->\n<p>What does nutrition have to do with chiropractic care? The goal of chiropractic care is to help patients achieve total health and balance with their body, and as part of that goal we provide specific recommendations on nutritional supplements and healthy food choices. Nutritional counseling by our experienced chiropractic health professionals can assist a patient on their return to optimal health. Do you know which supplements and vitamins are good for you? Do you know how these supplements and vitamins interact with one another? At our Austell chiropractic clinic, we can provide each patient with a structured nutritional program that is based on their individual needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315723046\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315725392\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315742029\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Massage Therapy</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315742043\"} -->\n<p>Massage therapy does more than make you feel good, it can actually help your body achieve balance and health. Massage therapy offers a natural treatment approach which actually relieves musculoskeletal pain for many patients. Our chiropractic office provides specific massage and muscular therapy that is complimentary to their chiropractic care. Each massage therapy plan is tailored to meet the patient\'s unique pain condition or injury. The benefits of massage therapy may include the increase of blood circulation, a localized reduction in swelling and the relaxation of muscles. Massage has been known to relieve muscle pain and spasms, increase a patient\'s range of motion, while also aiding in a patient\'s recovery. Some investigative studies have even indicated that a single session of massage may help boost your immune system!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315725405\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2221,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315763492\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-5.jpg\" alt=\"\" class=\"wp-image-2221\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315869631\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315871309\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2224,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315917727\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-6.jpg\" alt=\"\" class=\"wp-image-2224\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315871296\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315892542\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Spinal &amp; Postural Screenings</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315892557\"} -->\n<p>There is a saying that an ounce of prevention is worth a pound of cure. Your spinal health is no exception. Posture and spinal screenings by a trained and experienced chiropractor such as Dr. Edith Mobolade can help reveal important health information, unlocking the door to improved health and well-being. In order to help the Austell community, we provide screenings at area malls, community events, health fairs and places of employment. Contact us today at 770-778-0088 to arrange a screening at your event or workplace.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','publish','closed','closed','','services','','','2023-01-21 15:46:43','2023-01-21 15:46:43','',0,'http://demo.kevkem.chiefsoft.net/?page_id=2191',0,'page','',0),(2192,1,'2023-01-21 15:01:22','2023-01-21 15:01:22','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313258415\"} -->\n<p>services</p>\n<!-- /wp:paragraph -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:01:22','2023-01-21 15:01:22','',2191,'http://demo.kevkem.chiefsoft.net/?p=2192',0,'revision','',0),(2193,1,'2023-01-21 15:03:28','2023-01-21 15:03:28','{\n \"nav_menu_item[342]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 342,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Features\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 4,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2014]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 1738,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1738\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 5,\n \"status\": \"publish\",\n \"original_title\": \"Category Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2155]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 2155,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Content Blocks\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 6,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2017]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1263,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1263\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 7,\n \"status\": \"publish\",\n \"original_title\": \"Accordions\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2018]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 925,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=925\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 8,\n \"status\": \"publish\",\n \"original_title\": \"Alerts\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2019]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1005,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1005\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 9,\n \"status\": \"publish\",\n \"original_title\": \"Author\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2022]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 936,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=936\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 10,\n \"status\": \"publish\",\n \"original_title\": \"Facebook Fanpage\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2023]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 940,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=940\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 11,\n \"status\": \"publish\",\n \"original_title\": \"Instagram Feed\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2025]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1266,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1266\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 12,\n \"status\": \"publish\",\n \"original_title\": \"Pinterest Board\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2026]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 929,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=929\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 13,\n \"status\": \"publish\",\n \"original_title\": \"Progress Bars\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2027]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 934,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=934\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 14,\n \"status\": \"publish\",\n \"original_title\": \"Separators\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2028]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 999,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=999\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 15,\n \"status\": \"publish\",\n \"original_title\": \"Share Buttons\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2029]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 893,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=893\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 16,\n \"status\": \"publish\",\n \"original_title\": \"Social Links\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2032]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1264,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1264\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 17,\n \"status\": \"publish\",\n \"original_title\": \"Subscription Forms\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2033]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1262,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1262\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 18,\n \"status\": \"publish\",\n \"original_title\": \"Tabs & Pills\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2034]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1265,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1265\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 19,\n \"status\": \"publish\",\n \"original_title\": \"Twitter Feed\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2043]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 2043,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Content Formatting\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 20,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2020]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1378,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1378\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 21,\n \"status\": \"publish\",\n \"original_title\": \"Badges\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2021]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1270,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1270\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 22,\n \"status\": \"publish\",\n \"original_title\": \"Drop Caps\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2030]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1267,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1267\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 23,\n \"status\": \"publish\",\n \"original_title\": \"Styled Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2031]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1268,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1268\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 24,\n \"status\": \"publish\",\n \"original_title\": \"Styled Lists\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2024]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1269,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1269\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 25,\n \"status\": \"publish\",\n \"original_title\": \"Numbered Headings\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2035]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 994,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=994\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 26,\n \"status\": \"publish\",\n \"original_title\": \"Gallery Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2039]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 1748,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1748\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 27,\n \"status\": \"publish\",\n \"original_title\": \"Promo Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2036]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 728,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=728\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 28,\n \"status\": \"publish\",\n \"original_title\": \"Inline Posts\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2093]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 296,\n \"object\": \"post\",\n \"type\": \"post_type\",\n \"type_label\": \"Post\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?p=296\",\n \"title\": \"Paginated Post\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 29,\n \"status\": \"publish\",\n \"original_title\": \"A Pretium Enim Dolor Donec Eu Venenatis Curabitur\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2015]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 726,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=726\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 30,\n \"status\": \"publish\",\n \"original_title\": \"Contact Form\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2073]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 2071,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=2071\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 31,\n \"status\": \"publish\",\n \"original_title\": \"Sample Page\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[2154]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 2154,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Buy Now\",\n \"url\": \"https://codesupply.co/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 32,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[-1966740431829878800]\": {\n \"value\": {\n \"object_id\": 2191,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Services\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=2191\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Services\",\n \"nav_menu_term_id\": 9,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n },\n \"nav_menu_item[-3143064771894571000]\": {\n \"value\": {\n \"object_id\": 2189,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"About Us\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=2189\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About Us\",\n \"nav_menu_term_id\": 9,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:28\"\n }\n}','','','trash','closed','closed','','21c525c4-19d9-4811-b1d9-3117fde6c5d1','','','2023-01-21 15:03:28','2023-01-21 15:03:28','',0,'http://demo.kevkem.chiefsoft.net/?p=2193',0,'customize_changeset','',0),(2194,1,'2023-01-21 15:03:29','2023-01-21 15:03:29',' ','','','publish','closed','closed','','2194','','','2023-01-21 15:03:29','2023-01-21 15:03:29','',0,'http://demo.kevkem.chiefsoft.net/?p=2194',3,'nav_menu_item','',0),(2195,1,'2023-01-21 15:03:29','2023-01-21 15:03:29',' ','','','publish','closed','closed','','2195','','','2023-01-21 15:03:29','2023-01-21 15:03:29','',0,'http://demo.kevkem.chiefsoft.net/?p=2195',2,'nav_menu_item','',0),(2196,1,'2023-01-21 15:03:59','2023-01-21 15:03:59','{\n \"nav_menu_item[2154]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:03:59\"\n }\n}','','','trash','closed','closed','','b369146b-8d45-484d-9cfc-8fe1f0d0ae15','','','2023-01-21 15:03:59','2023-01-21 15:03:59','',0,'http://demo.kevkem.chiefsoft.net/?p=2196',0,'customize_changeset','',0),(2197,1,'2023-01-21 15:05:09','2023-01-21 15:05:09','{\n \"nav_menu_item[2020]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1378,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1378\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 22,\n \"status\": \"publish\",\n \"original_title\": \"Badges\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2021]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1270,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1270\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 23,\n \"status\": \"publish\",\n \"original_title\": \"Drop Caps\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2030]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1267,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1267\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 24,\n \"status\": \"publish\",\n \"original_title\": \"Styled Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2031]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1268,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1268\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 25,\n \"status\": \"publish\",\n \"original_title\": \"Styled Lists\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2024]\": {\n \"value\": {\n \"menu_item_parent\": 2043,\n \"object_id\": 1269,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1269\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 26,\n \"status\": \"publish\",\n \"original_title\": \"Numbered Headings\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2035]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 994,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=994\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 27,\n \"status\": \"publish\",\n \"original_title\": \"Gallery Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2039]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 1748,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1748\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 28,\n \"status\": \"publish\",\n \"original_title\": \"Promo Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2036]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 728,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=728\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 29,\n \"status\": \"publish\",\n \"original_title\": \"Inline Posts\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2093]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 296,\n \"object\": \"post\",\n \"type\": \"post_type\",\n \"type_label\": \"Post\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?p=296\",\n \"title\": \"Paginated Post\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 30,\n \"status\": \"publish\",\n \"original_title\": \"A Pretium Enim Dolor Donec Eu Venenatis Curabitur\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:04:37\"\n },\n \"nav_menu_item[2015]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 726,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=726\",\n \"title\": \"Contact Us\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 4,\n \"status\": \"publish\",\n \"original_title\": \"Contact Form\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[342]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 342,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Features\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 5,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2014]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 1738,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1738\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 6,\n \"status\": \"publish\",\n \"original_title\": \"Category Blocks\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2155]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 2155,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Content Blocks\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 7,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2017]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1263,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1263\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 8,\n \"status\": \"publish\",\n \"original_title\": \"Accordions\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2018]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 925,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=925\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 9,\n \"status\": \"publish\",\n \"original_title\": \"Alerts\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2019]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1005,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1005\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 10,\n \"status\": \"publish\",\n \"original_title\": \"Author\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2022]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 936,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=936\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 11,\n \"status\": \"publish\",\n \"original_title\": \"Facebook Fanpage\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2023]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 940,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=940\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 12,\n \"status\": \"publish\",\n \"original_title\": \"Instagram Feed\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2025]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1266,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1266\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 13,\n \"status\": \"publish\",\n \"original_title\": \"Pinterest Board\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2026]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 929,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=929\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 14,\n \"status\": \"publish\",\n \"original_title\": \"Progress Bars\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2027]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 934,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=934\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 15,\n \"status\": \"publish\",\n \"original_title\": \"Separators\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2028]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 999,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=999\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 16,\n \"status\": \"publish\",\n \"original_title\": \"Share Buttons\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2029]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 893,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=893\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 17,\n \"status\": \"publish\",\n \"original_title\": \"Social Links\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2032]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1264,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1264\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 18,\n \"status\": \"publish\",\n \"original_title\": \"Subscription Forms\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2033]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1262,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1262\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 19,\n \"status\": \"publish\",\n \"original_title\": \"Tabs & Pills\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2034]\": {\n \"value\": {\n \"menu_item_parent\": 2155,\n \"object_id\": 1265,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://demo.kevkem.chiefsoft.net/?page_id=1265\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 20,\n \"status\": \"publish\",\n \"original_title\": \"Twitter Feed\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n },\n \"nav_menu_item[2043]\": {\n \"value\": {\n \"menu_item_parent\": 342,\n \"object_id\": 2043,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"Content Formatting\",\n \"url\": \"#\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 9,\n \"position\": 21,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2023-01-21 15:05:09\"\n }\n}','','','trash','closed','closed','','564381de-7bb0-4977-a88a-12a5b7aab5ee','','','2023-01-21 15:05:09','2023-01-21 15:05:09','',0,'http://demo.kevkem.chiefsoft.net/?p=2197',0,'customize_changeset','',0),(2199,1,'2023-01-21 15:10:37','2023-01-21 15:10:37','','kev-kem-abou','','inherit','open','closed','','kev-kem-abou','','','2023-01-21 15:10:37','2023-01-21 15:10:37','',2189,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/kev-kem-abou.jpg',0,'attachment','image/jpeg',0),(2200,1,'2023-01-21 15:11:48','2023-01-21 15:11:48','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313134114\"} -->\n<p>About us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674313714321\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717811\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674313743573\"} -->\n<h2>Meet the Chiropractor</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743582\"} -->\n<p>Edith Mobolade is board certified with 19 years of patient care as a clinical scientist and 9 years as a Chiropractor. She uses chiropractic care to improve the health and wellness in all areas of patient\'s lives, whether they are having problems with back pain or neck pain due to Auto accidents, work related accidents, or just want to start feeling better when they wake up in the morning. Dr. Mobolade takes a \"whole person\" approach in chiropractic care, which means looking for the underlying causes of disease, discomfort, and pain, as opposed to just treating the symptoms. Many seemingly unrelated symptoms often arise from imbalances in the spinal column, and Dr. Mobolade will be able to determine the root of the pain and create a personalized chiropractic and wellness plan to suit each patient\'s individual needs. Under the supervision and care of our caring and skilled chiropractor, patients report higher functioning in all areas of their lives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743595\"} -->\n<p>If you have any questions about our Austell chiropractor, or would like to learn more about chiropractic care at Kevkem Chiropractic Health &amp; Injury Rehab Center, please call us at&nbsp;770-778-0088&nbsp;today!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313871291\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":2199,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674313782501\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/kev-kem-abou.jpg\" alt=\"\" class=\"wp-image-2199\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674313755107\"} -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717819\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313769991\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','About Us','','inherit','closed','closed','','2189-revision-v1','','','2023-01-21 15:11:48','2023-01-21 15:11:48','',2189,'http://demo.kevkem.chiefsoft.net/?p=2200',0,'revision','',0),(2202,1,'2023-01-21 15:13:08','2023-01-21 15:13:08','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313134114\"} -->\n<p>About us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674313714321\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717811\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:image {\"id\":2199,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674313782501\",\"marginLeft\":0} -->\n<figure class=\"wp-block-image size-full cnvs-block-core-image-1674313782501\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/kev-kem-abou.jpg\" alt=\"\" class=\"wp-image-2199\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674313743573\"} -->\n<h2>Meet the Chiropractor</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743582\"} -->\n<p>Edith Mobolade is board certified with 19 years of patient care as a clinical scientist and 9 years as a Chiropractor. She uses chiropractic care to improve the health and wellness in all areas of patient\'s lives, whether they are having problems with back pain or neck pain due to Auto accidents, work related accidents, or just want to start feeling better when they wake up in the morning. Dr. Mobolade takes a \"whole person\" approach in chiropractic care, which means looking for the underlying causes of disease, discomfort, and pain, as opposed to just treating the symptoms. Many seemingly unrelated symptoms often arise from imbalances in the spinal column, and Dr. Mobolade will be able to determine the root of the pain and create a personalized chiropractic and wellness plan to suit each patient\'s individual needs. Under the supervision and care of our caring and skilled chiropractor, patients report higher functioning in all areas of their lives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743595\"} -->\n<p>If you have any questions about our Austell chiropractor, or would like to learn more about chiropractic care at Kevkem Chiropractic Health &amp; Injury Rehab Center, please call us at&nbsp;770-778-0088&nbsp;today!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313871291\"} -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674313755107\"} -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717819\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313769991\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','About Us','','inherit','closed','closed','','2189-revision-v1','','','2023-01-21 15:13:08','2023-01-21 15:13:08','',2189,'http://demo.kevkem.chiefsoft.net/?p=2202',0,'revision','',0),(2204,1,'2023-01-21 15:14:24','2023-01-21 15:14:24','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313134114\"} -->\n<p>About us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674313714321\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717811\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:image {\"id\":2199,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674313782501\",\"marginLeft\":0} -->\n<figure class=\"wp-block-image size-full cnvs-block-core-image-1674313782501\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/kev-kem-abou.jpg\" alt=\"\" class=\"wp-image-2199\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674313743573\"} -->\n<h2>Meet the Chiropractor</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743582\"} -->\n<p>Edith Mobolade is board certified with 19 years of patient care as a clinical scientist and 9 years as a Chiropractor. She uses chiropractic care to improve the health and wellness in all areas of patient\'s lives, whether they are having problems with back pain or neck pain due to Auto accidents, work related accidents, or just want to start feeling better when they wake up in the morning. Dr. Mobolade takes a \"whole person\" approach in chiropractic care, which means looking for the underlying causes of disease, discomfort, and pain, as opposed to just treating the symptoms. Many seemingly unrelated symptoms often arise from imbalances in the spinal column, and Dr. Mobolade will be able to determine the root of the pain and create a personalized chiropractic and wellness plan to suit each patient\'s individual needs. Under the supervision and care of our caring and skilled chiropractor, patients report higher functioning in all areas of their lives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743595\"} -->\n<p>If you have any questions about our Austell chiropractor, or would like to learn more about chiropractic care at Kevkem Chiropractic Health &amp; Injury Rehab Center, please call us at&nbsp;770-778-0088&nbsp;today!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313871291\"} -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674313755107\"} -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717819\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313769991\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314012896\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314014992\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674314028041\"} -->\n<h3>Who we are</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314028051\"} -->\n<p>A chiropractic and injury rehabilitation center dedicated to providing quality drug free treatments and therapies in the Cobb county area for over 9 years. Conveniently located at the intersection of clay and Austell rd. Our office is well equipped with modern chiropractic and physio therapeutic instruments and equipment to meet all your treatment needs in a very comfortable and friendly clinic environment., We provide body vibration and hydroterm massage therapy, and a certified full service massage therapist is available.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314015001\"} -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314015021\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674314045295\"} -->\n<h3>Company Mission</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314045309\"} -->\n<p>Our goal at Kevkem Chiropractic Health &amp; Injury Rehab Center is to allow everyone to experience the benefits of chiropractic care and adjustments. We actively help you and your family in taking responsibility for your total health, wellness, and disease management. Our chiropractor will assist and guide you as you take the time to care for some of the most important people in your world: you and your family. In an effort to make living the wellness lifestyle as easy and affordable as possible, we can create a customized family chiropractic plan that is specific to you and your family.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','About Us','','inherit','closed','closed','','2189-revision-v1','','','2023-01-21 15:14:24','2023-01-21 15:14:24','',2189,'http://demo.kevkem.chiefsoft.net/?p=2204',0,'revision','',0),(2206,1,'2023-01-21 15:28:37','2023-01-21 15:28:37','','care-1','','inherit','open','closed','','care-1','','','2023-01-21 15:28:37','2023-01-21 15:28:37','',2191,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg',0,'attachment','image/jpeg',0),(2207,1,'2023-01-21 15:28:48','2023-01-21 15:28:48','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313258415\"} -->\n<p>services</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:28:48','2023-01-21 15:28:48','',2191,'http://demo.kevkem.chiefsoft.net/?p=2207',0,'revision','',0),(2209,1,'2023-01-21 15:31:46','2023-01-21 15:31:46','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:31:46','2023-01-21 15:31:46','',2191,'http://demo.kevkem.chiefsoft.net/?p=2209',0,'revision','',0),(2211,1,'2023-01-21 15:35:25','2023-01-21 15:35:25','','care-2','','inherit','open','closed','','care-2','','','2023-01-21 15:35:25','2023-01-21 15:35:25','',2191,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-2.jpg',0,'attachment','image/jpeg',0),(2212,1,'2023-01-21 15:35:28','2023-01-21 15:35:28','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315238729\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242808\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"canvasClassName\":\"cnvs-block-core-image-1674315308080\"} -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242817\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315283374\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Corrective Exercises</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315283385\"} -->\n<p>At Kevkem Chiropractic Health &amp; Injury Rehab Center, we teach our patients how to perform special \"blueprint\" exercises which can help strengthen and correct the irregularities in their body which may be causing pain. Many of these corrective exercises can actually be performed in the comfort of your own home to help improve the effectiveness of your chiropractic care and spinal correction plan. In addition to skeletal misalignment, you may be experiencing pain that is caused by muscles and connective tissues which are out of their proper place. Other types of pain such as back pain, neck pain, and headaches are caused by muscles and tissues that are being used improperly, causing injuries over time. In each case, targeted corrective exercises and stretches from our experienced chiropractor will help you feel good while also helping your body achieve balance and health.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:35:28','2023-01-21 15:35:28','',2191,'http://demo.kevkem.chiefsoft.net/?p=2212',0,'revision','',0),(2213,1,'2023-01-21 15:36:12','2023-01-21 15:36:12','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315238729\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242808\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2211,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315308080\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-2.jpg\" alt=\"\" class=\"wp-image-2211\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242817\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315283374\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Corrective Exercises</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315283385\"} -->\n<p>At Kevkem Chiropractic Health &amp; Injury Rehab Center, we teach our patients how to perform special \"blueprint\" exercises which can help strengthen and correct the irregularities in their body which may be causing pain. Many of these corrective exercises can actually be performed in the comfort of your own home to help improve the effectiveness of your chiropractic care and spinal correction plan. In addition to skeletal misalignment, you may be experiencing pain that is caused by muscles and connective tissues which are out of their proper place. Other types of pain such as back pain, neck pain, and headaches are caused by muscles and tissues that are being used improperly, causing injuries over time. In each case, targeted corrective exercises and stretches from our experienced chiropractor will help you feel good while also helping your body achieve balance and health.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:36:12','2023-01-21 15:36:12','',2191,'http://demo.kevkem.chiefsoft.net/?p=2213',0,'revision','',0),(2215,1,'2023-01-21 15:38:10','2023-01-21 15:38:10','','care-3','','inherit','open','closed','','care-3','','','2023-01-21 15:38:10','2023-01-21 15:38:10','',2191,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-3.jpg',0,'attachment','image/jpeg',0),(2216,1,'2023-01-21 15:38:13','2023-01-21 15:38:13','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315238729\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242808\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2211,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315308080\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-2.jpg\" alt=\"\" class=\"wp-image-2211\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242817\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315283374\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Corrective Exercises</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315283385\"} -->\n<p>At Kevkem Chiropractic Health &amp; Injury Rehab Center, we teach our patients how to perform special \"blueprint\" exercises which can help strengthen and correct the irregularities in their body which may be causing pain. Many of these corrective exercises can actually be performed in the comfort of your own home to help improve the effectiveness of your chiropractic care and spinal correction plan. In addition to skeletal misalignment, you may be experiencing pain that is caused by muscles and connective tissues which are out of their proper place. Other types of pain such as back pain, neck pain, and headaches are caused by muscles and tissues that are being used improperly, causing injuries over time. In each case, targeted corrective exercises and stretches from our experienced chiropractor will help you feel good while also helping your body achieve balance and health.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315428457\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430363\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315444693\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Lifestyle Advice</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315444706\"} -->\n<p>Many of our patients come to see our chiropractor to address a specific pain symptom such as back pain, neck pain or headaches. While our chiropractor will address each patient\'s specific condition with chiropractic care, we often find it helpful to \"coach\" our patients towards achieving a healthier lifestyle. For example, there may be certain activities that you should avoid or do differently to prevent yourself from unintentionally aggravating your particular health challenges. The goal of including lifestyle advice with a chiropractic care plan is to help each and every patient achieve the fulfilling and happy lifestyle they deserve, one that is full of the activities that are enjoyed most. We recognize that every single one of our patients is a whole person, and we use our expertise to help them reach total health</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430374\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"canvasClassName\":\"cnvs-block-core-image-1674315472013\"} -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:38:13','2023-01-21 15:38:13','',2191,'http://demo.kevkem.chiefsoft.net/?p=2216',0,'revision','',0),(2217,1,'2023-01-21 15:40:12','2023-01-21 15:40:12','','care-4','','inherit','open','closed','','care-4','','','2023-01-21 15:40:12','2023-01-21 15:40:12','',2191,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-4.jpg',0,'attachment','image/jpeg',0),(2218,1,'2023-01-21 15:40:13','2023-01-21 15:40:13','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315238729\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242808\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2211,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315308080\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-2.jpg\" alt=\"\" class=\"wp-image-2211\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242817\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315283374\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Corrective Exercises</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315283385\"} -->\n<p>At Kevkem Chiropractic Health &amp; Injury Rehab Center, we teach our patients how to perform special \"blueprint\" exercises which can help strengthen and correct the irregularities in their body which may be causing pain. Many of these corrective exercises can actually be performed in the comfort of your own home to help improve the effectiveness of your chiropractic care and spinal correction plan. In addition to skeletal misalignment, you may be experiencing pain that is caused by muscles and connective tissues which are out of their proper place. Other types of pain such as back pain, neck pain, and headaches are caused by muscles and tissues that are being used improperly, causing injuries over time. In each case, targeted corrective exercises and stretches from our experienced chiropractor will help you feel good while also helping your body achieve balance and health.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315428457\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430363\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315444693\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Lifestyle Advice</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315444706\"} -->\n<p>Many of our patients come to see our chiropractor to address a specific pain symptom such as back pain, neck pain or headaches. While our chiropractor will address each patient\'s specific condition with chiropractic care, we often find it helpful to \"coach\" our patients towards achieving a healthier lifestyle. For example, there may be certain activities that you should avoid or do differently to prevent yourself from unintentionally aggravating your particular health challenges. The goal of including lifestyle advice with a chiropractic care plan is to help each and every patient achieve the fulfilling and happy lifestyle they deserve, one that is full of the activities that are enjoyed most. We recognize that every single one of our patients is a whole person, and we use our expertise to help them reach total health</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430374\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2215,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315472013\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-3.jpg\" alt=\"\" class=\"wp-image-2215\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315550131\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551798\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"canvasClassName\":\"cnvs-block-core-image-1674315594321\"} -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551815\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315570203\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Nutritional Counseling</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315570221\"} -->\n<p>What does nutrition have to do with chiropractic care? The goal of chiropractic care is to help patients achieve total health and balance with their body, and as part of that goal we provide specific recommendations on nutritional supplements and healthy food choices. Nutritional counseling by our experienced chiropractic health professionals can assist a patient on their return to optimal health. Do you know which supplements and vitamins are good for you? Do you know how these supplements and vitamins interact with one another? At our Austell chiropractic clinic, we can provide each patient with a structured nutritional program that is based on their individual needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:40:13','2023-01-21 15:40:13','',2191,'http://demo.kevkem.chiefsoft.net/?p=2218',0,'revision','',0),(2221,1,'2023-01-21 15:43:00','2023-01-21 15:43:00','','care-5','','inherit','open','closed','','care-5','','','2023-01-21 15:43:00','2023-01-21 15:43:00','',2191,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-5.jpg',0,'attachment','image/jpeg',0),(2222,1,'2023-01-21 15:43:05','2023-01-21 15:43:05','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315238729\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242808\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2211,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315308080\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-2.jpg\" alt=\"\" class=\"wp-image-2211\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242817\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315283374\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Corrective Exercises</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315283385\"} -->\n<p>At Kevkem Chiropractic Health &amp; Injury Rehab Center, we teach our patients how to perform special \"blueprint\" exercises which can help strengthen and correct the irregularities in their body which may be causing pain. Many of these corrective exercises can actually be performed in the comfort of your own home to help improve the effectiveness of your chiropractic care and spinal correction plan. In addition to skeletal misalignment, you may be experiencing pain that is caused by muscles and connective tissues which are out of their proper place. Other types of pain such as back pain, neck pain, and headaches are caused by muscles and tissues that are being used improperly, causing injuries over time. In each case, targeted corrective exercises and stretches from our experienced chiropractor will help you feel good while also helping your body achieve balance and health.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315428457\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430363\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315444693\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Lifestyle Advice</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315444706\"} -->\n<p>Many of our patients come to see our chiropractor to address a specific pain symptom such as back pain, neck pain or headaches. While our chiropractor will address each patient\'s specific condition with chiropractic care, we often find it helpful to \"coach\" our patients towards achieving a healthier lifestyle. For example, there may be certain activities that you should avoid or do differently to prevent yourself from unintentionally aggravating your particular health challenges. The goal of including lifestyle advice with a chiropractic care plan is to help each and every patient achieve the fulfilling and happy lifestyle they deserve, one that is full of the activities that are enjoyed most. We recognize that every single one of our patients is a whole person, and we use our expertise to help them reach total health</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430374\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2215,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315472013\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-3.jpg\" alt=\"\" class=\"wp-image-2215\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315550131\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551798\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2217,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315594321\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-4.jpg\" alt=\"\" class=\"wp-image-2217\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551815\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315570203\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Nutritional Counseling</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315570221\"} -->\n<p>What does nutrition have to do with chiropractic care? The goal of chiropractic care is to help patients achieve total health and balance with their body, and as part of that goal we provide specific recommendations on nutritional supplements and healthy food choices. Nutritional counseling by our experienced chiropractic health professionals can assist a patient on their return to optimal health. Do you know which supplements and vitamins are good for you? Do you know how these supplements and vitamins interact with one another? At our Austell chiropractic clinic, we can provide each patient with a structured nutritional program that is based on their individual needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315723046\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315725392\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315742029\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Massage Therapy</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315742043\"} -->\n<p>Massage therapy does more than make you feel good, it can actually help your body achieve balance and health. Massage therapy offers a natural treatment approach which actually relieves musculoskeletal pain for many patients. Our chiropractic office provides specific massage and muscular therapy that is complimentary to their chiropractic care. Each massage therapy plan is tailored to meet the patient\'s unique pain condition or injury. The benefits of massage therapy may include the increase of blood circulation, a localized reduction in swelling and the relaxation of muscles. Massage has been known to relieve muscle pain and spasms, increase a patient\'s range of motion, while also aiding in a patient\'s recovery. Some investigative studies have even indicated that a single session of massage may help boost your immune system!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315725405\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"canvasClassName\":\"cnvs-block-core-image-1674315763492\"} -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:43:05','2023-01-21 15:43:05','',2191,'http://demo.kevkem.chiefsoft.net/?p=2222',0,'revision','',0),(2224,1,'2023-01-21 15:45:38','2023-01-21 15:45:38','','care-6','','inherit','open','closed','','care-6','','','2023-01-21 15:45:38','2023-01-21 15:45:38','',2191,'http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-6.jpg',0,'attachment','image/jpeg',0),(2225,1,'2023-01-21 15:45:43','2023-01-21 15:45:43','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315238729\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242808\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2211,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315308080\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-2.jpg\" alt=\"\" class=\"wp-image-2211\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242817\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315283374\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Corrective Exercises</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315283385\"} -->\n<p>At Kevkem Chiropractic Health &amp; Injury Rehab Center, we teach our patients how to perform special \"blueprint\" exercises which can help strengthen and correct the irregularities in their body which may be causing pain. Many of these corrective exercises can actually be performed in the comfort of your own home to help improve the effectiveness of your chiropractic care and spinal correction plan. In addition to skeletal misalignment, you may be experiencing pain that is caused by muscles and connective tissues which are out of their proper place. Other types of pain such as back pain, neck pain, and headaches are caused by muscles and tissues that are being used improperly, causing injuries over time. In each case, targeted corrective exercises and stretches from our experienced chiropractor will help you feel good while also helping your body achieve balance and health.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315428457\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430363\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315444693\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Lifestyle Advice</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315444706\"} -->\n<p>Many of our patients come to see our chiropractor to address a specific pain symptom such as back pain, neck pain or headaches. While our chiropractor will address each patient\'s specific condition with chiropractic care, we often find it helpful to \"coach\" our patients towards achieving a healthier lifestyle. For example, there may be certain activities that you should avoid or do differently to prevent yourself from unintentionally aggravating your particular health challenges. The goal of including lifestyle advice with a chiropractic care plan is to help each and every patient achieve the fulfilling and happy lifestyle they deserve, one that is full of the activities that are enjoyed most. We recognize that every single one of our patients is a whole person, and we use our expertise to help them reach total health</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430374\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2215,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315472013\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-3.jpg\" alt=\"\" class=\"wp-image-2215\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315550131\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551798\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2217,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315594321\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-4.jpg\" alt=\"\" class=\"wp-image-2217\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551815\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315570203\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Nutritional Counseling</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315570221\"} -->\n<p>What does nutrition have to do with chiropractic care? The goal of chiropractic care is to help patients achieve total health and balance with their body, and as part of that goal we provide specific recommendations on nutritional supplements and healthy food choices. Nutritional counseling by our experienced chiropractic health professionals can assist a patient on their return to optimal health. Do you know which supplements and vitamins are good for you? Do you know how these supplements and vitamins interact with one another? At our Austell chiropractic clinic, we can provide each patient with a structured nutritional program that is based on their individual needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315723046\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315725392\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315742029\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Massage Therapy</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315742043\"} -->\n<p>Massage therapy does more than make you feel good, it can actually help your body achieve balance and health. Massage therapy offers a natural treatment approach which actually relieves musculoskeletal pain for many patients. Our chiropractic office provides specific massage and muscular therapy that is complimentary to their chiropractic care. Each massage therapy plan is tailored to meet the patient\'s unique pain condition or injury. The benefits of massage therapy may include the increase of blood circulation, a localized reduction in swelling and the relaxation of muscles. Massage has been known to relieve muscle pain and spasms, increase a patient\'s range of motion, while also aiding in a patient\'s recovery. Some investigative studies have even indicated that a single session of massage may help boost your immune system!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315725405\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2221,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315763492\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-5.jpg\" alt=\"\" class=\"wp-image-2221\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315869631\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315871309\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"canvasClassName\":\"cnvs-block-core-image-1674315917727\"} -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315871296\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315892542\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Spinal &amp; Postural Screenings</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315892557\"} -->\n<p>There is a saying that an ounce of prevention is worth a pound of cure. Your spinal health is no exception. Posture and spinal screenings by a trained and experienced chiropractor such as Dr. Edith Mobolade can help reveal important health information, unlocking the door to improved health and well-being. In order to help the Austell community, we provide screenings at area malls, community events, health fairs and places of employment. Contact us today at 770-778-0088 to arrange a screening at your event or workplace.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:45:43','2023-01-21 15:45:43','',2191,'http://demo.kevkem.chiefsoft.net/?p=2225',0,'revision','',0),(2227,1,'2023-01-21 15:46:34','2023-01-21 15:46:34','<!-- wp:paragraph {\"fontSize\":\"medium\",\"canvasClassName\":\"cnvs-block-core-paragraph-1674314980698\"} -->\n<p class=\"has-medium-font-size\">At Kevkem Chiropractic Health &amp; Injury Rehab Center, we take great pride in providing the finest chiropractic care to each and every patient. We have included information below about the different chiropractic services offered in our Austell chiropractic office, but please call us at 770-778-0088 if you have any questions!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314844654\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847099\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314854418\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855871\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2206,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674314898815\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-1.jpg\" alt=\"\" class=\"wp-image-2206\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314855883\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674314877172\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Chiropractic Care</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314877182\"} -->\n<p>We provide advanced spinal correction and chiropractic adjustments utilizing \"state of the art\" chiropractic techniques. Never in the history of chiropractic care have chiropractors been able to provide the level of help and expertise that is available today. Many of the newest chiropractic techniques are actually safer, more comfortable and more effective than ever before. As a chiropractor who cares about utilizing the most advanced chiropractic techniques, Dr. Edith Mobolade has years of training, expertise and experience in helping patients get pain relief for back pain, neck pain, headaches, and other related conditions originating from the spine. Chiropractic care under a trained professional can even be used to prevent injuries and help you achieve total health or wellness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674314847107\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314973788\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315238729\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242808\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2211,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315308080\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-2.jpg\" alt=\"\" class=\"wp-image-2211\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315242817\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315283374\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Corrective Exercises</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315283385\"} -->\n<p>At Kevkem Chiropractic Health &amp; Injury Rehab Center, we teach our patients how to perform special \"blueprint\" exercises which can help strengthen and correct the irregularities in their body which may be causing pain. Many of these corrective exercises can actually be performed in the comfort of your own home to help improve the effectiveness of your chiropractic care and spinal correction plan. In addition to skeletal misalignment, you may be experiencing pain that is caused by muscles and connective tissues which are out of their proper place. Other types of pain such as back pain, neck pain, and headaches are caused by muscles and tissues that are being used improperly, causing injuries over time. In each case, targeted corrective exercises and stretches from our experienced chiropractor will help you feel good while also helping your body achieve balance and health.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315428457\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430363\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315444693\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Lifestyle Advice</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315444706\"} -->\n<p>Many of our patients come to see our chiropractor to address a specific pain symptom such as back pain, neck pain or headaches. While our chiropractor will address each patient\'s specific condition with chiropractic care, we often find it helpful to \"coach\" our patients towards achieving a healthier lifestyle. For example, there may be certain activities that you should avoid or do differently to prevent yourself from unintentionally aggravating your particular health challenges. The goal of including lifestyle advice with a chiropractic care plan is to help each and every patient achieve the fulfilling and happy lifestyle they deserve, one that is full of the activities that are enjoyed most. We recognize that every single one of our patients is a whole person, and we use our expertise to help them reach total health</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315430374\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2215,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315472013\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-3.jpg\" alt=\"\" class=\"wp-image-2215\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315550131\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551798\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2217,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315594321\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-4.jpg\" alt=\"\" class=\"wp-image-2217\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315551815\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315570203\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\"><br>Nutritional Counseling</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315570221\"} -->\n<p>What does nutrition have to do with chiropractic care? The goal of chiropractic care is to help patients achieve total health and balance with their body, and as part of that goal we provide specific recommendations on nutritional supplements and healthy food choices. Nutritional counseling by our experienced chiropractic health professionals can assist a patient on their return to optimal health. Do you know which supplements and vitamins are good for you? Do you know how these supplements and vitamins interact with one another? At our Austell chiropractic clinic, we can provide each patient with a structured nutritional program that is based on their individual needs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315723046\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315725392\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315742029\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Massage Therapy</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315742043\"} -->\n<p>Massage therapy does more than make you feel good, it can actually help your body achieve balance and health. Massage therapy offers a natural treatment approach which actually relieves musculoskeletal pain for many patients. Our chiropractic office provides specific massage and muscular therapy that is complimentary to their chiropractic care. Each massage therapy plan is tailored to meet the patient\'s unique pain condition or injury. The benefits of massage therapy may include the increase of blood circulation, a localized reduction in swelling and the relaxation of muscles. Massage has been known to relieve muscle pain and spasms, increase a patient\'s range of motion, while also aiding in a patient\'s recovery. Some investigative studies have even indicated that a single session of massage may help boost your immune system!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315725405\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2221,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315763492\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-5.jpg\" alt=\"\" class=\"wp-image-2221\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674315869631\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315871309\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":2224,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674315917727\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/care-6.jpg\" alt=\"\" class=\"wp-image-2224\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674315871296\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674315892542\"} -->\n<h2><a href=\"https://kevkemchiro.com/contact\">Spinal &amp; Postural Screenings</a></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674315892557\"} -->\n<p>There is a saying that an ounce of prevention is worth a pound of cure. Your spinal health is no exception. Posture and spinal screenings by a trained and experienced chiropractor such as Dr. Edith Mobolade can help reveal important health information, unlocking the door to improved health and well-being. In order to help the Austell community, we provide screenings at area malls, community events, health fairs and places of employment. Contact us today at 770-778-0088 to arrange a screening at your event or workplace.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Services','','inherit','closed','closed','','2191-revision-v1','','','2023-01-21 15:46:34','2023-01-21 15:46:34','',2191,'http://demo.kevkem.chiefsoft.net/?p=2227',0,'revision','',0),(2228,1,'2023-01-21 15:49:01','2023-01-21 15:49:01','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313134114\"} -->\n<p>About us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674313714321\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717811\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:image {\"id\":2199,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674313782501\",\"marginLeft\":0} -->\n<figure class=\"wp-block-image size-full cnvs-block-core-image-1674313782501\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/kev-kem-abou.jpg\" alt=\"\" class=\"wp-image-2199\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674313743573\"} -->\n<h2>Meet the Chiropractor</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743582\"} -->\n<p>Edith Mobolade is board certified with 19 years of patient care as a clinical scientist and 9 years as a Chiropractor. She uses chiropractic care to improve the health and wellness in all areas of patient\'s lives, whether they are having problems with back pain or neck pain due to Auto accidents, work related accidents, or just want to start feeling better when they wake up in the morning. Dr. Mobolade takes a \"whole person\" approach in chiropractic care, which means looking for the underlying causes of disease, discomfort, and pain, as opposed to just treating the symptoms. Many seemingly unrelated symptoms often arise from imbalances in the spinal column, and Dr. Mobolade will be able to determine the root of the pain and create a personalized chiropractic and wellness plan to suit each patient\'s individual needs. Under the supervision and care of our caring and skilled chiropractor, patients report higher functioning in all areas of their lives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743595\"} -->\n<p>If you have any questions about our Austell chiropractor, or would like to learn more about chiropractic care at Kevkem Chiropractic Health &amp; Injury Rehab Center, please call us at&nbsp;770-778-0088&nbsp;today!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313871291\"} -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674313755107\"} -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717819\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313769991\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314012896\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314014992\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674314028041\"} -->\n<h3>Who we are</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314028051\"} -->\n<p>A chiropractic and injury rehabilitation center dedicated to providing quality drug free treatments and therapies in the Cobb county area for over 9 years. Conveniently located at the intersection of clay and Austell rd. Our office is well equipped with modern chiropractic and physio therapeutic instruments and equipment to meet all your treatment needs in a very comfortable and friendly clinic environment., We provide body vibration and hydroterm massage therapy, and a certified full service massage therapist is available.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314015001\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674316111685\"} -->\n<h3>Services</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674316111700\"} -->\n<p><a href=\"https://kevkemchiro.com/services\">Chiropractic Care</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674316111710\"} -->\n<p><a href=\"https://kevkemchiro.com/services\">Corrective Exercises</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674316111719\"} -->\n<p><a href=\"https://kevkemchiro.com/services\">Lifestyle Advice</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674316111730\"} -->\n<p><a href=\"https://kevkemchiro.com/services\">Nutritional Counseling</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674316111741\"} -->\n<p><a href=\"https://kevkemchiro.com/services\">Massage Therapy</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674316111751\"} -->\n<p><a href=\"https://kevkemchiro.com/services\">Spinal &amp; Postural Screenings</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314015021\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674314045295\"} -->\n<h3>Company Mission</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314045309\"} -->\n<p>Our goal at Kevkem Chiropractic Health &amp; Injury Rehab Center is to allow everyone to experience the benefits of chiropractic care and adjustments. We actively help you and your family in taking responsibility for your total health, wellness, and disease management. Our chiropractor will assist and guide you as you take the time to care for some of the most important people in your world: you and your family. In an effort to make living the wellness lifestyle as easy and affordable as possible, we can create a customized family chiropractic plan that is specific to you and your family.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','About Us','','inherit','closed','closed','','2189-revision-v1','','','2023-01-21 15:49:01','2023-01-21 15:49:01','',2189,'http://demo.kevkem.chiefsoft.net/?p=2228',0,'revision','',0),(2230,1,'2023-01-21 15:51:47','2023-01-21 15:51:47','<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313134114\"} -->\n<p>About us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674313714321\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"66.66%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717811\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:image {\"id\":2199,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"canvasClassName\":\"cnvs-block-core-image-1674313782501\",\"marginLeft\":0} -->\n<figure class=\"wp-block-image size-full cnvs-block-core-image-1674313782501\"><img src=\"http://demo.kevkem.chiefsoft.net/wp-content/uploads/2023/01/kev-kem-abou.jpg\" alt=\"\" class=\"wp-image-2199\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"canvasClassName\":\"cnvs-block-core-heading-1674313743573\"} -->\n<h2>Meet the Chiropractor</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743582\"} -->\n<p>Edith Mobolade is board certified with 19 years of patient care as a clinical scientist and 9 years as a Chiropractor. She uses chiropractic care to improve the health and wellness in all areas of patient\'s lives, whether they are having problems with back pain or neck pain due to Auto accidents, work related accidents, or just want to start feeling better when they wake up in the morning. Dr. Mobolade takes a \"whole person\" approach in chiropractic care, which means looking for the underlying causes of disease, discomfort, and pain, as opposed to just treating the symptoms. Many seemingly unrelated symptoms often arise from imbalances in the spinal column, and Dr. Mobolade will be able to determine the root of the pain and create a personalized chiropractic and wellness plan to suit each patient\'s individual needs. Under the supervision and care of our caring and skilled chiropractor, patients report higher functioning in all areas of their lives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313743595\"} -->\n<p>If you have any questions about our Austell chiropractor, or would like to learn more about chiropractic care at Kevkem Chiropractic Health &amp; Injury Rehab Center, please call us at&nbsp;770-778-0088&nbsp;today!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313871291\"} -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674313755107\"} -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33%\",\"canvasClassName\":\"cnvs-block-core-column-1674313717819\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\"><!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674313769991\"} -->\n<p>Kevkem Chiropractic Health &amp; Injury Rehab Center of Austell is dedicated to helping you achieve your wellness objectives.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"canvasClassName\":\"cnvs-block-core-columns-1674314012896\"} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314014992\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674314028041\"} -->\n<h3>Who we are</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314028051\"} -->\n<p>A chiropractic and injury rehabilitation center dedicated to providing quality drug free treatments and therapies in the Cobb county area for over 9 years. Conveniently located at the intersection of clay and Austell rd. Our office is well equipped with modern chiropractic and physio therapeutic instruments and equipment to meet all your treatment needs in a very comfortable and friendly clinic environment., We provide body vibration and hydroterm massage therapy, and a certified full service massage therapist is available.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314015001\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674316111685\"} -->\n<h3>Services</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"canvasClassName\":\"cnvs-block-core-list-1674316200962\"} -->\n<ul><!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316220817\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Chiropractic Care</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316251752\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Corrective Exercises</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316261775\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Lifestyle Advice</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316270055\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Nutritional Counseling</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316271063\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Massage Therapy</a></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"canvasClassName\":\"cnvs-block-core-list-item-1674316262939\"} -->\n<li><a href=\"https://kevkemchiro.com/services\">Spinal &amp; Postural Screenings</a></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"canvasClassName\":\"cnvs-block-core-column-1674314015021\"} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"canvasClassName\":\"cnvs-block-core-heading-1674314045295\"} -->\n<h3>Company Mission</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"canvasClassName\":\"cnvs-block-core-paragraph-1674314045309\"} -->\n<p>Our goal at Kevkem Chiropractic Health &amp; Injury Rehab Center is to allow everyone to experience the benefits of chiropractic care and adjustments. We actively help you and your family in taking responsibility for your total health, wellness, and disease management. Our chiropractor will assist and guide you as you take the time to care for some of the most important people in your world: you and your family. In an effort to make living the wellness lifestyle as easy and affordable as possible, we can create a customized family chiropractic plan that is specific to you and your family.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','About Us','','inherit','closed','closed','','2189-revision-v1','','','2023-01-21 15:51:47','2023-01-21 15:51:47','',2189,'http://demo.kevkem.chiefsoft.net/?p=2230',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
`term_order` int NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(67,8,0),(259,8,0),(260,8,0),(261,8,0),(262,8,0),(263,8,0),(264,8,0),(265,8,0),(266,8,0),(267,8,0),(268,5,0),(269,5,0),(270,5,0),(271,5,0),(272,5,0),(273,5,0),(274,5,0),(275,5,0),(276,5,0),(277,5,0),(278,4,0),(279,4,0),(280,4,0),(281,4,0),(282,4,0),(283,4,0),(284,4,0),(285,4,0),(286,4,0),(287,4,0),(288,2,0),(288,7,0),(289,2,0),(289,7,0),(290,2,0),(290,7,0),(291,2,0),(291,7,0),(292,2,0),(292,6,0),(293,2,0),(293,6,0),(294,2,0),(294,3,0),(295,2,0),(295,6,0),(296,2,0),(296,3,0),(297,2,0),(297,3,0),(342,9,0),(2014,9,0),(2015,9,0),(2017,9,0),(2018,9,0),(2019,9,0),(2020,9,0),(2021,9,0),(2022,9,0),(2023,9,0),(2024,9,0),(2025,9,0),(2026,9,0),(2027,9,0),(2028,9,0),(2029,9,0),(2030,9,0),(2031,9,0),(2032,9,0),(2033,9,0),(2034,9,0),(2035,9,0),(2036,9,0),(2039,9,0),(2043,9,0),(2073,9,0),(2093,9,0),(2155,9,0),(2173,9,0),(2194,9,0),(2195,9,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
`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',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'category','Etiam vitae dapibus rhoncus. Eget etiam aenean nisi montes felis pretium donec veni. Pede vidi condimentum et aenean hendrerit. Quis sem justo nisi varius tincidunt nec aliquam arcu tempus vel laoreet lorem.\n\nVel odio sem tempus sit eget arcu rhoncus eu nec ligula. Pulvinar vitae pretium donec vulputate. Massa pede amet nascetur imperdiet. Vel metus imperdiet eros quis nec.',0,10),(3,3,'category','Etiam vitae dapibus rhoncus. Eget etiam aenean nisi montes felis pretium donec veni. Pede vidi condimentum et aenean hendrerit. Quis sem justo nisi varius tincidunt nec aliquam arcu tempus vel laoreet lorem.',2,3),(4,4,'category','Etiam vitae dapibus rhoncus. Eget etiam aenean nisi montes felis pretium donec veni. Pede vidi condimentum et aenean hendrerit. Quis sem justo nisi varius tincidunt nec aliquam arcu tempus vel laoreet lorem.\n\nVel odio sem tempus sit eget arcu rhoncus eu nec ligula. Pulvinar vitae pretium donec vulputate. Massa pede amet nascetur imperdiet. Vel metus imperdiet eros quis nec.',0,10),(5,5,'category','Etiam vitae dapibus rhoncus. Eget etiam aenean nisi montes felis pretium donec veni. Pede vidi condimentum et aenean hendrerit. Quis sem justo nisi varius tincidunt nec aliquam arcu tempus vel laoreet lorem.\n\nVel odio sem tempus sit eget arcu rhoncus eu nec ligula. Pulvinar vitae pretium donec vulputate. Massa pede amet nascetur imperdiet. Vel metus imperdiet eros quis nec.',0,10),(6,6,'category','Etiam vitae dapibus rhoncus. Eget etiam aenean nisi montes felis pretium donec veni. Pede vidi condimentum et aenean hendrerit. Quis sem justo nisi varius tincidunt nec aliquam arcu tempus vel laoreet lorem.',2,3),(7,7,'category','Etiam vitae dapibus rhoncus. Eget etiam aenean nisi montes felis pretium donec veni. Pede vidi condimentum et aenean hendrerit. Quis sem justo nisi varius tincidunt nec aliquam arcu tempus vel laoreet lorem.',2,4),(8,8,'category','Etiam vitae dapibus rhoncus. Eget etiam aenean nisi montes felis pretium donec veni. Pede vidi condimentum et aenean hendrerit. Quis sem justo nisi varius tincidunt nec aliquam arcu tempus vel laoreet lorem.\n\nVel odio sem tempus sit eget arcu rhoncus eu nec ligula. Pulvinar vitae pretium donec vulputate. Massa pede amet nascetur imperdiet. Vel metus imperdiet eros quis nec.',0,10),(9,9,'nav_menu','',0,31);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
`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,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,1,'csco_brand_color','#BCDED5'),(2,1,'csco_gradient_start_color','#97b2ab'),(3,1,'csco_gradient_end_color','#cae5de');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
`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',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Aenean Eleifend','aenean-eleifend',0),(3,'Aliquam','aliquam',0),(4,'Etiam','etiam',0),(5,'Maecenas','maecenas',0),(6,'Metus Vidi','metus-vidi',0),(7,'Rhoncus','rhoncus',0),(8,'Vulputate','vulputate',0),(9,'Primary','primary',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
`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,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','kevkem'),(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:3:{s:64:\"5a4a3e766d0e7df7fb94d8160b29ea9404dcf538f7a7ad03a04722ada1947aa6\";a:4:{s:10:\"expiration\";i:1674901974;s:2:\"ip\";s:12:\"192.168.80.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36\";s:5:\"login\";i:1673692374;}s:64:\"2124c9a90b8c6224e56e1843352224895038e7be16d4d0133e6bfe6c63fbd445\";a:4:{s:10:\"expiration\";i:1674931755;s:2:\"ip\";s:12:\"192.168.80.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36\";s:5:\"login\";i:1673722155;}s:64:\"72c97775bceeaedcfdc72742e389b0b32989a1283bfc30d4e6cd8382470c505b\";a:4:{s:10:\"expiration\";i:1674477586;s:2:\"ip\";s:12:\"192.168.80.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36\";s:5:\"login\";i:1674304786;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','2187'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:8:\"10.0.0.0\";}'),(19,1,'nav_menu_recently_edited','9'),(20,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\";}'),(21,1,'metaboxhidden_nav-menus','a:4:{i:0;s:28:\"add-post-type-sight-projects\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-sight-categories\";}'),(22,1,'facebook',''),(23,1,'twitter',''),(24,1,'instagram',''),(25,1,'pinterest',''),(26,1,'youtube',''),(27,1,'telegram',''),(28,1,'vimeo',''),(29,1,'soundcloud',''),(30,1,'spotify',''),(31,1,'dribbble',''),(32,1,'behance',''),(33,1,'github',''),(34,1,'vk',''),(35,1,'linkedin',''),(36,1,'twitch',''),(37,1,'flickr',''),(38,1,'snapchat',''),(39,1,'medium',''),(40,1,'tumblr',''),(41,1,'bloglovin',''),(42,1,'rss',''),(43,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";}}s:9:\"_modified\";s:24:\"2023-01-14T17:23:51.149Z\";}'),(44,1,'wp_user-settings','libraryContent=browse'),(45,1,'wp_user-settings-time','1673717200');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
`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 '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00: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 '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'kevkem','$P$B1Hp6Gl8fVFcvtT/R3JdsTWZhhv6O6/','kevkem','ameye@chiefsoft.com','http://192.168.1.140:8011','2023-01-14 10:32:07','',0,'kevkem');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-01-21 16:09:37