From 113a1867781ec4574b5df2b3f41659e9b5071ecb Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Tue, 26 Nov 2024 11:24:13 -0500 Subject: [PATCH 001/112] Restructred Iframe to stop loading Frontend scripts/styles. Fixes tectria-569 & tectria-570. --- src/Common/Admin/Help_Hub/Hub.php | 14 +++++++++---- .../help-hub/support/iframe-content.php | 20 ++++++++++++------- src/resources/js/admin/help-hub-iframe.js | 14 ++++++------- 3 files changed, 30 insertions(+), 18 deletions(-) diff --git a/src/Common/Admin/Help_Hub/Hub.php b/src/Common/Admin/Help_Hub/Hub.php index b53e0125b4..ffe564c857 100644 --- a/src/Common/Admin/Help_Hub/Hub.php +++ b/src/Common/Admin/Help_Hub/Hub.php @@ -428,8 +428,10 @@ public function generate_iframe_content(): void { * @return void */ public function register_iframe_hooks() { - add_action( 'wp_enqueue_scripts', [ $this, 'enqueue_help_page_iframe_assets' ] ); - add_action( 'wp_enqueue_scripts', [ __CLASS__, 'dequeue_theme_styles' ] ); + add_action( 'tec_help_hub_iframe_header', [ $this, 'enqueue_help_page_iframe_assets' ] ); + add_filter( 'emoji_svg_url', '__return_false' ); + remove_action( 'wp_print_styles', 'print_emoji_styles' ); + remove_action( 'wp_head', 'print_emoji_styles' ); } /** @@ -446,7 +448,7 @@ public function enqueue_help_page_iframe_assets(): void { 'help-hub-iframe-style', 'help-hub-iframe.css', null, - 'wp_enqueue_scripts' + null, ); tribe_asset( @@ -454,7 +456,7 @@ public function enqueue_help_page_iframe_assets(): void { 'help-hub-iframe-js', 'admin/help-hub-iframe.js', null, - 'wp_enqueue_scripts', + null, [ 'localize' => [ 'name' => 'helpHubSettings', @@ -465,6 +467,10 @@ public function enqueue_help_page_iframe_assets(): void { ], ] ); + + tribe_asset_enqueue( 'help-hub-iframe-style' ); + tribe_asset_enqueue( 'help-hub-iframe-js' ); + tribe_asset_enqueue( 'tribe-common-full-style' ); } /** diff --git a/src/admin-views/help-hub/support/iframe-content.php b/src/admin-views/help-hub/support/iframe-content.php index 2b6bef009d..3d3ec52f20 100644 --- a/src/admin-views/help-hub/support/iframe-content.php +++ b/src/admin-views/help-hub/support/iframe-content.php @@ -19,10 +19,20 @@ <?php esc_html_e( 'Iframe Content', 'tribe-common' ); ?> section of the Help Hub iframe template. + * + * This action allows developers to hook into the iframe's header and add additional styles, scripts, + * or metadata specific to the Help Hub iframe content. + * + * @since TBD + */ + do_action( 'tec_help_hub_iframe_header' ); + wp_print_styles(); + wp_print_scripts(); ?> - data-opted-in=""> +
@@ -55,10 +65,6 @@ - - - + diff --git a/src/resources/js/admin/help-hub-iframe.js b/src/resources/js/admin/help-hub-iframe.js index cfb0b86d5d..3eb652865c 100644 --- a/src/resources/js/admin/help-hub-iframe.js +++ b/src/resources/js/admin/help-hub-iframe.js @@ -6,7 +6,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'use strict'; obj.selectors = { - body: document.body, + body: 'body', docsbotWidget: '#docsbot-widget-embed', optOutMessage: '.tec-help-hub-iframe-opt-out-message', }; @@ -91,7 +91,7 @@ window.DocsBotAI = window.DocsBotAI || {}; * @return {void} */ obj.setup = () => { - const isOptedIn = obj.selectors.body.getAttribute( 'data-opted-in' ) === '1'; + const isOptedIn = document.querySelector( obj.selectors.body ).getAttribute( 'data-opted-in' ) === '1'; // Only run Zendesk and DocsBot setup if the user has opted-in. if ( isOptedIn ) { obj.loadAndInitializeZendeskWidget(); @@ -99,7 +99,7 @@ window.DocsBotAI = window.DocsBotAI || {}; } else { document.querySelector( obj.selectors.optOutMessage ).classList.remove( 'hide' ); document.querySelector( obj.selectors.docsbotWidget ).classList.add( 'hide' ); - obj.selectors.body.classList.add( 'blackout' ); + document.querySelector( obj.selectors.body ).classList.add( 'blackout' ); } }; @@ -149,7 +149,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'open', () => { if ( obj.isZendeskInitialized ) { - obj.selectors.body.classList.add( 'blackout' ); + document.querySelector( obj.selectors.body ).classList.add( 'blackout' ); } } ); @@ -163,7 +163,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'webWidget', 'hide' ); - obj.selectors.body.classList.remove( 'blackout' ); + document.querySelector( obj.selectors.body ).classList.remove( 'blackout' ); } ); }; @@ -193,7 +193,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'webWidget', 'open' ); - obj.selectors.body.classList.add( 'blackout' ); + document.querySelector( obj.selectors.body ).classList.add( 'blackout' ); } break; @@ -305,7 +305,7 @@ window.DocsBotAI = window.DocsBotAI || {}; }, supportCallback: ( event ) => { event.preventDefault(); - obj.selectors.body.classList.add( 'blackout' ); + document.querySelector( obj.selectors.body ).classList.add( 'blackout' ); zE( 'webWidget', 'show' From 1f3c12c7079365fc0e8087be9b9cb73785d18842 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Tue, 26 Nov 2024 11:30:06 -0500 Subject: [PATCH 002/112] Fixed the Help Header from being hidden by the setting styles. --- src/resources/postcss/help-hub.pcss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/resources/postcss/help-hub.pcss b/src/resources/postcss/help-hub.pcss index bceab983a8..6d987e8c49 100644 --- a/src/resources/postcss/help-hub.pcss +++ b/src/resources/postcss/help-hub.pcss @@ -2,6 +2,10 @@ * Help Hub and Resources page styles. */ +body.tec-help .tribe_settings > h1 { + display:block; +} + /* Navigation and Tab Styles */ li.tec-nav__tab { cursor: pointer; From b3c694419ae88a0b26b4d5fbdc22927e89d8b152 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Tue, 26 Nov 2024 11:43:30 -0500 Subject: [PATCH 003/112] FF Fixes for spreadsheet rows - #39 #41 --- src/resources/postcss/help-hub.pcss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/resources/postcss/help-hub.pcss b/src/resources/postcss/help-hub.pcss index bceab983a8..02e48c5e06 100644 --- a/src/resources/postcss/help-hub.pcss +++ b/src/resources/postcss/help-hub.pcss @@ -63,6 +63,10 @@ ul.tec-help-list__list-expanded { .tec-settings__sidebar-icon-wrap-content { margin-left: var(--tec-spacer-2); + + p { + margin: 0 0 1em 0; + } } /* Accordion Styles */ @@ -244,7 +248,7 @@ ul.tec-help-list__list-expanded { @media (--viewport-xlarge) { .tribe_events_page_tec-events-settings #tec-settings-form .tec-settings-form__header-block, .tribe_events_page_tec-events-settings .tec-settings-form .tec-settings-form__header-block { - padding: var(--tec-spacer-0) var(--tec-spacer-1); + padding: var(--tec-spacer-0) var(--tec-spacer-7); margin: 0; } From bf15b21f92c77f3b6fe4f308d38f3dd79badd3fc Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Wed, 27 Nov 2024 11:07:04 -0500 Subject: [PATCH 004/112] Moved body selector into const to be reused. Fixed issue with tribe_asset. --- src/Common/Admin/Help_Hub/Hub.php | 4 ++-- src/resources/js/admin/help-hub-iframe.js | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Common/Admin/Help_Hub/Hub.php b/src/Common/Admin/Help_Hub/Hub.php index ffe564c857..35711b8ba5 100644 --- a/src/Common/Admin/Help_Hub/Hub.php +++ b/src/Common/Admin/Help_Hub/Hub.php @@ -448,7 +448,7 @@ public function enqueue_help_page_iframe_assets(): void { 'help-hub-iframe-style', 'help-hub-iframe.css', null, - null, + [], ); tribe_asset( @@ -456,7 +456,7 @@ public function enqueue_help_page_iframe_assets(): void { 'help-hub-iframe-js', 'admin/help-hub-iframe.js', null, - null, + [], [ 'localize' => [ 'name' => 'helpHubSettings', diff --git a/src/resources/js/admin/help-hub-iframe.js b/src/resources/js/admin/help-hub-iframe.js index 3eb652865c..6bd8eb52a0 100644 --- a/src/resources/js/admin/help-hub-iframe.js +++ b/src/resources/js/admin/help-hub-iframe.js @@ -134,6 +134,7 @@ window.DocsBotAI = window.DocsBotAI || {}; */ obj.initializeZendesk = () => { obj.isZendeskInitialized = false; + const bodySelector = document.querySelector( obj.selectors.body ); zE( 'webWidget', @@ -149,7 +150,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'open', () => { if ( obj.isZendeskInitialized ) { - document.querySelector( obj.selectors.body ).classList.add( 'blackout' ); + bodySelector.classList.add( 'blackout' ); } } ); @@ -163,7 +164,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'webWidget', 'hide' ); - document.querySelector( obj.selectors.body ).classList.remove( 'blackout' ); + bodySelector.classList.remove( 'blackout' ); } ); }; From e024e922abfa840b4e7c31597d4cc35d328355f9 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Wed, 27 Nov 2024 11:32:07 -0500 Subject: [PATCH 005/112] Moved queryselectors to const to cut down on queries. --- src/resources/js/admin/help-hub-iframe.js | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/resources/js/admin/help-hub-iframe.js b/src/resources/js/admin/help-hub-iframe.js index 6bd8eb52a0..62109e4d9a 100644 --- a/src/resources/js/admin/help-hub-iframe.js +++ b/src/resources/js/admin/help-hub-iframe.js @@ -92,14 +92,17 @@ window.DocsBotAI = window.DocsBotAI || {}; */ obj.setup = () => { const isOptedIn = document.querySelector( obj.selectors.body ).getAttribute( 'data-opted-in' ) === '1'; + const bodyElement = document.querySelector( obj.selectors.body ); + const optOutMessageElement = document.querySelector( obj.selectors.optOutMessage ); + const docsbotElement = document.querySelector( obj.selectors.docsbotWidget ); // Only run Zendesk and DocsBot setup if the user has opted-in. if ( isOptedIn ) { obj.loadAndInitializeZendeskWidget(); obj.initializeDocsBot(); } else { - document.querySelector( obj.selectors.optOutMessage ).classList.remove( 'hide' ); - document.querySelector( obj.selectors.docsbotWidget ).classList.add( 'hide' ); - document.querySelector( obj.selectors.body ).classList.add( 'blackout' ); + optOutMessageElement.classList.remove( 'hide' ); + docsbotElement.classList.add( 'hide' ); + bodyElement.classList.add( 'blackout' ); } }; @@ -134,7 +137,7 @@ window.DocsBotAI = window.DocsBotAI || {}; */ obj.initializeZendesk = () => { obj.isZendeskInitialized = false; - const bodySelector = document.querySelector( obj.selectors.body ); + const bodyElement = document.querySelector( obj.selectors.body ); zE( 'webWidget', @@ -150,7 +153,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'open', () => { if ( obj.isZendeskInitialized ) { - bodySelector.classList.add( 'blackout' ); + bodyElement.classList.add( 'blackout' ); } } ); @@ -164,7 +167,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'webWidget', 'hide' ); - bodySelector.classList.remove( 'blackout' ); + bodyElement.classList.remove( 'blackout' ); } ); }; @@ -177,6 +180,8 @@ window.DocsBotAI = window.DocsBotAI || {}; * @return {void} */ obj.handlePostMessageEvents = ( event ) => { + const bodyElement = document.querySelector( obj.selectors.body ); + if ( event.origin !== window.location.origin ) { return; // Ignore messages from untrusted origins. } @@ -194,7 +199,7 @@ window.DocsBotAI = window.DocsBotAI || {}; 'webWidget', 'open' ); - document.querySelector( obj.selectors.body ).classList.add( 'blackout' ); + bodyElement.classList.add( 'blackout' ); } break; @@ -264,6 +269,7 @@ window.DocsBotAI = window.DocsBotAI || {}; * @return {void} */ obj.initializeDocsBot = () => { + const bodyElement = document.querySelector( obj.selectors.body ); $( obj.selectors.docsbotWidget ).removeClass( 'hide' ); DocsBotAI.init = ( e ) => { return new Promise( ( resolve, reject ) => { @@ -306,7 +312,7 @@ window.DocsBotAI = window.DocsBotAI || {}; }, supportCallback: ( event ) => { event.preventDefault(); - document.querySelector( obj.selectors.body ).classList.add( 'blackout' ); + bodyElement.classList.add( 'blackout' ); zE( 'webWidget', 'show' From 87215eac93fc3b5892d6598d8e91153f90ed5fff Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Wed, 27 Nov 2024 11:41:54 -0500 Subject: [PATCH 006/112] Added ID, and switched to getElementById. --- .../help-hub/support/iframe-content.php | 2 +- src/resources/js/admin/help-hub-iframe.js | 17 +++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/admin-views/help-hub/support/iframe-content.php b/src/admin-views/help-hub/support/iframe-content.php index 3d3ec52f20..89f049a708 100644 --- a/src/admin-views/help-hub/support/iframe-content.php +++ b/src/admin-views/help-hub/support/iframe-content.php @@ -32,7 +32,7 @@ wp_print_scripts(); ?> - +
diff --git a/src/resources/js/admin/help-hub-iframe.js b/src/resources/js/admin/help-hub-iframe.js index 62109e4d9a..6acd2b2522 100644 --- a/src/resources/js/admin/help-hub-iframe.js +++ b/src/resources/js/admin/help-hub-iframe.js @@ -7,7 +7,8 @@ window.DocsBotAI = window.DocsBotAI || {}; obj.selectors = { body: 'body', - docsbotWidget: '#docsbot-widget-embed', + helpHubPageID: 'help-hub-page', + docsbotWidget: 'docsbot-widget-embed', optOutMessage: '.tec-help-hub-iframe-opt-out-message', }; @@ -91,10 +92,10 @@ window.DocsBotAI = window.DocsBotAI || {}; * @return {void} */ obj.setup = () => { - const isOptedIn = document.querySelector( obj.selectors.body ).getAttribute( 'data-opted-in' ) === '1'; - const bodyElement = document.querySelector( obj.selectors.body ); + const bodyElement = document.getElementById( obj.selectors.helpHubPageID ); + const isOptedIn = bodyElement.getAttribute( 'data-opted-in' ) === '1'; const optOutMessageElement = document.querySelector( obj.selectors.optOutMessage ); - const docsbotElement = document.querySelector( obj.selectors.docsbotWidget ); + const docsbotElement = document.getElementById( obj.selectors.docsbotWidget ); // Only run Zendesk and DocsBot setup if the user has opted-in. if ( isOptedIn ) { obj.loadAndInitializeZendeskWidget(); @@ -137,7 +138,7 @@ window.DocsBotAI = window.DocsBotAI || {}; */ obj.initializeZendesk = () => { obj.isZendeskInitialized = false; - const bodyElement = document.querySelector( obj.selectors.body ); + const bodyElement = document.getElementById( obj.selectors.helpHubPageID ); zE( 'webWidget', @@ -180,7 +181,7 @@ window.DocsBotAI = window.DocsBotAI || {}; * @return {void} */ obj.handlePostMessageEvents = ( event ) => { - const bodyElement = document.querySelector( obj.selectors.body ); + const bodyElement = document.getElementById( obj.selectors.helpHubPageID ); if ( event.origin !== window.location.origin ) { return; // Ignore messages from untrusted origins. @@ -269,8 +270,8 @@ window.DocsBotAI = window.DocsBotAI || {}; * @return {void} */ obj.initializeDocsBot = () => { - const bodyElement = document.querySelector( obj.selectors.body ); - $( obj.selectors.docsbotWidget ).removeClass( 'hide' ); + const bodyElement = document.getElementById( obj.selectors.helpHubPageID ); + document.getElementById(obj.selectors.docsbotWidget).classList.remove( 'hide' ); DocsBotAI.init = ( e ) => { return new Promise( ( resolve, reject ) => { const script = document.createElement( 'script' ); From 15e534c5c37c63a24b8d6e42ce1cd01c34da16a2 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Wed, 27 Nov 2024 12:57:31 -0500 Subject: [PATCH 007/112] Added prefix. --- src/Common/Admin/Help_Hub/Hub.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Common/Admin/Help_Hub/Hub.php b/src/Common/Admin/Help_Hub/Hub.php index 35711b8ba5..605c5d6937 100644 --- a/src/Common/Admin/Help_Hub/Hub.php +++ b/src/Common/Admin/Help_Hub/Hub.php @@ -445,7 +445,7 @@ public function enqueue_help_page_iframe_assets(): void { tribe_asset( Tribe__Main::instance(), - 'help-hub-iframe-style', + 'tec-help-hub-iframe-style', 'help-hub-iframe.css', null, [], @@ -453,7 +453,7 @@ public function enqueue_help_page_iframe_assets(): void { tribe_asset( Tribe__Main::instance(), - 'help-hub-iframe-js', + 'tec-help-hub-iframe-js', 'admin/help-hub-iframe.js', null, [], @@ -468,8 +468,8 @@ public function enqueue_help_page_iframe_assets(): void { ] ); - tribe_asset_enqueue( 'help-hub-iframe-style' ); - tribe_asset_enqueue( 'help-hub-iframe-js' ); + tribe_asset_enqueue( 'tec-help-hub-iframe-style' ); + tribe_asset_enqueue( 'tec-help-hub-iframe-js' ); tribe_asset_enqueue( 'tribe-common-full-style' ); } From d3ecc6c06ca35e06c22a1d70be22d226645958e4 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 2 Dec 2024 11:59:36 -0500 Subject: [PATCH 008/112] Fixed issue where going from a free plugin to a valid license could create false positives due to the transients not clearing. --- src/Tribe/PUE/Checker.php | 48 +++----- tests/integration/Tribe/PUE/Checker_Test.php | 119 +++++++++++++++++++ 2 files changed, 138 insertions(+), 29 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 94b3adcdd8..e954028d39 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -244,51 +244,39 @@ public function is_key_valid() { * Iterate on all the registered PUE Product Licenses we have and find if any are valid. * Will revalidate the licenses if none are found to be valid. * - * @todo In scenarios where a user goes from a Free license to an active license the transient may give a false positive. - * * @since 6.3.2 * * @return bool */ public static function is_any_license_valid(): bool { $valid_slug = 'valid'; - $has_valid = false; + $invalid_slug = 'invalid'; - // Check our transient. + // Check the transient value first. $transient_value = get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - if ( ! empty( $transient_value ) ) { - return $transient_value === $valid_slug; + + if ( $transient_value === $valid_slug ) { + // Transient explicitly marked as valid. + return true; } - // Check our local transient/cache first. + if ( $transient_value === $invalid_slug ) { + // Transient explicitly marked as invalid, no recheck. + return false; + } + + // Transient is missing or unexpected, revalidate licenses. foreach ( self::$instances as $checker ) { if ( $checker->is_key_valid() ) { + // Found a valid license; update transient and return true. set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); - $has_valid = true; - break; + return true; } } - if ( ! $has_valid ) { - // Revalidate if we haven't found a valid license yet. - foreach ( self::$instances as $checker ) { - $license = get_option( $checker->get_license_option_key() ); - $response = $checker->validate_key( $license ); - // Is it valid? - if ( ! empty( $response['status'] ) ) { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); - $has_valid = true; - break; - } - } - } - - // We found no valid licenses above. - if ( ! $has_valid ) { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'invalid', HOUR_IN_SECONDS ); - } - - return get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ) === $valid_slug; + // No valid licenses found; mark as invalid and return false. + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $invalid_slug, HOUR_IN_SECONDS ); + return false; } /** @@ -345,6 +333,8 @@ public function set_key_status( $valid ) { // We set a transient in addition to an option for compatibility reasons. // @todo remove transient in a major feature release where we release all plugins. set_transient( $this->pue_key_status_transient_name, $status, $this->check_period * HOUR_IN_SECONDS ); + + delete_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); } /** diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 9e4aaffe06..f0ca7a0104 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -132,4 +132,123 @@ public function it_should_check_uplink_before_pue() { public function test_replacemnt_key_update_in_multisite_context(): void { } + + /** + * It should correctly determine license validity across different scenarios. + * + * @test + */ + public function should_correctly_determine_is_any_license_valid_across_scenarios(): void { + // Clean up before starting. + delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + delete_option( 'pue_install_key_test_plugin_1' ); + delete_option( 'pue_install_key_test_plugin_2' ); + + // Scenario 1: Initially unlicensed. + $this->assertFalse( PUE_Checker::is_any_license_valid(), 'Initially unlicensed should return invalid.' ); + + // Scenario 2: Initially unlicensed, then license a plugin. + $validated_key_1 = md5( microtime() ); + update_option( 'pue_install_key_test_plugin_1', $validated_key_1 ); + $pue_instance_1 = new PUE_Checker( 'deprecated', 'test-plugin-1', [], 'test-plugin-1/test-plugin.php' ); + $pue_instance_1->set_key_status( 1 ); // Set valid status. + $this->assertTrue( PUE_Checker::is_any_license_valid(), 'Licensing a plugin should make is_any_license_valid return valid.' ); + + // Scenario 3: Initially licensed. + delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); // Reset transient. + $this->assertTrue( PUE_Checker::is_any_license_valid(), 'Initially licensed should return valid.' ); + + // Scenario 4: Initially unlicensed, license a plugin, then unlicense. + delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); // Reset transient. + delete_option( 'pue_install_key_test_plugin_1' ); + $pue_instance_1->set_key_status( 0 ); // Set invalid status. + $this->assertFalse( PUE_Checker::is_any_license_valid(), 'Initially unlicensed should return invalid.' ); + + // Re-license the plugin. + update_option( 'pue_install_key_test_plugin_1', $validated_key_1 ); + $pue_instance_1->set_key_status( 1 ); // Set valid status. + $this->assertTrue( PUE_Checker::is_any_license_valid(), 'Licensing the plugin again should make is_any_license_valid return valid.' ); + + // Unlicense the plugin. + $pue_instance_1->set_key_status( 0 ); // Set invalid status. + $this->assertFalse( PUE_Checker::is_any_license_valid(), 'Unlicensing the only valid plugin should make is_any_license_valid return invalid.' ); + } + + /** + * It should handle edge cases for multiple licenses and transient behavior. + * + * @test + */ + public function should_handle_edge_cases_for_is_any_license_valid_and_transient_behavior(): void { + // Clean up before starting. + delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + delete_option( 'pue_install_key_test_plugin_1' ); + delete_option( 'pue_install_key_test_plugin_2' ); + + // Scenario 1: Multiple plugins, one licensed, one unlicensed. + $validated_key_1 = md5( microtime() ); + update_option( 'pue_install_key_test_plugin_1', $validated_key_1 ); + $pue_instance_1 = new PUE_Checker( 'deprecated', 'test-plugin-1', [], 'test-plugin-1/test-plugin.php' ); + $pue_instance_1->set_key_status( 1 ); // Set valid status for first plugin. + + $validated_key_2 = md5( microtime() ); + update_option( 'pue_install_key_test_plugin_2', $validated_key_2 ); + $pue_instance_2 = new PUE_Checker( 'deprecated', 'test-plugin-2', [], 'test-plugin-2/test-plugin.php' ); + $pue_instance_2->set_key_status( 0 ); // Set invalid status for second plugin. + + $this->assertTrue( PUE_Checker::is_any_license_valid(), 'At least one valid license should make is_any_license_valid return valid.' ); + + // Scenario 2: All plugins unlicensed. + $pue_instance_1->set_key_status( 0 ); // Unlicense first plugin. + $this->assertFalse( PUE_Checker::is_any_license_valid(), 'When all plugins are unlicensed, is_any_license_valid should return invalid.' ); + + // Scenario 3: Transient manually deleted. + delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + $this->assertFalse( PUE_Checker::is_any_license_valid(), 'Deleting transient should trigger revalidation and return invalid if all plugins are unlicensed.' ); + + // Scenario 4: Invalid transient value. + set_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'unknown', HOUR_IN_SECONDS ); + $this->assertFalse( PUE_Checker::is_any_license_valid(), 'An invalid transient value should trigger revalidation and return invalid if no licenses are valid.' ); + + // Scenario 5: Revalidate licenses after invalid transient. + $pue_instance_1->set_key_status( 1 ); // License the first plugin. + $this->assertTrue( PUE_Checker::is_any_license_valid(), 'Revalidating after an invalid transient should return valid if at least one license is valid.' ); + } + + /** + * It should validate licenses correctly across multiple plugins + * + * @test + */ + public function should_validate_is_any_license_valid_across_multiple_plugins(): void { + // Clean up any existing transient or options. + delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + delete_option( 'pue_install_key_test_plugin_1' ); + delete_option( 'pue_install_key_test_plugin_2' ); + + // Step 1: No license, validate `is_any_license_valid` is false. + $is_valid = PUE_Checker::is_any_license_valid(); + $this->assertFalse( $is_valid, 'Initially, no licenses should be valid.' ); + + // Step 2: Install a plugin with a valid license. + $validated_key_1 = md5( microtime() ); + update_option( 'pue_install_key_test_plugin_1', $validated_key_1 ); + $pue_instance_1 = new PUE_Checker( 'deprecated', 'test-plugin-1', [], 'test-plugin-1/test-plugin.php' ); + $pue_instance_1->set_key_status( 1 ); // Set valid status. + + // Validate that `is_any_license_valid` is true. + $is_valid = PUE_Checker::is_any_license_valid(); + $this->assertTrue( $is_valid, 'After licensing one plugin, `is_any_license_valid` should return true.' ); + + // Step 3: Install another plugin with an invalid license. + $validated_key_2 = md5( microtime() ); + update_option( 'pue_install_key_test_plugin_2', $validated_key_2 ); + $pue_instance_2 = new PUE_Checker( 'deprecated', 'test-plugin-2', [], 'test-plugin-2/test-plugin.php' ); + $pue_instance_2->set_key_status( 0 ); // Set invalid status. + + // Validate that `is_any_license_valid` is still true. + $is_valid = PUE_Checker::is_any_license_valid(); + $this->assertTrue( $is_valid, 'After adding a plugin with an invalid license, `is_any_license_valid` should still return true as one plugin is valid.' ); + } + } From 1c53d0a3e0f0a58cde6a0b50a062d58d9ee8b8f5 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 2 Dec 2024 12:10:07 -0500 Subject: [PATCH 009/112] Fixed issue where going from a free plugin to a valid license could create false positives due to the transients not clearing. --- src/Tribe/PUE/Checker.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index e954028d39..0a5c9943b8 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -245,6 +245,7 @@ public function is_key_valid() { * Will revalidate the licenses if none are found to be valid. * * @since 6.3.2 + * @since TBD Refactored logic to take into account the transient. * * @return bool */ @@ -265,6 +266,12 @@ public static function is_any_license_valid(): bool { return false; } + // Ensure instances exist. + if ( empty( self::$instances ) ) { + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $invalid_slug, HOUR_IN_SECONDS ); + return false; + } + // Transient is missing or unexpected, revalidate licenses. foreach ( self::$instances as $checker ) { if ( $checker->is_key_valid() ) { @@ -274,6 +281,18 @@ public static function is_any_license_valid(): bool { } } + // Revalidate if we haven't found a valid license yet. + foreach ( self::$instances as $checker ) { + $license = get_option( $checker->get_license_option_key() ); + $response = $checker->validate_key( $license ); + // Is it valid? + if ( ! empty( $response['status'] ) ) { + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); + return true; + } + } + + // No valid licenses found; mark as invalid and return false. set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $invalid_slug, HOUR_IN_SECONDS ); return false; @@ -322,6 +341,7 @@ public function set_key_status_transient_name() { * Sets the key status based on the key validation check results. * * @since 4.14.9 + * @since TBD Clear `self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY` when a key is checked. * * @param int $valid 0 for invalid, 1 or 2 for valid. */ From 90da8f4c84a5f70d448b6918bae7c6121657bfc4 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 5 Dec 2024 09:25:46 -0500 Subject: [PATCH 010/112] Rewrote tests to use fixture/closure logic. --- tests/integration/Tribe/PUE/Checker_Test.php | 236 ++++++++++--------- 1 file changed, 119 insertions(+), 117 deletions(-) diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index f0ca7a0104..474c60438e 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -2,18 +2,27 @@ namespace Tribe\PUE; +use Closure; +use Codeception\TestCase\WPTestCase; +use Generator; +use TEC\Common\StellarWP\Uplink\Register; use TEC\Common\Tests\Licensing\PUE_Service_Mock; -use Tribe__PUE__Checker as PUE_Checker; use Tribe__Main; -use TEC\Common\StellarWP\Uplink\Register; +use Tribe__PUE__Checker as PUE_Checker; + use function TEC\Common\StellarWP\Uplink\get_resource; -class Checker_Test extends \Codeception\TestCase\WPTestCase { +class Checker_Test extends WPTestCase { /** * @var PUE_Service_Mock */ private $pue_service_mock; + /** + * @var array + */ + protected $temp_pue_plugin = []; + /** * @before */ @@ -28,9 +37,9 @@ public function set_up_pue_service_mock(): void { */ public function should_not_update_license_key_if_replacement_key_not_provided(): void { // Ensure there is no key set. - delete_option( 'pue_install_key_test_plugin'); + delete_option( 'pue_install_key_test_plugin' ); $validated_key = md5( microtime() ); - $body = $this->pue_service_mock->get_validate_key_success_body(); + $body = $this->pue_service_mock->get_validate_key_success_body(); $mock_response = $this->pue_service_mock->make_response( 200, $body, 'application/json' ); $this->pue_service_mock->will_reply_to_request( 'POST', '/plugins/v2/license/validate', $mock_response ); @@ -47,12 +56,12 @@ public function should_not_update_license_key_if_replacement_key_not_provided(): */ public function should_not_update_license_key_if_replacement_key_is_empty(): void { // Ensure there is no key set. - delete_option( 'pue_install_key_test_plugin'); + delete_option( 'pue_install_key_test_plugin' ); $validated_key = md5( microtime() ); - $body = $this->pue_service_mock->get_validate_key_success_body(); + $body = $this->pue_service_mock->get_validate_key_success_body(); // Add an empty replacement key to the response body. $body['results'][0]['replacement_key'] = ''; - $mock_response = $this->pue_service_mock->make_response( 200, $body, 'application/json' ); + $mock_response = $this->pue_service_mock->make_response( 200, $body, 'application/json' ); $this->pue_service_mock->will_reply_to_request( 'POST', '/plugins/v2/license/validate', $mock_response ); $pue_instance = new PUE_Checker( 'deprecated', 'test-plugin', [], 'test-plugin/test-plugin.php' ); @@ -69,13 +78,13 @@ public function should_not_update_license_key_if_replacement_key_is_empty(): voi public function should_update_license_key_if_replacement_key_provided_and_key_not_previously_set(): void { $validated_key = md5( microtime() ); // Ensure there is no key set. - delete_option( 'pue_install_key_test_plugin'); + delete_option( 'pue_install_key_test_plugin' ); // Set the response mock to provide a replacement key. $replacement_key = '2222222222222222222222222222222222222222'; - $body = $this->pue_service_mock->get_validate_key_success_body(); + $body = $this->pue_service_mock->get_validate_key_success_body(); // Add a replacement key to the response body. $body['results'][0]['replacement_key'] = $replacement_key; - $mock_response = $this->pue_service_mock->make_response( 200, $body, 'application/json' ); + $mock_response = $this->pue_service_mock->make_response( 200, $body, 'application/json' ); $this->pue_service_mock->will_reply_to_request( 'POST', '/plugins/v2/license/validate', $mock_response ); $pue_instance = new PUE_Checker( 'deprecated', 'test-plugin', [], 'test-plugin/test-plugin.php' ); @@ -95,10 +104,10 @@ public function should_update_license_key_if_replacement_key_provided_and_key_pr update_option( 'pue_install_key_test_plugin', $original_key ); // Set the response mock to provide a replacement key. $replacement_key = '2222222222222222222222222222222222222222'; - $body = $this->pue_service_mock->get_validate_key_success_body(); + $body = $this->pue_service_mock->get_validate_key_success_body(); // Add a replacement key to the response body. $body['results'][0]['replacement_key'] = $replacement_key; - $mock_response = $this->pue_service_mock->make_response( 200, $body, 'application/json' ); + $mock_response = $this->pue_service_mock->make_response( 200, $body, 'application/json' ); $this->pue_service_mock->will_reply_to_request( 'POST', '/plugins/v2/license/validate', $mock_response ); $pue_instance = new PUE_Checker( 'deprecated', 'test-plugin', [], 'test-plugin/test-plugin.php' ); @@ -129,126 +138,119 @@ public function it_should_check_uplink_before_pue() { $this->assertEquals( $key, $pue_instance->get_key() ); } - public function test_replacemnt_key_update_in_multisite_context(): void { - - } + public function test_replacemnt_key_update_in_multisite_context(): void {} /** - * It should correctly determine license validity across different scenarios. + * It should validate licenses correctly across various scenarios. * * @test + * @dataProvider license_validation_data_provider */ - public function should_correctly_determine_is_any_license_valid_across_scenarios(): void { - // Clean up before starting. - delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - delete_option( 'pue_install_key_test_plugin_1' ); - delete_option( 'pue_install_key_test_plugin_2' ); - - // Scenario 1: Initially unlicensed. - $this->assertFalse( PUE_Checker::is_any_license_valid(), 'Initially unlicensed should return invalid.' ); - - // Scenario 2: Initially unlicensed, then license a plugin. - $validated_key_1 = md5( microtime() ); - update_option( 'pue_install_key_test_plugin_1', $validated_key_1 ); - $pue_instance_1 = new PUE_Checker( 'deprecated', 'test-plugin-1', [], 'test-plugin-1/test-plugin.php' ); - $pue_instance_1->set_key_status( 1 ); // Set valid status. - $this->assertTrue( PUE_Checker::is_any_license_valid(), 'Licensing a plugin should make is_any_license_valid return valid.' ); - - // Scenario 3: Initially licensed. - delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); // Reset transient. - $this->assertTrue( PUE_Checker::is_any_license_valid(), 'Initially licensed should return valid.' ); - - // Scenario 4: Initially unlicensed, license a plugin, then unlicense. - delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); // Reset transient. - delete_option( 'pue_install_key_test_plugin_1' ); - $pue_instance_1->set_key_status( 0 ); // Set invalid status. - $this->assertFalse( PUE_Checker::is_any_license_valid(), 'Initially unlicensed should return invalid.' ); - - // Re-license the plugin. - update_option( 'pue_install_key_test_plugin_1', $validated_key_1 ); - $pue_instance_1->set_key_status( 1 ); // Set valid status. - $this->assertTrue( PUE_Checker::is_any_license_valid(), 'Licensing the plugin again should make is_any_license_valid return valid.' ); - - // Unlicense the plugin. - $pue_instance_1->set_key_status( 0 ); // Set invalid status. - $this->assertFalse( PUE_Checker::is_any_license_valid(), 'Unlicensing the only valid plugin should make is_any_license_valid return invalid.' ); + public function should_is_any_license_valid_return_correctly( Closure $setup_closure, $expected_result, $message ): void { + // Clean up before each scenario. + $this->clean_up_test_options(); + + // Run the setup closure to configure the test scenario. + $setup_closure(); + + // Assert the expected outcome. + $this->assertEquals( $expected_result, PUE_Checker::is_any_license_valid(), $message ); } /** - * It should handle edge cases for multiple licenses and transient behavior. - * - * @test + * Cleans up transient and options dynamically based on plugins in $temp_pue_plugin. */ - public function should_handle_edge_cases_for_is_any_license_valid_and_transient_behavior(): void { - // Clean up before starting. + private function clean_up_test_options(): void { + // Clear transient. delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - delete_option( 'pue_install_key_test_plugin_1' ); - delete_option( 'pue_install_key_test_plugin_2' ); - - // Scenario 1: Multiple plugins, one licensed, one unlicensed. - $validated_key_1 = md5( microtime() ); - update_option( 'pue_install_key_test_plugin_1', $validated_key_1 ); - $pue_instance_1 = new PUE_Checker( 'deprecated', 'test-plugin-1', [], 'test-plugin-1/test-plugin.php' ); - $pue_instance_1->set_key_status( 1 ); // Set valid status for first plugin. - - $validated_key_2 = md5( microtime() ); - update_option( 'pue_install_key_test_plugin_2', $validated_key_2 ); - $pue_instance_2 = new PUE_Checker( 'deprecated', 'test-plugin-2', [], 'test-plugin-2/test-plugin.php' ); - $pue_instance_2->set_key_status( 0 ); // Set invalid status for second plugin. - - $this->assertTrue( PUE_Checker::is_any_license_valid(), 'At least one valid license should make is_any_license_valid return valid.' ); - // Scenario 2: All plugins unlicensed. - $pue_instance_1->set_key_status( 0 ); // Unlicense first plugin. - $this->assertFalse( PUE_Checker::is_any_license_valid(), 'When all plugins are unlicensed, is_any_license_valid should return invalid.' ); + // Clear dynamic options based on the plugins. + foreach ( $this->temp_pue_plugin as $plugin_name ) { + delete_option( "pue_install_key_{$plugin_name}" ); + } - // Scenario 3: Transient manually deleted. - delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - $this->assertFalse( PUE_Checker::is_any_license_valid(), 'Deleting transient should trigger revalidation and return invalid if all plugins are unlicensed.' ); - - // Scenario 4: Invalid transient value. - set_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'unknown', HOUR_IN_SECONDS ); - $this->assertFalse( PUE_Checker::is_any_license_valid(), 'An invalid transient value should trigger revalidation and return invalid if no licenses are valid.' ); - - // Scenario 5: Revalidate licenses after invalid transient. - $pue_instance_1->set_key_status( 1 ); // License the first plugin. - $this->assertTrue( PUE_Checker::is_any_license_valid(), 'Revalidating after an invalid transient should return valid if at least one license is valid.' ); + // Reset the array to ensure no carryover between tests. + $this->temp_pue_plugin = []; } /** - * It should validate licenses correctly across multiple plugins + * Data provider for license validation test scenarios. * - * @test + * @return Generator */ - public function should_validate_is_any_license_valid_across_multiple_plugins(): void { - // Clean up any existing transient or options. - delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - delete_option( 'pue_install_key_test_plugin_1' ); - delete_option( 'pue_install_key_test_plugin_2' ); - - // Step 1: No license, validate `is_any_license_valid` is false. - $is_valid = PUE_Checker::is_any_license_valid(); - $this->assertFalse( $is_valid, 'Initially, no licenses should be valid.' ); - - // Step 2: Install a plugin with a valid license. - $validated_key_1 = md5( microtime() ); - update_option( 'pue_install_key_test_plugin_1', $validated_key_1 ); - $pue_instance_1 = new PUE_Checker( 'deprecated', 'test-plugin-1', [], 'test-plugin-1/test-plugin.php' ); - $pue_instance_1->set_key_status( 1 ); // Set valid status. - - // Validate that `is_any_license_valid` is true. - $is_valid = PUE_Checker::is_any_license_valid(); - $this->assertTrue( $is_valid, 'After licensing one plugin, `is_any_license_valid` should return true.' ); - - // Step 3: Install another plugin with an invalid license. - $validated_key_2 = md5( microtime() ); - update_option( 'pue_install_key_test_plugin_2', $validated_key_2 ); - $pue_instance_2 = new PUE_Checker( 'deprecated', 'test-plugin-2', [], 'test-plugin-2/test-plugin.php' ); - $pue_instance_2->set_key_status( 0 ); // Set invalid status. - - // Validate that `is_any_license_valid` is still true. - $is_valid = PUE_Checker::is_any_license_valid(); - $this->assertTrue( $is_valid, 'After adding a plugin with an invalid license, `is_any_license_valid` should still return true as one plugin is valid.' ); + public function license_validation_data_provider(): Generator { + yield 'initially_unlicensed' => [ + function () { + // No setup needed, all licenses are invalid initially. + }, + false, + 'Initially unlicensed should return invalid.', + ]; + + yield 'license_a_plugin' => [ + function () { + $validated_key = md5( microtime() ); + $plugin_name = 'test-plugin-1'; + $this->temp_pue_plugin[] = $plugin_name; + update_option( "pue_install_key_{$plugin_name}", $validated_key ); + $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); + $pue_instance->set_key_status( 1 ); // Set valid status. + }, + true, + 'Licensing a plugin should make is_any_license_valid return valid.', + ]; + + yield 'transient_deleted' => [ + function () { + $validated_key = md5( microtime() ); + $plugin_name = 'test-plugin-1'; + $this->temp_pue_plugin[] = $plugin_name; + update_option( "pue_install_key_{$plugin_name}", $validated_key ); + $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); + $pue_instance->set_key_status( 1 ); // Set valid status. + delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); // Simulate transient deletion. + }, + true, + 'Deleting transient should trigger revalidation and return valid if at least one license is valid.', + ]; + + yield 'multiple_plugins_with_even_valid' => [ + function () { + for ( $i = 1; $i <= 10; $i++ ) { + $validated_key = md5( microtime() . $i ); + $plugin_name = "test-plugin-{$i}"; + $this->temp_pue_plugin[] = $plugin_name; + update_option( "pue_install_key_{$plugin_name}", $validated_key ); + + $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); + if ( 0 === $i % 2 ) { + // Even plugins are valid. + $pue_instance->set_key_status( 1 ); + } else { + // Odd plugins are invalid. + $pue_instance->set_key_status( 0 ); + } + } + }, + true, + 'At least one valid license (even-numbered plugins) should make is_any_license_valid return valid.', + ]; + + yield 'all_plugins_invalid' => [ + function () { + for ( $i = 1; $i <= 10; $i++ ) { + $validated_key = md5( microtime() . $i ); + $plugin_name = "test-plugin-{$i}"; + $this->temp_pue_plugin[] = $plugin_name; + update_option( "pue_install_key_{$plugin_name}", $validated_key ); + + $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); + // All plugins are set as invalid. + $pue_instance->set_key_status( 0 ); + } + }, + false, + 'When all plugins are invalid, is_any_license_valid should return false.', + ]; } - } From 1752041278a107d9516a7f6a5bd95d5ad2d1f36e Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 5 Dec 2024 09:55:44 -0500 Subject: [PATCH 011/112] Combined foreach checks. --- src/Tribe/PUE/Checker.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 0a5c9943b8..cf7c09995d 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -274,25 +274,22 @@ public static function is_any_license_valid(): bool { // Transient is missing or unexpected, revalidate licenses. foreach ( self::$instances as $checker ) { + // First, check if the key is already valid. if ( $checker->is_key_valid() ) { // Found a valid license; update transient and return true. set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); return true; } - } - // Revalidate if we haven't found a valid license yet. - foreach ( self::$instances as $checker ) { + // If not valid, attempt to revalidate the license. $license = get_option( $checker->get_license_option_key() ); $response = $checker->validate_key( $license ); - // Is it valid? if ( ! empty( $response['status'] ) ) { set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); return true; } } - // No valid licenses found; mark as invalid and return false. set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $invalid_slug, HOUR_IN_SECONDS ); return false; From bc61111e931978c637a4a4beffd4665e0ae89300 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 5 Dec 2024 10:01:16 -0500 Subject: [PATCH 012/112] Only delete the transient if the key is not valid. --- src/Tribe/PUE/Checker.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index cf7c09995d..3d1413f215 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -351,7 +351,9 @@ public function set_key_status( $valid ) { // @todo remove transient in a major feature release where we release all plugins. set_transient( $this->pue_key_status_transient_name, $status, $this->check_period * HOUR_IN_SECONDS ); - delete_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + if ( ! tribe_is_truthy( $valid ) ) { + delete_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + } } /** From 8d55060818b4d64b1febc8f664a5dc9e638a8d52 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 5 Dec 2024 11:45:44 -0500 Subject: [PATCH 013/112] Added logic For Uplink monitoring. --- src/Tribe/PUE/Checker.php | 43 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 3d1413f215..5c0d4a73bc 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -8,7 +8,12 @@ * @todo switch all plugins over to use the PUE utilities here in Commons */ +use TEC\Common\StellarWP\Uplink\Resources\Plugin; +use TEC\Common\StellarWP\Uplink\Config; + use function TEC\Common\StellarWP\Uplink\get_resource; +use function TEC\Common\StellarWP\Uplink\get_plugins as uplink_get_plugins; + // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { @@ -397,6 +402,8 @@ public function hooks() { add_action( 'admin_enqueue_scripts', [ $this, 'maybe_display_json_error_on_plugins_page' ], 1 ); add_action( 'admin_init', [ $this, 'general_notifications' ] ); + add_action( 'tribe_common_loaded', [ $this, 'monitor_uplink_actions' ] ); + // Package name. add_filter( 'upgrader_pre_download', [ Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ], 5, 3 ); } @@ -2084,5 +2091,41 @@ public function is_valid_key_format() { return true; } + + /** + * Monitors Uplink and hooks into the plugin connected action. + * + * This method loops through the registered Uplink plugins and hooks into the + * 'stellarwp/uplink/{slug}/connected' action for each plugin resource. + * + * @since 2.2.1 + */ + public function monitor_uplink_actions() { + $plugins = uplink_get_plugins(); + + // Early return if resources are not valid. + if ( empty( $plugins['resources'] ) || ! is_array( $plugins['resources'] ) ) { + return; + } + + // Loop through plugin resources and add actions. + foreach ( $plugins['resources'] as $resource ) { + if ( ! $resource instanceof Plugin ) { + continue; // Skip non-Plugin resources. + } + + $slug = $resource->get_slug(); + + // Hook into the existing 'connected' action for the specific plugin slug. + add_action( + 'stellarwp/uplink/' . Config::get_hook_prefix() . '/' . $slug . '/connected', + function ( $plugin ) use ( $slug ) { + // Add logic for `IS_ANY_LICENSE_VALID_TRANSIENT_KEY`. + }, + 10, + 1 + ); + } + } } } From 718e3393afe19eee1009820b2cd208356ba3e35a Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 5 Dec 2024 11:47:26 -0500 Subject: [PATCH 014/112] Set `self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY` to valid when valid is truthy. --- src/Tribe/PUE/Checker.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 5c0d4a73bc..c019c1a434 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -358,6 +358,8 @@ public function set_key_status( $valid ) { if ( ! tribe_is_truthy( $valid ) ) { delete_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + } else { + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $status, HOUR_IN_SECONDS ); } } From 86439ebcc883fd54c436d1d0944cee30555c52cf Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 5 Dec 2024 13:00:37 -0500 Subject: [PATCH 015/112] Using hook `wp_loaded`. --- src/Tribe/PUE/Checker.php | 19 ++++++++++------- tests/integration/Tribe/PUE/Checker_Test.php | 22 ++++++++++++++++++++ 2 files changed, 33 insertions(+), 8 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index c019c1a434..04190e9399 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -404,7 +404,7 @@ public function hooks() { add_action( 'admin_enqueue_scripts', [ $this, 'maybe_display_json_error_on_plugins_page' ], 1 ); add_action( 'admin_init', [ $this, 'general_notifications' ] ); - add_action( 'tribe_common_loaded', [ $this, 'monitor_uplink_actions' ] ); + add_action( 'wp_loaded', [ $this, 'monitor_uplink_actions' ] ); // Package name. add_filter( 'upgrader_pre_download', [ Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ], 5, 3 ); @@ -2100,18 +2100,19 @@ public function is_valid_key_format() { * This method loops through the registered Uplink plugins and hooks into the * 'stellarwp/uplink/{slug}/connected' action for each plugin resource. * - * @since 2.2.1 + * @since TBD */ public function monitor_uplink_actions() { - $plugins = uplink_get_plugins(); + static $has_run = false; - // Early return if resources are not valid. - if ( empty( $plugins['resources'] ) || ! is_array( $plugins['resources'] ) ) { + // Check if the method has already run. + if ( $has_run ) { return; } + $plugins = uplink_get_plugins(); // Loop through plugin resources and add actions. - foreach ( $plugins['resources'] as $resource ) { + foreach ( $plugins as $resource ) { if ( ! $resource instanceof Plugin ) { continue; // Skip non-Plugin resources. } @@ -2121,13 +2122,15 @@ public function monitor_uplink_actions() { // Hook into the existing 'connected' action for the specific plugin slug. add_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/' . $slug . '/connected', - function ( $plugin ) use ( $slug ) { - // Add logic for `IS_ANY_LICENSE_VALID_TRANSIENT_KEY`. + function () use ( $slug ) { + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); }, 10, 1 ); } + + $has_run = true; } } } diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 474c60438e..518ab94226 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -9,6 +9,9 @@ use TEC\Common\Tests\Licensing\PUE_Service_Mock; use Tribe__Main; use Tribe__PUE__Checker as PUE_Checker; +use TEC\Common\StellarWP\Uplink\Auth\Token\Contracts\Token_Manager; +use TEC\Common\StellarWP\Uplink\Resources\Collection; +use TEC\Common\StellarWP\Uplink\Storage\Contracts\Storage; use function TEC\Common\StellarWP\Uplink\get_resource; @@ -252,5 +255,24 @@ function () { false, 'When all plugins are invalid, is_any_license_valid should return false.', ]; + + yield 'Testing Uplink' => [ + function () { + $key = 'license-key-for-test-plugin'; + $collection = tribe( Collection::class ); + $resource = $collection->get( 'test-plugin' ); + $token_manager = tribe( Token_Manager::class ); + $storage = tribe( Storage::class ); + $resource->set_license_key( $key ); + $this->assertEquals( $key, $resource->get_license_key() ); + $storage->set( + 'stellarwp_auth_url_tec_seating', + 'https://my.theeventscalendar.com/account-auth/?uplink_callback=aHR0cHM6Ly90ZWNkZXYubG5kby5zaXRlL3dwLWFkbWluL2FkbWluLnBocD9wYWdlPXRlYy10aWNrZXRzLXNldHRpbmdzJnRhYj1saWNlbnNlcyZ1cGxpbmtfc2x1Zz10ZWMtc2VhdGluZyZfdXBsaW5rX25vbmNlPU1zb3ptQlZJVUp4aFh6c0Q%3D' + ); + $token_manager->store( $key, $resource ); + }, + true, + 'Testing uplink', + ]; } } From 23c039ec678bd5cb3f51312b8ffc36c8cea39297 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 5 Dec 2024 16:01:12 -0500 Subject: [PATCH 016/112] Implemented Uplink to also reset the transient when applicable. --- src/Tribe/PUE/Checker.php | 30 ++-- tests/integration/Tribe/PUE/Checker_Test.php | 139 ++++++++++++++++--- 2 files changed, 133 insertions(+), 36 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 04190e9399..d0591d42b1 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -404,7 +404,7 @@ public function hooks() { add_action( 'admin_enqueue_scripts', [ $this, 'maybe_display_json_error_on_plugins_page' ], 1 ); add_action( 'admin_init', [ $this, 'general_notifications' ] ); - add_action( 'wp_loaded', [ $this, 'monitor_uplink_actions' ] ); + add_action( 'init', [ $this, 'monitor_uplink_actions' ], 1000 ); // Package name. add_filter( 'upgrader_pre_download', [ Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ], 5, 3 ); @@ -2109,26 +2109,16 @@ public function monitor_uplink_actions() { if ( $has_run ) { return; } - $plugins = uplink_get_plugins(); - // Loop through plugin resources and add actions. - foreach ( $plugins as $resource ) { - if ( ! $resource instanceof Plugin ) { - continue; // Skip non-Plugin resources. - } - - $slug = $resource->get_slug(); - - // Hook into the existing 'connected' action for the specific plugin slug. - add_action( - 'stellarwp/uplink/' . Config::get_hook_prefix() . '/' . $slug . '/connected', - function () use ( $slug ) { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); - }, - 10, - 1 - ); - } + // Hook into the existing 'connected' action for the specific plugin slug. + add_action( + 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected', + function () { + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); + }, + 10, + 1 + ); $has_run = true; } diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 518ab94226..141d38afe1 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -5,13 +5,16 @@ use Closure; use Codeception\TestCase\WPTestCase; use Generator; +use TEC\Common\StellarWP\Uplink\Auth\Action_Manager; +use TEC\Common\StellarWP\Uplink\Auth\Admin\Connect_Controller; +use TEC\Common\StellarWP\Uplink\Auth\Nonce; +use TEC\Common\StellarWP\Uplink\Auth\Token\Contracts\Token_Manager; +use TEC\Common\StellarWP\Uplink\Config; use TEC\Common\StellarWP\Uplink\Register; use TEC\Common\Tests\Licensing\PUE_Service_Mock; use Tribe__Main; use Tribe__PUE__Checker as PUE_Checker; -use TEC\Common\StellarWP\Uplink\Auth\Token\Contracts\Token_Manager; -use TEC\Common\StellarWP\Uplink\Resources\Collection; -use TEC\Common\StellarWP\Uplink\Storage\Contracts\Storage; +use WP_Screen; use function TEC\Common\StellarWP\Uplink\get_resource; @@ -26,6 +29,25 @@ class Checker_Test extends WPTestCase { */ protected $temp_pue_plugin = []; + + /** + * @var Token_Manager + */ + private $token_manager; + + /** + * The sample plugin slug + * + * @var string + */ + private $slug = 'sample'; + + /** + * @var Resource + */ + private $plugin; + + /** * @before */ @@ -256,23 +278,108 @@ function () { 'When all plugins are invalid, is_any_license_valid should return false.', ]; - yield 'Testing Uplink' => [ + yield 'Uplink, valid license' => [ function () { - $key = 'license-key-for-test-plugin'; - $collection = tribe( Collection::class ); - $resource = $collection->get( 'test-plugin' ); - $token_manager = tribe( Token_Manager::class ); - $storage = tribe( Storage::class ); - $resource->set_license_key( $key ); - $this->assertEquals( $key, $resource->get_license_key() ); - $storage->set( - 'stellarwp_auth_url_tec_seating', - 'https://my.theeventscalendar.com/account-auth/?uplink_callback=aHR0cHM6Ly90ZWNkZXYubG5kby5zaXRlL3dwLWFkbWluL2FkbWluLnBocD9wYWdlPXRlYy10aWNrZXRzLXNldHRpbmdzJnRhYj1saWNlbnNlcyZ1cGxpbmtfc2x1Zz10ZWMtc2VhdGluZyZfdXBsaW5rX25vbmNlPU1zb3ptQlZJVUp4aFh6c0Q%3D' + global $_GET; + + $this->plugin = Register::plugin( + $this->slug, + 'Sample Plugin', + '1.0.10', + __DIR__, + tribe( Tribe__Main::class ) ); - $token_manager->store( $key, $resource ); + + wp_set_current_user( 1 ); + + $this->token_manager = tribe( Token_Manager::class ); + $this->assertNull( $this->token_manager->get( $this->plugin ) ); + + $nonce = ( tribe( Nonce::class ) )->create(); + $token = '53ca40ab-c6c7-4482-a1eb-14c56da31015'; + + // Mock these were passed via the query string. + $_GET[ Connect_Controller::TOKEN ] = $token; + $_GET[ Connect_Controller::NONCE ] = $nonce; + $_GET[ Connect_Controller::SLUG ] = $this->slug; + + // Mock we're an admin inside the dashboard. + $this->admin_init(); + + // Fire off the specification action tied to this slug. + do_action( tribe( Action_Manager::class )->get_hook_name( $this->slug ) ); + + $this->assertSame( $token, $this->token_manager->get( $this->plugin ) ); + $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/' . $this->slug . '/connected' ) ); + $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) ); + }, + true, + 'When an Uplink license is valid, is_any_license_valid should return true. ', + ]; + + yield 'Uplink, valid license, with invalid pue plugin' => [ + function () { + + for ( $i = 1; $i <= 10; $i++ ) { + $validated_key = md5( microtime() . $i ); + $plugin_name = "test-plugin-{$i}"; + $this->temp_pue_plugin[] = $plugin_name; + update_option( "pue_install_key_{$plugin_name}", $validated_key ); + + $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); + // All plugins are set as invalid. + $pue_instance->set_key_status( 0 ); + } + + global $_GET; + + + wp_set_current_user( 1 ); + + $this->token_manager = tribe( Token_Manager::class ); + $this->assertNull( $this->token_manager->get( $this->plugin ) ); + + $nonce = ( tribe( Nonce::class ) )->create(); + $token = '53ca40ab-c6c7-4482-a1eb-14c56da31015'; + + // Mock these were passed via the query string. + $_GET[ Connect_Controller::TOKEN ] = $token; + $_GET[ Connect_Controller::NONCE ] = $nonce; + $_GET[ Connect_Controller::SLUG ] = $this->slug; + + // Mock we're an admin inside the dashboard. + $this->admin_init(); + + // Fire off the specification action tied to this slug. + do_action( tribe( Action_Manager::class )->get_hook_name( $this->slug ) ); + + $this->assertSame( $token, $this->token_manager->get( $this->plugin ) ); + $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/' . $this->slug . '/connected' ) ); + $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) ); }, true, - 'Testing uplink', + 'When an Uplink license is valid, and old licenses are invalid, is_any_license_valid should return true. ', ]; } + + /** + * Mock we're inside the wp-admin dashboard and fire off the admin_init hook. + * + * @param bool $network Whether we're in the network dashboard. + * + * @return void + */ + protected function admin_init( bool $network = false ): void { + $screen = WP_Screen::get( $network ? 'dashboard-network' : 'dashboard' ); + $GLOBALS['current_screen'] = $screen; + + if ( $network ) { + $this->assertTrue( $screen->in_admin( 'network' ) ); + } + + $this->assertTrue( $screen->in_admin() ); + + // Fire off admin_init to run any of our events hooked into this action. + do_action( 'admin_init' ); + } } From 5fab8b8e7f72204cdb9c8bb76a58392d31ec6407 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 6 Dec 2024 10:53:47 -0500 Subject: [PATCH 017/112] Cleaning up code, `uplink, valid license, with invalid pue plugin` is failing. --- src/Tribe/PUE/Checker.php | 19 +- tests/integration/Tribe/PUE/Checker_Test.php | 266 +++++++++++-------- 2 files changed, 171 insertions(+), 114 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index d0591d42b1..d14ab4518f 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -10,10 +10,9 @@ use TEC\Common\StellarWP\Uplink\Resources\Plugin; use TEC\Common\StellarWP\Uplink\Config; +use Tribe\Admin\Pages; use function TEC\Common\StellarWP\Uplink\get_resource; -use function TEC\Common\StellarWP\Uplink\get_plugins as uplink_get_plugins; - // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { @@ -404,7 +403,7 @@ public function hooks() { add_action( 'admin_enqueue_scripts', [ $this, 'maybe_display_json_error_on_plugins_page' ], 1 ); add_action( 'admin_init', [ $this, 'general_notifications' ] ); - add_action( 'init', [ $this, 'monitor_uplink_actions' ], 1000 ); + add_action( 'admin_init', [ $this, 'monitor_uplink_actions' ], 1000 ); // Package name. add_filter( 'upgrader_pre_download', [ Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ], 5, 3 ); @@ -2105,11 +2104,23 @@ public function is_valid_key_format() { public function monitor_uplink_actions() { static $has_run = false; - // Check if the method has already run. if ( $has_run ) { return; } + if ( ! is_admin() ) { + return; + } + + // Check that we are on an admin page. + /** @var Tribe\Admin\Pages */ + $admin_pages = tribe( 'admin.pages' ); + $admin_page = $admin_pages->get_current_page(); + + if ( empty( $admin_page ) ) { + return; + } + // Hook into the existing 'connected' action for the specific plugin slug. add_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected', diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 141d38afe1..98159b25ec 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -7,10 +7,12 @@ use Generator; use TEC\Common\StellarWP\Uplink\Auth\Action_Manager; use TEC\Common\StellarWP\Uplink\Auth\Admin\Connect_Controller; +use TEC\Common\StellarWP\Uplink\Auth\Admin\Disconnect_Controller; use TEC\Common\StellarWP\Uplink\Auth\Nonce; use TEC\Common\StellarWP\Uplink\Auth\Token\Contracts\Token_Manager; use TEC\Common\StellarWP\Uplink\Config; use TEC\Common\StellarWP\Uplink\Register; +use TEC\Common\StellarWP\Uplink\Resources\Resource; use TEC\Common\Tests\Licensing\PUE_Service_Mock; use Tribe__Main; use Tribe__PUE__Checker as PUE_Checker; @@ -24,30 +26,11 @@ class Checker_Test extends WPTestCase { */ private $pue_service_mock; - /** - * @var array - */ - protected $temp_pue_plugin = []; - - /** * @var Token_Manager */ private $token_manager; - /** - * The sample plugin slug - * - * @var string - */ - private $slug = 'sample'; - - /** - * @var Resource - */ - private $plugin; - - /** * @before */ @@ -171,31 +154,30 @@ public function test_replacemnt_key_update_in_multisite_context(): void {} * @test * @dataProvider license_validation_data_provider */ - public function should_is_any_license_valid_return_correctly( Closure $setup_closure, $expected_result, $message ): void { + public function should_is_any_license_valid_return_correctly( Closure $setup_closure, $expected_result, $message, $plugins_names ): void { // Clean up before each scenario. - $this->clean_up_test_options(); - + $this->clean_up_test_options( $plugins_names ); // Run the setup closure to configure the test scenario. $setup_closure(); // Assert the expected outcome. $this->assertEquals( $expected_result, PUE_Checker::is_any_license_valid(), $message ); + } /** - * Cleans up transient and options dynamically based on plugins in $temp_pue_plugin. + * Cleans up transient and options dynamically based on plugins passed in. */ - private function clean_up_test_options(): void { + private function clean_up_test_options( array $plugin_names ): void { // Clear transient. delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); // Clear dynamic options based on the plugins. - foreach ( $this->temp_pue_plugin as $plugin_name ) { + foreach ( $plugin_names as $plugin_name ) { delete_option( "pue_install_key_{$plugin_name}" ); + //Disconnect any Uplink plugins + $this->disconnect_uplink_plugin( $plugin_name ); } - - // Reset the array to ensure no carryover between tests. - $this->temp_pue_plugin = []; } /** @@ -204,32 +186,38 @@ private function clean_up_test_options(): void { * @return Generator */ public function license_validation_data_provider(): Generator { + $plugin_names = []; yield 'initially_unlicensed' => [ - function () { + function () use ( &$plugin_names ) { + $plugin_names = []; // No setup needed, all licenses are invalid initially. }, false, 'Initially unlicensed should return invalid.', + [], ]; yield 'license_a_plugin' => [ function () { - $validated_key = md5( microtime() ); - $plugin_name = 'test-plugin-1'; - $this->temp_pue_plugin[] = $plugin_name; + $plugin_names = []; + $validated_key = md5( microtime() ); + $plugin_name = 'test-plugin-1'; + $plugin_names[] = $plugin_name; update_option( "pue_install_key_{$plugin_name}", $validated_key ); $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); $pue_instance->set_key_status( 1 ); // Set valid status. }, true, 'Licensing a plugin should make is_any_license_valid return valid.', + &$plugin_names, ]; yield 'transient_deleted' => [ - function () { - $validated_key = md5( microtime() ); - $plugin_name = 'test-plugin-1'; - $this->temp_pue_plugin[] = $plugin_name; + function () use ( &$plugin_names ) { + $plugin_names = []; + $validated_key = md5( microtime() ); + $plugin_name = 'test-plugin-1'; + $plugin_names[] = $plugin_name; update_option( "pue_install_key_{$plugin_name}", $validated_key ); $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); $pue_instance->set_key_status( 1 ); // Set valid status. @@ -237,14 +225,16 @@ function () { }, true, 'Deleting transient should trigger revalidation and return valid if at least one license is valid.', + &$plugin_names, ]; yield 'multiple_plugins_with_even_valid' => [ - function () { + function () use ( &$plugin_names ) { + $plugin_names = []; for ( $i = 1; $i <= 10; $i++ ) { - $validated_key = md5( microtime() . $i ); - $plugin_name = "test-plugin-{$i}"; - $this->temp_pue_plugin[] = $plugin_name; + $validated_key = md5( microtime() . $i ); + $plugin_name = "test-plugin-{$i}"; + $plugin_names[] = $plugin_name; update_option( "pue_install_key_{$plugin_name}", $validated_key ); $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); @@ -259,14 +249,16 @@ function () { }, true, 'At least one valid license (even-numbered plugins) should make is_any_license_valid return valid.', + &$plugin_names, ]; yield 'all_plugins_invalid' => [ - function () { + function () use ( &$plugin_names ) { + $plugin_names = []; for ( $i = 1; $i <= 10; $i++ ) { - $validated_key = md5( microtime() . $i ); - $plugin_name = "test-plugin-{$i}"; - $this->temp_pue_plugin[] = $plugin_name; + $validated_key = md5( microtime() . $i ); + $plugin_name = "test-plugin-{$i}"; + $plugin_names[] = $plugin_name; update_option( "pue_install_key_{$plugin_name}", $validated_key ); $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); @@ -276,89 +268,40 @@ function () { }, false, 'When all plugins are invalid, is_any_license_valid should return false.', + &$plugin_names, ]; yield 'Uplink, valid license' => [ - function () { - global $_GET; - - $this->plugin = Register::plugin( - $this->slug, - 'Sample Plugin', - '1.0.10', - __DIR__, - tribe( Tribe__Main::class ) - ); - - wp_set_current_user( 1 ); - - $this->token_manager = tribe( Token_Manager::class ); - $this->assertNull( $this->token_manager->get( $this->plugin ) ); - - $nonce = ( tribe( Nonce::class ) )->create(); - $token = '53ca40ab-c6c7-4482-a1eb-14c56da31015'; - - // Mock these were passed via the query string. - $_GET[ Connect_Controller::TOKEN ] = $token; - $_GET[ Connect_Controller::NONCE ] = $nonce; - $_GET[ Connect_Controller::SLUG ] = $this->slug; - - // Mock we're an admin inside the dashboard. - $this->admin_init(); - - // Fire off the specification action tied to this slug. - do_action( tribe( Action_Manager::class )->get_hook_name( $this->slug ) ); - - $this->assertSame( $token, $this->token_manager->get( $this->plugin ) ); - $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/' . $this->slug . '/connected' ) ); - $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) ); + function () use ( &$plugin_names ) { + $plugin_names = []; + $slug = 'valid-plugin-1'; + $plugin_names[] = $slug; + $this->create_valid_uplink_license( $slug ); }, true, - 'When an Uplink license is valid, is_any_license_valid should return true. ', + 'When an Uplink license is valid, is_any_license_valid should return true.', + &$plugin_names, ]; - yield 'Uplink, valid license, with invalid pue plugin' => [ - function () { + yield 'Uplink, valid license, with invalid PUE plugin' => [ + function () use ( &$plugin_names ) { + $plugin_names = []; + $slug = 'valid-plugin-2'; + $plugin_names[] = $slug; + $this->create_valid_uplink_license( $slug ); for ( $i = 1; $i <= 10; $i++ ) { $validated_key = md5( microtime() . $i ); $plugin_name = "test-plugin-{$i}"; - $this->temp_pue_plugin[] = $plugin_name; update_option( "pue_install_key_{$plugin_name}", $validated_key ); $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); - // All plugins are set as invalid. - $pue_instance->set_key_status( 0 ); + $pue_instance->set_key_status( 0 ); // All plugins are invalid. } - - global $_GET; - - - wp_set_current_user( 1 ); - - $this->token_manager = tribe( Token_Manager::class ); - $this->assertNull( $this->token_manager->get( $this->plugin ) ); - - $nonce = ( tribe( Nonce::class ) )->create(); - $token = '53ca40ab-c6c7-4482-a1eb-14c56da31015'; - - // Mock these were passed via the query string. - $_GET[ Connect_Controller::TOKEN ] = $token; - $_GET[ Connect_Controller::NONCE ] = $nonce; - $_GET[ Connect_Controller::SLUG ] = $this->slug; - - // Mock we're an admin inside the dashboard. - $this->admin_init(); - - // Fire off the specification action tied to this slug. - do_action( tribe( Action_Manager::class )->get_hook_name( $this->slug ) ); - - $this->assertSame( $token, $this->token_manager->get( $this->plugin ) ); - $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/' . $this->slug . '/connected' ) ); - $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) ); }, true, - 'When an Uplink license is valid, and old licenses are invalid, is_any_license_valid should return true. ', + 'When an Uplink license is valid, and old licenses are invalid, is_any_license_valid should return true.', + &$plugin_names, ]; } @@ -382,4 +325,107 @@ protected function admin_init( bool $network = false ): void { // Fire off admin_init to run any of our events hooked into this action. do_action( 'admin_init' ); } + + /** + * Helper to register a new plugin for Uplink testing. + * + * @param string $slug The slug of the plugin. + * @param string $name The name of the plugin. + * @param string $version The version of the plugin. + * + * @return Resource + */ + private function register_new_uplink_plugin( string $slug, string $name = 'Sample Plugin', string $version = '1.0.10' ): Resource { + return Register::plugin( + $slug, + $name, + $version, + __DIR__, + tribe( Tribe__Main::class ) + ); + } + + /** + * Creates a valid Uplink license for testing. + * + * @param string $slug The slug of the plugin to create a license for. + * + * @return string The generated token for the Uplink license. + */ + private function create_valid_uplink_license( string $slug ): string { + $plugin = $this->register_new_uplink_plugin( $slug ); + + // Set the current user to an admin. + wp_set_current_user( 1 ); + + // Initialize the token manager. + $this->token_manager = tribe( Token_Manager::class ); + + // Ensure no token exists for the plugin initially. + $this->assertNull( $this->token_manager->get( $plugin ) ); + + // Generate a nonce and a token. + $nonce = ( tribe( Nonce::class ) )->create(); + $token = '53ca40ab-c6c7-4482-a1eb-14c56da31015'; + + // Mock these were passed via the query string. + global $_GET; + $_GET[ Connect_Controller::TOKEN ] = $token; + $_GET[ Connect_Controller::NONCE ] = $nonce; + $_GET[ Connect_Controller::SLUG ] = $slug; + + // Mock we're an admin inside the dashboard. + $this->admin_init(); + + // Fire off the specification action tied to this slug. + do_action( tribe( Action_Manager::class )->get_hook_name( $slug ) ); + + // Verify that the token was assigned correctly. + $this->assertSame( $token, $this->token_manager->get( $plugin ) ); + + // Verify that the general 'connected' action fires. + $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) ); + + return $token; + } + + /** + * Helper to disconnect an Uplink plugin. + * + * @param string $slug The slug of the plugin to disconnect. + */ + private function disconnect_uplink_plugin( string $slug ): void { + $plugin = get_resource( $slug ); + if ( empty( $plugin ) ) { + return; + } + + if ( empty( $this->token_manager ) ) { + return; + } + + global $_GET; + wp_set_current_user( 1 ); + + $token = $this->token_manager->get( $plugin ); + $this->assertNotNull( $token ); + + // Mock these were passed via the query string. + $_GET[ Disconnect_Controller::ARG ] = 1; + $_GET[ Disconnect_Controller::CACHE_KEY ] = 'nada'; + $_GET[ Disconnect_Controller::SLUG ] = $slug; + $_GET['_wpnonce'] = wp_create_nonce( Disconnect_Controller::ARG ); + + // Mock we're an admin inside the dashboard. + $this->admin_init(); + + // Fire off the specification action tied to this slug. + do_action( tribe( Action_Manager::class )->get_hook_name( $slug ) ); + + // Assert that the token is removed. + $this->assertNull( $this->token_manager->get( $plugin ) ); + + // Verify that the disconnected action fires. + $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/disconnected' ) ); + } } From 8990108bdcf0b7d56e3f90aa9f7b86cbf69442c5 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 6 Dec 2024 11:24:23 -0500 Subject: [PATCH 018/112] All tests passing. --- src/Tribe/PUE/Checker.php | 48 +++++--------------- tests/integration/Tribe/PUE/Checker_Test.php | 2 +- 2 files changed, 12 insertions(+), 38 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index d14ab4518f..18d850a287 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -270,6 +270,11 @@ public static function is_any_license_valid(): bool { return false; } + if ( self::has_valid_uplink_license() ) { + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); + return true; + } + // Ensure instances exist. if ( empty( self::$instances ) ) { set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $invalid_slug, HOUR_IN_SECONDS ); @@ -403,8 +408,6 @@ public function hooks() { add_action( 'admin_enqueue_scripts', [ $this, 'maybe_display_json_error_on_plugins_page' ], 1 ); add_action( 'admin_init', [ $this, 'general_notifications' ] ); - add_action( 'admin_init', [ $this, 'monitor_uplink_actions' ], 1000 ); - // Package name. add_filter( 'upgrader_pre_download', [ Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ], 5, 3 ); } @@ -2094,44 +2097,15 @@ public function is_valid_key_format() { } /** - * Monitors Uplink and hooks into the plugin connected action. + * Checks if a valid Uplink license exists. * - * This method loops through the registered Uplink plugins and hooks into the - * 'stellarwp/uplink/{slug}/connected' action for each plugin resource. + * This method confirms if the 'stellarwp/uplink/{prefix}/connected' action + * has been fired, which indicates a valid license. * - * @since TBD + * @return bool True if at least one license is valid, false otherwise. */ - public function monitor_uplink_actions() { - static $has_run = false; - - if ( $has_run ) { - return; - } - - if ( ! is_admin() ) { - return; - } - - // Check that we are on an admin page. - /** @var Tribe\Admin\Pages */ - $admin_pages = tribe( 'admin.pages' ); - $admin_page = $admin_pages->get_current_page(); - - if ( empty( $admin_page ) ) { - return; - } - - // Hook into the existing 'connected' action for the specific plugin slug. - add_action( - 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected', - function () { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); - }, - 10, - 1 - ); - - $has_run = true; + protected static function has_valid_uplink_license(): bool { + return did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) > 0; } } } diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 98159b25ec..1bc017d867 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -384,7 +384,7 @@ private function create_valid_uplink_license( string $slug ): string { $this->assertSame( $token, $this->token_manager->get( $plugin ) ); // Verify that the general 'connected' action fires. - $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) ); + $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) ,'Hook should only run once'); return $token; } From 19c4b2011b18cbbd28f21bda572476bfc67062f2 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 6 Dec 2024 11:24:55 -0500 Subject: [PATCH 019/112] PHPCS fixes. --- src/Tribe/PUE/Checker.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 18d850a287..4ae9f500d0 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -8,9 +8,7 @@ * @todo switch all plugins over to use the PUE utilities here in Commons */ -use TEC\Common\StellarWP\Uplink\Resources\Plugin; use TEC\Common\StellarWP\Uplink\Config; -use Tribe\Admin\Pages; use function TEC\Common\StellarWP\Uplink\get_resource; From 969a185d6894afc0520388137df103609562d5d9 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 6 Dec 2024 16:26:13 -0500 Subject: [PATCH 020/112] Bump Uplink to version 2.2.2 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9aa27cc163..93ee68d3e8 100644 --- a/composer.json +++ b/composer.json @@ -34,7 +34,7 @@ "stellarwp/telemetry": "^2.3.1", "stellarwp/assets": "1.4.2", "stellarwp/admin-notices": "^1.1", - "stellarwp/uplink": "2.2.1" + "stellarwp/uplink": "2.2.2" }, "require-dev": { "automattic/vipwpcs": "^3.0", From daf7bbefaa288a256aa23ce5b4e59166d6d98d5c Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 09:05:45 -0500 Subject: [PATCH 021/112] Updated composer.lock. --- composer.lock | 205 +++++++++++++++++++++++++------------------------- 1 file changed, 102 insertions(+), 103 deletions(-) diff --git a/composer.lock b/composer.lock index 03fdabf752..8db33d195d 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c62c55b2f96b21c6942947c11925cc1f", + "content-hash": "4a063d7c5ba67c09c3ff597cc59e3620", "packages": [ { "name": "firebase/php-jwt", @@ -782,16 +782,16 @@ }, { "name": "stellarwp/uplink", - "version": "v2.2.1", + "version": "v2.2.2", "source": { "type": "git", "url": "https://github.com/stellarwp/uplink.git", - "reference": "57eb6264994662cb8da368cc3a9227ec716edc70" + "reference": "5bc1f115efe629dd4244bff08809aea45ed9d8f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stellarwp/uplink/zipball/57eb6264994662cb8da368cc3a9227ec716edc70", - "reference": "57eb6264994662cb8da368cc3a9227ec716edc70", + "url": "https://api.github.com/repos/stellarwp/uplink/zipball/5bc1f115efe629dd4244bff08809aea45ed9d8f1", + "reference": "5bc1f115efe629dd4244bff08809aea45ed9d8f1", "shasum": "" }, "require": { @@ -843,9 +843,9 @@ "description": "A library that integrates a WordPress product with the StellarWP Licensing system.", "support": { "issues": "https://github.com/stellarwp/uplink/issues", - "source": "https://github.com/stellarwp/uplink/tree/v2.2.1" + "source": "https://github.com/stellarwp/uplink/tree/v2.2.2" }, - "time": "2024-09-30T22:46:40+00:00" + "time": "2024-12-05T19:13:16+00:00" } ], "packages-dev": [ @@ -926,15 +926,15 @@ "type": "project", "extra": { "autotagger": true, + "mirror-repo": "Automattic/jetpack-changelogger", "branch-alias": { "dev-trunk": "4.2.x-dev" }, - "mirror-repo": "Automattic/jetpack-changelogger", - "version-constants": { - "::VERSION": "src/Application.php" - }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-changelogger/compare/${old}...${new}" + }, + "version-constants": { + "::VERSION": "src/Application.php" } }, "autoload": { @@ -1498,29 +1498,27 @@ }, { "name": "doctrine/deprecations", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" + "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9", + "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9", - "phpstan/phpstan": "1.4.10 || 1.10.15", - "phpstan/phpstan-phpunit": "^1.0", + "doctrine/coding-standard": "^9 || ^12", + "phpstan/phpstan": "1.4.10 || 2.0.3", + "phpstan/phpstan-phpunit": "^1.0 || ^2", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "psalm/plugin-phpunit": "0.18.4", - "psr/log": "^1 || ^2 || ^3", - "vimeo/psalm": "4.30.0 || 5.12.0" + "psr/log": "^1 || ^2 || ^3" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -1528,7 +1526,7 @@ "type": "library", "autoload": { "psr-4": { - "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + "Doctrine\\Deprecations\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1539,9 +1537,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.3" + "source": "https://github.com/doctrine/deprecations/tree/1.1.4" }, - "time": "2024-01-30T19:34:25+00:00" + "time": "2024-12-07T21:18:45+00:00" }, { "name": "doctrine/inflector", @@ -1772,16 +1770,16 @@ }, { "name": "fakerphp/faker", - "version": "v1.23.1", + "version": "v1.24.1", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", - "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", "shasum": "" }, "require": { @@ -1829,9 +1827,9 @@ ], "support": { "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" + "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" }, - "time": "2024-01-02T13:46:09+00:00" + "time": "2024-11-21T13:46:39+00:00" }, { "name": "gajus/dindent", @@ -2662,12 +2660,12 @@ "type": "laravel-package", "extra": { "laravel": { - "providers": [ - "MikeMcLin\\WpPassword\\WpPasswordProvider" - ], "aliases": { "WpPassword": "MikeMcLin\\WpPassword\\Facades\\WpPassword" - } + }, + "providers": [ + "MikeMcLin\\WpPassword\\WpPasswordProvider" + ] } }, "autoload": { @@ -2752,16 +2750,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.12.0", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", - "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845", + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845", "shasum": "" }, "require": { @@ -2800,7 +2798,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1" }, "funding": [ { @@ -2808,7 +2806,7 @@ "type": "tidelift" } ], - "time": "2024-06-12T14:39:25+00:00" + "time": "2024-11-08T17:47:46+00:00" }, { "name": "nesbot/carbon", @@ -3307,16 +3305,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.5.0", + "version": "5.6.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "54e10d44fc1a84e2598d26f70d4f6f1f233e228a" + "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/54e10d44fc1a84e2598d26f70d4f6f1f233e228a", - "reference": "54e10d44fc1a84e2598d26f70d4f6f1f233e228a", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8", + "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8", "shasum": "" }, "require": { @@ -3325,7 +3323,7 @@ "php": "^7.4 || ^8.0", "phpdocumentor/reflection-common": "^2.2", "phpdocumentor/type-resolver": "^1.7", - "phpstan/phpdoc-parser": "^1.7", + "phpstan/phpdoc-parser": "^1.7|^2.0", "webmozart/assert": "^1.9.1" }, "require-dev": { @@ -3365,29 +3363,29 @@ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.5.0" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1" }, - "time": "2024-11-04T21:26:31+00:00" + "time": "2024-12-07T09:39:29+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.9.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "1fb5ba8d045f5dd984ebded5b1cc66f29459422d" + "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/1fb5ba8d045f5dd984ebded5b1cc66f29459422d", - "reference": "1fb5ba8d045f5dd984ebded5b1cc66f29459422d", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a", + "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a", "shasum": "" }, "require": { "doctrine/deprecations": "^1.0", "php": "^7.3 || ^8.0", "phpdocumentor/reflection-common": "^2.0", - "phpstan/phpdoc-parser": "^1.18" + "phpstan/phpdoc-parser": "^1.18|^2.0" }, "require-dev": { "ext-tokenizer": "*", @@ -3423,32 +3421,33 @@ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", "support": { "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.9.0" + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0" }, - "time": "2024-11-03T20:11:34+00:00" + "time": "2024-11-09T15:12:26+00:00" }, { "name": "phpspec/prophecy", - "version": "v1.19.0", + "version": "v1.20.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87" + "reference": "a0165c648cab6a80311c74ffc708a07bb53ecc93" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/67a759e7d8746d501c41536ba40cd9c0a07d6a87", - "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/a0165c648cab6a80311c74ffc708a07bb53ecc93", + "reference": "a0165c648cab6a80311c74ffc708a07bb53ecc93", "shasum": "" }, "require": { "doctrine/instantiator": "^1.2 || ^2.0", - "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.*", + "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.* || 8.4.*", "phpdocumentor/reflection-docblock": "^5.2", "sebastian/comparator": "^3.0 || ^4.0 || ^5.0 || ^6.0", "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0 || ^6.0" }, "require-dev": { + "friendsofphp/php-cs-fixer": "^3.40", "phpspec/phpspec": "^6.0 || ^7.0", "phpstan/phpstan": "^1.9", "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0" @@ -3492,9 +3491,9 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/v1.19.0" + "source": "https://github.com/phpspec/prophecy/tree/v1.20.0" }, - "time": "2024-02-29T11:52:51+00:00" + "time": "2024-11-19T13:12:41+00:00" }, { "name": "phpstan/phpdoc-parser", @@ -4783,16 +4782,16 @@ }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.19", + "version": "v2.11.21", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1" + "reference": "eb2b351927098c24860daa7484e290d3eed693be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", - "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/eb2b351927098c24860daa7484e290d3eed693be", + "reference": "eb2b351927098c24860daa7484e290d3eed693be", "shasum": "" }, "require": { @@ -4803,9 +4802,9 @@ "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", "phpcsstandards/phpcsdevcs": "^1.1", "phpstan/phpstan": "^1.7", - "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3", "sirbrillig/phpcs-import-detection": "^1.1", - "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0" }, "type": "phpcodesniffer-standard", "autoload": { @@ -4837,7 +4836,7 @@ "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2024-06-26T20:08:34+00:00" + "time": "2024-12-02T16:37:49+00:00" }, { "name": "slevomat/coding-standard", @@ -4906,16 +4905,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.10.3", + "version": "3.11.1", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "62d32998e820bddc40f99f8251958aed187a5c9c" + "reference": "19473c30efe4f7b3cd42522d0b2e6e7f243c6f87" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/62d32998e820bddc40f99f8251958aed187a5c9c", - "reference": "62d32998e820bddc40f99f8251958aed187a5c9c", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/19473c30efe4f7b3cd42522d0b2e6e7f243c6f87", + "reference": "19473c30efe4f7b3cd42522d0b2e6e7f243c6f87", "shasum": "" }, "require": { @@ -4982,7 +4981,7 @@ "type": "open_collective" } ], - "time": "2024-09-18T10:38:58+00:00" + "time": "2024-11-16T12:02:36+00:00" }, { "name": "stellarwp/coding-standards", @@ -5269,16 +5268,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.3", + "version": "v2.5.4", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "80d075412b557d41002320b96a096ca65aa2c98d" + "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d", - "reference": "80d075412b557d41002320b96a096ca65aa2c98d", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918", + "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918", "shasum": "" }, "require": { @@ -5316,7 +5315,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4" }, "funding": [ { @@ -5332,7 +5331,7 @@ "type": "tidelift" } ], - "time": "2023-01-24T14:02:46+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "symfony/dom-crawler", @@ -5659,8 +5658,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -5818,8 +5817,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -5976,8 +5975,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -6052,8 +6051,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -6176,16 +6175,16 @@ }, { "name": "symfony/service-contracts", - "version": "v2.5.3", + "version": "v2.5.4", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3" + "reference": "f37b419f7aea2e9abf10abd261832cace12e3300" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3", - "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300", + "reference": "f37b419f7aea2e9abf10abd261832cace12e3300", "shasum": "" }, "require": { @@ -6239,7 +6238,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.3" + "source": "https://github.com/symfony/service-contracts/tree/v2.5.4" }, "funding": [ { @@ -6255,7 +6254,7 @@ "type": "tidelift" } ], - "time": "2023-04-21T15:04:16+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "symfony/translation", @@ -6354,16 +6353,16 @@ }, { "name": "symfony/translation-contracts", - "version": "v2.5.3", + "version": "v2.5.4", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664" + "reference": "450d4172653f38818657022252f9d81be89ee9a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664", - "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8", + "reference": "450d4172653f38818657022252f9d81be89ee9a8", "shasum": "" }, "require": { @@ -6412,7 +6411,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3" + "source": "https://github.com/symfony/translation-contracts/tree/v2.5.4" }, "funding": [ { @@ -6428,7 +6427,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "symfony/yaml", @@ -7155,16 +7154,16 @@ "aliases": [], "minimum-stability": "dev", "stability-flags": { - "stellarwp/coding-standards": 20, "stellarwp/models": 20, + "stellarwp/coding-standards": 20, "the-events-calendar/tec-testing-facilities": 20 }, "prefer-stable": true, "prefer-lowest": false, - "platform": {}, - "platform-dev": {}, + "platform": [], + "platform-dev": [], "platform-overrides": { "php": "7.4.0" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } From b13840bb4cb67f8c1100fb8c5b5207ec790c717b Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 09:16:46 -0500 Subject: [PATCH 022/112] Added `@since`. --- src/Tribe/PUE/Checker.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 4ae9f500d0..aa336808fb 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -2098,7 +2098,9 @@ public function is_valid_key_format() { * Checks if a valid Uplink license exists. * * This method confirms if the 'stellarwp/uplink/{prefix}/connected' action - * has been fired, which indicates a valid license. + * has been fired, which indicates at least one valid license. + * + * @since TBD * * @return bool True if at least one license is valid, false otherwise. */ From 1d82331e024f451dd59251c845ebcd654b6748fd Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 09:46:01 -0500 Subject: [PATCH 023/112] Fixed .lock file. --- composer.lock | 163 +++++++++++++++++++++++++------------------------- 1 file changed, 82 insertions(+), 81 deletions(-) diff --git a/composer.lock b/composer.lock index 8db33d195d..b070e0ac14 100644 --- a/composer.lock +++ b/composer.lock @@ -782,16 +782,16 @@ }, { "name": "stellarwp/uplink", - "version": "v2.2.2", + "version": "v2.2.1", "source": { "type": "git", "url": "https://github.com/stellarwp/uplink.git", - "reference": "5bc1f115efe629dd4244bff08809aea45ed9d8f1" + "reference": "57eb6264994662cb8da368cc3a9227ec716edc70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stellarwp/uplink/zipball/5bc1f115efe629dd4244bff08809aea45ed9d8f1", - "reference": "5bc1f115efe629dd4244bff08809aea45ed9d8f1", + "url": "https://api.github.com/repos/stellarwp/uplink/zipball/57eb6264994662cb8da368cc3a9227ec716edc70", + "reference": "57eb6264994662cb8da368cc3a9227ec716edc70", "shasum": "" }, "require": { @@ -843,9 +843,9 @@ "description": "A library that integrates a WordPress product with the StellarWP Licensing system.", "support": { "issues": "https://github.com/stellarwp/uplink/issues", - "source": "https://github.com/stellarwp/uplink/tree/v2.2.2" + "source": "https://github.com/stellarwp/uplink/tree/v2.2.1" }, - "time": "2024-12-05T19:13:16+00:00" + "time": "2024-09-30T22:46:40+00:00" } ], "packages-dev": [ @@ -1498,27 +1498,29 @@ }, { "name": "doctrine/deprecations", - "version": "1.1.4", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9" + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9", - "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12", - "phpstan/phpstan": "1.4.10 || 2.0.3", - "phpstan/phpstan-phpunit": "^1.0 || ^2", + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "psr/log": "^1 || ^2 || ^3" + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -1526,7 +1528,7 @@ "type": "library", "autoload": { "psr-4": { - "Doctrine\\Deprecations\\": "src" + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" } }, "notification-url": "https://packagist.org/downloads/", @@ -1537,9 +1539,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.4" + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" }, - "time": "2024-12-07T21:18:45+00:00" + "time": "2024-01-30T19:34:25+00:00" }, { "name": "doctrine/inflector", @@ -1770,16 +1772,16 @@ }, { "name": "fakerphp/faker", - "version": "v1.24.1", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", - "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", "shasum": "" }, "require": { @@ -1827,9 +1829,9 @@ ], "support": { "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" }, - "time": "2024-11-21T13:46:39+00:00" + "time": "2024-01-02T13:46:09+00:00" }, { "name": "gajus/dindent", @@ -2750,16 +2752,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.12.1", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845" + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845", - "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", "shasum": "" }, "require": { @@ -2798,7 +2800,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" }, "funding": [ { @@ -2806,7 +2808,7 @@ "type": "tidelift" } ], - "time": "2024-11-08T17:47:46+00:00" + "time": "2024-06-12T14:39:25+00:00" }, { "name": "nesbot/carbon", @@ -3305,16 +3307,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.6.1", + "version": "5.5.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8" + "reference": "54e10d44fc1a84e2598d26f70d4f6f1f233e228a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8", - "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/54e10d44fc1a84e2598d26f70d4f6f1f233e228a", + "reference": "54e10d44fc1a84e2598d26f70d4f6f1f233e228a", "shasum": "" }, "require": { @@ -3323,7 +3325,7 @@ "php": "^7.4 || ^8.0", "phpdocumentor/reflection-common": "^2.2", "phpdocumentor/type-resolver": "^1.7", - "phpstan/phpdoc-parser": "^1.7|^2.0", + "phpstan/phpdoc-parser": "^1.7", "webmozart/assert": "^1.9.1" }, "require-dev": { @@ -3363,29 +3365,29 @@ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.5.0" }, - "time": "2024-12-07T09:39:29+00:00" + "time": "2024-11-04T21:26:31+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.10.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a" + "reference": "1fb5ba8d045f5dd984ebded5b1cc66f29459422d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a", - "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/1fb5ba8d045f5dd984ebded5b1cc66f29459422d", + "reference": "1fb5ba8d045f5dd984ebded5b1cc66f29459422d", "shasum": "" }, "require": { "doctrine/deprecations": "^1.0", "php": "^7.3 || ^8.0", "phpdocumentor/reflection-common": "^2.0", - "phpstan/phpdoc-parser": "^1.18|^2.0" + "phpstan/phpdoc-parser": "^1.18" }, "require-dev": { "ext-tokenizer": "*", @@ -3421,33 +3423,32 @@ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", "support": { "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0" + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.9.0" }, - "time": "2024-11-09T15:12:26+00:00" + "time": "2024-11-03T20:11:34+00:00" }, { "name": "phpspec/prophecy", - "version": "v1.20.0", + "version": "v1.19.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "a0165c648cab6a80311c74ffc708a07bb53ecc93" + "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/a0165c648cab6a80311c74ffc708a07bb53ecc93", - "reference": "a0165c648cab6a80311c74ffc708a07bb53ecc93", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/67a759e7d8746d501c41536ba40cd9c0a07d6a87", + "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87", "shasum": "" }, "require": { "doctrine/instantiator": "^1.2 || ^2.0", - "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.* || 8.4.*", + "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.*", "phpdocumentor/reflection-docblock": "^5.2", "sebastian/comparator": "^3.0 || ^4.0 || ^5.0 || ^6.0", "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0 || ^6.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.40", "phpspec/phpspec": "^6.0 || ^7.0", "phpstan/phpstan": "^1.9", "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0" @@ -3491,9 +3492,9 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/v1.20.0" + "source": "https://github.com/phpspec/prophecy/tree/v1.19.0" }, - "time": "2024-11-19T13:12:41+00:00" + "time": "2024-02-29T11:52:51+00:00" }, { "name": "phpstan/phpdoc-parser", @@ -4782,16 +4783,16 @@ }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.21", + "version": "v2.11.19", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "eb2b351927098c24860daa7484e290d3eed693be" + "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/eb2b351927098c24860daa7484e290d3eed693be", - "reference": "eb2b351927098c24860daa7484e290d3eed693be", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", + "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", "shasum": "" }, "require": { @@ -4802,9 +4803,9 @@ "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", "phpcsstandards/phpcsdevcs": "^1.1", "phpstan/phpstan": "^1.7", - "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3", + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", "sirbrillig/phpcs-import-detection": "^1.1", - "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0" + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" }, "type": "phpcodesniffer-standard", "autoload": { @@ -4836,7 +4837,7 @@ "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2024-12-02T16:37:49+00:00" + "time": "2024-06-26T20:08:34+00:00" }, { "name": "slevomat/coding-standard", @@ -4905,16 +4906,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.11.1", + "version": "3.10.3", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "19473c30efe4f7b3cd42522d0b2e6e7f243c6f87" + "reference": "62d32998e820bddc40f99f8251958aed187a5c9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/19473c30efe4f7b3cd42522d0b2e6e7f243c6f87", - "reference": "19473c30efe4f7b3cd42522d0b2e6e7f243c6f87", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/62d32998e820bddc40f99f8251958aed187a5c9c", + "reference": "62d32998e820bddc40f99f8251958aed187a5c9c", "shasum": "" }, "require": { @@ -4981,7 +4982,7 @@ "type": "open_collective" } ], - "time": "2024-11-16T12:02:36+00:00" + "time": "2024-09-18T10:38:58+00:00" }, { "name": "stellarwp/coding-standards", @@ -5268,16 +5269,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.4", + "version": "v2.5.3", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918" + "reference": "80d075412b557d41002320b96a096ca65aa2c98d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918", - "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d", + "reference": "80d075412b557d41002320b96a096ca65aa2c98d", "shasum": "" }, "require": { @@ -5315,7 +5316,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3" }, "funding": [ { @@ -5331,7 +5332,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:11:13+00:00" + "time": "2023-01-24T14:02:46+00:00" }, { "name": "symfony/dom-crawler", @@ -6175,16 +6176,16 @@ }, { "name": "symfony/service-contracts", - "version": "v2.5.4", + "version": "v2.5.3", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "f37b419f7aea2e9abf10abd261832cace12e3300" + "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300", - "reference": "f37b419f7aea2e9abf10abd261832cace12e3300", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3", + "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3", "shasum": "" }, "require": { @@ -6238,7 +6239,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.4" + "source": "https://github.com/symfony/service-contracts/tree/v2.5.3" }, "funding": [ { @@ -6254,7 +6255,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:11:13+00:00" + "time": "2023-04-21T15:04:16+00:00" }, { "name": "symfony/translation", @@ -6353,16 +6354,16 @@ }, { "name": "symfony/translation-contracts", - "version": "v2.5.4", + "version": "v2.5.3", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "450d4172653f38818657022252f9d81be89ee9a8" + "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8", - "reference": "450d4172653f38818657022252f9d81be89ee9a8", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664", + "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664", "shasum": "" }, "require": { @@ -6411,7 +6412,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.5.4" + "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3" }, "funding": [ { @@ -6427,7 +6428,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:11:13+00:00" + "time": "2024-01-23T13:51:25+00:00" }, { "name": "symfony/yaml", From 27913f3fafaef1e1f4bd67346712fd757af191e6 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 10:02:49 -0500 Subject: [PATCH 024/112] Moved back towards using an action to monitor `IS_ANY_LICENSE_VALID_TRANSIENT_KEY` --- src/Tribe/PUE/Checker.php | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index aa336808fb..03f3ce8b54 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -268,11 +268,6 @@ public static function is_any_license_valid(): bool { return false; } - if ( self::has_valid_uplink_license() ) { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); - return true; - } - // Ensure instances exist. if ( empty( self::$instances ) ) { set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $invalid_slug, HOUR_IN_SECONDS ); @@ -408,6 +403,8 @@ public function hooks() { // Package name. add_filter( 'upgrader_pre_download', [ Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ], 5, 3 ); + + add_action( 'admin_init', [ $this, 'monitor_uplink_actions' ], 1000 ); } @@ -2095,17 +2092,23 @@ public function is_valid_key_format() { } /** - * Checks if a valid Uplink license exists. + * Monitors Uplink and hooks into the plugin connected action. * - * This method confirms if the 'stellarwp/uplink/{prefix}/connected' action - * has been fired, which indicates at least one valid license. + * This method loops through the registered Uplink plugins and hooks into the + * 'stellarwp/uplink/{slug}/connected' action for each plugin resource. * * @since TBD - * - * @return bool True if at least one license is valid, false otherwise. */ - protected static function has_valid_uplink_license(): bool { - return did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) > 0; + public static function monitor_uplink_actions(): void { + // Hook into the existing 'connected' action for the specific plugin slug. + add_action( + 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected', + function () { + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); + }, + 10, + 1 + ); } } } From f1bdada23af0f27d07ef83843d09404397a21b06 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 12:06:12 -0500 Subject: [PATCH 025/112] Switched `IS_ANY_LICENSE_VALID_TRANSIENT_KEY` structure from a string, to an array to keep track of what plugins are valid/invalid. Using a bool instead to keep track. --- src/Tribe/PUE/Checker.php | 80 ++++++++++++++++++++++++++------------- 1 file changed, 53 insertions(+), 27 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 03f3ce8b54..df55e320f0 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -242,58 +242,86 @@ public function is_key_valid() { return 'valid' === $status; } + /** + * Helper function to check the transient structure and if any plugin is valid. + * + * @since TBD + * + * @param array|null $transient_value The current transient value. + * + * @return bool True if a valid license is found, otherwise false. + */ + protected static function has_valid_license_in_transient( ?array $transient_value ): bool { + if ( ! is_array( $transient_value ) || ! isset( $transient_value['plugins'] ) ) { + return false; + } + + return in_array( true, $transient_value['plugins'] ); + } + + /** + * Updates the license status in the global transient. + * + * @since TBD + * + * @param string $plugin_slug The slug of the plugin being updated. + * @param bool $status The license status. + */ + protected static function update_any_license_valid_transient( string $plugin_slug, bool $status ): void { + $transient_value = get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ) ?: [ 'plugins' => [] ]; + + $transient_value['plugins'][ $plugin_slug ] = $status; + + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $transient_value, HOUR_IN_SECONDS ); + } + /** * Iterate on all the registered PUE Product Licenses we have and find if any are valid. * Will revalidate the licenses if none are found to be valid. * * @since 6.3.2 - * @since TBD Refactored logic to take into account the transient. + * @since TBD Refactored logic to account for the transient structure. * * @return bool */ public static function is_any_license_valid(): bool { - $valid_slug = 'valid'; - $invalid_slug = 'invalid'; - - // Check the transient value first. $transient_value = get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + $transient_value = $transient_value !== false ? $transient_value : []; - if ( $transient_value === $valid_slug ) { - // Transient explicitly marked as valid. + // Check if the transient has a valid license. + if ( self::has_valid_license_in_transient( $transient_value ) ) { return true; } - if ( $transient_value === $invalid_slug ) { - // Transient explicitly marked as invalid, no recheck. - return false; - } - // Ensure instances exist. if ( empty( self::$instances ) ) { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $invalid_slug, HOUR_IN_SECONDS ); + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, [ 'plugins' => [] ], HOUR_IN_SECONDS ); + return false; } - // Transient is missing or unexpected, revalidate licenses. - foreach ( self::$instances as $checker ) { + // Revalidate licenses. + foreach ( self::$instances as $plugin_slug => $checker ) { // First, check if the key is already valid. if ( $checker->is_key_valid() ) { - // Found a valid license; update transient and return true. - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); + self::update_any_license_valid_transient( $plugin_slug, true ); + return true; } // If not valid, attempt to revalidate the license. $license = get_option( $checker->get_license_option_key() ); $response = $checker->validate_key( $license ); + if ( ! empty( $response['status'] ) ) { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $valid_slug, HOUR_IN_SECONDS ); + self::update_any_license_valid_transient( $plugin_slug, true ); + return true; + } else { + self::update_any_license_valid_transient( $plugin_slug, false ); } } - // No valid licenses found; mark as invalid and return false. - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $invalid_slug, HOUR_IN_SECONDS ); return false; } @@ -353,11 +381,8 @@ public function set_key_status( $valid ) { // @todo remove transient in a major feature release where we release all plugins. set_transient( $this->pue_key_status_transient_name, $status, $this->check_period * HOUR_IN_SECONDS ); - if ( ! tribe_is_truthy( $valid ) ) { - delete_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - } else { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $status, HOUR_IN_SECONDS ); - } + // Update the global license transient. + self::update_any_license_valid_transient( $this->get_slug(), tribe_is_truthy( $valid ) ); } /** @@ -2103,8 +2128,9 @@ public static function monitor_uplink_actions(): void { // Hook into the existing 'connected' action for the specific plugin slug. add_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected', - function () { - set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); + function ($plugin) { + //set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); + self::update_any_license_valid_transient( $plugin->get_slug(), true ); }, 10, 1 From 1fcf10a8dfd15d573dd632159cb63a8b7e6403f5 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 12:06:27 -0500 Subject: [PATCH 026/112] Updated tests to validate that the transient matches the expected plugins. --- tests/integration/Tribe/PUE/Checker_Test.php | 41 +++++++++++++------- 1 file changed, 26 insertions(+), 15 deletions(-) diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 1bc017d867..85411f31f5 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -154,15 +154,25 @@ public function test_replacemnt_key_update_in_multisite_context(): void {} * @test * @dataProvider license_validation_data_provider */ - public function should_is_any_license_valid_return_correctly( Closure $setup_closure, $expected_result, $message, $plugins_names ): void { - // Clean up before each scenario. - $this->clean_up_test_options( $plugins_names ); + public function should_is_any_license_valid_return_correctly( Closure $setup_closure, $expected_result, $message ): void { // Run the setup closure to configure the test scenario. - $setup_closure(); + $plugins_names = $setup_closure(); // Assert the expected outcome. $this->assertEquals( $expected_result, PUE_Checker::is_any_license_valid(), $message ); + $transient = get_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + + // Assert that all plugin names are present in the transient. + foreach ( $plugins_names as $plugin_name ) { + $this->assertArrayHasKey( + $plugin_name, + $transient['plugins'], + sprintf( 'The plugin "%s" should exist in the transient.', $plugin_name ) + ); + } + // Clean up before each scenario. + $this->clean_up_test_options( $plugins_names ); } /** @@ -190,11 +200,11 @@ public function license_validation_data_provider(): Generator { yield 'initially_unlicensed' => [ function () use ( &$plugin_names ) { $plugin_names = []; + return $plugin_names; // No setup needed, all licenses are invalid initially. }, false, 'Initially unlicensed should return invalid.', - [], ]; yield 'license_a_plugin' => [ @@ -206,10 +216,10 @@ function () { update_option( "pue_install_key_{$plugin_name}", $validated_key ); $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); $pue_instance->set_key_status( 1 ); // Set valid status. + return $plugin_names; }, true, 'Licensing a plugin should make is_any_license_valid return valid.', - &$plugin_names, ]; yield 'transient_deleted' => [ @@ -222,14 +232,14 @@ function () use ( &$plugin_names ) { $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); $pue_instance->set_key_status( 1 ); // Set valid status. delete_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); // Simulate transient deletion. + return $plugin_names; }, true, 'Deleting transient should trigger revalidation and return valid if at least one license is valid.', - &$plugin_names, ]; yield 'multiple_plugins_with_even_valid' => [ - function () use ( &$plugin_names ) { + function () { $plugin_names = []; for ( $i = 1; $i <= 10; $i++ ) { $validated_key = md5( microtime() . $i ); @@ -246,14 +256,14 @@ function () use ( &$plugin_names ) { $pue_instance->set_key_status( 0 ); } } + return $plugin_names; }, true, 'At least one valid license (even-numbered plugins) should make is_any_license_valid return valid.', - &$plugin_names, ]; yield 'all_plugins_invalid' => [ - function () use ( &$plugin_names ) { + function () { $plugin_names = []; for ( $i = 1; $i <= 10; $i++ ) { $validated_key = md5( microtime() . $i ); @@ -265,26 +275,26 @@ function () use ( &$plugin_names ) { // All plugins are set as invalid. $pue_instance->set_key_status( 0 ); } + return $plugin_names; }, false, 'When all plugins are invalid, is_any_license_valid should return false.', - &$plugin_names, ]; yield 'Uplink, valid license' => [ - function () use ( &$plugin_names ) { + function () { $plugin_names = []; $slug = 'valid-plugin-1'; $plugin_names[] = $slug; $this->create_valid_uplink_license( $slug ); + return $plugin_names; }, true, 'When an Uplink license is valid, is_any_license_valid should return true.', - &$plugin_names, ]; yield 'Uplink, valid license, with invalid PUE plugin' => [ - function () use ( &$plugin_names ) { + function () { $plugin_names = []; $slug = 'valid-plugin-2'; $plugin_names[] = $slug; @@ -293,15 +303,16 @@ function () use ( &$plugin_names ) { for ( $i = 1; $i <= 10; $i++ ) { $validated_key = md5( microtime() . $i ); $plugin_name = "test-plugin-{$i}"; + $plugin_names[] = $plugin_name; update_option( "pue_install_key_{$plugin_name}", $validated_key ); $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); $pue_instance->set_key_status( 0 ); // All plugins are invalid. } + return $plugin_names; }, true, 'When an Uplink license is valid, and old licenses are invalid, is_any_license_valid should return true.', - &$plugin_names, ]; } From 69a0875f733f2f95923da4cb97b3f35f943e12b2 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 12:12:15 -0500 Subject: [PATCH 027/112] Changed to make it work with the old transient. --- src/Tribe/PUE/Checker.php | 12 +++++++- tests/integration/Tribe/PUE/Checker_Test.php | 32 ++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index df55e320f0..73aa69c2de 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -270,6 +270,11 @@ protected static function has_valid_license_in_transient( ?array $transient_valu protected static function update_any_license_valid_transient( string $plugin_slug, bool $status ): void { $transient_value = get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ) ?: [ 'plugins' => [] ]; + // If the transient value is false or a string, initialize it as an empty array with the 'plugins' key. + if ( ! is_array( $transient_value ) ) { + $transient_value = [ 'plugins' => [] ]; + } + $transient_value['plugins'][ $plugin_slug ] = $status; set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $transient_value, HOUR_IN_SECONDS ); @@ -286,7 +291,12 @@ protected static function update_any_license_valid_transient( string $plugin_slu */ public static function is_any_license_valid(): bool { $transient_value = get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - $transient_value = $transient_value !== false ? $transient_value : []; + $transient_value = false !== $transient_value ? $transient_value : []; + + // If the transient value is a string, convert it to an empty array. + if ( ! is_array( $transient_value ) ) { + $transient_value = []; + } // Check if the transient has a valid license. if ( self::has_valid_license_in_transient( $transient_value ) ) { diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 85411f31f5..3c2564878b 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -222,6 +222,38 @@ function () { 'Licensing a plugin should make is_any_license_valid return valid.', ]; + yield 'license_a_plugin_old_transient_valid' => [ + function () { + $plugin_names = []; + $validated_key = md5( microtime() ); + $plugin_name = 'test-plugin-1'; + $plugin_names[] = $plugin_name; + update_option( "pue_install_key_{$plugin_name}", $validated_key ); + $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); + $pue_instance->set_key_status( 1 ); // Set valid status. + set_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); + return $plugin_names; + }, + true, + 'Licensing a plugin should make is_any_license_valid return valid.', + ]; + + yield 'invalid_license_old_transient' => [ + function () { + $plugin_names = []; + $validated_key = md5( microtime() ); + $plugin_name = 'test-plugin-1'; + $plugin_names[] = $plugin_name; + update_option( "pue_install_key_{$plugin_name}", $validated_key ); + $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); + $pue_instance->set_key_status( 0 ); // Set valid status. + set_transient( PUE_Checker::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'invalid', HOUR_IN_SECONDS ); + return $plugin_names; + }, + false, + 'Licensing a plugin should make is_any_license_valid return valid.', + ]; + yield 'transient_deleted' => [ function () use ( &$plugin_names ) { $plugin_names = []; From 763c42b4f50545f7782e202f85165f43dc3a6293 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 14:49:51 -0500 Subject: [PATCH 028/112] Renamed methods. --- src/Tribe/PUE/Checker.php | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 73aa69c2de..d5762508b6 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -251,7 +251,7 @@ public function is_key_valid() { * * @return bool True if a valid license is found, otherwise false. */ - protected static function has_valid_license_in_transient( ?array $transient_value ): bool { + protected static function transient_contains_valid_license( ?array $transient_value ): bool { if ( ! is_array( $transient_value ) || ! isset( $transient_value['plugins'] ) ) { return false; } @@ -299,7 +299,7 @@ public static function is_any_license_valid(): bool { } // Check if the transient has a valid license. - if ( self::has_valid_license_in_transient( $transient_value ) ) { + if ( self::transient_contains_valid_license( $transient_value ) ) { return true; } @@ -410,7 +410,7 @@ public function set_key_status_transient( $valid ) { /** * Install the hooks required to run periodic update checks and inject update info * into WP data structures. - * Also other hooks related to the automatic updates (such as checking agains API and what not (@from Darren) + * Also other hooks related to the automatic updates (such as checking against API and what not (@from Darren) */ public function hooks() { // Override requests for plugin information. @@ -2138,12 +2138,9 @@ public static function monitor_uplink_actions(): void { // Hook into the existing 'connected' action for the specific plugin slug. add_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected', - function ($plugin) { - //set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, 'valid', HOUR_IN_SECONDS ); + function ( $plugin ) { self::update_any_license_valid_transient( $plugin->get_slug(), true ); }, - 10, - 1 ); } } From 0a3e6f7124a1156ea7b959b72367fdf4d8bacbdd Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 9 Dec 2024 15:04:07 -0500 Subject: [PATCH 029/112] Fixed `composer.lock` for correct version of uplink. --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index b070e0ac14..426ff1c0d8 100644 --- a/composer.lock +++ b/composer.lock @@ -782,16 +782,16 @@ }, { "name": "stellarwp/uplink", - "version": "v2.2.1", + "version": "v2.2.2", "source": { "type": "git", "url": "https://github.com/stellarwp/uplink.git", - "reference": "57eb6264994662cb8da368cc3a9227ec716edc70" + "reference": "5bc1f115efe629dd4244bff08809aea45ed9d8f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stellarwp/uplink/zipball/57eb6264994662cb8da368cc3a9227ec716edc70", - "reference": "57eb6264994662cb8da368cc3a9227ec716edc70", + "url": "https://api.github.com/repos/stellarwp/uplink/zipball/5bc1f115efe629dd4244bff08809aea45ed9d8f1", + "reference": "5bc1f115efe629dd4244bff08809aea45ed9d8f1", "shasum": "" }, "require": { @@ -843,9 +843,9 @@ "description": "A library that integrates a WordPress product with the StellarWP Licensing system.", "support": { "issues": "https://github.com/stellarwp/uplink/issues", - "source": "https://github.com/stellarwp/uplink/tree/v2.2.1" + "source": "https://github.com/stellarwp/uplink/tree/v2.2.2" }, - "time": "2024-09-30T22:46:40+00:00" + "time": "2024-12-05T19:13:16+00:00" } ], "packages-dev": [ From 2c94ebb33cfddb1249c2f794019d0ae9cf84b3bf Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Tue, 10 Dec 2024 08:48:25 -0500 Subject: [PATCH 030/112] Updated docblock for `monitor_uplink_actions`. --- src/Tribe/PUE/Checker.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index d5762508b6..632efdedac 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -2127,12 +2127,14 @@ public function is_valid_key_format() { } /** - * Monitors Uplink and hooks into the plugin connected action. + * Hooks into the Uplink plugin's 'connected' action for the current plugin. * - * This method loops through the registered Uplink plugins and hooks into the - * 'stellarwp/uplink/{slug}/connected' action for each plugin resource. + * This method registers a callback for the 'stellarwp/uplink/{slug}/connected' action. + * When the action is triggered, it updates the license validity transient for the plugin. * * @since TBD + * + * @return void */ public static function monitor_uplink_actions(): void { // Hook into the existing 'connected' action for the specific plugin slug. From e51b9d4884431d2cb4bf3db9449a85eb2de8a506 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Tue, 10 Dec 2024 08:48:43 -0500 Subject: [PATCH 031/112] Removed `test_replacemnt_key_update_in_multisite_context` since no test existed. --- tests/integration/Tribe/PUE/Checker_Test.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 3c2564878b..3466d2cb17 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -146,8 +146,6 @@ public function it_should_check_uplink_before_pue() { $this->assertEquals( $key, $pue_instance->get_key() ); } - public function test_replacemnt_key_update_in_multisite_context(): void {} - /** * It should validate licenses correctly across various scenarios. * From 6a25c11802b4281413d697387df54a661b3923c7 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 19 Dec 2024 09:36:08 -0500 Subject: [PATCH 032/112] Added new logic to see if a new plugin has been installed, if yes delete the caching transient to recreate it. --- src/Tribe/PUE/Checker.php | 49 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index d6d2668045..f7f52a4d86 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -222,10 +222,35 @@ public function __construct( $pue_update_url, $slug = '', $options = [], $plugin $this->set_options( $options ); $this->hooks(); $this->set_key_status_name(); + $this->init( $slug ); // So we can reference our "registered" instances later. self::$instances[ $slug ] ??= $this; } + /** + * Initializes the PUE checker and fires the appropriate action if not already initialized. + * + * This method ensures that the `tec_pue_checker_init` action is fired only once per unique slug. + * + * @since TBD + * + * @param string $slug The unique slug for the plugin being initialized. + */ + public function init( $slug ) { + if ( isset( self::$instances[ $slug ] ) ) { + return; + } + + /** + * Fires when initializing the PUE checker. + * + * @since TBD + * + * @param Tribe__PUE__Checker $checker An instance of the PUE Checker being initialized. + */ + do_action( 'tec_pue_checker_init', $this ); + } + /** * Gets whether the license key is valid or not. * @@ -447,6 +472,7 @@ public function hooks() { add_filter( 'upgrader_pre_download', [ Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ], 5, 3 ); add_action( 'admin_init', [ $this, 'monitor_uplink_actions' ], 1000 ); + add_action( 'tec_pue_checker_init', [ __CLASS__, 'monitor_active_plugins' ] ); } @@ -2158,5 +2184,28 @@ function ( $plugin ) { }, ); } + + /** + * Monitor active plugins and validate the transient for the given slug. + * + * @param Tribe__PUE__Checker $checker An instance of the PUE Checker. + */ + public static function monitor_active_plugins( Tribe__PUE__Checker $checker ) { + $slug = $checker->get_slug(); + + if ( empty( $slug ) ) { + return; + } + + $transient_data = get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + + $plugins = $transient_data['plugins'] ?? null; + + if ( ! is_array( $plugins ) || array_key_exists( $slug, $plugins ) ) { + return; + } + + delete_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + } } } From 10420bcda85215a74fd5848bca4d749f4290734a Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 19 Dec 2024 09:46:12 -0500 Subject: [PATCH 033/112] Fixing bad merge. --- tests/integration/Tribe/PUE/Checker_Test.php | 125 ------------------- 1 file changed, 125 deletions(-) diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 02846393eb..4a9e6bd644 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -601,129 +601,4 @@ function () { 'A transient marked invalid should return false.', ]; } - - /** - * Mock we're inside the wp-admin dashboard and fire off the admin_init hook. - * - * @param bool $network Whether we're in the network dashboard. - * - * @return void - */ - protected function admin_init( bool $network = false ): void { - $screen = WP_Screen::get( $network ? 'dashboard-network' : 'dashboard' ); - $GLOBALS['current_screen'] = $screen; - - if ( $network ) { - $this->assertTrue( $screen->in_admin( 'network' ) ); - } - - $this->assertTrue( $screen->in_admin() ); - - // Fire off admin_init to run any of our events hooked into this action. - do_action( 'admin_init' ); - } - - /** - * Helper to register a new plugin for Uplink testing. - * - * @param string $slug The slug of the plugin. - * @param string $name The name of the plugin. - * @param string $version The version of the plugin. - * - * @return Resource - */ - private function register_new_uplink_plugin( string $slug, string $name = 'Sample Plugin', string $version = '1.0.10' ): Resource { - return Register::plugin( - $slug, - $name, - $version, - __DIR__, - tribe( Tribe__Main::class ) - ); - } - - /** - * Creates a valid Uplink license for testing. - * - * @param string $slug The slug of the plugin to create a license for. - * - * @return string The generated token for the Uplink license. - */ - private function create_valid_uplink_license( string $slug ): string { - $plugin = $this->register_new_uplink_plugin( $slug ); - - // Set the current user to an admin. - wp_set_current_user( 1 ); - - // Initialize the token manager. - $this->token_manager = tribe( Token_Manager::class ); - - // Ensure no token exists for the plugin initially. - $this->assertNull( $this->token_manager->get( $plugin ) ); - - // Generate a nonce and a token. - $nonce = ( tribe( Nonce::class ) )->create(); - $token = '53ca40ab-c6c7-4482-a1eb-14c56da31015'; - - // Mock these were passed via the query string. - global $_GET; - $_GET[ Connect_Controller::TOKEN ] = $token; - $_GET[ Connect_Controller::NONCE ] = $nonce; - $_GET[ Connect_Controller::SLUG ] = $slug; - - // Mock we're an admin inside the dashboard. - $this->admin_init(); - - // Fire off the specification action tied to this slug. - do_action( tribe( Action_Manager::class )->get_hook_name( $slug ) ); - - // Verify that the token was assigned correctly. - $this->assertSame( $token, $this->token_manager->get( $plugin ) ); - - // Verify that the general 'connected' action fires. - $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/connected' ) ,'Hook should only run once'); - - return $token; - } - - /** - * Helper to disconnect an Uplink plugin. - * - * @param string $slug The slug of the plugin to disconnect. - */ - private function disconnect_uplink_plugin( string $slug ): void { - $plugin = get_resource( $slug ); - if ( empty( $plugin ) ) { - return; - } - - if ( empty( $this->token_manager ) ) { - return; - } - - global $_GET; - wp_set_current_user( 1 ); - - $token = $this->token_manager->get( $plugin ); - $this->assertNotNull( $token ); - - // Mock these were passed via the query string. - $_GET[ Disconnect_Controller::ARG ] = 1; - $_GET[ Disconnect_Controller::CACHE_KEY ] = 'nada'; - $_GET[ Disconnect_Controller::SLUG ] = $slug; - $_GET['_wpnonce'] = wp_create_nonce( Disconnect_Controller::ARG ); - - // Mock we're an admin inside the dashboard. - $this->admin_init(); - - // Fire off the specification action tied to this slug. - do_action( tribe( Action_Manager::class )->get_hook_name( $slug ) ); - - // Assert that the token is removed. - $this->assertNull( $this->token_manager->get( $plugin ) ); - - // Verify that the disconnected action fires. - $this->assertEquals( 1, did_action( 'stellarwp/uplink/' . Config::get_hook_prefix() . '/disconnected' ) ); - } - } From 47e3cb4cb9a3721254b1838461b15af16db860c2 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Thu, 19 Dec 2024 14:07:01 +0200 Subject: [PATCH 034/112] Update wp core in CI --- .github/workflows/tests-php-eva.yml | 3 ++- .github/workflows/tests-php.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index 5c4cd2d917..bb3f60c46f 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -355,8 +355,9 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.4.1 + ${SLIC_BIN} wp core update ${SLIC_BIN} wp core version + ${SLIC_BIN} wp core update-db - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 465829b4ae..765692b907 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,8 +178,9 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.4.1 + ${SLIC_BIN} wp core update ${SLIC_BIN} wp core version + ${SLIC_BIN} wp core update-db - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} From 6740a09bfc1c78004a930a5df40984b21ec53e54 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Thu, 19 Dec 2024 14:12:35 +0200 Subject: [PATCH 035/112] another try to update wp core to latest --- .github/workflows/tests-php-eva.yml | 2 ++ .github/workflows/tests-php.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index bb3f60c46f..a6b502c4f2 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -355,9 +355,11 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version + ${SLIC_BIN} airplane-mode off ${SLIC_BIN} wp core update ${SLIC_BIN} wp core version ${SLIC_BIN} wp core update-db + ${SLIC_BIN} airplane-mode on - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 765692b907..485af04999 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,9 +178,11 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version + ${SLIC_BIN} airplane-mode off ${SLIC_BIN} wp core update ${SLIC_BIN} wp core version ${SLIC_BIN} wp core update-db + ${SLIC_BIN} airplane-mode on - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} From 64b23bafd7fe42d7e7355344938859e2d34252d0 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Thu, 19 Dec 2024 14:18:43 +0200 Subject: [PATCH 036/112] specify latest version --- .github/workflows/tests-php-eva.yml | 4 +--- .github/workflows/tests-php.yml | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index a6b502c4f2..28f7efc1ae 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -355,11 +355,9 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} airplane-mode off - ${SLIC_BIN} wp core update + ${SLIC_BIN} wp core update --force --version=6.7.1 ${SLIC_BIN} wp core version ${SLIC_BIN} wp core update-db - ${SLIC_BIN} airplane-mode on - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 485af04999..3e0072c826 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,11 +178,9 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} airplane-mode off - ${SLIC_BIN} wp core update + ${SLIC_BIN} wp core update --force --version=6.7.1 ${SLIC_BIN} wp core version ${SLIC_BIN} wp core update-db - ${SLIC_BIN} airplane-mode on - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} From 4471180e9d36d6219f330c4964174c82b61f9797 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Thu, 19 Dec 2024 14:24:53 +0200 Subject: [PATCH 037/112] downgrade to 6.6.1 --- .github/workflows/tests-php-eva.yml | 2 +- .github/workflows/tests-php.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index 28f7efc1ae..91add0b7ca 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -355,7 +355,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.7.1 + ${SLIC_BIN} wp core update --force --version=6.6.1 ${SLIC_BIN} wp core version ${SLIC_BIN} wp core update-db - name: Run suite tests diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 3e0072c826..131f80203f 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,7 +178,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.7.1 + ${SLIC_BIN} wp core update --force --version=6.6.1 ${SLIC_BIN} wp core version ${SLIC_BIN} wp core update-db - name: Run suite tests From 37a14545788bb86a264f0e3a4b298c76c2de857a Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Thu, 19 Dec 2024 14:31:31 +0200 Subject: [PATCH 038/112] Update dump for activation suite --- tests/_data/empty.sql | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/_data/empty.sql b/tests/_data/empty.sql index 0712298556..f5773d7a4e 100644 --- a/tests/_data/empty.sql +++ b/tests/_data/empty.sql @@ -1,4 +1,5 @@ --- MariaDB dump 10.19 Distrib 10.5.23-MariaDB, for debian-linux-gnu (x86_64) +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.5.26-MariaDB, for debian-linux-gnu (aarch64) -- -- Host: db Database: test -- ------------------------------------------------------ @@ -1035,7 +1036,7 @@ CREATE TABLE `wp_options` ( PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=234 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=236 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1044,7 +1045,7 @@ CREATE TABLE `wp_options` ( LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; -INSERT INTO `wp_options` VALUES (1,'siteurl','http://wordpress.test','yes'),(2,'home','http://wordpress.test','yes'),(3,'blogname','tribe','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','dev-email@flywheel.local','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','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(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','twentynineteen','yes'),(41,'stylesheet','twentynineteen','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','56657','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','0','yes'),(92,'show_comments_cookies_opt_in','0','yes'),(93,'initial_db_version','43764','yes'),(94,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:71:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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'),(95,'fresh_site','1','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'nonce_key','cUt`#XO9(ILxCXqfajr1eWn1D?Bt c_`_`Z)&Mc,GtB@s)R.z0{6cH9eAX~z|&lH','no'),(109,'nonce_salt','aO8e;;h]BHqZ#/Nl.9ono5S}r~@falSDm:lJ)UI6%gwL.s20[+2$HmbUUY},wTH{','no'),(110,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'cron','a:9:{i:1717144359;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:1717158759;a:3:{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:1717166716;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:1717166901;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717174192;a:1:{s:21:\"tribe-recurrence-cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717175640;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717175794;a:1:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717262040;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(114,'theme_mods_twentynineteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(141,'recently_activated','a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";i:1648813540;s:34:\"events-pro/events-calendar-pro.php\";i:1547485439;}','yes'),(144,'tribe_events_calendar_options','a:10:{s:14:\"schema-version\";s:3:\"3.9\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:3:{i:0;s:1:\"0\";i:1;s:3:\"4.8\";i:2;s:5:\"5.5.0\";}s:18:\"latest_ecp_version\";s:6:\"5.14.1\";s:39:\"last-update-message-the-events-calendar\";s:5:\"4.7.3\";s:16:\"tribeEnableViews\";a:6:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";i:3;s:5:\"photo\";i:4;s:3:\"map\";i:5;s:4:\"week\";}s:18:\"pro-schema-version\";s:3:\"3.9\";s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:10:\"viewOption\";s:4:\"list\";}','yes'),(145,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(146,'tribe_last_save_post','1648813540.9972','yes'),(162,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"dev-email@flywheel.local\";s:7:\"version\";s:5:\"5.0.3\";s:9:\"timestamp\";i:1547484249;}','no'),(184,'widget_tribe-events-adv-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(185,'widget_tribe-events-countdown-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(186,'widget_tribe-mini-calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(187,'widget_tribe-events-venue-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(188,'widget_tribe-this-week-events-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(191,'admin_email_lifespan','0','yes'),(192,'disallowed_keys','','no'),(193,'comment_previously_approved','1','yes'),(194,'auto_plugin_theme_update_emails','a:0:{}','no'),(195,'finished_updating_comment_type','1','yes'),(196,'db_upgraded','1','yes'),(200,'tribe_last_updated_option','1648813540.997','yes'),(203,'tribe_last_generate_rewrite_rules','1648813521.3266','yes'),(207,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1615569401;s:7:\"checked\";a:3:{s:14:\"twentynineteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"2.4\";s:12:\"twentytwenty\";s:3:\"1.5\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.0.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.6.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.7.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(208,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1648813521;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:6:\"5.14.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}}s:7:\"checked\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:6:\"5.14.1\";s:27:\"tec-common/tribe-common.php\";s:7:\"4.14.16\";}}','no'),(209,'recovery_keys','a:0:{}','yes'),(212,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(218,'active_plugins','a:0:{}','yes'),(223,'rewrite_rules','a:93:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(224,'auto_update_core_dev','enabled','yes'),(225,'auto_update_core_minor','enabled','yes'),(226,'auto_update_core_major','unset','yes'),(227,'wp_force_deactivated_plugins','a:0:{}','yes'),(228,'user_count','1','no'),(229,'_site_transient_timeout_theme_roots','1717145856','no'),(230,'_site_transient_theme_roots','a:5:{s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(231,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(232,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":4}','yes'),(233,'wp_attachment_pages_enabled','1','yes'); +INSERT INTO `wp_options` VALUES (1,'siteurl','http://wordpress.test','yes'),(2,'home','http://wordpress.test','yes'),(3,'blogname','tribe','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','dev-email@flywheel.local','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','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(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','twentynineteen','yes'),(41,'stylesheet','twentynineteen','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','57155','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','0','yes'),(92,'show_comments_cookies_opt_in','0','yes'),(93,'initial_db_version','43764','yes'),(94,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:71:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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'),(95,'fresh_site','1','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'nonce_key','cUt`#XO9(ILxCXqfajr1eWn1D?Bt c_`_`Z)&Mc,GtB@s)R.z0{6cH9eAX~z|&lH','no'),(109,'nonce_salt','aO8e;;h]BHqZ#/Nl.9ono5S}r~@falSDm:lJ)UI6%gwL.s20[+2$HmbUUY},wTH{','no'),(110,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'cron','a:9:{i:1717144359;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:1717158759;a:3:{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:1717166716;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:1717166901;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717174192;a:1:{s:21:\"tribe-recurrence-cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717175640;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717175794;a:1:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717262040;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(114,'theme_mods_twentynineteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(141,'recently_activated','a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";i:1648813540;s:34:\"events-pro/events-calendar-pro.php\";i:1547485439;}','yes'),(144,'tribe_events_calendar_options','a:10:{s:14:\"schema-version\";s:3:\"3.9\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:3:{i:0;s:1:\"0\";i:1;s:3:\"4.8\";i:2;s:5:\"5.5.0\";}s:18:\"latest_ecp_version\";s:6:\"5.14.1\";s:39:\"last-update-message-the-events-calendar\";s:5:\"4.7.3\";s:16:\"tribeEnableViews\";a:6:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";i:3;s:5:\"photo\";i:4;s:3:\"map\";i:5;s:4:\"week\";}s:18:\"pro-schema-version\";s:3:\"3.9\";s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:10:\"viewOption\";s:4:\"list\";}','yes'),(145,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(146,'tribe_last_save_post','1648813540.9972','yes'),(162,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"dev-email@flywheel.local\";s:7:\"version\";s:5:\"5.0.3\";s:9:\"timestamp\";i:1547484249;}','no'),(184,'widget_tribe-events-adv-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(185,'widget_tribe-events-countdown-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(186,'widget_tribe-mini-calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(187,'widget_tribe-events-venue-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(188,'widget_tribe-this-week-events-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(191,'admin_email_lifespan','0','yes'),(192,'disallowed_keys','','no'),(193,'comment_previously_approved','1','yes'),(194,'auto_plugin_theme_update_emails','a:0:{}','no'),(195,'finished_updating_comment_type','1','yes'),(196,'db_upgraded','1','yes'),(200,'tribe_last_updated_option','1648813540.997','yes'),(203,'tribe_last_generate_rewrite_rules','1648813521.3266','yes'),(207,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1615569401;s:7:\"checked\";a:3:{s:14:\"twentynineteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"2.4\";s:12:\"twentytwenty\";s:3:\"1.5\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.0.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.6.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.7.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(208,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1648813521;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:6:\"5.14.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}}s:7:\"checked\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:6:\"5.14.1\";s:27:\"tec-common/tribe-common.php\";s:7:\"4.14.16\";}}','no'),(209,'recovery_keys','a:0:{}','yes'),(212,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(218,'active_plugins','a:0:{}','yes'),(223,'rewrite_rules','a:93:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(224,'auto_update_core_dev','enabled','yes'),(225,'auto_update_core_minor','enabled','yes'),(226,'auto_update_core_major','unset','yes'),(227,'wp_force_deactivated_plugins','a:0:{}','yes'),(228,'user_count','1','no'),(231,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(232,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":4}','yes'),(233,'wp_attachment_pages_enabled','1','yes'),(234,'_site_transient_timeout_wp_theme_files_patterns-e55c14a1e2f47ed67763d5f4c5692bdb','1734613261','off'),(235,'_site_transient_wp_theme_files_patterns-e55c14a1e2f47ed67763d5f4c5692bdb','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; @@ -2425,4 +2426,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-07-16 19:42:26 +-- Dump completed on 2024-12-19 12:31:10 From ae9b244560af8e500f978a79f3364721889b46c3 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Thu, 19 Dec 2024 14:49:51 +0200 Subject: [PATCH 039/112] Fix failing tests --- tests/wpunit/Tribe/CacheTest.php | 4 ++-- tests/wpunit/Tribe/Process/QueueTest.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/wpunit/Tribe/CacheTest.php b/tests/wpunit/Tribe/CacheTest.php index b705c7cf2b..18785634bb 100644 --- a/tests/wpunit/Tribe/CacheTest.php +++ b/tests/wpunit/Tribe/CacheTest.php @@ -109,8 +109,8 @@ public function it_should_allow_setting_many_different_values_using_array_access foreach ( $key_values as $key => $value ) { // Attempt to add a longer cache key to trigger the md5() cache key logic. - $key .= __METHOD__ . '-' . $key; - $expected[ substr( $key, 0, 6 ) . '... => ' . $value ] = [ $key, $value ]; + $key .= __METHOD__ . '-' . $key; + $expected[ substr( $key, 0, 6 ) . '... => ' . var_export( $value, true ) ] = [ $key, $value ]; } // Generate long keys with variety of values. diff --git a/tests/wpunit/Tribe/Process/QueueTest.php b/tests/wpunit/Tribe/Process/QueueTest.php index 185a74b9e6..ce73e3a670 100644 --- a/tests/wpunit/Tribe/Process/QueueTest.php +++ b/tests/wpunit/Tribe/Process/QueueTest.php @@ -156,7 +156,7 @@ public function should_fragment_the_data_if_bigger_than_the_max_allowed_packet() global $wpdb; $query = $wpdb->prepare( - "SELECT option_id FROM {$wpdb->options} WHERE option_name LIKE %s AND autoload = 'no'", + "SELECT option_id FROM {$wpdb->options} WHERE option_name LIKE %s AND autoload = 'off'", $wpdb->esc_like($queue_id) . '%' ); $this->assertCount( 4, $wpdb->get_col( $query ) ); From ab4cc99ee8206242c6e0b8ca90a032c4b8c362b5 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Thu, 19 Dec 2024 14:55:13 +0200 Subject: [PATCH 040/112] fix end2end suite --- tests/_data/dump.sql | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/_data/dump.sql b/tests/_data/dump.sql index d102f2332b..9db6620acf 100644 --- a/tests/_data/dump.sql +++ b/tests/_data/dump.sql @@ -1,4 +1,5 @@ --- MariaDB dump 10.19 Distrib 10.5.23-MariaDB, for debian-linux-gnu (aarch64) +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.5.26-MariaDB, for debian-linux-gnu (aarch64) -- -- Host: db Database: test -- ------------------------------------------------------ @@ -1036,7 +1037,7 @@ CREATE TABLE `wp_options` ( PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=491 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=494 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1045,7 +1046,7 @@ CREATE TABLE `wp_options` ( LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; -INSERT INTO `wp_options` VALUES (2,'siteurl','http://wordpress.test','yes'),(3,'home','http://wordpress.test','yes'),(4,'blogname','Event Automator','yes'),(5,'blogdescription','','yes'),(6,'users_can_register','0','yes'),(7,'admin_email','you@example.com','yes'),(8,'start_of_week','1','yes'),(9,'use_balanceTags','0','yes'),(10,'use_smilies','1','yes'),(11,'require_name_email','1','yes'),(12,'comments_notify','1','yes'),(13,'posts_per_rss','10','yes'),(14,'rss_use_excerpt','0','yes'),(15,'mailserver_url','mail.example.com','yes'),(16,'mailserver_login','login@example.com','yes'),(17,'mailserver_pass','password','yes'),(18,'mailserver_port','110','yes'),(19,'default_category','1','yes'),(20,'default_comment_status','open','yes'),(21,'default_ping_status','open','yes'),(22,'default_pingback_flag','1','yes'),(23,'posts_per_page','10','yes'),(24,'date_format','F j, Y','yes'),(25,'time_format','g:i a','yes'),(26,'links_updated_date_format','F j, Y g:i a','yes'),(27,'comment_moderation','0','yes'),(28,'moderation_notify','1','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','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','twentytwentythree','yes'),(41,'stylesheet','twentytwentythree','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','56657','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:1:{s:35:\"event-automator/event-automator.php\";s:23:\"tec_automator_uninstall\";}','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'),(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:71:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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','1','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:12:{i:1697535086;a:1:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697535087;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697535092;a:5:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1697535625;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1697535626;a:1:{s:46:\"tec_tickets_update_glance_item_attendee_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1697535627;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:1697535685;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1697621486;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697621492;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1701174401;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1727437998;a:1:{s:21:\"tribe-recurrence-cron\";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,'tribe_last_updated_option','1727438041.2444','yes'),(107,'nonce_key','hMwU.4q>Tjyt##0W@,*#U0~RFLy`y)]akRY,a/iPhH.| mBStiq*5(*SH[IejO!L','no'),(108,'nonce_salt','ElWxp&9bPhFm;%kaVuDoxn:MYR)nC6O:e&~?9GAWPA>f,B t LXkV=NgKh-F`oM~','no'),(109,'tribe_events_calendar_options','a:23:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:25:\"ticket-enabled-post-types\";a:2:{i:0;s:12:\"tribe_events\";i:1;s:4:\"page\";}s:14:\"schema-version\";s:6:\"5.16.0\";s:28:\"event-tickets-schema-version\";s:6:\"5.13.4\";s:21:\"previous_ecp_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"6.2.2\";i:2;s:7:\"6.2.3.2\";i:3;s:7:\"6.2.8.1\";i:4;s:5:\"6.3.1\";i:5;s:7:\"6.6.4.2\";}s:18:\"latest_ecp_version\";s:5:\"6.7.0\";s:31:\"previous_event_tickets_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"5.6.5\";i:2;s:7:\"5.6.6.1\";i:3;s:5:\"5.7.0\";i:4;s:5:\"5.8.0\";i:5;s:8:\"5.13.3.1\";}s:28:\"latest_event_tickets_version\";s:6:\"5.13.4\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:60;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:30:\"event-automator-schema-version\";s:5:\"1.7.0\";s:13:\"opt-in-status\";b:0;s:39:\"last-update-message-the-events-calendar\";s:5:\"6.7.0\";s:18:\"pro-schema-version\";s:5:\"7.1.0\";s:29:\"events-virtual-schema-version\";s:6:\"1.15.8\";s:26:\"flexible_tickets_activated\";b:1;s:36:\"previous_event_tickets_plus_versions\";a:1:{i:0;s:1:\"0\";}s:33:\"latest_event_tickets_plus_version\";s:5:\"6.0.4\";s:33:\"event-tickets-plus-schema-version\";s:5:\"6.0.4\";}','yes'),(110,'schema-ActionScheduler_StoreSchema','7.0.1697535092','yes'),(111,'schema-ActionScheduler_LoggerSchema','3.0.1697535092','yes'),(114,'tribe_last_save_post','1727438041.2446','yes'),(115,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(125,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(126,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(127,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727524326;}','yes'),(131,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','yes'),(132,'tec_ct1_events_table_schema_version','1.0.1','yes'),(133,'tec_ct1_occurrences_table_schema_version','1.0.2','yes'),(134,'stellarwp_telemetry_last_send','','yes'),(135,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:3:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}s:13:\"event-tickets\";a:2:{s:7:\"wp_slug\";s:31:\"event-tickets/event-tickets.php\";s:5:\"optin\";b:0;}s:19:\"events-calendar-pro\";a:2:{s:7:\"wp_slug\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"optin\";b:0;}}}','yes'),(136,'stellarwp_telemetry_the-events-calendar_show_optin','0','yes'),(139,'tribe_last_generate_rewrite_rules','1697535093.6692','yes'),(190,'stellarwp_telemetry_event-tickets_show_optin','0','yes'),(192,'action_scheduler_lock_async-request-runner','66f69ca6a79ba9.98696118|1727438050','yes'),(193,'theme_mods_twentytwentythree','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(194,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:0:{}s:15:\"version_checked\";s:5:\"6.4.1\";s:12:\"last_checked\";i:1727437925;}','no'),(198,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727437925;s:7:\"checked\";a:4:{s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"2.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(211,'tec_timed_tribe_supports_async_process','','yes'),(225,'tec_timed_events_timezone_update_needed','a:3:{s:3:\"key\";s:29:\"events_timezone_update_needed\";s:5:\"value\";b:0;s:10:\"expiration\";i:1727524328;}','yes'),(229,'recently_activated','a:4:{s:34:\"events-pro/events-calendar-pro.php\";i:1727438043;s:43:\"the-events-calendar/the-events-calendar.php\";i:1727438041;s:31:\"event-tickets/event-tickets.php\";i:1727437980;s:41:\"event-tickets-plus/event-tickets-plus.php\";i:1727437980;}','yes'),(243,'tribe_feature_support_check_lock','1','yes'),(249,'pue_install_key_event_automator','5f53261eb16f7ddf4fe24b69918c8804c82ea817','yes'),(252,'tec_automator_zapier_secret_key','367c29c0d738e48eaf47a9d7095c4768194a4b69380f76d21a352f60523f58a9e28935457ad293a980aab00a09d4411ab749e8734b788b1c50ff99efa709e3cc7daff0ba3828e2777f1a2a2e4c56346ed9c5ab55b3e20f559a9b6d6b1a47565d75182c17ce62df7d6be8a6e3856d5edba8ab4d4354ce565bd8506afecafa9da4','yes'),(253,'tec_automator_power_automate_secret_key','35bfd05098069168616a1929f965a740cc86560622f12b2876bd277ab61047cabb42f84246ba5c852e6fce68783b2087739d0d894a8f67b089faf1cb12ff98dfc8f8e407bc041418481c9372b07b118bbd5faf59485f27a219d696d613782489376e4e27de90e0f9372f67b3b1a954044d5795756796c9353e322efe284f17b8','yes'),(265,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.1\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(270,'permalink_structure','','yes'),(272,'wp_attachment_pages_enabled','1','yes'),(273,'db_upgraded','','yes'),(337,'wpdg_specific_version_name','6.2.3','yes'),(338,'wpdg_download_url','','yes'),(339,'wpdg_edit_download_url','','yes'),(342,'core_updater.lock','1701272344','no'),(401,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727438043;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:33:\"coupon-creator/coupon_creator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/coupon-creator\";s:4:\"slug\";s:14:\"coupon-creator\";s:6:\"plugin\";s:33:\"coupon-creator/coupon_creator.php\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/coupon-creator/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/coupon-creator.3.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";s:3:\"svg\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/coupon-creator/assets/banner-1544x500.png?rev=2688941\";s:2:\"1x\";s:69:\"https://ps.w.org/coupon-creator/assets/banner-772x250.png?rev=2688941\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:5:\"3.2.6\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:5:\"5.8.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/event-tickets.5.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.3.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.2.0\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.5.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:29:\"wp-downgrade/wp-downgrade.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-downgrade\";s:4:\"slug\";s:12:\"wp-downgrade\";s:6:\"plugin\";s:29:\"wp-downgrade/wp-downgrade.php\";s:11:\"new_version\";s:5:\"1.2.6\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-downgrade/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-downgrade.1.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-downgrade/assets/icon-256x256.png?rev=1412844\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-downgrade/assets/icon-128x128.png?rev=1412844\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:27:\"wp-rollback/wp-rollback.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-rollback\";s:4:\"slug\";s:11:\"wp-rollback\";s:6:\"plugin\";s:27:\"wp-rollback/wp-rollback.php\";s:11:\"new_version\";s:5:\"2.0.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-rollback/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-rollback.2.0.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-256x256.jpg?rev=3014868\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-128x128.jpg?rev=3014868\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-rollback/assets/banner-1544x500.jpg?rev=3014868\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-rollback/assets/banner-772x250.jpg?rev=3014872\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:18:{s:33:\"ai-development/ai-development.php\";s:5:\"0.1.0\";s:33:\"coupon-creator/coupon_creator.php\";s:5:\"3.3.0\";s:49:\"coupon-creator-add-ons/coupon-creator-add-ons.php\";s:5:\"3.3.0\";s:41:\"coupon-creator-pro/coupon-creator-pro.php\";s:5:\"3.3.0\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:5:\"3.2.6\";s:49:\"event-schedule-manager/event-schedule-manager.php\";s:5:\"1.1.0\";s:31:\"event-tickets/event-tickets.php\";s:5:\"5.8.0\";s:41:\"event-tickets-plus/event-tickets-plus.php\";s:5:\"5.9.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.0\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"6.3.1\";s:35:\"event-automator/event-automator.php\";s:5:\"1.6.0\";s:33:\"events-virtual/events-virtual.php\";s:6:\"1.15.5\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"6.3.1\";s:29:\"volt-vectors/volt-vectors.php\";s:5:\"0.1.0\";s:37:\"volt-vectors-pro/volt-vectors-pro.php\";s:5:\"0.1.0\";s:27:\"woocommerce/woocommerce.php\";s:5:\"8.2.2\";s:29:\"wp-downgrade/wp-downgrade.php\";s:5:\"1.2.6\";s:27:\"wp-rollback/wp-rollback.php\";s:5:\"2.0.6\";}}','no'),(411,'can_compress_scripts','0','yes'),(419,'widget_tribe-widget-event-countdown','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(420,'widget_tribe-widget-featured-venue','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(421,'widget_tribe-widget-events-month','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(422,'widget_tribe-widget-events-week','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(423,'tec_ct1_series_relationship_table_schema_version','1.0.0','yes'),(424,'tec_ct1_events_field_schema_version','1.0.1','yes'),(425,'tec_ct1_occurrences_field_schema_version','1.0.1','yes'),(428,'tec_timed_tec_custom_tables_v1_ecp_initialized','a:3:{s:3:\"key\";s:36:\"tec_custom_tables_v1_ecp_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727524326;}','yes'),(429,'_transient_timeout_tribe_events_series_flush_rewrite','1729779605','no'),(430,'_transient_tribe_events_series_flush_rewrite','1','no'),(431,'stellarwp_telemetry_events-calendar-pro_show_optin','0','yes'),(436,'external_updates-events-calendar-pro','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727438041;s:14:\"checkedVersion\";s:5:\"7.1.0\";s:6:\"update\";N;}','no'),(437,'tribe_pue_key_notices','a:0:{}','yes'),(443,'_transient_timeout__tribe_tickets_activation_redirect','1727437958','no'),(444,'_transient__tribe_tickets_activation_redirect','1','no'),(445,'_transient_tec_tickets_commerce_setup_stripe_webhook','1','yes'),(456,'tec_timed_events_is_rest_api_blocked','a:3:{s:3:\"key\";s:26:\"events_is_rest_api_blocked\";s:5:\"value\";s:59:\"http://localhost:8888/index.php?rest_route=/tribe/events/v1\";s:10:\"expiration\";i:1727610770;}','yes'),(459,'_site_transient_timeout_theme_roots','1727439725','no'),(460,'_site_transient_theme_roots','a:1:{s:16:\"twentytwentyfour\";s:7:\"/themes\";}','no'),(461,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1727481125','no'),(462,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','

RSS Error: WP HTTP Error: User has blocked requests through HTTP.

RSS Error: WP HTTP Error: User has blocked requests through HTTP.

','no'),(468,'_transient_timeout_as-post-store-dependencies-met','1727524326','no'),(469,'_transient_as-post-store-dependencies-met','yes','no'),(471,'_transient_timeout_tribe_aggregator_services_list','1727524326','no'),(472,'_transient_tribe_aggregator_services_list','a:1:{s:6:\"origin\";a:1:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";s:3:\"csv\";s:4:\"name\";s:8:\"CSV File\";}}}','no'),(474,'_transient_timeout_action_scheduler_last_pastdue_actions_check','1727459527','no'),(475,'_transient_action_scheduler_last_pastdue_actions_check','1727437927','no'),(476,'stellar_schema_version_tec-ft-ticket-groups','1.0.0','yes'),(477,'stellar_schema_version_tec-ft-posts-and-ticket-groups','1.0.0','yes'),(480,'external_updates-event-tickets-plus','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727437980;s:14:\"checkedVersion\";s:5:\"6.0.4\";s:6:\"update\";N;}','no'),(481,'admin_email_lifespan','1742989968','yes'),(489,'_transient_timeout__tribe_admin_notices','1730029998','no'),(490,'_transient__tribe_admin_notices','a:1:{s:44:\"updated-to-merge-version-consolidated-notice\";a:3:{i:0;s:205:\"

Thanks for upgrading The Events Calendar Pro to 7.1.0 now with even more value! Learn more about the latest changes here.

\";i:1;a:5:{s:4:\"type\";s:7:\"success\";s:7:\"dismiss\";b:1;s:6:\"action\";s:13:\"admin_notices\";s:8:\"priority\";i:1;s:15:\"active_callback\";s:80:\"TEC\\Common\\Integrations\\Plugin_Merge_Provider_Abstract::should_show_merge_notice\";}i:2;i:1758973998;}}','no'); +INSERT INTO `wp_options` VALUES (2,'siteurl','http://wordpress.test','yes'),(3,'home','http://wordpress.test','yes'),(4,'blogname','Event Automator','yes'),(5,'blogdescription','','yes'),(6,'users_can_register','0','yes'),(7,'admin_email','you@example.com','yes'),(8,'start_of_week','1','yes'),(9,'use_balanceTags','0','yes'),(10,'use_smilies','1','yes'),(11,'require_name_email','1','yes'),(12,'comments_notify','1','yes'),(13,'posts_per_rss','10','yes'),(14,'rss_use_excerpt','0','yes'),(15,'mailserver_url','mail.example.com','yes'),(16,'mailserver_login','login@example.com','yes'),(17,'mailserver_pass','password','yes'),(18,'mailserver_port','110','yes'),(19,'default_category','1','yes'),(20,'default_comment_status','open','yes'),(21,'default_ping_status','open','yes'),(22,'default_pingback_flag','1','yes'),(23,'posts_per_page','10','yes'),(24,'date_format','F j, Y','yes'),(25,'time_format','g:i a','yes'),(26,'links_updated_date_format','F j, Y g:i a','yes'),(27,'comment_moderation','0','yes'),(28,'moderation_notify','1','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','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','twentytwentythree','yes'),(41,'stylesheet','twentytwentythree','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','57155','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:1:{s:35:\"event-automator/event-automator.php\";s:23:\"tec_automator_uninstall\";}','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'),(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:71:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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','1','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:12:{i:1697535086;a:1:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697535087;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697535092;a:5:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1697535625;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1697535626;a:1:{s:46:\"tec_tickets_update_glance_item_attendee_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1697535627;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:1697535685;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1697621486;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697621492;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1701174401;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1727437998;a:1:{s:21:\"tribe-recurrence-cron\";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,'tribe_last_updated_option','1727438041.2444','yes'),(107,'nonce_key','hMwU.4q>Tjyt##0W@,*#U0~RFLy`y)]akRY,a/iPhH.| mBStiq*5(*SH[IejO!L','no'),(108,'nonce_salt','ElWxp&9bPhFm;%kaVuDoxn:MYR)nC6O:e&~?9GAWPA>f,B t LXkV=NgKh-F`oM~','no'),(109,'tribe_events_calendar_options','a:23:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:25:\"ticket-enabled-post-types\";a:2:{i:0;s:12:\"tribe_events\";i:1;s:4:\"page\";}s:14:\"schema-version\";s:6:\"5.16.0\";s:28:\"event-tickets-schema-version\";s:6:\"5.13.4\";s:21:\"previous_ecp_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"6.2.2\";i:2;s:7:\"6.2.3.2\";i:3;s:7:\"6.2.8.1\";i:4;s:5:\"6.3.1\";i:5;s:7:\"6.6.4.2\";}s:18:\"latest_ecp_version\";s:5:\"6.7.0\";s:31:\"previous_event_tickets_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"5.6.5\";i:2;s:7:\"5.6.6.1\";i:3;s:5:\"5.7.0\";i:4;s:5:\"5.8.0\";i:5;s:8:\"5.13.3.1\";}s:28:\"latest_event_tickets_version\";s:6:\"5.13.4\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:60;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:30:\"event-automator-schema-version\";s:5:\"1.7.0\";s:13:\"opt-in-status\";b:0;s:39:\"last-update-message-the-events-calendar\";s:5:\"6.7.0\";s:18:\"pro-schema-version\";s:5:\"7.1.0\";s:29:\"events-virtual-schema-version\";s:6:\"1.15.8\";s:26:\"flexible_tickets_activated\";b:1;s:36:\"previous_event_tickets_plus_versions\";a:1:{i:0;s:1:\"0\";}s:33:\"latest_event_tickets_plus_version\";s:5:\"6.0.4\";s:33:\"event-tickets-plus-schema-version\";s:5:\"6.0.4\";}','yes'),(110,'schema-ActionScheduler_StoreSchema','7.0.1697535092','yes'),(111,'schema-ActionScheduler_LoggerSchema','3.0.1697535092','yes'),(114,'tribe_last_save_post','1727438041.2446','yes'),(115,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(125,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(126,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(127,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727524326;}','yes'),(131,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','yes'),(132,'tec_ct1_events_table_schema_version','1.0.1','yes'),(133,'tec_ct1_occurrences_table_schema_version','1.0.2','yes'),(134,'stellarwp_telemetry_last_send','','yes'),(135,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:3:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}s:13:\"event-tickets\";a:2:{s:7:\"wp_slug\";s:31:\"event-tickets/event-tickets.php\";s:5:\"optin\";b:0;}s:19:\"events-calendar-pro\";a:2:{s:7:\"wp_slug\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"optin\";b:0;}}}','yes'),(136,'stellarwp_telemetry_the-events-calendar_show_optin','0','yes'),(139,'tribe_last_generate_rewrite_rules','1697535093.6692','yes'),(190,'stellarwp_telemetry_event-tickets_show_optin','0','yes'),(192,'action_scheduler_lock_async-request-runner','66f69ca6a79ba9.98696118|1727438050','yes'),(193,'theme_mods_twentytwentythree','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(194,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:0:{}s:15:\"version_checked\";s:5:\"6.4.1\";s:12:\"last_checked\";i:1727437925;}','no'),(198,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727437925;s:7:\"checked\";a:4:{s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"2.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(211,'tec_timed_tribe_supports_async_process','','yes'),(225,'tec_timed_events_timezone_update_needed','a:3:{s:3:\"key\";s:29:\"events_timezone_update_needed\";s:5:\"value\";b:0;s:10:\"expiration\";i:1727524328;}','yes'),(229,'recently_activated','a:4:{s:34:\"events-pro/events-calendar-pro.php\";i:1727438043;s:43:\"the-events-calendar/the-events-calendar.php\";i:1727438041;s:31:\"event-tickets/event-tickets.php\";i:1727437980;s:41:\"event-tickets-plus/event-tickets-plus.php\";i:1727437980;}','yes'),(243,'tribe_feature_support_check_lock','1','yes'),(249,'pue_install_key_event_automator','5f53261eb16f7ddf4fe24b69918c8804c82ea817','yes'),(252,'tec_automator_zapier_secret_key','367c29c0d738e48eaf47a9d7095c4768194a4b69380f76d21a352f60523f58a9e28935457ad293a980aab00a09d4411ab749e8734b788b1c50ff99efa709e3cc7daff0ba3828e2777f1a2a2e4c56346ed9c5ab55b3e20f559a9b6d6b1a47565d75182c17ce62df7d6be8a6e3856d5edba8ab4d4354ce565bd8506afecafa9da4','yes'),(253,'tec_automator_power_automate_secret_key','35bfd05098069168616a1929f965a740cc86560622f12b2876bd277ab61047cabb42f84246ba5c852e6fce68783b2087739d0d894a8f67b089faf1cb12ff98dfc8f8e407bc041418481c9372b07b118bbd5faf59485f27a219d696d613782489376e4e27de90e0f9372f67b3b1a954044d5795756796c9353e322efe284f17b8','yes'),(265,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.6.1\";s:5:\"files\";a:496:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:29:\"comment-content/style-rtl.css\";i:77;s:33:\"comment-content/style-rtl.min.css\";i:78;s:25:\"comment-content/style.css\";i:79;s:29:\"comment-content/style.min.css\";i:80;s:30:\"comment-template/style-rtl.css\";i:81;s:34:\"comment-template/style-rtl.min.css\";i:82;s:26:\"comment-template/style.css\";i:83;s:30:\"comment-template/style.min.css\";i:84;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:85;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:86;s:38:\"comments-pagination-numbers/editor.css\";i:87;s:42:\"comments-pagination-numbers/editor.min.css\";i:88;s:34:\"comments-pagination/editor-rtl.css\";i:89;s:38:\"comments-pagination/editor-rtl.min.css\";i:90;s:30:\"comments-pagination/editor.css\";i:91;s:34:\"comments-pagination/editor.min.css\";i:92;s:33:\"comments-pagination/style-rtl.css\";i:93;s:37:\"comments-pagination/style-rtl.min.css\";i:94;s:29:\"comments-pagination/style.css\";i:95;s:33:\"comments-pagination/style.min.css\";i:96;s:29:\"comments-title/editor-rtl.css\";i:97;s:33:\"comments-title/editor-rtl.min.css\";i:98;s:25:\"comments-title/editor.css\";i:99;s:29:\"comments-title/editor.min.css\";i:100;s:23:\"comments/editor-rtl.css\";i:101;s:27:\"comments/editor-rtl.min.css\";i:102;s:19:\"comments/editor.css\";i:103;s:23:\"comments/editor.min.css\";i:104;s:22:\"comments/style-rtl.css\";i:105;s:26:\"comments/style-rtl.min.css\";i:106;s:18:\"comments/style.css\";i:107;s:22:\"comments/style.min.css\";i:108;s:20:\"cover/editor-rtl.css\";i:109;s:24:\"cover/editor-rtl.min.css\";i:110;s:16:\"cover/editor.css\";i:111;s:20:\"cover/editor.min.css\";i:112;s:19:\"cover/style-rtl.css\";i:113;s:23:\"cover/style-rtl.min.css\";i:114;s:15:\"cover/style.css\";i:115;s:19:\"cover/style.min.css\";i:116;s:22:\"details/editor-rtl.css\";i:117;s:26:\"details/editor-rtl.min.css\";i:118;s:18:\"details/editor.css\";i:119;s:22:\"details/editor.min.css\";i:120;s:21:\"details/style-rtl.css\";i:121;s:25:\"details/style-rtl.min.css\";i:122;s:17:\"details/style.css\";i:123;s:21:\"details/style.min.css\";i:124;s:20:\"embed/editor-rtl.css\";i:125;s:24:\"embed/editor-rtl.min.css\";i:126;s:16:\"embed/editor.css\";i:127;s:20:\"embed/editor.min.css\";i:128;s:19:\"embed/style-rtl.css\";i:129;s:23:\"embed/style-rtl.min.css\";i:130;s:15:\"embed/style.css\";i:131;s:19:\"embed/style.min.css\";i:132;s:19:\"embed/theme-rtl.css\";i:133;s:23:\"embed/theme-rtl.min.css\";i:134;s:15:\"embed/theme.css\";i:135;s:19:\"embed/theme.min.css\";i:136;s:19:\"file/editor-rtl.css\";i:137;s:23:\"file/editor-rtl.min.css\";i:138;s:15:\"file/editor.css\";i:139;s:19:\"file/editor.min.css\";i:140;s:18:\"file/style-rtl.css\";i:141;s:22:\"file/style-rtl.min.css\";i:142;s:14:\"file/style.css\";i:143;s:18:\"file/style.min.css\";i:144;s:23:\"footnotes/style-rtl.css\";i:145;s:27:\"footnotes/style-rtl.min.css\";i:146;s:19:\"footnotes/style.css\";i:147;s:23:\"footnotes/style.min.css\";i:148;s:23:\"freeform/editor-rtl.css\";i:149;s:27:\"freeform/editor-rtl.min.css\";i:150;s:19:\"freeform/editor.css\";i:151;s:23:\"freeform/editor.min.css\";i:152;s:22:\"gallery/editor-rtl.css\";i:153;s:26:\"gallery/editor-rtl.min.css\";i:154;s:18:\"gallery/editor.css\";i:155;s:22:\"gallery/editor.min.css\";i:156;s:21:\"gallery/style-rtl.css\";i:157;s:25:\"gallery/style-rtl.min.css\";i:158;s:17:\"gallery/style.css\";i:159;s:21:\"gallery/style.min.css\";i:160;s:21:\"gallery/theme-rtl.css\";i:161;s:25:\"gallery/theme-rtl.min.css\";i:162;s:17:\"gallery/theme.css\";i:163;s:21:\"gallery/theme.min.css\";i:164;s:20:\"group/editor-rtl.css\";i:165;s:24:\"group/editor-rtl.min.css\";i:166;s:16:\"group/editor.css\";i:167;s:20:\"group/editor.min.css\";i:168;s:19:\"group/style-rtl.css\";i:169;s:23:\"group/style-rtl.min.css\";i:170;s:15:\"group/style.css\";i:171;s:19:\"group/style.min.css\";i:172;s:19:\"group/theme-rtl.css\";i:173;s:23:\"group/theme-rtl.min.css\";i:174;s:15:\"group/theme.css\";i:175;s:19:\"group/theme.min.css\";i:176;s:21:\"heading/style-rtl.css\";i:177;s:25:\"heading/style-rtl.min.css\";i:178;s:17:\"heading/style.css\";i:179;s:21:\"heading/style.min.css\";i:180;s:19:\"html/editor-rtl.css\";i:181;s:23:\"html/editor-rtl.min.css\";i:182;s:15:\"html/editor.css\";i:183;s:19:\"html/editor.min.css\";i:184;s:20:\"image/editor-rtl.css\";i:185;s:24:\"image/editor-rtl.min.css\";i:186;s:16:\"image/editor.css\";i:187;s:20:\"image/editor.min.css\";i:188;s:19:\"image/style-rtl.css\";i:189;s:23:\"image/style-rtl.min.css\";i:190;s:15:\"image/style.css\";i:191;s:19:\"image/style.min.css\";i:192;s:19:\"image/theme-rtl.css\";i:193;s:23:\"image/theme-rtl.min.css\";i:194;s:15:\"image/theme.css\";i:195;s:19:\"image/theme.min.css\";i:196;s:29:\"latest-comments/style-rtl.css\";i:197;s:33:\"latest-comments/style-rtl.min.css\";i:198;s:25:\"latest-comments/style.css\";i:199;s:29:\"latest-comments/style.min.css\";i:200;s:27:\"latest-posts/editor-rtl.css\";i:201;s:31:\"latest-posts/editor-rtl.min.css\";i:202;s:23:\"latest-posts/editor.css\";i:203;s:27:\"latest-posts/editor.min.css\";i:204;s:26:\"latest-posts/style-rtl.css\";i:205;s:30:\"latest-posts/style-rtl.min.css\";i:206;s:22:\"latest-posts/style.css\";i:207;s:26:\"latest-posts/style.min.css\";i:208;s:18:\"list/style-rtl.css\";i:209;s:22:\"list/style-rtl.min.css\";i:210;s:14:\"list/style.css\";i:211;s:18:\"list/style.min.css\";i:212;s:25:\"media-text/editor-rtl.css\";i:213;s:29:\"media-text/editor-rtl.min.css\";i:214;s:21:\"media-text/editor.css\";i:215;s:25:\"media-text/editor.min.css\";i:216;s:24:\"media-text/style-rtl.css\";i:217;s:28:\"media-text/style-rtl.min.css\";i:218;s:20:\"media-text/style.css\";i:219;s:24:\"media-text/style.min.css\";i:220;s:19:\"more/editor-rtl.css\";i:221;s:23:\"more/editor-rtl.min.css\";i:222;s:15:\"more/editor.css\";i:223;s:19:\"more/editor.min.css\";i:224;s:30:\"navigation-link/editor-rtl.css\";i:225;s:34:\"navigation-link/editor-rtl.min.css\";i:226;s:26:\"navigation-link/editor.css\";i:227;s:30:\"navigation-link/editor.min.css\";i:228;s:29:\"navigation-link/style-rtl.css\";i:229;s:33:\"navigation-link/style-rtl.min.css\";i:230;s:25:\"navigation-link/style.css\";i:231;s:29:\"navigation-link/style.min.css\";i:232;s:33:\"navigation-submenu/editor-rtl.css\";i:233;s:37:\"navigation-submenu/editor-rtl.min.css\";i:234;s:29:\"navigation-submenu/editor.css\";i:235;s:33:\"navigation-submenu/editor.min.css\";i:236;s:25:\"navigation/editor-rtl.css\";i:237;s:29:\"navigation/editor-rtl.min.css\";i:238;s:21:\"navigation/editor.css\";i:239;s:25:\"navigation/editor.min.css\";i:240;s:24:\"navigation/style-rtl.css\";i:241;s:28:\"navigation/style-rtl.min.css\";i:242;s:20:\"navigation/style.css\";i:243;s:24:\"navigation/style.min.css\";i:244;s:23:\"nextpage/editor-rtl.css\";i:245;s:27:\"nextpage/editor-rtl.min.css\";i:246;s:19:\"nextpage/editor.css\";i:247;s:23:\"nextpage/editor.min.css\";i:248;s:24:\"page-list/editor-rtl.css\";i:249;s:28:\"page-list/editor-rtl.min.css\";i:250;s:20:\"page-list/editor.css\";i:251;s:24:\"page-list/editor.min.css\";i:252;s:23:\"page-list/style-rtl.css\";i:253;s:27:\"page-list/style-rtl.min.css\";i:254;s:19:\"page-list/style.css\";i:255;s:23:\"page-list/style.min.css\";i:256;s:24:\"paragraph/editor-rtl.css\";i:257;s:28:\"paragraph/editor-rtl.min.css\";i:258;s:20:\"paragraph/editor.css\";i:259;s:24:\"paragraph/editor.min.css\";i:260;s:23:\"paragraph/style-rtl.css\";i:261;s:27:\"paragraph/style-rtl.min.css\";i:262;s:19:\"paragraph/style.css\";i:263;s:23:\"paragraph/style.min.css\";i:264;s:25:\"post-author/style-rtl.css\";i:265;s:29:\"post-author/style-rtl.min.css\";i:266;s:21:\"post-author/style.css\";i:267;s:25:\"post-author/style.min.css\";i:268;s:33:\"post-comments-form/editor-rtl.css\";i:269;s:37:\"post-comments-form/editor-rtl.min.css\";i:270;s:29:\"post-comments-form/editor.css\";i:271;s:33:\"post-comments-form/editor.min.css\";i:272;s:32:\"post-comments-form/style-rtl.css\";i:273;s:36:\"post-comments-form/style-rtl.min.css\";i:274;s:28:\"post-comments-form/style.css\";i:275;s:32:\"post-comments-form/style.min.css\";i:276;s:27:\"post-content/editor-rtl.css\";i:277;s:31:\"post-content/editor-rtl.min.css\";i:278;s:23:\"post-content/editor.css\";i:279;s:27:\"post-content/editor.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','yes'),(270,'permalink_structure','','yes'),(272,'wp_attachment_pages_enabled','1','yes'),(273,'db_upgraded','1','yes'),(337,'wpdg_specific_version_name','6.2.3','yes'),(338,'wpdg_download_url','','yes'),(339,'wpdg_edit_download_url','','yes'),(342,'core_updater.lock','1701272344','no'),(401,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727438043;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:33:\"coupon-creator/coupon_creator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/coupon-creator\";s:4:\"slug\";s:14:\"coupon-creator\";s:6:\"plugin\";s:33:\"coupon-creator/coupon_creator.php\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/coupon-creator/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/coupon-creator.3.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";s:3:\"svg\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/coupon-creator/assets/banner-1544x500.png?rev=2688941\";s:2:\"1x\";s:69:\"https://ps.w.org/coupon-creator/assets/banner-772x250.png?rev=2688941\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:5:\"3.2.6\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:5:\"5.8.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/event-tickets.5.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.3.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.2.0\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.5.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:29:\"wp-downgrade/wp-downgrade.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-downgrade\";s:4:\"slug\";s:12:\"wp-downgrade\";s:6:\"plugin\";s:29:\"wp-downgrade/wp-downgrade.php\";s:11:\"new_version\";s:5:\"1.2.6\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-downgrade/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-downgrade.1.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-downgrade/assets/icon-256x256.png?rev=1412844\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-downgrade/assets/icon-128x128.png?rev=1412844\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:27:\"wp-rollback/wp-rollback.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-rollback\";s:4:\"slug\";s:11:\"wp-rollback\";s:6:\"plugin\";s:27:\"wp-rollback/wp-rollback.php\";s:11:\"new_version\";s:5:\"2.0.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-rollback/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-rollback.2.0.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-256x256.jpg?rev=3014868\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-128x128.jpg?rev=3014868\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-rollback/assets/banner-1544x500.jpg?rev=3014868\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-rollback/assets/banner-772x250.jpg?rev=3014872\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:18:{s:33:\"ai-development/ai-development.php\";s:5:\"0.1.0\";s:33:\"coupon-creator/coupon_creator.php\";s:5:\"3.3.0\";s:49:\"coupon-creator-add-ons/coupon-creator-add-ons.php\";s:5:\"3.3.0\";s:41:\"coupon-creator-pro/coupon-creator-pro.php\";s:5:\"3.3.0\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:5:\"3.2.6\";s:49:\"event-schedule-manager/event-schedule-manager.php\";s:5:\"1.1.0\";s:31:\"event-tickets/event-tickets.php\";s:5:\"5.8.0\";s:41:\"event-tickets-plus/event-tickets-plus.php\";s:5:\"5.9.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.0\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"6.3.1\";s:35:\"event-automator/event-automator.php\";s:5:\"1.6.0\";s:33:\"events-virtual/events-virtual.php\";s:6:\"1.15.5\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"6.3.1\";s:29:\"volt-vectors/volt-vectors.php\";s:5:\"0.1.0\";s:37:\"volt-vectors-pro/volt-vectors-pro.php\";s:5:\"0.1.0\";s:27:\"woocommerce/woocommerce.php\";s:5:\"8.2.2\";s:29:\"wp-downgrade/wp-downgrade.php\";s:5:\"1.2.6\";s:27:\"wp-rollback/wp-rollback.php\";s:5:\"2.0.6\";}}','no'),(419,'widget_tribe-widget-event-countdown','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(420,'widget_tribe-widget-featured-venue','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(421,'widget_tribe-widget-events-month','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(422,'widget_tribe-widget-events-week','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(423,'tec_ct1_series_relationship_table_schema_version','1.0.0','yes'),(424,'tec_ct1_events_field_schema_version','1.0.1','yes'),(425,'tec_ct1_occurrences_field_schema_version','1.0.1','yes'),(428,'tec_timed_tec_custom_tables_v1_ecp_initialized','a:3:{s:3:\"key\";s:36:\"tec_custom_tables_v1_ecp_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727524326;}','yes'),(431,'stellarwp_telemetry_events-calendar-pro_show_optin','0','yes'),(436,'external_updates-events-calendar-pro','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727438041;s:14:\"checkedVersion\";s:5:\"7.1.0\";s:6:\"update\";N;}','no'),(437,'tribe_pue_key_notices','a:0:{}','yes'),(445,'_transient_tec_tickets_commerce_setup_stripe_webhook','1','yes'),(456,'tec_timed_events_is_rest_api_blocked','a:3:{s:3:\"key\";s:26:\"events_is_rest_api_blocked\";s:5:\"value\";s:59:\"http://localhost:8888/index.php?rest_route=/tribe/events/v1\";s:10:\"expiration\";i:1727610770;}','yes'),(476,'stellar_schema_version_tec-ft-ticket-groups','1.0.0','yes'),(477,'stellar_schema_version_tec-ft-posts-and-ticket-groups','1.0.0','yes'),(480,'external_updates-event-tickets-plus','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727437980;s:14:\"checkedVersion\";s:5:\"6.0.4\";s:6:\"update\";N;}','no'),(481,'admin_email_lifespan','1742989968','yes'),(491,'_site_transient_timeout_wp_theme_files_patterns-df909b1065e8ede02011fb6511f00e22','1734614621','off'),(492,'_site_transient_wp_theme_files_patterns-df909b1065e8ede02011fb6511f00e22','a:2:{s:7:\"version\";s:3:\"1.1\";s:8:\"patterns\";a:6:{s:18:\"call-to-action.php\";a:6:{s:5:\"title\";s:14:\"Call to action\";s:4:\"slug\";s:21:\"twentytwentythree/cta\";s:11:\"description\";s:0:\"\";s:10:\"categories\";a:1:{i:0;s:8:\"featured\";}s:8:\"keywords\";a:3:{i:0;s:4:\"Call\";i:1;s:2:\"to\";i:2;s:6:\"action\";}s:10:\"blockTypes\";a:1:{i:0;s:12:\"core/buttons\";}}s:18:\"footer-default.php\";a:5:{s:5:\"title\";s:14:\"Default Footer\";s:4:\"slug\";s:32:\"twentytwentythree/footer-default\";s:11:\"description\";s:0:\"\";s:10:\"categories\";a:1:{i:0;s:6:\"footer\";}s:10:\"blockTypes\";a:1:{i:0;s:25:\"core/template-part/footer\";}}s:14:\"hidden-404.php\";a:4:{s:5:\"title\";s:10:\"Hidden 404\";s:4:\"slug\";s:28:\"twentytwentythree/hidden-404\";s:11:\"description\";s:0:\"\";s:8:\"inserter\";b:0;}s:19:\"hidden-comments.php\";a:4:{s:5:\"title\";s:15:\"Hidden Comments\";s:4:\"slug\";s:33:\"twentytwentythree/hidden-comments\";s:11:\"description\";s:0:\"\";s:8:\"inserter\";b:0;}s:21:\"hidden-no-results.php\";a:4:{s:5:\"title\";s:25:\"Hidden No Results Content\";s:4:\"slug\";s:43:\"twentytwentythree/hidden-no-results-content\";s:11:\"description\";s:0:\"\";s:8:\"inserter\";b:0;}s:13:\"post-meta.php\";a:6:{s:5:\"title\";s:9:\"Post Meta\";s:4:\"slug\";s:27:\"twentytwentythree/post-meta\";s:11:\"description\";s:0:\"\";s:10:\"categories\";a:1:{i:0;s:5:\"query\";}s:8:\"keywords\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"meta\";}s:10:\"blockTypes\";a:1:{i:0;s:28:\"core/template-part/post-meta\";}}}}','off'),(493,'rewrite_rules','','on'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; @@ -2505,4 +2506,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-09-27 11:54:15 +-- Dump completed on 2024-12-19 12:53:48 From d92d1f5ec155be63e57a81230ebe70a8ce2fb872 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Thu, 19 Dec 2024 10:39:10 -0500 Subject: [PATCH 041/112] Simplified logic. --- src/Tribe/PUE/Checker.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index f7f52a4d86..25a0e635aa 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -2198,14 +2198,14 @@ public static function monitor_active_plugins( Tribe__PUE__Checker $checker ) { } $transient_data = get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - - $plugins = $transient_data['plugins'] ?? null; - - if ( ! is_array( $plugins ) || array_key_exists( $slug, $plugins ) ) { - return; + if ( ! is_array( $transient_data['plugins'] ) ) { + $transient_data['plugins'] = []; } - delete_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); + $transient_data['plugins'][ $slug ] = $checker->is_key_valid(); + + $transient_data['plugins'] = array_filter( $transient_data['plugins'] ); + set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $transient_data ); } } } From a5e4431c289dd0b41c5eb5bf25ee21a503166ab1 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 20 Dec 2024 11:18:53 -0500 Subject: [PATCH 042/112] Creating tests for Tribe__PUE__Notices class. --- tests/integration/Tribe/PUE/Notices_Test.php | 211 +++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100644 tests/integration/Tribe/PUE/Notices_Test.php diff --git a/tests/integration/Tribe/PUE/Notices_Test.php b/tests/integration/Tribe/PUE/Notices_Test.php new file mode 100644 index 0000000000..f75e9288d4 --- /dev/null +++ b/tests/integration/Tribe/PUE/Notices_Test.php @@ -0,0 +1,211 @@ +clear_all_notices(); + $notices->save_notices(); + } + + /** + * Runs after each test. + * + * @after + */ + public function cleanup_notices(): void { + // Use the class method to clear all notices + $notices = tribe( 'pue.notices' ); + $notices->clear_all_notices(); + $notices->save_notices(); + } + + /** + * Data provider for test_notice_with_all_statuses. + * + * @return Generator + */ + public function notice_data_provider(): Generator { + $statuses = [ + Tribe__PUE__Notices::INVALID_KEY, + Tribe__PUE__Notices::UPGRADE_KEY, + Tribe__PUE__Notices::EXPIRED_KEY, + ]; + + // Individual statuses with multiple plugins + foreach ( $statuses as $status ) { + yield "Multiple plugins, single status ($status)" => [ + function () use ( $status ) { + $pue_notices = tribe( 'pue.notices' ); + $expected_options = [ $status => [] ]; + + foreach ( range( 1, 5 ) as $index ) { + $plugin_name = "{$status}-plugin-{$index}"; + $pue_notices->add_notice( $status, $plugin_name ); + $expected_options[ $status ][ $plugin_name ] = true; + } + + return [ + 'expected_options' => $expected_options, + 'status' => $status, + 'plugin_names' => array_keys( $expected_options[ $status ] ), + ]; + }, + "Multiple plugins should be added with status $status.", + ]; + } + + // Multiple plugins with multiple statuses + yield 'Multiple plugins, multiple statuses' => [ + function () use ( $statuses ) { + $expected_options = []; + $plugin_names = []; + + $pue_notices = tribe( 'pue.notices' ); + foreach ( $statuses as $status ) { + $expected_options[ $status ] = []; + + foreach ( range( 1, 3 ) as $index ) { + $plugin_name = "{$status}-plugin-{$index}"; + $pue_notices->add_notice( $status, $plugin_name ); + $expected_options[ $status ][ $plugin_name ] = true; + $plugin_names[] = $plugin_name; + } + } + + return [ + 'expected_options' => $expected_options, + 'status' => $statuses, + 'plugin_names' => $plugin_names, + ]; + }, + 'Multiple plugins should be added with multiple statuses.', + ]; + } + + /** + * Test using the data provider for all status scenarios. + * + * @dataProvider notice_data_provider + */ + public function test_notice_with_all_statuses( + Closure $setup_closure, + string $scenario + ): void { + // Execute the setup closure to prepare the test case + $data = $setup_closure(); + + // Retrieve the options after setup + $options = get_option( 'tribe_pue_key_notices' ); + + // Iterate through each status in the expected options + foreach ( $data['expected_options'] as $status => $expected_plugins ) { + $this->assertArrayHasKey( + $status, + $options, + "The status $status should exist in the options array." + ); + + $actual_plugins = $options[ $status ]; + + foreach ( $expected_plugins as $plugin_name => $expected_value ) { + $this->assertArrayHasKey( + $plugin_name, + $actual_plugins, + "The plugin {$plugin_name} should exist under $status." + ); + + $this->assertSame( + $expected_value, + $actual_plugins[ $plugin_name ], + "The plugin {$plugin_name} should have the value {$expected_value} under $status." + ); + } + + // Ensure the count matches + $this->assertCount( + count( $expected_plugins ), + $actual_plugins, + "The number of plugins under $status should match the expected count." + ); + } + + // Ensure the final options match the expected output + $this->assertEquals( + $data['expected_options'], + $options, + $scenario + ); + } + + public function test_merge_recursive_bug_with_same_plugin(): void { + // Plugin name to test + $plugin_name = 'plugin-merge-test'; + + // Pre-set the option to simulate existing saved notices + $initial_saved_notices = [ + Tribe__PUE__Notices::INVALID_KEY => [ + $plugin_name => [true], + ], + ]; + update_option('tribe_pue_key_notices', $initial_saved_notices); + + for ($i = 0; $i < 5; $i++) { + // Recreate the tribe instance to simulate typical usage + $pue_notices = tribe('pue.notices'); + + // Add the same notice repeatedly + $pue_notices->add_notice(Tribe__PUE__Notices::INVALID_KEY, $plugin_name); + + // Save notices to trigger merging in the next call + $pue_notices->save_notices(); + } + + // Retrieve the final notices from the database + $options = get_option('tribe_pue_key_notices'); + + codecept_debug($options); + return; + + // Assertions to check if the plugin is duplicated + $this->assertArrayHasKey( + Tribe__PUE__Notices::INVALID_KEY, + $options, + 'The "invalid_key" key should exist in the options array.' + ); + + $invalid_key_plugins = $options[Tribe__PUE__Notices::INVALID_KEY]; + + $this->assertArrayHasKey( + $plugin_name, + $invalid_key_plugins, + "The plugin {$plugin_name} should exist under 'invalid_key'." + ); + + // Ensure the value is not duplicated (array_merge_recursive bug can cause this) + $this->assertIsBool( + $invalid_key_plugins[$plugin_name], + "The plugin {$plugin_name} should not be duplicated or stored as an array." + ); + + $this->assertTrue( + $invalid_key_plugins[$plugin_name], + "The plugin {$plugin_name} should be set to true in 'invalid_key'." + ); + } + + +} + From 04a3be4d7e2f985b7dbcaceecb8af3b5b14ea1d2 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 20 Dec 2024 11:19:19 -0500 Subject: [PATCH 043/112] Implemented new method `clear_all_notices` for testing. Working on fixing duplication logic. --- src/Tribe/PUE/Notices.php | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/src/Tribe/PUE/Notices.php b/src/Tribe/PUE/Notices.php index 8d8eb00ca1..ec35228c27 100644 --- a/src/Tribe/PUE/Notices.php +++ b/src/Tribe/PUE/Notices.php @@ -1,5 +1,4 @@ notices = array_merge_recursive( $this->notices, $this->saved_notices ); - // Cleanup + //$this->notices = array_merge($this->notices, $this->saved_notices ); + + // Cleanup. foreach ( $this->notices as $key => &$plugin_lists ) { - // Purge any elements that are not arrays + // Purge any elements that are not arrays. if ( ! is_array( $plugin_lists ) ) { unset( $this->notices[ $key ] ); continue; } + $plugin_lists = array_unique( $plugin_lists ); + foreach ( $plugin_lists as $plugin => $data ) { + $this->notices[ $key ][ $plugin ] = is_array( $data ) ? array_unique( $data ) : $data; + } } } @@ -566,4 +576,20 @@ protected function get_formatted_plugin_names( $group ) { return '' . $html . ''; } + + /** + * Clears all stored and saved notices. + * + * This method resets both the `notices` and `saved_notices` properties to empty arrays, + * effectively removing all license key notifications from memory. + * + * Note: This does not persist changes to the database. To save changes, + * ensure `save_notices()` is called after invoking this method. + * + * @return void + */ + public function clear_all_notices() { + $this->notices = []; + $this->saved_notices = []; + } } From 7f0bc1652dbc10bfa4b27fc00d7e93d12744b0d5 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 20 Dec 2024 12:04:11 -0500 Subject: [PATCH 044/112] Created new tests, added fix to `Notices.php`. --- src/Tribe/PUE/Notices.php | 8 +- tests/integration/Tribe/PUE/Notices_Test.php | 184 +++++++++++++++---- 2 files changed, 152 insertions(+), 40 deletions(-) diff --git a/src/Tribe/PUE/Notices.php b/src/Tribe/PUE/Notices.php index ec35228c27..e5806b3f5d 100644 --- a/src/Tribe/PUE/Notices.php +++ b/src/Tribe/PUE/Notices.php @@ -94,14 +94,8 @@ protected function populate() { return; } - /** - * @todo - redscar - * Potentially change with - - * wp_parse_args or array_merge - */ - $this->notices = array_merge_recursive( $this->notices, $this->saved_notices ); - //$this->notices = array_merge($this->notices, $this->saved_notices ); + $this->notices = wp_parse_args( $this->notices, $this->saved_notices ); // Cleanup. foreach ( $this->notices as $key => &$plugin_lists ) { diff --git a/tests/integration/Tribe/PUE/Notices_Test.php b/tests/integration/Tribe/PUE/Notices_Test.php index f75e9288d4..ded251c357 100644 --- a/tests/integration/Tribe/PUE/Notices_Test.php +++ b/tests/integration/Tribe/PUE/Notices_Test.php @@ -108,7 +108,7 @@ public function test_notice_with_all_statuses( $data = $setup_closure(); // Retrieve the options after setup - $options = get_option( 'tribe_pue_key_notices' ); + $options = get_option( Tribe__PUE__Notices::STORE_KEY ); // Iterate through each status in the expected options foreach ( $data['expected_options'] as $status => $expected_plugins ) { @@ -150,62 +150,180 @@ public function test_notice_with_all_statuses( ); } - public function test_merge_recursive_bug_with_same_plugin(): void { - // Plugin name to test + /** + * @test + */ + public function recursive_bug_with_same_plugin(): void { $plugin_name = 'plugin-merge-test'; - // Pre-set the option to simulate existing saved notices - $initial_saved_notices = [ - Tribe__PUE__Notices::INVALID_KEY => [ - $plugin_name => [true], - ], - ]; - update_option('tribe_pue_key_notices', $initial_saved_notices); + $pue_notices_initial = tribe( 'pue.notices' ); - for ($i = 0; $i < 5; $i++) { - // Recreate the tribe instance to simulate typical usage - $pue_notices = tribe('pue.notices'); + // Add initial notices to different keys + $pue_notices_initial->add_notice( Tribe__PUE__Notices::UPGRADE_KEY, 'initial_plugin1' ); + $pue_notices_initial->add_notice( Tribe__PUE__Notices::EXPIRED_KEY, 'initial_plugin2' ); - // Add the same notice repeatedly - $pue_notices->add_notice(Tribe__PUE__Notices::INVALID_KEY, $plugin_name); + // Simulate repeated usage of the same plugin name with different instances + for ( $j = 0; $j < 5; $j++ ) { + for ( $i = 0; $i < 5; $i++ ) { + $temp_plugin_name = $plugin_name . $j; + tribe( 'pue.notices' )->register_name( $temp_plugin_name ); + + // Recreate the tribe instance to simulate typical usage + $pue_notices = tribe( 'pue.notices' ); - // Save notices to trigger merging in the next call - $pue_notices->save_notices(); + // Add the same notice repeatedly + $pue_notices->add_notice( Tribe__PUE__Notices::INVALID_KEY, $temp_plugin_name ); + + unset( $pue_notices ); // Clear instance to simulate separate requests + } } + $pue_notices_initial->save_notices(); + // Retrieve the final notices from the database - $options = get_option('tribe_pue_key_notices'); + $options = get_option( Tribe__PUE__Notices::STORE_KEY ); - codecept_debug($options); - return; - // Assertions to check if the plugin is duplicated + // Check UPGRADE_KEY contains only the initial plugin $this->assertArrayHasKey( - Tribe__PUE__Notices::INVALID_KEY, + Tribe__PUE__Notices::UPGRADE_KEY, $options, - 'The "invalid_key" key should exist in the options array.' + 'The "upgrade_key" key should exist in the options array.' + ); + + $this->assertArrayHasKey( + 'initial_plugin1', + $options[ Tribe__PUE__Notices::UPGRADE_KEY ], + 'initial_plugin1 should exist under "upgrade_key".' ); - $invalid_key_plugins = $options[Tribe__PUE__Notices::INVALID_KEY]; + $this->assertTrue( + $options[ Tribe__PUE__Notices::UPGRADE_KEY ]['initial_plugin1'], + 'initial_plugin1 should have a value of true under "upgrade_key".' + ); + // Check EXPIRED_KEY contains only the initial plugin $this->assertArrayHasKey( - $plugin_name, - $invalid_key_plugins, - "The plugin {$plugin_name} should exist under 'invalid_key'." + Tribe__PUE__Notices::EXPIRED_KEY, + $options, + 'The "expired_key" key should exist in the options array.' ); - // Ensure the value is not duplicated (array_merge_recursive bug can cause this) - $this->assertIsBool( - $invalid_key_plugins[$plugin_name], - "The plugin {$plugin_name} should not be duplicated or stored as an array." + $this->assertArrayHasKey( + 'initial_plugin2', + $options[ Tribe__PUE__Notices::EXPIRED_KEY ], + 'initial_plugin2 should exist under "expired_key".' ); $this->assertTrue( - $invalid_key_plugins[$plugin_name], - "The plugin {$plugin_name} should be set to true in 'invalid_key'." + $options[ Tribe__PUE__Notices::EXPIRED_KEY ]['initial_plugin2'], + 'initial_plugin2 should have a value of true under "expired_key".' + ); + + // Check INVALID_KEY contains all plugins from the loop + $this->assertArrayHasKey( + Tribe__PUE__Notices::INVALID_KEY, + $options, + 'The "invalid_key" key should exist in the options array.' ); + + $invalid_key_plugins = $options[ Tribe__PUE__Notices::INVALID_KEY ]; + + for ( $j = 0; $j < 5; $j++ ) { + $temp_plugin_name = $plugin_name . $j; + + $this->assertArrayHasKey( + $temp_plugin_name, + $invalid_key_plugins, + "{$temp_plugin_name} should exist under 'invalid_key'." + ); + + $this->assertTrue( + $invalid_key_plugins[ $temp_plugin_name ], + "{$temp_plugin_name} should have a value of true under 'invalid_key'." + ); + } + + // Ensure there are no unexpected nesting or duplicates + foreach ( $invalid_key_plugins as $plugin => $value ) { + $this->assertNotIsArray( + $value, + "The value for {$plugin} under 'invalid_key' should not be an array." + ); + } + + // Ensure the counts match expectations + $this->assertCount( + 5, + $invalid_key_plugins, + 'There should be exactly 5 plugins under "invalid_key".' + ); + } + + /** + * @test + */ + public function option_has_partial_serialization_corruption(): void { + // Insert corrupted serialized data directly + $corrupted_data = 'a:1:{s:11:"invalid_key";a:1:{s:17:"plugin-early-init1";a:8388608:{i:0;b:1;i:1;b:1;i:2;b:1;}}'; + update_option( Tribe__PUE__Notices::STORE_KEY, $corrupted_data ); + + // Attempt to load notices + $pue_notices = new Tribe__PUE__Notices(); + + $pue_notices->save_notices(); + + // Retrieve and debug the final notices + $options = get_option( Tribe__PUE__Notices::STORE_KEY ); + + $this->assertEmpty( $options, 'Corrupted notices should of been cleared.' ); } + /** + * @test + */ + public function option_has_serialization_corruption(): void { + // Insert corrupted serialized data directly into the option + $corrupted_data = 'a:1:{s:11:"invalid_key";a:1:{s:17:"plugin-early-init1";a:8388608:{i:0;b:1;i:1;b:1;i:2;b:1;}}'; + update_option( Tribe__PUE__Notices::STORE_KEY, $corrupted_data ); + + // Initialize the PUE Notices class + $pue_notices = new Tribe__PUE__Notices(); + + // Add three plugins to the INVALID_KEY notice + $pue_notices->add_notice( Tribe__PUE__Notices::INVALID_KEY, 'plugin-early-init1' ); + $pue_notices->add_notice( Tribe__PUE__Notices::INVALID_KEY, 'plugin-early-init2' ); + $pue_notices->add_notice( Tribe__PUE__Notices::INVALID_KEY, 'plugin-early-init3' ); + + // Save the notices to persist them + $pue_notices->save_notices(); + + // Retrieve the final notices from the database + $options = get_option( Tribe__PUE__Notices::STORE_KEY ); + + // Assertions + $this->assertArrayHasKey( + Tribe__PUE__Notices::INVALID_KEY, + $options, + 'The "invalid_key" notice should exist in the options.' + ); + + $invalid_key_notices = $options[ Tribe__PUE__Notices::INVALID_KEY ]; + // Ensure all three plugins are correctly stored + $this->assertArrayHasKey( 'plugin-early-init1', $invalid_key_notices, 'plugin-early-init1 should exist in invalid_key.' ); + $this->assertArrayHasKey( 'plugin-early-init2', $invalid_key_notices, 'plugin-early-init2 should exist in invalid_key.' ); + $this->assertArrayHasKey( 'plugin-early-init3', $invalid_key_notices, 'plugin-early-init3 should exist in invalid_key.' ); + + // Ensure their values are correctly set to true + $this->assertTrue( $invalid_key_notices['plugin-early-init1'], 'plugin-early-init1 should have a value of true.' ); + $this->assertTrue( $invalid_key_notices['plugin-early-init2'], 'plugin-early-init2 should have a value of true.' ); + $this->assertTrue( $invalid_key_notices['plugin-early-init3'], 'plugin-early-init3 should have a value of true.' ); + + // Ensure no unexpected nesting or corruption + foreach ( $invalid_key_notices as $plugin => $value ) { + $this->assertIsNotArray( $value, "The value for {$plugin} under invalid_key should not be an array." ); + } + } } From 04e12056c9316976e0c1e3bd69be499b1083e9a7 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 20 Dec 2024 12:07:05 -0500 Subject: [PATCH 045/112] Fixed typo. --- tests/integration/Tribe/PUE/Notices_Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/Tribe/PUE/Notices_Test.php b/tests/integration/Tribe/PUE/Notices_Test.php index ded251c357..a3effde2ff 100644 --- a/tests/integration/Tribe/PUE/Notices_Test.php +++ b/tests/integration/Tribe/PUE/Notices_Test.php @@ -246,7 +246,7 @@ public function recursive_bug_with_same_plugin(): void { // Ensure there are no unexpected nesting or duplicates foreach ( $invalid_key_plugins as $plugin => $value ) { - $this->assertNotIsArray( + $this->assertIsNotArray( $value, "The value for {$plugin} under 'invalid_key' should not be an array." ); From 068eefc000ba2fa3c73402ef1bbcfdbd92111be0 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 20 Dec 2024 12:12:46 -0500 Subject: [PATCH 046/112] Added `@since` --- src/Tribe/PUE/Notices.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Tribe/PUE/Notices.php b/src/Tribe/PUE/Notices.php index e5806b3f5d..b0c11bcbd9 100644 --- a/src/Tribe/PUE/Notices.php +++ b/src/Tribe/PUE/Notices.php @@ -86,6 +86,8 @@ public function register_name( $plugin_name ) { /** * Restores plugins added on previous requests to the relevant notification * groups. + * + * @sice TBD Switched from array`array_merge_recursive` to `wp_parse_args` to fix an issue with data duplication */ protected function populate() { $this->saved_notices = (array) get_option( self::STORE_KEY, [] ); @@ -94,7 +96,6 @@ protected function populate() { return; } - $this->notices = wp_parse_args( $this->notices, $this->saved_notices ); // Cleanup. From 8379874fca14d0b3a3b4e85c715d303822d69397 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Fri, 20 Dec 2024 12:13:34 -0500 Subject: [PATCH 047/112] Added use statement back. --- src/Tribe/PUE/Notices.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Tribe/PUE/Notices.php b/src/Tribe/PUE/Notices.php index b0c11bcbd9..ef82fc3afe 100644 --- a/src/Tribe/PUE/Notices.php +++ b/src/Tribe/PUE/Notices.php @@ -1,4 +1,5 @@ Date: Mon, 23 Dec 2024 00:07:42 +0200 Subject: [PATCH 048/112] Fix deprecated warning --- changelog/fix-TEC-5086_deprecated_notice | 4 ++++ src/Tribe/PUE/Checker.php | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 changelog/fix-TEC-5086_deprecated_notice diff --git a/changelog/fix-TEC-5086_deprecated_notice b/changelog/fix-TEC-5086_deprecated_notice new file mode 100644 index 0000000000..aba867a0a1 --- /dev/null +++ b/changelog/fix-TEC-5086_deprecated_notice @@ -0,0 +1,4 @@ +Significance: patch +Type: fix + +Resolve warning about deprecation of passing null to version_compare function. diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 486bd87c53..5ffb583b68 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -1641,6 +1641,8 @@ public function get_installed_version() { $all_plugins = get_plugins(); if ( array_key_exists( $this->get_plugin_file(), $all_plugins ) && array_key_exists( 'Version', $all_plugins[ $this->get_plugin_file() ] ) ) { return $all_plugins[ $this->get_plugin_file() ]['Version']; + } else { + return ''; } } } From 4cea177e9e4667479e93a9e29441715d9c540f6d Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 6 Jan 2025 08:43:02 -0500 Subject: [PATCH 049/112] Additional logic to also update the any license valid transient when we do the basic `is_key_valid` method. --- src/Tribe/PUE/Checker.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index 25a0e635aa..beba2af56c 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -256,12 +256,16 @@ public function init( $slug ) { * * @since 4.14.9 * @since 6.4.1 Added uplink resource check. + * @since TBD Added check for valid plugin. */ public function is_key_valid() { $uplink_resource = get_resource( $this->get_slug() ); if ( $uplink_resource ) { - return $uplink_resource->has_valid_license(); + $uplink_status = $uplink_resource->has_valid_license(); + $this->update_any_license_valid_transient( $this->get_slug(), tribe_is_truthy( $uplink_status ) ); + + return $uplink_status; } // @todo remove transient in a major feature release where we release all plugins. @@ -271,6 +275,8 @@ public function is_key_valid() { $status = get_option( $this->pue_key_status_option_name, 'invalid' ); } + $this->update_any_license_valid_transient( $this->get_slug(), 'valid' === $status ); + return 'valid' === $status; } From 9691ceb16578de2877891ed01d8fdbb3274531b5 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 6 Jan 2025 09:42:10 -0500 Subject: [PATCH 050/112] Created wrapper function for get_uplink_resource when the uplink `get_resource` doesn't exist or isn't setup yet. --- src/Tribe/PUE/Checker.php | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/src/Tribe/PUE/Checker.php b/src/Tribe/PUE/Checker.php index beba2af56c..072ba0d2a6 100755 --- a/src/Tribe/PUE/Checker.php +++ b/src/Tribe/PUE/Checker.php @@ -259,7 +259,7 @@ public function init( $slug ) { * @since TBD Added check for valid plugin. */ public function is_key_valid() { - $uplink_resource = get_resource( $this->get_slug() ); + $uplink_resource = $this->get_uplink_resource( $this->get_slug() ); if ( $uplink_resource ) { $uplink_status = $uplink_resource->has_valid_license(); @@ -1096,7 +1096,7 @@ public function get_stats() { */ public function get_key( $type = 'any', $return_type = 'key' ) { - $resource = get_resource( $this->get_slug() ); + $resource = $this->get_uplink_resource( $this->get_slug() ); $license_key = $resource ? $resource->get_license_key( $type ) : false; if ( $license_key ) { return $license_key; @@ -1187,7 +1187,7 @@ public function validate_key( $key, $network = false ) { $response = []; $response['status'] = 0; - $uplink_resource = get_resource( $this->get_slug() ); + $uplink_resource = $this->get_uplink_resource( $this->get_slug() ); if ( $uplink_resource ) { $key = $uplink_resource->get_license_key(); @@ -2204,8 +2204,10 @@ public static function monitor_active_plugins( Tribe__PUE__Checker $checker ) { } $transient_data = get_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY ); - if ( ! is_array( $transient_data['plugins'] ) ) { - $transient_data['plugins'] = []; + if ( empty( $transient_data['plugins'] ) || ! is_array( $transient_data['plugins'] ) ) { + $transient_data = [ + 'plugins' => [], + ]; } $transient_data['plugins'][ $slug ] = $checker->is_key_valid(); @@ -2213,5 +2215,24 @@ public static function monitor_active_plugins( Tribe__PUE__Checker $checker ) { $transient_data['plugins'] = array_filter( $transient_data['plugins'] ); set_transient( self::IS_ANY_LICENSE_VALID_TRANSIENT_KEY, $transient_data ); } + + /** + * Retrieves the uplink resource for the given slug, if available. + * + * Ensures the `get_resource()` function exists before calling it. + * + * @param string $slug The slug of the resource to retrieve. + * + * @return mixed The resource object if available, or `null` if the function does not exist or fails to retrieve the resource. + */ + public function get_uplink_resource( string $slug ) { + try { + $resource = get_resource( $slug ); + } catch ( Throwable $e ) { + return null; + } + + return $resource; + } } } From 97dc9703115cc57e73e69af01b8d4be2034db3d4 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 6 Jan 2025 09:42:21 -0500 Subject: [PATCH 051/112] Update tests to pass properly. --- tests/integration/Tribe/PUE/Checker_Test.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/Tribe/PUE/Checker_Test.php b/tests/integration/Tribe/PUE/Checker_Test.php index 4a9e6bd644..d3f966fe3c 100644 --- a/tests/integration/Tribe/PUE/Checker_Test.php +++ b/tests/integration/Tribe/PUE/Checker_Test.php @@ -273,13 +273,14 @@ function () { for ( $i = 1; $i <= 10; $i++ ) { $validated_key = md5( microtime() . $i ); $plugin_name = "test-plugin-{$i}"; - $plugin_names[] = $plugin_name; + update_option( "pue_install_key_{$plugin_name}", $validated_key ); $pue_instance = new PUE_Checker( 'deprecated', $plugin_name, [], "{$plugin_name}/{$plugin_name}.php" ); if ( 0 === $i % 2 ) { // Even plugins are valid. $pue_instance->set_key_status( 1 ); + $plugin_names[] = $plugin_name; } else { // Odd plugins are invalid. $pue_instance->set_key_status( 0 ); From 5dd711dd87207a451b4909feaa6df0a221fc5c47 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 6 Jan 2025 14:44:24 -0500 Subject: [PATCH 052/112] Rewrote populate logic to implement sanitize_notices method that fixes corrupted DB entries. --- src/Tribe/PUE/Notices.php | 48 +++-- tests/integration/Tribe/PUE/Notices_Test.php | 213 +++++++++++++++---- 2 files changed, 211 insertions(+), 50 deletions(-) diff --git a/src/Tribe/PUE/Notices.php b/src/Tribe/PUE/Notices.php index ef82fc3afe..5e87d0702c 100644 --- a/src/Tribe/PUE/Notices.php +++ b/src/Tribe/PUE/Notices.php @@ -88,31 +88,51 @@ public function register_name( $plugin_name ) { * Restores plugins added on previous requests to the relevant notification * groups. * - * @sice TBD Switched from array`array_merge_recursive` to `wp_parse_args` to fix an issue with data duplication + * @sice TBD Switched from array`array_merge_recursive` to `wp_parse_args` to fix an issue with data duplication. */ protected function populate() { - $this->saved_notices = (array) get_option( self::STORE_KEY, [] ); + // Retrieve saved notices and ensure it's an array. + $saved_notices = get_option( self::STORE_KEY, [] ); - if ( empty( $this->saved_notices ) ) { - return; + if ( ! is_array( $saved_notices ) ) { + $saved_notices = []; + update_option( self::STORE_KEY, $saved_notices ); } - $this->notices = wp_parse_args( $this->notices, $this->saved_notices ); + $this->saved_notices = $saved_notices; + + // Sanitize and merge notices. + $this->notices = $this->sanitize_notices( wp_parse_args( $this->notices, $this->saved_notices ) ); + + // Update the sanitized notices back to the database if they differ. + if ( $this->notices !== $this->saved_notices ) { + update_option( self::STORE_KEY, $this->notices ); + } + } - // Cleanup. - foreach ( $this->notices as $key => &$plugin_lists ) { - // Purge any elements that are not arrays. - if ( ! is_array( $plugin_lists ) ) { - unset( $this->notices[ $key ] ); + /** + * Recursively sanitizes notices to prevent nesting and ensure data integrity. + * + * @param array $notices The array of notices to sanitize. + * + * @return array Sanitized notices. + */ + protected function sanitize_notices( array $notices ): array { + foreach ( $notices as $key => &$plugin_list ) { + // Ensure the value is an array; otherwise, reset it. + if ( ! is_array( $plugin_list ) ) { + $plugin_list = []; continue; } - $plugin_lists = array_unique( $plugin_lists ); - foreach ( $plugin_lists as $plugin => $data ) { - $this->notices[ $key ][ $plugin ] = is_array( $data ) ? array_unique( $data ) : $data; + + foreach ( $plugin_list as $plugin => $data ) { + // Flatten deeply nested arrays and set the value to `true`. + $plugin_list[ $plugin ] = true; } } - } + return $notices; + } /** * Saves any license key notices already added. */ diff --git a/tests/integration/Tribe/PUE/Notices_Test.php b/tests/integration/Tribe/PUE/Notices_Test.php index a3effde2ff..6b1c153f33 100644 --- a/tests/integration/Tribe/PUE/Notices_Test.php +++ b/tests/integration/Tribe/PUE/Notices_Test.php @@ -183,7 +183,6 @@ public function recursive_bug_with_same_plugin(): void { // Retrieve the final notices from the database $options = get_option( Tribe__PUE__Notices::STORE_KEY ); - // Check UPGRADE_KEY contains only the initial plugin $this->assertArrayHasKey( Tribe__PUE__Notices::UPGRADE_KEY, @@ -263,67 +262,209 @@ public function recursive_bug_with_same_plugin(): void { /** * @test */ - public function option_has_partial_serialization_corruption(): void { - // Insert corrupted serialized data directly - $corrupted_data = 'a:1:{s:11:"invalid_key";a:1:{s:17:"plugin-early-init1";a:8388608:{i:0;b:1;i:1;b:1;i:2;b:1;}}'; - update_option( Tribe__PUE__Notices::STORE_KEY, $corrupted_data ); + public function handles_large_notice_data(): void { + $large_data = []; + for ( $i = 0; $i < 10000; $i++ ) { + $large_data[ Tribe__PUE__Notices::INVALID_KEY ]["plugin-$i"] = true; + } - // Attempt to load notices - $pue_notices = new Tribe__PUE__Notices(); + // Save the large dataset as an option + update_option( Tribe__PUE__Notices::STORE_KEY, $large_data ); - $pue_notices->save_notices(); + // Instantiate the class to trigger `populate()` + $pue_notices = new Tribe__PUE__Notices(); - // Retrieve and debug the final notices + // Retrieve notices after `populate()` runs $options = get_option( Tribe__PUE__Notices::STORE_KEY ); - $this->assertEmpty( $options, 'Corrupted notices should of been cleared.' ); + // Assert the data remains consistent + $this->assertArrayHasKey( Tribe__PUE__Notices::INVALID_KEY, $options ); + $this->assertCount( 10000, $options[ Tribe__PUE__Notices::INVALID_KEY ], 'The large dataset should have 10,000 entries.' ); } /** * @test */ - public function option_has_serialization_corruption(): void { - // Insert corrupted serialized data directly into the option - $corrupted_data = 'a:1:{s:11:"invalid_key";a:1:{s:17:"plugin-early-init1";a:8388608:{i:0;b:1;i:1;b:1;i:2;b:1;}}'; - update_option( Tribe__PUE__Notices::STORE_KEY, $corrupted_data ); + public function handles_invalid_option_values(): void { + // Save invalid data as an option + $invalid_data = 'corrupted_string_instead_of_array'; + update_option( Tribe__PUE__Notices::STORE_KEY, $invalid_data ); - // Initialize the PUE Notices class + // Instantiate the class to trigger `populate()` $pue_notices = new Tribe__PUE__Notices(); - // Add three plugins to the INVALID_KEY notice - $pue_notices->add_notice( Tribe__PUE__Notices::INVALID_KEY, 'plugin-early-init1' ); - $pue_notices->add_notice( Tribe__PUE__Notices::INVALID_KEY, 'plugin-early-init2' ); - $pue_notices->add_notice( Tribe__PUE__Notices::INVALID_KEY, 'plugin-early-init3' ); + // Retrieve notices after `populate()` runs + $options = get_option( Tribe__PUE__Notices::STORE_KEY ); - // Save the notices to persist them - $pue_notices->save_notices(); + // Assert the option was reset to an empty array + $this->assertEmpty( $options, 'Invalid data should be cleared from the option.' ); + } - // Retrieve the final notices from the database + /** + * @test + */ + public function fixes_corrupted_notices_data(): void { + // Simulate corrupted data that our clients had. + $corrupted_data = [ + Tribe__PUE__Notices::INVALID_KEY => [ + 'Promoter' => array_fill( 0, 100, [ true ] ), + ], + ]; + + // Save the corrupted data directly into the database. + update_option( Tribe__PUE__Notices::STORE_KEY, $corrupted_data ); + + // Instantiate the class to trigger `populate()`. + $pue_notices = new Tribe__PUE__Notices(); + + // Retrieve notices after `populate()` runs. $options = get_option( Tribe__PUE__Notices::STORE_KEY ); // Assertions + $this->assertIsArray( $options, 'The notices option should be an array.' ); + + // Ensure `INVALID_KEY` exists. $this->assertArrayHasKey( Tribe__PUE__Notices::INVALID_KEY, $options, - 'The "invalid_key" notice should exist in the options.' + 'The "invalid_key" should exist in the notices.' + ); + + // Ensure `Promoter` exists under `invalid_key`. + $this->assertArrayHasKey( + 'Promoter', + $options[ Tribe__PUE__Notices::INVALID_KEY ], + 'The "Promoter" key should exist under "invalid_key".' + ); + + // Ensure `Promoter` value is true. + $this->assertTrue( + $options[ Tribe__PUE__Notices::INVALID_KEY ]['Promoter'], + 'The "Promoter" key should have a value of true.' + ); + + // Ensure no unexpected keys exist in the root array. + $this->assertCount( + 1, + $options, + 'The root notices array should only contain "invalid_key".' + ); + + // Ensure no unexpected keys exist under `invalid_key`. + $this->assertCount( + 1, + $options[ Tribe__PUE__Notices::INVALID_KEY ], + 'The "invalid_key" array should only contain "Promoter".' + ); + } + + /** + * @test + */ + public function handles_mixed_valid_and_invalid_data(): void { + $mixed_data = [ + Tribe__PUE__Notices::INVALID_KEY => [ + 'ValidPlugin' => true, + 'CorruptedPlugin' => array_fill( 0, 10, [ true ] ), + ], + 'CustomKey' => 'not_an_array', + ]; + + update_option( Tribe__PUE__Notices::STORE_KEY, $mixed_data ); + + $pue_notices = new Tribe__PUE__Notices(); + $options = get_option( Tribe__PUE__Notices::STORE_KEY ); + + // Ensure `INVALID_KEY` exists. + $this->assertArrayHasKey( Tribe__PUE__Notices::INVALID_KEY, $options ); + + // Ensure valid data is retained. + $this->assertArrayHasKey( + 'ValidPlugin', + $options[ Tribe__PUE__Notices::INVALID_KEY ], + 'ValidPlugin should be retained under INVALID_KEY.' + ); + + $this->assertTrue( + $options[ Tribe__PUE__Notices::INVALID_KEY ]['ValidPlugin'], + 'ValidPlugin should have a value of true.' + ); + + // Make sure `CorruptedPlugin` is no longer corrupted. + + $this->assertArrayHasKey( + 'CorruptedPlugin', + $options[ Tribe__PUE__Notices::INVALID_KEY ], + 'CorruptedPlugin should not be removed from INVALID_KEY.' + ); + + $this->assertTrue( + $options[ Tribe__PUE__Notices::INVALID_KEY ]['CorruptedPlugin'], + 'CorruptedPlugin should have a value of true under INVALID_KEY.' + ); + + $this->assertIsNotArray( + $options[ Tribe__PUE__Notices::INVALID_KEY ]['CorruptedPlugin'], + 'CorruptedPlugin should not be an array under INVALID_KEY.' + ); + + $this->assertArrayHasKey( + 'CustomKey', + $options, + 'CustomKey should not be removed from the root array.' ); - $invalid_key_notices = $options[ Tribe__PUE__Notices::INVALID_KEY ]; + $this->assertIsArray( + $options['CustomKey'], + 'CustomKey should be an array in the root array.' + ); + } - // Ensure all three plugins are correctly stored - $this->assertArrayHasKey( 'plugin-early-init1', $invalid_key_notices, 'plugin-early-init1 should exist in invalid_key.' ); - $this->assertArrayHasKey( 'plugin-early-init2', $invalid_key_notices, 'plugin-early-init2 should exist in invalid_key.' ); - $this->assertArrayHasKey( 'plugin-early-init3', $invalid_key_notices, 'plugin-early-init3 should exist in invalid_key.' ); + /** + * @test + */ + public function prevent_duplicates_for_same_plugin(): void { + $plugin_name = 'DuplicatePlugin'; + $status = Tribe__PUE__Notices::INVALID_KEY; - // Ensure their values are correctly set to true - $this->assertTrue( $invalid_key_notices['plugin-early-init1'], 'plugin-early-init1 should have a value of true.' ); - $this->assertTrue( $invalid_key_notices['plugin-early-init2'], 'plugin-early-init2 should have a value of true.' ); - $this->assertTrue( $invalid_key_notices['plugin-early-init3'], 'plugin-early-init3 should have a value of true.' ); + $pue_notices = tribe( 'pue.notices' ); - // Ensure no unexpected nesting or corruption - foreach ( $invalid_key_notices as $plugin => $value ) { - $this->assertIsNotArray( $value, "The value for {$plugin} under invalid_key should not be an array." ); + // Add the same notice 50 times. + for ( $i = 0; $i < 50; $i++ ) { + $pue_notices->add_notice( $status, $plugin_name ); } + + // Save notices to persist the data. + $pue_notices->save_notices(); + + // Retrieve the final notices from the database. + $options = get_option( Tribe__PUE__Notices::STORE_KEY ); + + // Assert that the status exists. + $this->assertArrayHasKey( + $status, + $options, + "The status $status should exist in the notices." + ); + + // Assert that the plugin exists under the status. + $this->assertArrayHasKey( + $plugin_name, + $options[ $status ], + "The plugin $plugin_name should exist under $status." + ); + + // Assert that the plugin's value is true. + $this->assertTrue( + $options[ $status ][ $plugin_name ], + "The plugin $plugin_name should have a value of true under $status." + ); + + // Ensure no duplicates exist. + $this->assertCount( + 1, + $options[ $status ], + "There should be exactly 1 entry for $status." + ); } } - From 6a06b0273e13926be483355073f41a34a976e6a6 Mon Sep 17 00:00:00 2001 From: Brian Krane Date: Mon, 6 Jan 2025 14:48:11 -0500 Subject: [PATCH 053/112] Updated WP version for slic. --- .github/workflows/tests-php-eva.yml | 3 ++- .github/workflows/tests-php.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index 5c4cd2d917..91add0b7ca 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -355,8 +355,9 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.4.1 + ${SLIC_BIN} wp core update --force --version=6.6.1 ${SLIC_BIN} wp core version + ${SLIC_BIN} wp core update-db - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 465829b4ae..131f80203f 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,8 +178,9 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.4.1 + ${SLIC_BIN} wp core update --force --version=6.6.1 ${SLIC_BIN} wp core version + ${SLIC_BIN} wp core update-db - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} From 7c494f09692711dbd95aecd4b0af333e83101f94 Mon Sep 17 00:00:00 2001 From: George Pattichis Date: Tue, 7 Jan 2025 01:24:20 +0200 Subject: [PATCH 054/112] WP version (6.4.1) does not meet minreq for TEC. Plugin requires WP 6.5. --- .github/workflows/tests-php-eva.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index 5c4cd2d917..095bf6eba1 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -355,7 +355,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.4.1 + ${SLIC_BIN} wp core update --force --version=6.5 ${SLIC_BIN} wp core version - name: Run suite tests if: steps.skip.outputs.value != 1 From a721a6234d204787ca144e15ed0fb5be8ec9c8fb Mon Sep 17 00:00:00 2001 From: George Pattichis Date: Tue, 7 Jan 2025 01:36:48 +0200 Subject: [PATCH 055/112] WP version (6.4.1) does not meet minreq for TEC. Plugin requires WP 6.5. --- .github/workflows/tests-php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 465829b4ae..7bb7359a31 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,7 +178,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.4.1 + ${SLIC_BIN} wp core update --force --version=6.5 ${SLIC_BIN} wp core version - name: Run suite tests if: steps.skip.outputs.value != 1 From 54b2a005e8a626a1893f4f5d6099143b5271be61 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 15:23:19 +0200 Subject: [PATCH 056/112] Add action scheduler in common --- composer.json | 3 ++- composer.lock | 45 ++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 46 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 0f044f7278..1223c69e7c 100644 --- a/composer.json +++ b/composer.json @@ -35,7 +35,8 @@ "stellarwp/telemetry": "^2.3.1", "stellarwp/assets": "1.4.2", "stellarwp/admin-notices": "^1.1", - "stellarwp/uplink": "2.2.2" + "stellarwp/uplink": "2.2.2", + "woocommerce/action-scheduler": "3.8.1" }, "require-dev": { "automattic/vipwpcs": "^3.0", diff --git a/composer.lock b/composer.lock index 592be73345..083584227f 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "3a8885ed84fad9342daf3f204a3c48aa", + "content-hash": "93aa4e6be38c26f058ff7fefd0436faf", "packages": [ { "name": "firebase/php-jwt", @@ -846,6 +846,49 @@ "source": "https://github.com/stellarwp/uplink/tree/v2.2.2" }, "time": "2024-12-05T19:13:16+00:00" + }, + { + "name": "woocommerce/action-scheduler", + "version": "3.8.1", + "source": { + "type": "git", + "url": "https://github.com/woocommerce/action-scheduler.git", + "reference": "e331b534d7de10402d7545a0de50177b874c0779" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/woocommerce/action-scheduler/zipball/e331b534d7de10402d7545a0de50177b874c0779", + "reference": "e331b534d7de10402d7545a0de50177b874c0779", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "phpunit/phpunit": "^7.5", + "woocommerce/woocommerce-sniffs": "0.1.0", + "wp-cli/wp-cli": "~2.5.0", + "yoast/phpunit-polyfills": "^2.0" + }, + "type": "wordpress-plugin", + "extra": { + "scripts-description": { + "test": "Run unit tests", + "phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer", + "phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0-or-later" + ], + "description": "Action Scheduler for WordPress and WooCommerce", + "homepage": "https://actionscheduler.org/", + "support": { + "issues": "https://github.com/woocommerce/action-scheduler/issues", + "source": "https://github.com/woocommerce/action-scheduler/tree/3.8.1" + }, + "time": "2024-06-20T19:53:06+00:00" } ], "packages-dev": [ From 6efb95dcd31beefd693b03981fecbbeadbf034b1 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 15:28:04 +0200 Subject: [PATCH 057/112] Load the action scheduler during early init hook --- src/Tribe/Main.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Tribe/Main.php b/src/Tribe/Main.php index 6c4e188c57..6bca01f4a3 100644 --- a/src/Tribe/Main.php +++ b/src/Tribe/Main.php @@ -485,6 +485,18 @@ public function add_hooks() { add_filter( 'body_class', [ $this, 'add_js_class' ] ); add_action( 'wp_footer', [ $this, 'toggle_js_class' ] ); + + add_action( 'init', [ $this, 'load_action_scheduler' ], - 99999 ); + } + + /** + * Load the Action Scheduler library. + * + * @since TDB + */ + public function load_action_scheduler(): void { + // Load the Action Scheduler library. + require_once $this->plugin_path . 'vendor/woocommerce/action-scheduler/action-scheduler.php'; } /** From 03cc940a909ae976b750d88558f1817dfe54d2f5 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 15:32:33 +0200 Subject: [PATCH 058/112] Added changelog --- changelog/feat-move-as-to-common | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 changelog/feat-move-as-to-common diff --git a/changelog/feat-move-as-to-common b/changelog/feat-move-as-to-common new file mode 100644 index 0000000000..42c2343f54 --- /dev/null +++ b/changelog/feat-move-as-to-common @@ -0,0 +1,4 @@ +Significance: patch +Type: tweak + +Move Action Scheduler into Common instead of TEC. From 4b7ce1836453603b158b411c7d87e51b569d3293 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 15:41:14 +0200 Subject: [PATCH 059/112] Update changelog/feat-move-as-to-common --- changelog/feat-move-as-to-common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/feat-move-as-to-common b/changelog/feat-move-as-to-common index 42c2343f54..5c9788cc00 100644 --- a/changelog/feat-move-as-to-common +++ b/changelog/feat-move-as-to-common @@ -1,4 +1,4 @@ Significance: patch Type: tweak -Move Action Scheduler into Common instead of TEC. +Move Action Scheduler into Common instead of TEC. [TEC-5345] From 8f4d3cafdf193fe1d032fe7e412965f39d3d3207 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 15:44:37 +0200 Subject: [PATCH 060/112] Update core version in CI --- .github/workflows/tests-php-eva.yml | 2 +- .github/workflows/tests-php.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index 5c4cd2d917..095bf6eba1 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -355,7 +355,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.4.1 + ${SLIC_BIN} wp core update --force --version=6.5 ${SLIC_BIN} wp core version - name: Run suite tests if: steps.skip.outputs.value != 1 diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 465829b4ae..7bb7359a31 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,7 +178,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.4.1 + ${SLIC_BIN} wp core update --force --version=6.5 ${SLIC_BIN} wp core version - name: Run suite tests if: steps.skip.outputs.value != 1 From 9d1523186f391a93072216a3c3604bd08b518ae1 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 15:54:19 +0200 Subject: [PATCH 061/112] update end2end dump --- tests/_data/dump.sql | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/_data/dump.sql b/tests/_data/dump.sql index d102f2332b..80b5e006f2 100644 --- a/tests/_data/dump.sql +++ b/tests/_data/dump.sql @@ -1,4 +1,5 @@ --- MariaDB dump 10.19 Distrib 10.5.23-MariaDB, for debian-linux-gnu (aarch64) +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.5.26-MariaDB, for debian-linux-gnu (aarch64) -- -- Host: db Database: test -- ------------------------------------------------------ @@ -1036,7 +1037,7 @@ CREATE TABLE `wp_options` ( PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=491 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=507 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1045,7 +1046,7 @@ CREATE TABLE `wp_options` ( LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; -INSERT INTO `wp_options` VALUES (2,'siteurl','http://wordpress.test','yes'),(3,'home','http://wordpress.test','yes'),(4,'blogname','Event Automator','yes'),(5,'blogdescription','','yes'),(6,'users_can_register','0','yes'),(7,'admin_email','you@example.com','yes'),(8,'start_of_week','1','yes'),(9,'use_balanceTags','0','yes'),(10,'use_smilies','1','yes'),(11,'require_name_email','1','yes'),(12,'comments_notify','1','yes'),(13,'posts_per_rss','10','yes'),(14,'rss_use_excerpt','0','yes'),(15,'mailserver_url','mail.example.com','yes'),(16,'mailserver_login','login@example.com','yes'),(17,'mailserver_pass','password','yes'),(18,'mailserver_port','110','yes'),(19,'default_category','1','yes'),(20,'default_comment_status','open','yes'),(21,'default_ping_status','open','yes'),(22,'default_pingback_flag','1','yes'),(23,'posts_per_page','10','yes'),(24,'date_format','F j, Y','yes'),(25,'time_format','g:i a','yes'),(26,'links_updated_date_format','F j, Y g:i a','yes'),(27,'comment_moderation','0','yes'),(28,'moderation_notify','1','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','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','twentytwentythree','yes'),(41,'stylesheet','twentytwentythree','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','56657','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:1:{s:35:\"event-automator/event-automator.php\";s:23:\"tec_automator_uninstall\";}','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'),(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:71:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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','1','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:12:{i:1697535086;a:1:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697535087;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697535092;a:5:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1697535625;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1697535626;a:1:{s:46:\"tec_tickets_update_glance_item_attendee_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1697535627;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:1697535685;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1697621486;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1697621492;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1701174401;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1727437998;a:1:{s:21:\"tribe-recurrence-cron\";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,'tribe_last_updated_option','1727438041.2444','yes'),(107,'nonce_key','hMwU.4q>Tjyt##0W@,*#U0~RFLy`y)]akRY,a/iPhH.| mBStiq*5(*SH[IejO!L','no'),(108,'nonce_salt','ElWxp&9bPhFm;%kaVuDoxn:MYR)nC6O:e&~?9GAWPA>f,B t LXkV=NgKh-F`oM~','no'),(109,'tribe_events_calendar_options','a:23:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:25:\"ticket-enabled-post-types\";a:2:{i:0;s:12:\"tribe_events\";i:1;s:4:\"page\";}s:14:\"schema-version\";s:6:\"5.16.0\";s:28:\"event-tickets-schema-version\";s:6:\"5.13.4\";s:21:\"previous_ecp_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"6.2.2\";i:2;s:7:\"6.2.3.2\";i:3;s:7:\"6.2.8.1\";i:4;s:5:\"6.3.1\";i:5;s:7:\"6.6.4.2\";}s:18:\"latest_ecp_version\";s:5:\"6.7.0\";s:31:\"previous_event_tickets_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"5.6.5\";i:2;s:7:\"5.6.6.1\";i:3;s:5:\"5.7.0\";i:4;s:5:\"5.8.0\";i:5;s:8:\"5.13.3.1\";}s:28:\"latest_event_tickets_version\";s:6:\"5.13.4\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:60;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:30:\"event-automator-schema-version\";s:5:\"1.7.0\";s:13:\"opt-in-status\";b:0;s:39:\"last-update-message-the-events-calendar\";s:5:\"6.7.0\";s:18:\"pro-schema-version\";s:5:\"7.1.0\";s:29:\"events-virtual-schema-version\";s:6:\"1.15.8\";s:26:\"flexible_tickets_activated\";b:1;s:36:\"previous_event_tickets_plus_versions\";a:1:{i:0;s:1:\"0\";}s:33:\"latest_event_tickets_plus_version\";s:5:\"6.0.4\";s:33:\"event-tickets-plus-schema-version\";s:5:\"6.0.4\";}','yes'),(110,'schema-ActionScheduler_StoreSchema','7.0.1697535092','yes'),(111,'schema-ActionScheduler_LoggerSchema','3.0.1697535092','yes'),(114,'tribe_last_save_post','1727438041.2446','yes'),(115,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(125,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(126,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(127,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727524326;}','yes'),(131,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','yes'),(132,'tec_ct1_events_table_schema_version','1.0.1','yes'),(133,'tec_ct1_occurrences_table_schema_version','1.0.2','yes'),(134,'stellarwp_telemetry_last_send','','yes'),(135,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:3:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}s:13:\"event-tickets\";a:2:{s:7:\"wp_slug\";s:31:\"event-tickets/event-tickets.php\";s:5:\"optin\";b:0;}s:19:\"events-calendar-pro\";a:2:{s:7:\"wp_slug\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"optin\";b:0;}}}','yes'),(136,'stellarwp_telemetry_the-events-calendar_show_optin','0','yes'),(139,'tribe_last_generate_rewrite_rules','1697535093.6692','yes'),(190,'stellarwp_telemetry_event-tickets_show_optin','0','yes'),(192,'action_scheduler_lock_async-request-runner','66f69ca6a79ba9.98696118|1727438050','yes'),(193,'theme_mods_twentytwentythree','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(194,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:0:{}s:15:\"version_checked\";s:5:\"6.4.1\";s:12:\"last_checked\";i:1727437925;}','no'),(198,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727437925;s:7:\"checked\";a:4:{s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"2.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(211,'tec_timed_tribe_supports_async_process','','yes'),(225,'tec_timed_events_timezone_update_needed','a:3:{s:3:\"key\";s:29:\"events_timezone_update_needed\";s:5:\"value\";b:0;s:10:\"expiration\";i:1727524328;}','yes'),(229,'recently_activated','a:4:{s:34:\"events-pro/events-calendar-pro.php\";i:1727438043;s:43:\"the-events-calendar/the-events-calendar.php\";i:1727438041;s:31:\"event-tickets/event-tickets.php\";i:1727437980;s:41:\"event-tickets-plus/event-tickets-plus.php\";i:1727437980;}','yes'),(243,'tribe_feature_support_check_lock','1','yes'),(249,'pue_install_key_event_automator','5f53261eb16f7ddf4fe24b69918c8804c82ea817','yes'),(252,'tec_automator_zapier_secret_key','367c29c0d738e48eaf47a9d7095c4768194a4b69380f76d21a352f60523f58a9e28935457ad293a980aab00a09d4411ab749e8734b788b1c50ff99efa709e3cc7daff0ba3828e2777f1a2a2e4c56346ed9c5ab55b3e20f559a9b6d6b1a47565d75182c17ce62df7d6be8a6e3856d5edba8ab4d4354ce565bd8506afecafa9da4','yes'),(253,'tec_automator_power_automate_secret_key','35bfd05098069168616a1929f965a740cc86560622f12b2876bd277ab61047cabb42f84246ba5c852e6fce68783b2087739d0d894a8f67b089faf1cb12ff98dfc8f8e407bc041418481c9372b07b118bbd5faf59485f27a219d696d613782489376e4e27de90e0f9372f67b3b1a954044d5795756796c9353e322efe284f17b8','yes'),(265,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.1\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(270,'permalink_structure','','yes'),(272,'wp_attachment_pages_enabled','1','yes'),(273,'db_upgraded','','yes'),(337,'wpdg_specific_version_name','6.2.3','yes'),(338,'wpdg_download_url','','yes'),(339,'wpdg_edit_download_url','','yes'),(342,'core_updater.lock','1701272344','no'),(401,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727438043;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:33:\"coupon-creator/coupon_creator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/coupon-creator\";s:4:\"slug\";s:14:\"coupon-creator\";s:6:\"plugin\";s:33:\"coupon-creator/coupon_creator.php\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/coupon-creator/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/coupon-creator.3.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";s:3:\"svg\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/coupon-creator/assets/banner-1544x500.png?rev=2688941\";s:2:\"1x\";s:69:\"https://ps.w.org/coupon-creator/assets/banner-772x250.png?rev=2688941\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:5:\"3.2.6\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:5:\"5.8.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/event-tickets.5.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.3.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.2.0\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.5.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:29:\"wp-downgrade/wp-downgrade.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-downgrade\";s:4:\"slug\";s:12:\"wp-downgrade\";s:6:\"plugin\";s:29:\"wp-downgrade/wp-downgrade.php\";s:11:\"new_version\";s:5:\"1.2.6\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-downgrade/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-downgrade.1.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-downgrade/assets/icon-256x256.png?rev=1412844\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-downgrade/assets/icon-128x128.png?rev=1412844\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:27:\"wp-rollback/wp-rollback.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-rollback\";s:4:\"slug\";s:11:\"wp-rollback\";s:6:\"plugin\";s:27:\"wp-rollback/wp-rollback.php\";s:11:\"new_version\";s:5:\"2.0.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-rollback/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-rollback.2.0.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-256x256.jpg?rev=3014868\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-128x128.jpg?rev=3014868\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-rollback/assets/banner-1544x500.jpg?rev=3014868\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-rollback/assets/banner-772x250.jpg?rev=3014872\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:18:{s:33:\"ai-development/ai-development.php\";s:5:\"0.1.0\";s:33:\"coupon-creator/coupon_creator.php\";s:5:\"3.3.0\";s:49:\"coupon-creator-add-ons/coupon-creator-add-ons.php\";s:5:\"3.3.0\";s:41:\"coupon-creator-pro/coupon-creator-pro.php\";s:5:\"3.3.0\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:5:\"3.2.6\";s:49:\"event-schedule-manager/event-schedule-manager.php\";s:5:\"1.1.0\";s:31:\"event-tickets/event-tickets.php\";s:5:\"5.8.0\";s:41:\"event-tickets-plus/event-tickets-plus.php\";s:5:\"5.9.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.0\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"6.3.1\";s:35:\"event-automator/event-automator.php\";s:5:\"1.6.0\";s:33:\"events-virtual/events-virtual.php\";s:6:\"1.15.5\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"6.3.1\";s:29:\"volt-vectors/volt-vectors.php\";s:5:\"0.1.0\";s:37:\"volt-vectors-pro/volt-vectors-pro.php\";s:5:\"0.1.0\";s:27:\"woocommerce/woocommerce.php\";s:5:\"8.2.2\";s:29:\"wp-downgrade/wp-downgrade.php\";s:5:\"1.2.6\";s:27:\"wp-rollback/wp-rollback.php\";s:5:\"2.0.6\";}}','no'),(411,'can_compress_scripts','0','yes'),(419,'widget_tribe-widget-event-countdown','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(420,'widget_tribe-widget-featured-venue','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(421,'widget_tribe-widget-events-month','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(422,'widget_tribe-widget-events-week','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(423,'tec_ct1_series_relationship_table_schema_version','1.0.0','yes'),(424,'tec_ct1_events_field_schema_version','1.0.1','yes'),(425,'tec_ct1_occurrences_field_schema_version','1.0.1','yes'),(428,'tec_timed_tec_custom_tables_v1_ecp_initialized','a:3:{s:3:\"key\";s:36:\"tec_custom_tables_v1_ecp_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727524326;}','yes'),(429,'_transient_timeout_tribe_events_series_flush_rewrite','1729779605','no'),(430,'_transient_tribe_events_series_flush_rewrite','1','no'),(431,'stellarwp_telemetry_events-calendar-pro_show_optin','0','yes'),(436,'external_updates-events-calendar-pro','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727438041;s:14:\"checkedVersion\";s:5:\"7.1.0\";s:6:\"update\";N;}','no'),(437,'tribe_pue_key_notices','a:0:{}','yes'),(443,'_transient_timeout__tribe_tickets_activation_redirect','1727437958','no'),(444,'_transient__tribe_tickets_activation_redirect','1','no'),(445,'_transient_tec_tickets_commerce_setup_stripe_webhook','1','yes'),(456,'tec_timed_events_is_rest_api_blocked','a:3:{s:3:\"key\";s:26:\"events_is_rest_api_blocked\";s:5:\"value\";s:59:\"http://localhost:8888/index.php?rest_route=/tribe/events/v1\";s:10:\"expiration\";i:1727610770;}','yes'),(459,'_site_transient_timeout_theme_roots','1727439725','no'),(460,'_site_transient_theme_roots','a:1:{s:16:\"twentytwentyfour\";s:7:\"/themes\";}','no'),(461,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1727481125','no'),(462,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','

RSS Error: WP HTTP Error: User has blocked requests through HTTP.

RSS Error: WP HTTP Error: User has blocked requests through HTTP.

','no'),(468,'_transient_timeout_as-post-store-dependencies-met','1727524326','no'),(469,'_transient_as-post-store-dependencies-met','yes','no'),(471,'_transient_timeout_tribe_aggregator_services_list','1727524326','no'),(472,'_transient_tribe_aggregator_services_list','a:1:{s:6:\"origin\";a:1:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";s:3:\"csv\";s:4:\"name\";s:8:\"CSV File\";}}}','no'),(474,'_transient_timeout_action_scheduler_last_pastdue_actions_check','1727459527','no'),(475,'_transient_action_scheduler_last_pastdue_actions_check','1727437927','no'),(476,'stellar_schema_version_tec-ft-ticket-groups','1.0.0','yes'),(477,'stellar_schema_version_tec-ft-posts-and-ticket-groups','1.0.0','yes'),(480,'external_updates-event-tickets-plus','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727437980;s:14:\"checkedVersion\";s:5:\"6.0.4\";s:6:\"update\";N;}','no'),(481,'admin_email_lifespan','1742989968','yes'),(489,'_transient_timeout__tribe_admin_notices','1730029998','no'),(490,'_transient__tribe_admin_notices','a:1:{s:44:\"updated-to-merge-version-consolidated-notice\";a:3:{i:0;s:205:\"

Thanks for upgrading The Events Calendar Pro to 7.1.0 now with even more value! Learn more about the latest changes here.

\";i:1;a:5:{s:4:\"type\";s:7:\"success\";s:7:\"dismiss\";b:1;s:6:\"action\";s:13:\"admin_notices\";s:8:\"priority\";i:1;s:15:\"active_callback\";s:80:\"TEC\\Common\\Integrations\\Plugin_Merge_Provider_Abstract::should_show_merge_notice\";}i:2;i:1758973998;}}','no'); +INSERT INTO `wp_options` VALUES (2,'siteurl','http://wordpress.test','yes'),(3,'home','http://wordpress.test','yes'),(4,'blogname','Event Automator','yes'),(5,'blogdescription','','yes'),(6,'users_can_register','0','yes'),(7,'admin_email','you@example.com','yes'),(8,'start_of_week','1','yes'),(9,'use_balanceTags','0','yes'),(10,'use_smilies','1','yes'),(11,'require_name_email','1','yes'),(12,'comments_notify','1','yes'),(13,'posts_per_rss','10','yes'),(14,'rss_use_excerpt','0','yes'),(15,'mailserver_url','mail.example.com','yes'),(16,'mailserver_login','login@example.com','yes'),(17,'mailserver_pass','password','yes'),(18,'mailserver_port','110','yes'),(19,'default_category','1','yes'),(20,'default_comment_status','open','yes'),(21,'default_ping_status','open','yes'),(22,'default_pingback_flag','1','yes'),(23,'posts_per_page','10','yes'),(24,'date_format','F j, Y','yes'),(25,'time_format','g:i a','yes'),(26,'links_updated_date_format','F j, Y g:i a','yes'),(27,'comment_moderation','0','yes'),(28,'moderation_notify','1','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','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','twentytwentythree','yes'),(41,'stylesheet','twentytwentythree','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','57155','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:1:{s:35:\"event-automator/event-automator.php\";s:23:\"tec_automator_uninstall\";}','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'),(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:71:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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','1','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:12:{i:1736260292;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:1736261425;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1736285492;a:3:{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:1736286025;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:1736328686;a:2:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736328687;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736328692;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736329225;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:1736329227;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:1736337198;a:1:{s:21:\"tribe-recurrence-cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736857601;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(106,'tribe_last_updated_option','1727438041.2444','yes'),(107,'nonce_key','hMwU.4q>Tjyt##0W@,*#U0~RFLy`y)]akRY,a/iPhH.| mBStiq*5(*SH[IejO!L','no'),(108,'nonce_salt','ElWxp&9bPhFm;%kaVuDoxn:MYR)nC6O:e&~?9GAWPA>f,B t LXkV=NgKh-F`oM~','no'),(109,'tribe_events_calendar_options','a:23:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:25:\"ticket-enabled-post-types\";a:2:{i:0;s:12:\"tribe_events\";i:1;s:4:\"page\";}s:14:\"schema-version\";s:6:\"5.16.0\";s:28:\"event-tickets-schema-version\";s:6:\"5.13.4\";s:21:\"previous_ecp_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"6.2.2\";i:2;s:7:\"6.2.3.2\";i:3;s:7:\"6.2.8.1\";i:4;s:5:\"6.3.1\";i:5;s:7:\"6.6.4.2\";}s:18:\"latest_ecp_version\";s:5:\"6.7.0\";s:31:\"previous_event_tickets_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"5.6.5\";i:2;s:7:\"5.6.6.1\";i:3;s:5:\"5.7.0\";i:4;s:5:\"5.8.0\";i:5;s:8:\"5.13.3.1\";}s:28:\"latest_event_tickets_version\";s:6:\"5.13.4\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:60;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:30:\"event-automator-schema-version\";s:5:\"1.7.0\";s:13:\"opt-in-status\";b:0;s:39:\"last-update-message-the-events-calendar\";s:5:\"6.7.0\";s:18:\"pro-schema-version\";s:5:\"7.1.0\";s:29:\"events-virtual-schema-version\";s:6:\"1.15.8\";s:26:\"flexible_tickets_activated\";b:1;s:36:\"previous_event_tickets_plus_versions\";a:1:{i:0;s:1:\"0\";}s:33:\"latest_event_tickets_plus_version\";s:5:\"6.0.4\";s:33:\"event-tickets-plus-schema-version\";s:5:\"6.0.4\";}','yes'),(110,'schema-ActionScheduler_StoreSchema','7.0.1697535092','yes'),(111,'schema-ActionScheduler_LoggerSchema','3.0.1697535092','yes'),(114,'tribe_last_save_post','1727438041.2446','yes'),(115,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(125,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(126,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(127,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727524326;}','yes'),(131,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','yes'),(132,'tec_ct1_events_table_schema_version','1.0.1','yes'),(133,'tec_ct1_occurrences_table_schema_version','1.0.2','yes'),(134,'stellarwp_telemetry_last_send','','yes'),(135,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:3:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}s:13:\"event-tickets\";a:2:{s:7:\"wp_slug\";s:31:\"event-tickets/event-tickets.php\";s:5:\"optin\";b:0;}s:19:\"events-calendar-pro\";a:2:{s:7:\"wp_slug\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"optin\";b:0;}}}','yes'),(136,'stellarwp_telemetry_the-events-calendar_show_optin','0','yes'),(139,'tribe_last_generate_rewrite_rules','1697535093.6692','yes'),(190,'stellarwp_telemetry_event-tickets_show_optin','0','yes'),(192,'action_scheduler_lock_async-request-runner','66f69ca6a79ba9.98696118|1727438050','yes'),(193,'theme_mods_twentytwentythree','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(198,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1736257932;s:7:\"checked\";a:6:{s:12:\"twentytwenty\";s:3:\"2.7\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.2\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:5:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.4.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.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.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.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','no'),(211,'tec_timed_tribe_supports_async_process','','yes'),(225,'tec_timed_events_timezone_update_needed','a:3:{s:3:\"key\";s:29:\"events_timezone_update_needed\";s:5:\"value\";b:0;s:10:\"expiration\";i:1727524328;}','yes'),(229,'recently_activated','a:4:{s:34:\"events-pro/events-calendar-pro.php\";i:1727438043;s:43:\"the-events-calendar/the-events-calendar.php\";i:1727438041;s:31:\"event-tickets/event-tickets.php\";i:1727437980;s:41:\"event-tickets-plus/event-tickets-plus.php\";i:1727437980;}','yes'),(243,'tribe_feature_support_check_lock','1','yes'),(249,'pue_install_key_event_automator','5f53261eb16f7ddf4fe24b69918c8804c82ea817','yes'),(252,'tec_automator_zapier_secret_key','367c29c0d738e48eaf47a9d7095c4768194a4b69380f76d21a352f60523f58a9e28935457ad293a980aab00a09d4411ab749e8734b788b1c50ff99efa709e3cc7daff0ba3828e2777f1a2a2e4c56346ed9c5ab55b3e20f559a9b6d6b1a47565d75182c17ce62df7d6be8a6e3856d5edba8ab4d4354ce565bd8506afecafa9da4','yes'),(253,'tec_automator_power_automate_secret_key','35bfd05098069168616a1929f965a740cc86560622f12b2876bd277ab61047cabb42f84246ba5c852e6fce68783b2087739d0d894a8f67b089faf1cb12ff98dfc8f8e407bc041418481c9372b07b118bbd5faf59485f27a219d696d613782489376e4e27de90e0f9372f67b3b1a954044d5795756796c9353e322efe284f17b8','yes'),(265,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:3:\"6.5\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:27:\"post-content/editor-rtl.css\";i:281;s:31:\"post-content/editor-rtl.min.css\";i:282;s:23:\"post-content/editor.css\";i:283;s:27:\"post-content/editor.min.css\";i:284;s:23:\"post-date/style-rtl.css\";i:285;s:27:\"post-date/style-rtl.min.css\";i:286;s:19:\"post-date/style.css\";i:287;s:23:\"post-date/style.min.css\";i:288;s:27:\"post-excerpt/editor-rtl.css\";i:289;s:31:\"post-excerpt/editor-rtl.min.css\";i:290;s:23:\"post-excerpt/editor.css\";i:291;s:27:\"post-excerpt/editor.min.css\";i:292;s:26:\"post-excerpt/style-rtl.css\";i:293;s:30:\"post-excerpt/style-rtl.min.css\";i:294;s:22:\"post-excerpt/style.css\";i:295;s:26:\"post-excerpt/style.min.css\";i:296;s:34:\"post-featured-image/editor-rtl.css\";i:297;s:38:\"post-featured-image/editor-rtl.min.css\";i:298;s:30:\"post-featured-image/editor.css\";i:299;s:34:\"post-featured-image/editor.min.css\";i:300;s:33:\"post-featured-image/style-rtl.css\";i:301;s:37:\"post-featured-image/style-rtl.min.css\";i:302;s:29:\"post-featured-image/style.css\";i:303;s:33:\"post-featured-image/style.min.css\";i:304;s:34:\"post-navigation-link/style-rtl.css\";i:305;s:38:\"post-navigation-link/style-rtl.min.css\";i:306;s:30:\"post-navigation-link/style.css\";i:307;s:34:\"post-navigation-link/style.min.css\";i:308;s:28:\"post-template/editor-rtl.css\";i:309;s:32:\"post-template/editor-rtl.min.css\";i:310;s:24:\"post-template/editor.css\";i:311;s:28:\"post-template/editor.min.css\";i:312;s:27:\"post-template/style-rtl.css\";i:313;s:31:\"post-template/style-rtl.min.css\";i:314;s:23:\"post-template/style.css\";i:315;s:27:\"post-template/style.min.css\";i:316;s:24:\"post-terms/style-rtl.css\";i:317;s:28:\"post-terms/style-rtl.min.css\";i:318;s:20:\"post-terms/style.css\";i:319;s:24:\"post-terms/style.min.css\";i:320;s:24:\"post-title/style-rtl.css\";i:321;s:28:\"post-title/style-rtl.min.css\";i:322;s:20:\"post-title/style.css\";i:323;s:24:\"post-title/style.min.css\";i:324;s:26:\"preformatted/style-rtl.css\";i:325;s:30:\"preformatted/style-rtl.min.css\";i:326;s:22:\"preformatted/style.css\";i:327;s:26:\"preformatted/style.min.css\";i:328;s:24:\"pullquote/editor-rtl.css\";i:329;s:28:\"pullquote/editor-rtl.min.css\";i:330;s:20:\"pullquote/editor.css\";i:331;s:24:\"pullquote/editor.min.css\";i:332;s:23:\"pullquote/style-rtl.css\";i:333;s:27:\"pullquote/style-rtl.min.css\";i:334;s:19:\"pullquote/style.css\";i:335;s:23:\"pullquote/style.min.css\";i:336;s:23:\"pullquote/theme-rtl.css\";i:337;s:27:\"pullquote/theme-rtl.min.css\";i:338;s:19:\"pullquote/theme.css\";i:339;s:23:\"pullquote/theme.min.css\";i:340;s:39:\"query-pagination-numbers/editor-rtl.css\";i:341;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:342;s:35:\"query-pagination-numbers/editor.css\";i:343;s:39:\"query-pagination-numbers/editor.min.css\";i:344;s:31:\"query-pagination/editor-rtl.css\";i:345;s:35:\"query-pagination/editor-rtl.min.css\";i:346;s:27:\"query-pagination/editor.css\";i:347;s:31:\"query-pagination/editor.min.css\";i:348;s:30:\"query-pagination/style-rtl.css\";i:349;s:34:\"query-pagination/style-rtl.min.css\";i:350;s:26:\"query-pagination/style.css\";i:351;s:30:\"query-pagination/style.min.css\";i:352;s:25:\"query-title/style-rtl.css\";i:353;s:29:\"query-title/style-rtl.min.css\";i:354;s:21:\"query-title/style.css\";i:355;s:25:\"query-title/style.min.css\";i:356;s:20:\"query/editor-rtl.css\";i:357;s:24:\"query/editor-rtl.min.css\";i:358;s:16:\"query/editor.css\";i:359;s:20:\"query/editor.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(270,'permalink_structure','','yes'),(272,'wp_attachment_pages_enabled','1','yes'),(273,'db_upgraded','1','yes'),(337,'wpdg_specific_version_name','6.2.3','yes'),(338,'wpdg_download_url','','yes'),(339,'wpdg_edit_download_url','','yes'),(401,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1736257931;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:7:\"3.3.5.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.3.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:6:\"5.18.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/event-tickets.5.18.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:6:\"3.17.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/query-monitor.3.17.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=2870124\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.9.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:33:\"user-switching/user-switching.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/user-switching\";s:4:\"slug\";s:14:\"user-switching\";s:6:\"plugin\";s:33:\"user-switching/user-switching.php\";s:11:\"new_version\";s:5:\"1.9.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/user-switching/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/user-switching.1.9.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=3193956\";s:3:\"svg\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=3193956\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/user-switching/assets/banner-1544x500.png?rev=2204929\";s:2:\"1x\";s:69:\"https://ps.w.org/user-switching/assets/banner-772x250.png?rev=2204929\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"wp-rollback/wp-rollback.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-rollback\";s:4:\"slug\";s:11:\"wp-rollback\";s:6:\"plugin\";s:27:\"wp-rollback/wp-rollback.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-rollback/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-rollback.2.0.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-256x256.jpg?rev=3014868\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-128x128.jpg?rev=3014868\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-rollback/assets/banner-1544x500.jpg?rev=3014868\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-rollback/assets/banner-772x250.jpg?rev=3014872\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}}}','no'),(419,'widget_tribe-widget-event-countdown','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(420,'widget_tribe-widget-featured-venue','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(421,'widget_tribe-widget-events-month','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(422,'widget_tribe-widget-events-week','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(423,'tec_ct1_series_relationship_table_schema_version','1.0.0','yes'),(424,'tec_ct1_events_field_schema_version','1.0.1','yes'),(425,'tec_ct1_occurrences_field_schema_version','1.0.1','yes'),(428,'tec_timed_tec_custom_tables_v1_ecp_initialized','a:3:{s:3:\"key\";s:36:\"tec_custom_tables_v1_ecp_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727524326;}','yes'),(431,'stellarwp_telemetry_events-calendar-pro_show_optin','0','yes'),(436,'external_updates-events-calendar-pro','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727438041;s:14:\"checkedVersion\";s:5:\"7.1.0\";s:6:\"update\";N;}','no'),(437,'tribe_pue_key_notices','a:0:{}','yes'),(445,'_transient_tec_tickets_commerce_setup_stripe_webhook','1','yes'),(456,'tec_timed_events_is_rest_api_blocked','a:3:{s:3:\"key\";s:26:\"events_is_rest_api_blocked\";s:5:\"value\";s:59:\"http://localhost:8888/index.php?rest_route=/tribe/events/v1\";s:10:\"expiration\";i:1727610770;}','yes'),(476,'stellar_schema_version_tec-ft-ticket-groups','1.0.0','yes'),(477,'stellar_schema_version_tec-ft-posts-and-ticket-groups','1.0.0','yes'),(480,'external_updates-event-tickets-plus','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727437980;s:14:\"checkedVersion\";s:5:\"6.0.4\";s:6:\"update\";N;}','no'),(481,'admin_email_lifespan','1742989968','yes'),(492,'recovery_keys','a:0:{}','yes'),(493,'_site_transient_timeout_theme_roots','1736259625','no'),(494,'_site_transient_theme_roots','a:6:{s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(496,'finished_updating_comment_type','1','yes'),(497,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(498,'rewrite_rules','','yes'),(499,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":4}','yes'),(506,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.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.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:61:\"https://downloads.w.org/release/wordpress-6.5.5-partial-0.zip\";s:8:\"rollback\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-rollback-0.zip\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:3:\"6.5\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1736257932;s:15:\"version_checked\";s:3:\"6.5\";s:12:\"translations\";a:0:{}}','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; @@ -1121,7 +1122,7 @@ CREATE TABLE `wp_posts` ( LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; -INSERT INTO `wp_posts` VALUES (4,1,'2023-10-17 09:40:27','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-10-17 09:40:27','0000-00-00 00:00:00','',0,'http://localhost:8888/?p=4',0,'post','',0),(5,0,'2023-11-28 12:24:59','2023-11-28 12:24:59','','Navigation','','publish','closed','closed','','navigation','','','2023-11-28 12:24:59','2023-11-28 12:24:59','',0,'http://localhost:8888/?p=5',0,'wp_navigation','',0),(6,1,'2024-01-28 15:23:50','2024-01-28 15:23:50','\n\n\n','Calendar Views (Event Archive)','Displays the calendar views.','publish','closed','closed','','archive-events','','','2024-01-28 15:23:50','2024-01-28 15:23:50','',0,'http://localhost:8888/?p=6',0,'wp_template','',0),(7,1,'2024-01-28 15:23:50','2024-01-28 15:23:50','\n\n\n','Event Single','Displays a single event.','publish','closed','closed','','single-event','','','2024-01-28 15:23:50','2024-01-28 15:23:50','',0,'http://localhost:8888/?p=7',0,'wp_template','',0); +INSERT INTO `wp_posts` VALUES (5,0,'2023-11-28 12:24:59','2023-11-28 12:24:59','','Navigation','','publish','closed','closed','','navigation','','','2023-11-28 12:24:59','2023-11-28 12:24:59','',0,'http://localhost:8888/?p=5',0,'wp_navigation','',0),(6,1,'2024-01-28 15:23:50','2024-01-28 15:23:50','\n\n\n','Calendar Views (Event Archive)','Displays the calendar views.','publish','closed','closed','','archive-events','','','2024-01-28 15:23:50','2024-01-28 15:23:50','',0,'http://localhost:8888/?p=6',0,'wp_template','',0),(7,1,'2024-01-28 15:23:50','2024-01-28 15:23:50','\n\n\n','Event Single','Displays a single event.','publish','closed','closed','','single-event','','','2024-01-28 15:23:50','2024-01-28 15:23:50','',0,'http://localhost:8888/?p=7',0,'wp_template','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; @@ -2505,4 +2506,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-09-27 11:54:15 +-- Dump completed on 2025-01-07 13:54:14 From 4560a9783d355e0fb0b914ee425325dd796ffbb5 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 15:54:27 +0200 Subject: [PATCH 062/112] update activation dump --- tests/_data/empty.sql | 85 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 81 insertions(+), 4 deletions(-) diff --git a/tests/_data/empty.sql b/tests/_data/empty.sql index 0712298556..a606549845 100644 --- a/tests/_data/empty.sql +++ b/tests/_data/empty.sql @@ -1,4 +1,5 @@ --- MariaDB dump 10.19 Distrib 10.5.23-MariaDB, for debian-linux-gnu (x86_64) +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.5.26-MariaDB, for debian-linux-gnu (aarch64) -- -- Host: db Database: test -- ------------------------------------------------------ @@ -1035,7 +1036,7 @@ CREATE TABLE `wp_options` ( PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=234 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1044,7 +1045,7 @@ CREATE TABLE `wp_options` ( LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; -INSERT INTO `wp_options` VALUES (1,'siteurl','http://wordpress.test','yes'),(2,'home','http://wordpress.test','yes'),(3,'blogname','tribe','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','dev-email@flywheel.local','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','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(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','twentynineteen','yes'),(41,'stylesheet','twentynineteen','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','56657','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','0','yes'),(92,'show_comments_cookies_opt_in','0','yes'),(93,'initial_db_version','43764','yes'),(94,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:71:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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'),(95,'fresh_site','1','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'nonce_key','cUt`#XO9(ILxCXqfajr1eWn1D?Bt c_`_`Z)&Mc,GtB@s)R.z0{6cH9eAX~z|&lH','no'),(109,'nonce_salt','aO8e;;h]BHqZ#/Nl.9ono5S}r~@falSDm:lJ)UI6%gwL.s20[+2$HmbUUY},wTH{','no'),(110,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'cron','a:9:{i:1717144359;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:1717158759;a:3:{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:1717166716;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:1717166901;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717174192;a:1:{s:21:\"tribe-recurrence-cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717175640;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717175794;a:1:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717262040;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(114,'theme_mods_twentynineteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(141,'recently_activated','a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";i:1648813540;s:34:\"events-pro/events-calendar-pro.php\";i:1547485439;}','yes'),(144,'tribe_events_calendar_options','a:10:{s:14:\"schema-version\";s:3:\"3.9\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:3:{i:0;s:1:\"0\";i:1;s:3:\"4.8\";i:2;s:5:\"5.5.0\";}s:18:\"latest_ecp_version\";s:6:\"5.14.1\";s:39:\"last-update-message-the-events-calendar\";s:5:\"4.7.3\";s:16:\"tribeEnableViews\";a:6:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";i:3;s:5:\"photo\";i:4;s:3:\"map\";i:5;s:4:\"week\";}s:18:\"pro-schema-version\";s:3:\"3.9\";s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:10:\"viewOption\";s:4:\"list\";}','yes'),(145,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(146,'tribe_last_save_post','1648813540.9972','yes'),(162,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"dev-email@flywheel.local\";s:7:\"version\";s:5:\"5.0.3\";s:9:\"timestamp\";i:1547484249;}','no'),(184,'widget_tribe-events-adv-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(185,'widget_tribe-events-countdown-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(186,'widget_tribe-mini-calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(187,'widget_tribe-events-venue-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(188,'widget_tribe-this-week-events-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(191,'admin_email_lifespan','0','yes'),(192,'disallowed_keys','','no'),(193,'comment_previously_approved','1','yes'),(194,'auto_plugin_theme_update_emails','a:0:{}','no'),(195,'finished_updating_comment_type','1','yes'),(196,'db_upgraded','1','yes'),(200,'tribe_last_updated_option','1648813540.997','yes'),(203,'tribe_last_generate_rewrite_rules','1648813521.3266','yes'),(207,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1615569401;s:7:\"checked\";a:3:{s:14:\"twentynineteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"2.4\";s:12:\"twentytwenty\";s:3:\"1.5\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.0.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.6.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.7.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(208,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1648813521;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:6:\"5.14.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.14.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}}s:7:\"checked\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:6:\"5.14.1\";s:27:\"tec-common/tribe-common.php\";s:7:\"4.14.16\";}}','no'),(209,'recovery_keys','a:0:{}','yes'),(212,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(218,'active_plugins','a:0:{}','yes'),(223,'rewrite_rules','a:93:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(224,'auto_update_core_dev','enabled','yes'),(225,'auto_update_core_minor','enabled','yes'),(226,'auto_update_core_major','unset','yes'),(227,'wp_force_deactivated_plugins','a:0:{}','yes'),(228,'user_count','1','no'),(229,'_site_transient_timeout_theme_roots','1717145856','no'),(230,'_site_transient_theme_roots','a:5:{s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(231,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(232,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":4}','yes'),(233,'wp_attachment_pages_enabled','1','yes'); +INSERT INTO `wp_options` VALUES (1,'siteurl','http://wordpress.test','yes'),(2,'home','http://wordpress.test','yes'),(3,'blogname','tribe','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','dev-email@flywheel.local','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','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(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','twentynineteen','yes'),(41,'stylesheet','twentynineteen','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','57155','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','0','yes'),(92,'show_comments_cookies_opt_in','0','yes'),(93,'initial_db_version','43764','yes'),(94,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:71:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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'),(95,'fresh_site','1','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'nonce_key','cUt`#XO9(ILxCXqfajr1eWn1D?Bt c_`_`Z)&Mc,GtB@s)R.z0{6cH9eAX~z|&lH','no'),(109,'nonce_salt','aO8e;;h]BHqZ#/Nl.9ono5S}r~@falSDm:lJ)UI6%gwL.s20[+2$HmbUUY},wTH{','no'),(110,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'cron','a:10:{i:1717144359;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:1717158759;a:3:{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:1717166716;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:1717166901;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717174192;a:1:{s:21:\"tribe-recurrence-cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717175640;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717175794;a:1:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1717262040;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736257882;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(114,'theme_mods_twentynineteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(141,'recently_activated','a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";i:1648813540;s:34:\"events-pro/events-calendar-pro.php\";i:1547485439;}','yes'),(144,'tribe_events_calendar_options','a:10:{s:14:\"schema-version\";s:3:\"3.9\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:3:{i:0;s:1:\"0\";i:1;s:3:\"4.8\";i:2;s:5:\"5.5.0\";}s:18:\"latest_ecp_version\";s:6:\"5.14.1\";s:39:\"last-update-message-the-events-calendar\";s:5:\"4.7.3\";s:16:\"tribeEnableViews\";a:6:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";i:3;s:5:\"photo\";i:4;s:3:\"map\";i:5;s:4:\"week\";}s:18:\"pro-schema-version\";s:3:\"3.9\";s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:10:\"viewOption\";s:4:\"list\";}','yes'),(145,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(146,'tribe_last_save_post','1648813540.9972','yes'),(162,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"dev-email@flywheel.local\";s:7:\"version\";s:5:\"5.0.3\";s:9:\"timestamp\";i:1547484249;}','no'),(184,'widget_tribe-events-adv-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(185,'widget_tribe-events-countdown-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(186,'widget_tribe-mini-calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(187,'widget_tribe-events-venue-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(188,'widget_tribe-this-week-events-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(191,'admin_email_lifespan','0','yes'),(192,'disallowed_keys','','no'),(193,'comment_previously_approved','1','yes'),(194,'auto_plugin_theme_update_emails','a:0:{}','no'),(195,'finished_updating_comment_type','1','yes'),(196,'db_upgraded','1','yes'),(200,'tribe_last_updated_option','1648813540.997','yes'),(203,'tribe_last_generate_rewrite_rules','1648813521.3266','yes'),(207,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1736257891;s:7:\"checked\";a:6:{s:12:\"twentytwenty\";s:3:\"2.7\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.2\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:5:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.4.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.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.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.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','no'),(208,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1736257890;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:7:\"3.3.5.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.3.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:6:\"5.18.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/event-tickets.5.18.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:6:\"3.17.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/query-monitor.3.17.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=2870124\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.9.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:33:\"user-switching/user-switching.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/user-switching\";s:4:\"slug\";s:14:\"user-switching\";s:6:\"plugin\";s:33:\"user-switching/user-switching.php\";s:11:\"new_version\";s:5:\"1.9.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/user-switching/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/user-switching.1.9.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=3193956\";s:3:\"svg\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=3193956\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/user-switching/assets/banner-1544x500.png?rev=2204929\";s:2:\"1x\";s:69:\"https://ps.w.org/user-switching/assets/banner-772x250.png?rev=2204929\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"wp-rollback/wp-rollback.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-rollback\";s:4:\"slug\";s:11:\"wp-rollback\";s:6:\"plugin\";s:27:\"wp-rollback/wp-rollback.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-rollback/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-rollback.2.0.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-256x256.jpg?rev=3014868\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-128x128.jpg?rev=3014868\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-rollback/assets/banner-1544x500.jpg?rev=3014868\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-rollback/assets/banner-772x250.jpg?rev=3014872\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}}}','no'),(209,'recovery_keys','a:0:{}','yes'),(212,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(218,'active_plugins','a:0:{}','yes'),(223,'rewrite_rules','a:93:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(224,'auto_update_core_dev','enabled','yes'),(225,'auto_update_core_minor','enabled','yes'),(226,'auto_update_core_major','unset','yes'),(227,'wp_force_deactivated_plugins','a:0:{}','yes'),(228,'user_count','1','no'),(231,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(232,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":4,\"critical\":4}','yes'),(233,'wp_attachment_pages_enabled','1','yes'),(236,'_site_transient_timeout_theme_roots','1736259682','no'),(237,'_site_transient_theme_roots','a:6:{s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(240,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.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.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:61:\"https://downloads.w.org/release/wordpress-6.5.5-partial-0.zip\";s:8:\"rollback\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-rollback-0.zip\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:3:\"6.5\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1736257891;s:15:\"version_checked\";s:3:\"6.5\";s:12:\"translations\";a:0:{}}','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; @@ -1191,6 +1192,82 @@ LOCK TABLES `wp_tec_occurrences` WRITE; /*!40000 ALTER TABLE `wp_tec_occurrences` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `wp_tec_posts_and_ticket_groups` +-- + +DROP TABLE IF EXISTS `wp_tec_posts_and_ticket_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_posts_and_ticket_groups` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `post_id` bigint(20) unsigned NOT NULL, + `group_id` bigint(20) unsigned NOT NULL, + `type` varchar(255) NOT NULL DEFAULT '', + 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_tec_posts_and_ticket_groups` +-- + +LOCK TABLES `wp_tec_posts_and_ticket_groups` WRITE; +/*!40000 ALTER TABLE `wp_tec_posts_and_ticket_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_posts_and_ticket_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_series_relationships` +-- + +DROP TABLE IF EXISTS `wp_tec_series_relationships`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_series_relationships` ( + `relationship_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `series_post_id` bigint(20) unsigned NOT NULL, + `event_id` bigint(20) unsigned NOT NULL, + `event_post_id` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`relationship_id`), + KEY `series_post_id` (`series_post_id`), + KEY `event_post_id` (`event_post_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_series_relationships` +-- + +LOCK TABLES `wp_tec_series_relationships` WRITE; +/*!40000 ALTER TABLE `wp_tec_series_relationships` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_series_relationships` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_ticket_groups` +-- + +DROP TABLE IF EXISTS `wp_tec_ticket_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_ticket_groups` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `slug` varchar(255) NOT NULL DEFAULT '', + `data` text NOT NULL DEFAULT '', + 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_tec_ticket_groups` +-- + +LOCK TABLES `wp_tec_ticket_groups` WRITE; +/*!40000 ALTER TABLE `wp_tec_ticket_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_ticket_groups` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `wp_term_relationships` -- @@ -2425,4 +2502,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-07-16 19:42:26 +-- Dump completed on 2025-01-07 13:51:47 From 55c6ec89fb7fab23957e8aaea278839f27f0db8a Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 18:51:07 +0200 Subject: [PATCH 063/112] prevent fail fast on eva tests --- .github/workflows/tests-php-eva.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index 095bf6eba1..284a87c3a8 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -3,8 +3,9 @@ on: [ pull_request ] jobs: test: strategy: + fail-fast: false matrix: - suite: [ eva_integration, restv1, restv1_et, end2end ] + suite: [ eva_integration, restv1, restv1_et, end2end ] runs-on: ubuntu-latest steps: # ------------------------------------------------------------------------------ From 21b9b504d84edd2bd20e9e5a7f32e8626a23265e Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 20:43:15 +0200 Subject: [PATCH 064/112] Less aggressive composer update --- composer.json | 6 +- composer.lock | 2445 ++++++++++++++++++++----------------------------- 2 files changed, 1015 insertions(+), 1436 deletions(-) diff --git a/composer.json b/composer.json index 1223c69e7c..8155f49424 100644 --- a/composer.json +++ b/composer.json @@ -42,16 +42,16 @@ "automattic/vipwpcs": "^3.0", "wp-cli/wp-cli": ">=2.0 <3.0.0", "bordoni/phpass": "0.3.5", - "codeception/codeception": "^2.5.5", + "codeception/codeception": "^4.0.0", "cweagans/composer-patches": "^1.7", "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2", "fakerphp/faker": "^1.23", "lucatume/codeception-snapshot-assertions": "^0.2.4", "lucatume/function-mocker-le": "^1.0", - "lucatume/wp-browser": "^3.0.14", + "lucatume/wp-browser": "^3.5.0", "stellarwp/coding-standards": "dev-main", "the-events-calendar/tec-testing-facilities": "dev-master", - "wp-cli/checksum-command": "1.0.5", + "wp-cli/checksum-command": "2.0.0", "wp-coding-standards/wpcs": "^3.0.0", "automattic/jetpack-changelogger": "^4.2" }, diff --git a/composer.lock b/composer.lock index 083584227f..9926d01c34 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "93aa4e6be38c26f058ff7fefd0436faf", + "content-hash": "849ea2a573d4fd4b5107e0e2de341ac6", "packages": [ { "name": "firebase/php-jwt", @@ -892,54 +892,6 @@ } ], "packages-dev": [ - { - "name": "antecedent/patchwork", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://github.com/antecedent/patchwork.git", - "reference": "b07d4fb37c3c723c8755122160c089e077d5de65" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/antecedent/patchwork/zipball/b07d4fb37c3c723c8755122160c089e077d5de65", - "reference": "b07d4fb37c3c723c8755122160c089e077d5de65", - "shasum": "" - }, - "require": { - "php": ">=7.1.0" - }, - "require-dev": { - "phpunit/phpunit": ">=4" - }, - "type": "library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ignas Rudaitis", - "email": "ignas.rudaitis@gmail.com" - } - ], - "description": "Method redefinition (monkey-patching) functionality for PHP.", - "homepage": "https://antecedent.github.io/patchwork/", - "keywords": [ - "aop", - "aspect", - "interception", - "monkeypatching", - "redefinition", - "runkit", - "testing" - ], - "support": { - "issues": "https://github.com/antecedent/patchwork/issues", - "source": "https://github.com/antecedent/patchwork/tree/2.2.0" - }, - "time": "2024-09-27T16:59:55+00:00" - }, { "name": "automattic/jetpack-changelogger", "version": "v4.2.8", @@ -1175,129 +1127,53 @@ }, "time": "2012-08-31T00:00:00+00:00" }, - { - "name": "carbonphp/carbon-doctrine-types", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", - "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", - "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0" - }, - "conflict": { - "doctrine/dbal": "<3.7.0 || >=4.0.0" - }, - "require-dev": { - "doctrine/dbal": "^3.7.0", - "nesbot/carbon": "^2.71.0 || ^3.0.0", - "phpunit/phpunit": "^10.3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "KyleKatarn", - "email": "kylekatarnls@gmail.com" - } - ], - "description": "Types to use Carbon in Doctrine", - "keywords": [ - "carbon", - "date", - "datetime", - "doctrine", - "time" - ], - "support": { - "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", - "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0" - }, - "funding": [ - { - "url": "https://github.com/kylekatarnls", - "type": "github" - }, - { - "url": "https://opencollective.com/Carbon", - "type": "open_collective" - }, - { - "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", - "type": "tidelift" - } - ], - "time": "2023-12-11T17:09:12+00:00" - }, { "name": "codeception/codeception", - "version": "2.5.6", + "version": "4.2.2", "source": { "type": "git", "url": "https://github.com/Codeception/Codeception.git", - "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98" + "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b83a9338296e706fab2ceb49de8a352fbca3dc98", - "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b88014f3348c93f3df99dc6d0967b0dbfa804474", + "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474", "shasum": "" }, "require": { "behat/gherkin": "^4.4.0", - "codeception/phpunit-wrapper": "^6.0.9|^7.0.6", - "codeception/stub": "^2.0", + "codeception/lib-asserts": "^1.0 | 2.0.*@dev", + "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0", + "codeception/stub": "^2.0 | ^3.0 | ^4.0", "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "facebook/webdriver": ">=1.1.3 <2.0", - "guzzlehttp/guzzle": ">=4.1.4 <7.0", - "guzzlehttp/psr7": "~1.0", - "php": ">=5.6.0 <8.0", - "symfony/browser-kit": ">=2.7 <5.0", - "symfony/console": ">=2.7 <5.0", - "symfony/css-selector": ">=2.7 <5.0", - "symfony/dom-crawler": ">=2.7 <5.0", - "symfony/event-dispatcher": ">=2.7 <5.0", - "symfony/finder": ">=2.7 <5.0", - "symfony/yaml": ">=2.7 <5.0" + "guzzlehttp/psr7": "^1.4 | ^2.0", + "php": ">=5.6.0 <9.0", + "symfony/console": ">=2.7 <6.0", + "symfony/css-selector": ">=2.7 <6.0", + "symfony/event-dispatcher": ">=2.7 <6.0", + "symfony/finder": ">=2.7 <6.0", + "symfony/yaml": ">=2.7 <6.0" }, "require-dev": { + "codeception/module-asserts": "^1.0 | 2.0.*@dev", + "codeception/module-cli": "^1.0 | 2.0.*@dev", + "codeception/module-db": "^1.0 | 2.0.*@dev", + "codeception/module-filesystem": "^1.0 | 2.0.*@dev", + "codeception/module-phpbrowser": "^1.0 | 2.0.*@dev", "codeception/specify": "~0.3", - "facebook/graph-sdk": "~5.3", - "flow/jsonpath": "~0.2", + "codeception/util-universalframework": "*@dev", "monolog/monolog": "~1.8", - "pda/pheanstalk": "~3.0", - "php-amqplib/php-amqplib": "~2.4", - "predis/predis": "^1.0", "squizlabs/php_codesniffer": "~2.0", - "symfony/process": ">=2.7 <5.0", - "vlucas/phpdotenv": "^3.0" + "symfony/process": ">=2.7 <6.0", + "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0" }, "suggest": { - "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module", - "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests", "codeception/specify": "BDD-style code blocks", "codeception/verify": "BDD-style assertions", - "flow/jsonpath": "For using JSONPath in REST module", - "league/factory-muffin": "For DataFactory module", - "league/factory-muffin-faker": "For Faker support in DataFactory module", - "phpseclib/phpseclib": "for SFTP option in FTP Module", + "hoa/console": "For interactive console functionality", "stecman/symfony-console-completion": "For BASH autocompletion", "symfony/phpunit-bridge": "For phpunit-bridge support" }, @@ -1309,6 +1185,9 @@ "branch-alias": [] }, "autoload": { + "files": [ + "functions.php" + ], "psr-4": { "Codeception\\": "src/Codeception", "Codeception\\Extension\\": "ext" @@ -1322,11 +1201,11 @@ { "name": "Michael Bodnarchuk", "email": "davert@mail.ua", - "homepage": "http://codegyre.com" + "homepage": "https://codegyre.com" } ], "description": "BDD-style testing framework", - "homepage": "http://codeception.com/", + "homepage": "https://codeception.com/", "keywords": [ "BDD", "TDD", @@ -1336,39 +1215,40 @@ ], "support": { "issues": "https://github.com/Codeception/Codeception/issues", - "source": "https://github.com/Codeception/Codeception/tree/2.5.6" + "source": "https://github.com/Codeception/Codeception/tree/4.2.2" }, - "time": "2019-04-24T11:28:19+00:00" + "funding": [ + { + "url": "https://opencollective.com/codeception", + "type": "open_collective" + } + ], + "time": "2022-08-13T13:28:25+00:00" }, { - "name": "codeception/phpunit-wrapper", - "version": "7.8.4", + "name": "codeception/lib-asserts", + "version": "1.13.2", "source": { "type": "git", - "url": "https://github.com/Codeception/phpunit-wrapper.git", - "reference": "dd44fc152433d27d3de03d59b4945449b3407af0" + "url": "https://github.com/Codeception/lib-asserts.git", + "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/dd44fc152433d27d3de03d59b4945449b3407af0", - "reference": "dd44fc152433d27d3de03d59b4945449b3407af0", + "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6", + "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6", "shasum": "" }, "require": { - "phpunit/php-code-coverage": "^6.0", - "phpunit/phpunit": "7.5.*", - "sebastian/comparator": "^3.0", - "sebastian/diff": "^3.0" - }, - "require-dev": { - "codeception/specify": "*", - "vlucas/phpdotenv": "^3.0" + "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0", + "ext-dom": "*", + "php": ">=5.6.0 <9.0" }, "type": "library", "autoload": { - "psr-4": { - "Codeception\\PHPUnit\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1376,131 +1256,172 @@ ], "authors": [ { - "name": "Davert", - "email": "davert.php@resend.cc" + "name": "Michael Bodnarchuk", + "email": "davert@mail.ua", + "homepage": "http://codegyre.com" + }, + { + "name": "Gintautas Miselis" + }, + { + "name": "Gustavo Nieves", + "homepage": "https://medium.com/@ganieves" } ], - "description": "PHPUnit classes used by Codeception", + "description": "Assertion methods used by Codeception core and Asserts module", + "homepage": "https://codeception.com/", + "keywords": [ + "codeception" + ], "support": { - "issues": "https://github.com/Codeception/phpunit-wrapper/issues", - "source": "https://github.com/Codeception/phpunit-wrapper/tree/7.8.4" + "issues": "https://github.com/Codeception/lib-asserts/issues", + "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2" }, - "time": "2022-05-23T06:09:22+00:00" + "time": "2020-10-21T16:26:20+00:00" }, { - "name": "codeception/stub", - "version": "2.1.0", + "name": "codeception/lib-innerbrowser", + "version": "1.5.1", "source": { "type": "git", - "url": "https://github.com/Codeception/Stub.git", - "reference": "853657f988942f7afb69becf3fd0059f192c705a" + "url": "https://github.com/Codeception/lib-innerbrowser.git", + "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a", - "reference": "853657f988942f7afb69becf3fd0059f192c705a", + "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2", + "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2", "shasum": "" }, "require": { - "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3" + "codeception/codeception": "4.*@dev", + "ext-dom": "*", + "ext-json": "*", + "ext-mbstring": "*", + "php": ">=5.6.0 <9.0", + "symfony/browser-kit": ">=2.7 <6.0", + "symfony/dom-crawler": ">=2.7 <6.0" + }, + "conflict": { + "codeception/codeception": "<4.0" + }, + "require-dev": { + "codeception/util-universalframework": "dev-master" }, "type": "library", "autoload": { - "psr-4": { - "Codeception\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", + "authors": [ + { + "name": "Michael Bodnarchuk", + "email": "davert@mail.ua", + "homepage": "http://codegyre.com" + }, + { + "name": "Gintautas Miselis" + } + ], + "description": "Parent library for all Codeception framework modules and PhpBrowser", + "homepage": "https://codeception.com/", + "keywords": [ + "codeception" + ], "support": { - "issues": "https://github.com/Codeception/Stub/issues", - "source": "https://github.com/Codeception/Stub/tree/master" + "issues": "https://github.com/Codeception/lib-innerbrowser/issues", + "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.5.1" }, - "time": "2019-03-02T15:35:10+00:00" + "time": "2021-08-30T15:21:42+00:00" }, { - "name": "cweagans/composer-patches", - "version": "1.7.3", + "name": "codeception/module-asserts", + "version": "1.3.1", "source": { "type": "git", - "url": "https://github.com/cweagans/composer-patches.git", - "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db" + "url": "https://github.com/Codeception/module-asserts.git", + "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db", - "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de", + "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=5.3.0" - }, - "require-dev": { - "composer/composer": "~1.0 || ~2.0", - "phpunit/phpunit": "~4.6" + "codeception/codeception": "*@dev", + "codeception/lib-asserts": "^1.13.1", + "php": ">=5.6.0 <9.0" }, - "type": "composer-plugin", - "extra": { - "class": "cweagans\\Composer\\Patches" + "conflict": { + "codeception/codeception": "<4.0" }, + "type": "library", "autoload": { - "psr-4": { - "cweagans\\Composer\\": "src" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Cameron Eagans", - "email": "me@cweagans.net" + "name": "Michael Bodnarchuk" + }, + { + "name": "Gintautas Miselis" + }, + { + "name": "Gustavo Nieves", + "homepage": "https://medium.com/@ganieves" } ], - "description": "Provides a way to patch Composer packages.", + "description": "Codeception module containing various assertions", + "homepage": "https://codeception.com/", + "keywords": [ + "assertions", + "asserts", + "codeception" + ], "support": { - "issues": "https://github.com/cweagans/composer-patches/issues", - "source": "https://github.com/cweagans/composer-patches/tree/1.7.3" + "issues": "https://github.com/Codeception/module-asserts/issues", + "source": "https://github.com/Codeception/module-asserts/tree/1.3.1" }, - "time": "2022-12-20T22:53:13+00:00" + "time": "2020-10-21T16:48:15+00:00" }, { - "name": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v0.7.2", + "name": "codeception/module-cli", + "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" + "url": "https://github.com/Codeception/module-cli.git", + "reference": "1f841ad4a1d43e5d9e60a43c4cc9e5af8008024f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "url": "https://api.github.com/repos/Codeception/module-cli/zipball/1f841ad4a1d43e5d9e60a43c4cc9e5af8008024f", + "reference": "1f841ad4a1d43e5d9e60a43c4cc9e5af8008024f", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=5.3", - "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" + "codeception/codeception": "*@dev", + "php": ">=5.6.0 <9.0" }, - "require-dev": { - "composer/composer": "*", - "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpcompatibility/php-compatibility": "^9.0" - }, - "type": "composer-plugin", - "extra": { - "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + "conflict": { + "codeception/codeception": "<4.0" }, + "type": "library", "autoload": { - "psr-4": { - "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1508,58 +1429,40 @@ ], "authors": [ { - "name": "Franck Nijhof", - "email": "franck.nijhof@dealerdirect.com", - "homepage": "http://www.frenck.nl", - "role": "Developer / IT Manager" - }, - { - "name": "Contributors", - "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" + "name": "Michael Bodnarchuk" } ], - "description": "PHP_CodeSniffer Standards Composer Installer Plugin", - "homepage": "http://www.dealerdirect.com", + "description": "Codeception module for testing basic shell commands and shell output", + "homepage": "http://codeception.com/", "keywords": [ - "PHPCodeSniffer", - "PHP_CodeSniffer", - "code quality", - "codesniffer", - "composer", - "installer", - "phpcbf", - "phpcs", - "plugin", - "qa", - "quality", - "standard", - "standards", - "style guide", - "stylecheck", - "tests" + "codeception" ], "support": { - "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", - "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" + "issues": "https://github.com/Codeception/module-cli/issues", + "source": "https://github.com/Codeception/module-cli/tree/1.1.1" }, - "time": "2022-02-04T12:51:07+00:00" + "time": "2020-12-26T16:56:19+00:00" }, { - "name": "dg/mysql-dump", - "version": "v1.6.0", + "name": "codeception/module-db", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/dg/MySQL-dump.git", - "reference": "b83859026dc3651c6aa39376705fbfa57c0486c5" + "url": "https://github.com/Codeception/module-db.git", + "reference": "04c3e66fbd3a3ced17fcccc49627f6393a97b04b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dg/MySQL-dump/zipball/b83859026dc3651c6aa39376705fbfa57c0486c5", - "reference": "b83859026dc3651c6aa39376705fbfa57c0486c5", + "url": "https://api.github.com/repos/Codeception/module-db/zipball/04c3e66fbd3a3ced17fcccc49627f6393a97b04b", + "reference": "04c3e66fbd3a3ced17fcccc49627f6393a97b04b", "shasum": "" }, "require": { - "php": ">=7.1" + "codeception/codeception": "*@dev", + "php": ">=5.6.0 <9.0" + }, + "conflict": { + "codeception/codeception": "<4.0" }, "type": "library", "autoload": { @@ -1569,161 +1472,447 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "David Grudl", - "homepage": "http://davidgrudl.com" + "name": "Michael Bodnarchuk" + }, + { + "name": "Gintautas Miselis" } ], - "description": "MySQL database dump.", - "homepage": "https://github.com/dg/MySQL-dump", + "description": "DB module for Codeception", + "homepage": "http://codeception.com/", "keywords": [ - "mysql" + "codeception", + "database-testing", + "db-testing" ], "support": { - "source": "https://github.com/dg/MySQL-dump/tree/v1.6.0" + "issues": "https://github.com/Codeception/module-db/issues", + "source": "https://github.com/Codeception/module-db/tree/1.2.0" }, - "time": "2024-09-16T04:30:48+00:00" + "time": "2022-03-05T19:38:40+00:00" }, { - "name": "doctrine/deprecations", - "version": "1.1.3", + "name": "codeception/module-filesystem", + "version": "1.0.3", "source": { "type": "git", - "url": "https://github.com/doctrine/deprecations.git", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" + "url": "https://github.com/Codeception/module-filesystem.git", + "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "url": "https://api.github.com/repos/Codeception/module-filesystem/zipball/781be167fb1557bfc9b61e0a4eac60a32c534ec1", + "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "codeception/codeception": "^4.0", + "php": ">=5.6.0 <9.0", + "symfony/finder": ">=2.7 <6.0" + }, + "conflict": { + "codeception/codeception": "<4.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Bodnarchuk" + }, + { + "name": "Gintautas Miselis" + } + ], + "description": "Codeception module for testing local filesystem", + "homepage": "http://codeception.com/", + "keywords": [ + "codeception", + "filesystem" + ], + "support": { + "issues": "https://github.com/Codeception/module-filesystem/issues", + "source": "https://github.com/Codeception/module-filesystem/tree/1.0.3" + }, + "time": "2020-10-24T14:46:40+00:00" + }, + { + "name": "codeception/module-phpbrowser", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/Codeception/module-phpbrowser.git", + "reference": "8ba6bede11d0914e74d98691f427fd8f397f192e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Codeception/module-phpbrowser/zipball/8ba6bede11d0914e74d98691f427fd8f397f192e", + "reference": "8ba6bede11d0914e74d98691f427fd8f397f192e", + "shasum": "" + }, + "require": { + "codeception/codeception": "^4.1", + "codeception/lib-innerbrowser": "^1.3", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.6.0 <9.0" + }, + "conflict": { + "codeception/codeception": "<4.0" }, "require-dev": { - "doctrine/coding-standard": "^9", - "phpstan/phpstan": "1.4.10 || 1.10.15", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "psalm/plugin-phpunit": "0.18.4", - "psr/log": "^1 || ^2 || ^3", - "vimeo/psalm": "4.30.0 || 5.12.0" + "codeception/module-rest": "^1.0" }, "suggest": { - "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Bodnarchuk" + }, + { + "name": "Gintautas Miselis" + } + ], + "description": "Codeception module for testing web application over HTTP", + "homepage": "http://codeception.com/", + "keywords": [ + "codeception", + "functional-testing", + "http" + ], + "support": { + "issues": "https://github.com/Codeception/module-phpbrowser/issues", + "source": "https://github.com/Codeception/module-phpbrowser/tree/1.0.3" + }, + "time": "2022-05-21T13:50:41+00:00" + }, + { + "name": "codeception/module-webdriver", + "version": "1.4.1", + "source": { + "type": "git", + "url": "https://github.com/Codeception/module-webdriver.git", + "reference": "e22ac7da756df659df6dd4fac2dff9c859e30131" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Codeception/module-webdriver/zipball/e22ac7da756df659df6dd4fac2dff9c859e30131", + "reference": "e22ac7da756df659df6dd4fac2dff9c859e30131", + "shasum": "" + }, + "require": { + "codeception/codeception": "^4.0", + "php": ">=5.6.0 <9.0", + "php-webdriver/webdriver": "^1.8.0" + }, + "suggest": { + "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Bodnarchuk" + }, + { + "name": "Gintautas Miselis" + }, + { + "name": "Zaahid Bateson" + } + ], + "description": "WebDriver module for Codeception", + "homepage": "http://codeception.com/", + "keywords": [ + "acceptance-testing", + "browser-testing", + "codeception" + ], + "support": { + "issues": "https://github.com/Codeception/module-webdriver/issues", + "source": "https://github.com/Codeception/module-webdriver/tree/1.4.1" + }, + "time": "2022-09-12T05:09:51+00:00" + }, + { + "name": "codeception/phpunit-wrapper", + "version": "7.8.4", + "source": { + "type": "git", + "url": "https://github.com/Codeception/phpunit-wrapper.git", + "reference": "dd44fc152433d27d3de03d59b4945449b3407af0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/dd44fc152433d27d3de03d59b4945449b3407af0", + "reference": "dd44fc152433d27d3de03d59b4945449b3407af0", + "shasum": "" + }, + "require": { + "phpunit/php-code-coverage": "^6.0", + "phpunit/phpunit": "7.5.*", + "sebastian/comparator": "^3.0", + "sebastian/diff": "^3.0" + }, + "require-dev": { + "codeception/specify": "*", + "vlucas/phpdotenv": "^3.0" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + "Codeception\\PHPUnit\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", - "homepage": "https://www.doctrine-project.org/", + "authors": [ + { + "name": "Davert", + "email": "davert.php@resend.cc" + } + ], + "description": "PHPUnit classes used by Codeception", "support": { - "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.3" + "issues": "https://github.com/Codeception/phpunit-wrapper/issues", + "source": "https://github.com/Codeception/phpunit-wrapper/tree/7.8.4" }, - "time": "2024-01-30T19:34:25+00:00" + "time": "2022-05-23T06:09:22+00:00" }, { - "name": "doctrine/inflector", - "version": "2.0.10", + "name": "codeception/stub", + "version": "2.1.0", "source": { "type": "git", - "url": "https://github.com/doctrine/inflector.git", - "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + "url": "https://github.com/Codeception/Stub.git", + "reference": "853657f988942f7afb69becf3fd0059f192c705a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", - "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a", + "reference": "853657f988942f7afb69becf3fd0059f192c705a", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Codeception\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", + "support": { + "issues": "https://github.com/Codeception/Stub/issues", + "source": "https://github.com/Codeception/Stub/tree/master" + }, + "time": "2019-03-02T15:35:10+00:00" + }, + { + "name": "cweagans/composer-patches", + "version": "1.7.3", + "source": { + "type": "git", + "url": "https://github.com/cweagans/composer-patches.git", + "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.3.0" + }, + "require-dev": { + "composer/composer": "~1.0 || ~2.0", + "phpunit/phpunit": "~4.6" + }, + "type": "composer-plugin", + "extra": { + "class": "cweagans\\Composer\\Patches" + }, + "autoload": { + "psr-4": { + "cweagans\\Composer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Cameron Eagans", + "email": "me@cweagans.net" + } + ], + "description": "Provides a way to patch Composer packages.", + "support": { + "issues": "https://github.com/cweagans/composer-patches/issues", + "source": "https://github.com/cweagans/composer-patches/tree/1.7.3" + }, + "time": "2022-12-20T22:53:13+00:00" + }, + { + "name": "dealerdirect/phpcodesniffer-composer-installer", + "version": "v0.7.2", + "source": { + "type": "git", + "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", + "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.3", + "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" + }, + "require-dev": { + "composer/composer": "*", + "php-parallel-lint/php-parallel-lint": "^1.3.1", + "phpcompatibility/php-compatibility": "^9.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + }, + "autoload": { + "psr-4": { + "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Franck Nijhof", + "email": "franck.nijhof@dealerdirect.com", + "homepage": "http://www.frenck.nl", + "role": "Developer / IT Manager" + }, + { + "name": "Contributors", + "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" + } + ], + "description": "PHP_CodeSniffer Standards Composer Installer Plugin", + "homepage": "http://www.dealerdirect.com", + "keywords": [ + "PHPCodeSniffer", + "PHP_CodeSniffer", + "code quality", + "codesniffer", + "composer", + "installer", + "phpcbf", + "phpcs", + "plugin", + "qa", + "quality", + "standard", + "standards", + "style guide", + "stylecheck", + "tests" + ], + "support": { + "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", + "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" + }, + "time": "2022-02-04T12:51:07+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" }, - "require-dev": { - "doctrine/coding-standard": "^11.0", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.3", - "phpunit/phpunit": "^8.5 || ^9.5", - "vimeo/psalm": "^4.25 || ^5.4" + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", - "homepage": "https://www.doctrine-project.org/projects/inflector.html", - "keywords": [ - "inflection", - "inflector", - "lowercase", - "manipulation", - "php", - "plural", - "singular", - "strings", - "uppercase", - "words" - ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", "support": { - "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.10" + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", - "type": "tidelift" - } - ], - "time": "2024-02-18T20:23:39+00:00" + "time": "2024-01-30T19:34:25+00:00" }, { "name": "doctrine/instantiator", @@ -1795,72 +1984,6 @@ ], "time": "2022-12-30T00:15:36+00:00" }, - { - "name": "facebook/webdriver", - "version": "1.7.1", - "source": { - "type": "git", - "url": "https://github.com/php-webdriver/php-webdriver-archive.git", - "reference": "e43de70f3c7166169d0f14a374505392734160e5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-webdriver/php-webdriver-archive/zipball/e43de70f3c7166169d0f14a374505392734160e5", - "reference": "e43de70f3c7166169d0f14a374505392734160e5", - "shasum": "" - }, - "require": { - "ext-curl": "*", - "ext-json": "*", - "ext-mbstring": "*", - "ext-zip": "*", - "php": "^5.6 || ~7.0", - "symfony/process": "^2.8 || ^3.1 || ^4.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.0", - "jakub-onderka/php-parallel-lint": "^0.9.2", - "php-coveralls/php-coveralls": "^2.0", - "php-mock/php-mock-phpunit": "^1.1", - "phpunit/phpunit": "^5.7", - "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0", - "squizlabs/php_codesniffer": "^2.6", - "symfony/var-dumper": "^3.3 || ^4.0" - }, - "suggest": { - "ext-SimpleXML": "For Firefox profile creation" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-community": "1.5-dev" - } - }, - "autoload": { - "psr-4": { - "Facebook\\WebDriver\\": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "description": "A PHP client for Selenium WebDriver", - "homepage": "https://github.com/facebook/php-webdriver", - "keywords": [ - "facebook", - "php", - "selenium", - "webdriver" - ], - "support": { - "forum": "https://www.facebook.com/groups/phpwebdriver/", - "issues": "https://github.com/facebook/php-webdriver/issues", - "source": "https://github.com/facebook/php-webdriver" - }, - "abandoned": "php-webdriver/webdriver", - "time": "2019-06-13T08:02:18+00:00" - }, { "name": "fakerphp/faker", "version": "v1.24.0", @@ -2169,237 +2292,40 @@ }, { "name": "guzzlehttp/psr7", - "version": "1.9.1", - "source": { - "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b", - "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b", - "shasum": "" - }, - "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" - }, - "provide": { - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" - }, - "suggest": { - "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" - }, - "type": "library", - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "George Mponos", - "email": "gmponos@gmail.com", - "homepage": "https://github.com/gmponos" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://github.com/sagikazarmark" - }, - { - "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", - "homepage": "https://github.com/Tobion" - } - ], - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": [ - "http", - "message", - "psr-7", - "request", - "response", - "stream", - "uri", - "url" - ], - "support": { - "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.9.1" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", - "type": "tidelift" - } - ], - "time": "2023-04-17T16:00:37+00:00" - }, - { - "name": "illuminate/collections", - "version": "v8.83.27", - "source": { - "type": "git", - "url": "https://github.com/illuminate/collections.git", - "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/collections/zipball/705a4e1ef93cd492c45b9b3e7911cccc990a07f4", - "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4", - "shasum": "" - }, - "require": { - "illuminate/contracts": "^8.0", - "illuminate/macroable": "^8.0", - "php": "^7.3|^8.0" - }, - "suggest": { - "symfony/var-dumper": "Required to use the dump method (^5.4)." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "8.x-dev" - } - }, - "autoload": { - "files": [ - "helpers.php" - ], - "psr-4": { - "Illuminate\\Support\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Collections package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2022-06-23T15:29:49+00:00" - }, - { - "name": "illuminate/contracts", - "version": "v8.83.27", - "source": { - "type": "git", - "url": "https://github.com/illuminate/contracts.git", - "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/5e0fd287a1b22a6b346a9f7cd484d8cf0234585d", - "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d", - "shasum": "" - }, - "require": { - "php": "^7.3|^8.0", - "psr/container": "^1.0", - "psr/simple-cache": "^1.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "8.x-dev" - } - }, - "autoload": { - "psr-4": { - "Illuminate\\Contracts\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Contracts package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2022-01-13T14:47:47+00:00" - }, - { - "name": "illuminate/macroable", - "version": "v8.83.27", + "version": "1.9.1", "source": { "type": "git", - "url": "https://github.com/illuminate/macroable.git", - "reference": "aed81891a6e046fdee72edd497f822190f61c162" + "url": "https://github.com/guzzle/psr7.git", + "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/macroable/zipball/aed81891a6e046fdee72edd497f822190f61c162", - "reference": "aed81891a6e046fdee72edd497f822190f61c162", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b", + "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b", "shasum": "" }, "require": { - "php": "^7.3|^8.0" + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "8.x-dev" - } + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, + "type": "library", "autoload": { + "files": [ + "src/functions_include.php" + ], "psr-4": { - "Illuminate\\Support\\": "" + "GuzzleHttp\\Psr7\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -2408,85 +2334,125 @@ ], "authors": [ { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], - "description": "The Illuminate Macroable package.", - "homepage": "https://laravel.com", + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.9.1" }, - "time": "2021-11-16T13:57:03+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2023-04-17T16:00:37+00:00" }, { - "name": "illuminate/support", - "version": "v8.83.27", + "name": "ifsnop/mysqldump-php", + "version": "v2.12", "source": { "type": "git", - "url": "https://github.com/illuminate/support.git", - "reference": "1c79242468d3bbd9a0f7477df34f9647dde2a09b" + "url": "https://github.com/ifsnop/mysqldump-php.git", + "reference": "2d3a43fc0c49f23bf7dee392b0dd1f8c799f89d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/1c79242468d3bbd9a0f7477df34f9647dde2a09b", - "reference": "1c79242468d3bbd9a0f7477df34f9647dde2a09b", + "url": "https://api.github.com/repos/ifsnop/mysqldump-php/zipball/2d3a43fc0c49f23bf7dee392b0dd1f8c799f89d3", + "reference": "2d3a43fc0c49f23bf7dee392b0dd1f8c799f89d3", "shasum": "" }, "require": { - "doctrine/inflector": "^1.4|^2.0", - "ext-json": "*", - "ext-mbstring": "*", - "illuminate/collections": "^8.0", - "illuminate/contracts": "^8.0", - "illuminate/macroable": "^8.0", - "nesbot/carbon": "^2.53.1", - "php": "^7.3|^8.0", - "voku/portable-ascii": "^1.6.1" - }, - "conflict": { - "tightenco/collect": "<5.5.33" + "php": ">=5.3.0" }, - "suggest": { - "illuminate/filesystem": "Required to use the composer class (^8.0).", - "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^1.3|^2.0.2).", - "ramsey/uuid": "Required to use Str::uuid() (^4.2.2).", - "symfony/process": "Required to use the composer class (^5.4).", - "symfony/var-dumper": "Required to use the dd function (^5.4).", - "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)." + "require-dev": { + "phpunit/phpunit": "4.8.36", + "squizlabs/php_codesniffer": "1.*" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "8.x-dev" - } - }, "autoload": { - "files": [ - "helpers.php" - ], "psr-4": { - "Illuminate\\Support\\": "" + "Ifsnop\\": "src/Ifsnop/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "GPL-3.0-or-later" ], "authors": [ { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" + "name": "Diego Torres", + "homepage": "https://github.com/ifsnop", + "role": "Developer" } ], - "description": "The Illuminate Support package.", - "homepage": "https://laravel.com", + "description": "PHP version of mysqldump cli that comes with MySQL", + "homepage": "https://github.com/ifsnop/mysqldump-php", + "keywords": [ + "PHP7", + "database", + "hhvm", + "mariadb", + "mysql", + "mysql-backup", + "mysqldump", + "pdo", + "php", + "php5", + "sql" + ], "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" + "issues": "https://github.com/ifsnop/mysqldump-php/issues", + "source": "https://github.com/ifsnop/mysqldump-php/tree/v2.12" }, - "time": "2022-09-21T21:30:03+00:00" + "time": "2023-04-12T07:43:14+00:00" }, { "name": "lucatume/codeception-snapshot-assertions", @@ -2578,62 +2544,50 @@ }, { "name": "lucatume/wp-browser", - "version": "3.1.10", + "version": "3.7.11", "source": { "type": "git", "url": "https://github.com/lucatume/wp-browser.git", - "reference": "d591a12891305b29ff0e1e08e2a173e6f915abf4" + "reference": "4081b1c9b9f8643db002cc8816bbafd779ef97b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/d591a12891305b29ff0e1e08e2a173e6f915abf4", - "reference": "d591a12891305b29ff0e1e08e2a173e6f915abf4", + "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/4081b1c9b9f8643db002cc8816bbafd779ef97b8", + "reference": "4081b1c9b9f8643db002cc8816bbafd779ef97b8", "shasum": "" }, "require": { - "antecedent/patchwork": "^2.0", - "bordoni/phpass": "^0.3", - "codeception/codeception": "^2.5 || ^3.0 || ^4.0", - "dg/mysql-dump": "^1.3", + "codeception/codeception": "^4", + "codeception/module-asserts": "^1.0", + "codeception/module-cli": "^1.0", + "codeception/module-db": "^1.0", + "codeception/module-filesystem": "^1.0", + "codeception/module-phpbrowser": "^1.0", + "codeception/module-webdriver": "^1.0", + "composer-runtime-api": "^2.2", + "ext-curl": "*", "ext-fileinfo": "*", "ext-json": "*", + "ext-mysqli": "*", "ext-pdo": "*", - "mikehaertl/php-shellcommand": "^1.6", - "mikemclin/laravel-wp-password": "~2.0.0", - "php": ">=5.6.0", - "vria/nodiacritic": "^0.1.2", - "wp-cli/wp-cli": ">=2.0 <3.0.0", - "zordius/lightncandy": "^1.2" - }, - "conflict": { - "codeception/module-asserts": ">=2.0", - "codeception/module-cli": ">=2.0", - "codeception/module-db": ">=2.0", - "codeception/module-filesystem": ">=2.0", - "codeception/module-phpbrowser": ">=2.0", - "codeception/module-webdriver": ">=2.0", - "codeception/util-universalframework": ">=2.0" + "ext-zip": "*", + "ifsnop/mysqldump-php": "^2.12", + "php": ">=7.1 <8.0", + "symfony/filesystem": ">=3.4.47 <7.0", + "symfony/process": ">=3.4.47 <7.0", + "vlucas/phpdotenv": "^4.3" }, "require-dev": { - "erusev/parsedown": "^1.7", "gumlet/php-image-resize": "^1.6", - "lucatume/codeception-snapshot-assertions": "^0.2", - "mikey179/vfsstream": "^1.6", - "symfony/translation": "^3.4", - "victorjonsson/markdowndocs": "dev-master", - "vlucas/phpdotenv": "^3.0", - "wp-cli/wp-cli-bundle": "*" + "lucatume/codeception-snapshot-assertions": "^0.4", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan-symfony": "^0.12.44", + "squizlabs/php_codesniffer": "^3.7", + "szepeviktor/phpstan-wordpress": "^0.7" }, "suggest": { - "codeception/module-asserts:^1.0": "Codeception 4.0 compatibility.", - "codeception/module-cli:^1.0": "Codeception 4.0 compatibility; required by the WPCLI module.", - "codeception/module-db:^1.0": "Codeception 4.0 compatibility; required by the WPDb module, PHP 5.6 compatible version.", - "codeception/module-filesystem:^1.0": "Codeception 4.0 compatibility; required by the WPFilesystem module.", - "codeception/module-phpbrowser:^1.0": "Codeception 4.0 compatibility; required by the WPBrowser module.", - "codeception/module-webdriver:^1.0": "Codeception 4.0 compatibility; required by the WPWebDriver module.", - "codeception/util-universalframework:^1.0": "Codeception 4.0 compatibility; required by the WordPress framework module.", - "gumlet/php-image-resize": "To handle runtime image modification in the WPDb::haveAttachmentInDatabase method.", - "vlucas/phpdotenv:^4.0": "To manage more complex environment file based configuration of the suites." + "ext-pdo_sqlite": "For SQLite database support.", + "ext-sqlite3": "For SQLite database support." }, "type": "library", "extra": { @@ -2641,13 +2595,18 @@ }, "autoload": { "files": [ - "src/tad/WPBrowser/utils.php", - "src/tad/WPBrowser/wp-polyfills.php" + "src/version-4-aliases.php", + "src/Deprecated/deprecated-functions.php", + "src/functions.php", + "src/shim.php" ], "psr-4": { - "tad\\": "src/tad", - "Codeception\\": "src/Codeception", - "lucatume\\WPBrowser\\": "src/" + "Hautelook\\Phpass\\": "includes/Hautelook/Phpass", + "lucatume\\WPBrowser\\": [ + "src/", + "src/Deprecated" + ], + "lucatume\\WPBrowser\\Opis\\Closure\\": "includes/opis/closure/src" } }, "notification-url": "https://packagist.org/downloads/", @@ -2658,19 +2617,19 @@ { "name": "theAverageDev (Luca Tumedei)", "email": "luca@theaveragedev.com", - "homepage": "http://theaveragedev.com", + "homepage": "https://theaveragedev.com", "role": "Developer" } ], - "description": "WordPress extension of the PhpBrowser class.", - "homepage": "http://github.com/lucatume/wp-browser", + "description": "A set of Codeception modules to test WordPress projects.", + "homepage": "https://github.com/lucatume/wp-browser", "keywords": [ "codeception", "wordpress" ], "support": { "issues": "https://github.com/lucatume/wp-browser/issues", - "source": "https://github.com/lucatume/wp-browser/tree/3.1.10" + "source": "https://github.com/lucatume/wp-browser/tree/3.7.11" }, "funding": [ { @@ -2678,118 +2637,7 @@ "type": "github" } ], - "time": "2023-07-20T16:11:45+00:00" - }, - { - "name": "mikehaertl/php-shellcommand", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://github.com/mikehaertl/php-shellcommand.git", - "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/e79ea528be155ffdec6f3bf1a4a46307bb49e545", - "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545", - "shasum": "" - }, - "require": { - "php": ">= 5.3.0" - }, - "require-dev": { - "phpunit/phpunit": ">4.0 <=9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "mikehaertl\\shellcommand\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Härtl", - "email": "haertl.mike@gmail.com" - } - ], - "description": "An object oriented interface to shell commands", - "keywords": [ - "shell" - ], - "support": { - "issues": "https://github.com/mikehaertl/php-shellcommand/issues", - "source": "https://github.com/mikehaertl/php-shellcommand/tree/1.7.0" - }, - "time": "2023-04-19T08:25:22+00:00" - }, - { - "name": "mikemclin/laravel-wp-password", - "version": "2.0.3", - "source": { - "type": "git", - "url": "https://github.com/mikemclin/laravel-wp-password.git", - "reference": "5225c95f75aa0a5ad4040ec2074d1c8d7f10b5f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikemclin/laravel-wp-password/zipball/5225c95f75aa0a5ad4040ec2074d1c8d7f10b5f4", - "reference": "5225c95f75aa0a5ad4040ec2074d1c8d7f10b5f4", - "shasum": "" - }, - "require": { - "bordoni/phpass": "0.3.*", - "illuminate/support": ">=4.0.0", - "php": ">=5.3.0" - }, - "require-dev": { - "mockery/mockery": "~0.9", - "phpunit/phpunit": "~4.0", - "satooshi/php-coveralls": "^2.2" - }, - "type": "laravel-package", - "extra": { - "laravel": { - "providers": [ - "MikeMcLin\\WpPassword\\WpPasswordProvider" - ], - "aliases": { - "WpPassword": "MikeMcLin\\WpPassword\\Facades\\WpPassword" - } - } - }, - "autoload": { - "psr-4": { - "MikeMcLin\\WpPassword\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike McLin", - "email": "mike@mikemclin.com", - "homepage": "http://mikemclin.net" - } - ], - "description": "Laravel package that checks and creates WordPress password hashes", - "homepage": "https://github.com/mikemclin/laravel-wp-password", - "keywords": [ - "hashing", - "laravel", - "password", - "wordpress" - ], - "support": { - "issues": "https://github.com/mikemclin/laravel-wp-password/issues", - "source": "https://github.com/mikemclin/laravel-wp-password/tree/2.0.3" - }, - "time": "2021-09-30T13:48:57+00:00" + "time": "2024-12-09T15:53:54+00:00" }, { "name": "mustache/mustache", @@ -2860,153 +2708,46 @@ }, "conflict": { "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3 <3.2.2" - }, - "require-dev": { - "doctrine/collections": "^1.6.8", - "doctrine/common": "^2.13.3 || ^3.2.2", - "phpspec/prophecy": "^1.10", - "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" - }, - "type": "library", - "autoload": { - "files": [ - "src/DeepCopy/deep_copy.php" - ], - "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" - ], - "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1" - }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", - "type": "tidelift" - } - ], - "time": "2024-11-08T17:47:46+00:00" - }, - { - "name": "nesbot/carbon", - "version": "2.72.5", - "source": { - "type": "git", - "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed", - "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed", - "shasum": "" - }, - "require": { - "carbonphp/carbon-doctrine-types": "*", - "ext-json": "*", - "php": "^7.1.8 || ^8.0", - "psr/clock": "^1.0", - "symfony/polyfill-mbstring": "^1.0", - "symfony/polyfill-php80": "^1.16", - "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" - }, - "provide": { - "psr/clock-implementation": "1.0" - }, - "require-dev": { - "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", - "doctrine/orm": "^2.7 || ^3.0", - "friendsofphp/php-cs-fixer": "^3.0", - "kylekatarnls/multi-tester": "^2.0", - "ondrejmirtes/better-reflection": "*", - "phpmd/phpmd": "^2.9", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12.99 || ^1.7.14", - "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", - "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", - "squizlabs/php_codesniffer": "^3.4" - }, - "bin": [ - "bin/carbon" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev", - "dev-2.x": "2.x-dev" - }, - "laravel": { - "providers": [ - "Carbon\\Laravel\\ServiceProvider" - ] - }, - "phpstan": { - "includes": [ - "extension.neon" - ] - } + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, + "type": "library", "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], "psr-4": { - "Carbon\\": "src/Carbon/" + "DeepCopy\\": "src/DeepCopy/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Brian Nesbitt", - "email": "brian@nesbot.com", - "homepage": "https://markido.com" - }, - { - "name": "kylekatarnls", - "homepage": "https://github.com/kylekatarnls" - } - ], - "description": "An API extension for DateTime that supports 281 different languages.", - "homepage": "https://carbon.nesbot.com", + "description": "Create deep copies (clones) of your objects", "keywords": [ - "date", - "datetime", - "time" + "clone", + "copy", + "duplicate", + "object", + "object graph" ], "support": { - "docs": "https://carbon.nesbot.com/docs", - "issues": "https://github.com/briannesbitt/Carbon/issues", - "source": "https://github.com/briannesbitt/Carbon" + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1" }, "funding": [ { - "url": "https://github.com/sponsors/kylekatarnls", - "type": "github" - }, - { - "url": "https://opencollective.com/Carbon#sponsor", - "type": "opencollective" - }, - { - "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", "type": "tidelift" } ], - "time": "2024-06-03T19:18:41+00:00" + "time": "2024-11-08T17:47:46+00:00" }, { "name": "nilportugues/sql-query-formatter", @@ -3177,6 +2918,71 @@ }, "time": "2018-07-08T19:19:57+00:00" }, + { + "name": "php-webdriver/webdriver", + "version": "1.13.1", + "source": { + "type": "git", + "url": "https://github.com/php-webdriver/php-webdriver.git", + "reference": "6dfe5f814b796c1b5748850aa19f781b9274c36c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/6dfe5f814b796c1b5748850aa19f781b9274c36c", + "reference": "6dfe5f814b796c1b5748850aa19f781b9274c36c", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-zip": "*", + "php": "^5.6 || ~7.0 || ^8.0", + "symfony/polyfill-mbstring": "^1.12", + "symfony/process": "^2.8 || ^3.1 || ^4.0 || ^5.0 || ^6.0" + }, + "replace": { + "facebook/webdriver": "*" + }, + "require-dev": { + "ondram/ci-detector": "^2.1 || ^3.5 || ^4.0", + "php-coveralls/php-coveralls": "^2.4", + "php-mock/php-mock-phpunit": "^1.1 || ^2.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpunit/phpunit": "^5.7 || ^7 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3.5", + "symfony/var-dumper": "^3.3 || ^4.0 || ^5.0 || ^6.0" + }, + "suggest": { + "ext-SimpleXML": "For Firefox profile creation" + }, + "type": "library", + "autoload": { + "files": [ + "lib/Exception/TimeoutException.php" + ], + "psr-4": { + "Facebook\\WebDriver\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP client for Selenium WebDriver. Previously facebook/webdriver.", + "homepage": "https://github.com/php-webdriver/php-webdriver", + "keywords": [ + "Chromedriver", + "geckodriver", + "php", + "selenium", + "webdriver" + ], + "support": { + "issues": "https://github.com/php-webdriver/php-webdriver/issues", + "source": "https://github.com/php-webdriver/php-webdriver/tree/1.13.1" + }, + "time": "2022-10-11T11:49:44+00:00" + }, { "name": "phpcsstandards/phpcsextra", "version": "1.2.1", @@ -3518,6 +3324,81 @@ }, "time": "2024-11-09T15:12:26+00:00" }, + { + "name": "phpoption/phpoption", + "version": "1.9.3", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:41:07+00:00" + }, { "name": "phpspec/prophecy", "version": "v1.20.0", @@ -4014,54 +3895,6 @@ }, "time": "2020-01-08T08:45:45+00:00" }, - { - "name": "psr/clock", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/clock.git", - "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", - "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", - "shasum": "" - }, - "require": { - "php": "^7.0 || ^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Psr\\Clock\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interface for reading the clock.", - "homepage": "https://github.com/php-fig/clock", - "keywords": [ - "clock", - "now", - "psr", - "psr-20", - "time" - ], - "support": { - "issues": "https://github.com/php-fig/clock/issues", - "source": "https://github.com/php-fig/clock/tree/1.0.0" - }, - "time": "2022-11-25T14:36:26+00:00" - }, { "name": "psr/http-message", "version": "1.1", @@ -4115,57 +3948,6 @@ }, "time": "2023-04-04T09:50:52+00:00" }, - { - "name": "psr/simple-cache", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/php-fig/simple-cache.git", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\SimpleCache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interfaces for simple caching", - "keywords": [ - "cache", - "caching", - "psr", - "psr-16", - "simple-cache" - ], - "support": { - "source": "https://github.com/php-fig/simple-cache/tree/master" - }, - "time": "2017-10-23T01:57:42+00:00" - }, { "name": "ralouphie/getallheaders", "version": "3.0.3", @@ -5617,8 +5399,83 @@ }, "autoload": { "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.10.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2022-07-20T09:59:04+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v5.4.45", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "57c8294ed37d4a055b77057827c67f9558c95c54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/57c8294ed37d4a055b77057827c67f9558c95c54", + "reference": "57c8294ed37d4a055b77057827c67f9558c95c54", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.8", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "symfony/process": "^5.4|^6.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -5626,26 +5483,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to dispatching event", + "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.10.0" + "source": "https://github.com/symfony/filesystem/tree/v5.4.45" }, "funding": [ { @@ -5661,7 +5510,7 @@ "type": "tidelift" } ], - "time": "2022-07-20T09:59:04+00:00" + "time": "2024-10-22T13:05:35+00:00" }, { "name": "symfony/finder", @@ -6349,179 +6198,6 @@ ], "time": "2023-04-21T15:04:16+00:00" }, - { - "name": "symfony/translation", - "version": "v5.3.14", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "945066809dc18f6e26123098e1b6e1d7a948660b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/945066809dc18f6e26123098e1b6e1d7a948660b", - "reference": "945066809dc18f6e26123098e1b6e1d7a948660b", - "shasum": "" - }, - "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16", - "symfony/translation-contracts": "^2.3" - }, - "conflict": { - "symfony/config": "<4.4", - "symfony/dependency-injection": "<5.0", - "symfony/http-kernel": "<5.0", - "symfony/twig-bundle": "<5.0", - "symfony/yaml": "<4.4" - }, - "provide": { - "symfony/translation-implementation": "2.3" - }, - "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^4.4|^5.0", - "symfony/console": "^4.4|^5.0", - "symfony/dependency-injection": "^5.0", - "symfony/finder": "^4.4|^5.0", - "symfony/http-kernel": "^5.0", - "symfony/intl": "^4.4|^5.0", - "symfony/polyfill-intl-icu": "^1.21", - "symfony/service-contracts": "^1.1.2|^2", - "symfony/yaml": "^4.4|^5.0" - }, - "suggest": { - "psr/log-implementation": "To use logging capability in translator", - "symfony/config": "", - "symfony/yaml": "" - }, - "type": "library", - "autoload": { - "files": [ - "Resources/functions.php" - ], - "psr-4": { - "Symfony\\Component\\Translation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools to internationalize your application", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/translation/tree/v5.3.14" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2022-01-03T19:49:08+00:00" - }, - { - "name": "symfony/translation-contracts", - "version": "v2.5.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664", - "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664", - "shasum": "" - }, - "require": { - "php": ">=7.2.5" - }, - "suggest": { - "symfony/translation-implementation": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Translation\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to translation", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T13:51:25+00:00" - }, { "name": "symfony/yaml", "version": "v4.4.45", @@ -6698,131 +6374,86 @@ "time": "2024-03-03T12:36:25+00:00" }, { - "name": "voku/portable-ascii", - "version": "1.6.1", + "name": "vlucas/phpdotenv", + "version": "v4.3.0", "source": { "type": "git", - "url": "https://github.com/voku/portable-ascii.git", - "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a" + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "67a491df68208bef8c37092db11fa3885008efcf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a", - "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf", + "reference": "67a491df68208bef8c37092db11fa3885008efcf", "shasum": "" }, "require": { - "php": ">=7.0.0" + "php": "^5.5.9 || ^7.0 || ^8.0", + "phpoption/phpoption": "^1.7.3", + "symfony/polyfill-ctype": "^1.17" }, "require-dev": { - "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-filter": "*", + "ext-pcre": "*", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30" }, "suggest": { - "ext-intl": "Use Intl for transliterator_transliterate() support" + "ext-filter": "Required to use the boolean validator.", + "ext-pcre": "Required to use most of the library." }, "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "4.3-dev" + } + }, "autoload": { "psr-4": { - "voku\\": "src/voku/" + "Dotenv\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Lars Moelleken", - "homepage": "http://www.moelleken.org/" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" } ], - "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", - "homepage": "https://github.com/voku/portable-ascii", + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", "keywords": [ - "ascii", - "clean", - "php" + "dotenv", + "env", + "environment" ], "support": { - "issues": "https://github.com/voku/portable-ascii/issues", - "source": "https://github.com/voku/portable-ascii/tree/1.6.1" + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v4.3.0" }, "funding": [ { - "url": "https://www.paypal.me/moelleken", - "type": "custom" - }, - { - "url": "https://github.com/voku", + "url": "https://github.com/GrahamCampbell", "type": "github" }, { - "url": "https://opencollective.com/portable-ascii", - "type": "open_collective" - }, - { - "url": "https://www.patreon.com/voku", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", "type": "tidelift" } ], - "time": "2022-01-24T18:55:24+00:00" - }, - { - "name": "vria/nodiacritic", - "version": "0.1.2", - "source": { - "type": "git", - "url": "https://github.com/vria/nodiacritic.git", - "reference": "3efeb60fb2586fe3ce8ff0f3c122d380717b8b07" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/vria/nodiacritic/zipball/3efeb60fb2586fe3ce8ff0f3c122d380717b8b07", - "reference": "3efeb60fb2586fe3ce8ff0f3c122d380717b8b07", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "require-dev": { - "phpunit/phpunit": "4.8.*" - }, - "type": "library", - "autoload": { - "psr-4": { - "VRia\\Utils\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0" - ], - "authors": [ - { - "name": "Riabchenko Vlad", - "email": "contact@vria.eu", - "homepage": "http://vria.eu" - } - ], - "description": "Tiny helper function that removes all diacritical signs from characters", - "homepage": "https://github.com/vria/nodiacritic", - "keywords": [ - "accent", - "diacritic", - "filter", - "string", - "text" - ], - "support": { - "email": "contact@vria.eu", - "issues": "https://github.com/vria/nodiacritic/issues", - "source": "https://github.com/vria/nodiacritic/tree/0.1.2" - }, - "time": "2016-09-17T22:03:11+00:00" + "time": "2022-10-16T00:51:09+00:00" }, { "name": "webmozart/assert", @@ -6884,31 +6515,35 @@ }, { "name": "wp-cli/checksum-command", - "version": "v1.0.5", + "version": "v2.0.0", "source": { "type": "git", "url": "https://github.com/wp-cli/checksum-command.git", - "reference": "a2719a5ba84ffd7d47511967433da7211e0da55a" + "reference": "6e0b5f6b3a8c7d25ea1aba17405ad87d9b1d36df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/checksum-command/zipball/a2719a5ba84ffd7d47511967433da7211e0da55a", - "reference": "a2719a5ba84ffd7d47511967433da7211e0da55a", + "url": "https://api.github.com/repos/wp-cli/checksum-command/zipball/6e0b5f6b3a8c7d25ea1aba17405ad87d9b1d36df", + "reference": "6e0b5f6b3a8c7d25ea1aba17405ad87d9b1d36df", "shasum": "" }, + "require": { + "wp-cli/wp-cli": "^2" + }, "require-dev": { - "behat/behat": "~2.5", - "wp-cli/wp-cli": "*" + "wp-cli/extension-command": "^1.2 || ^2", + "wp-cli/wp-cli-tests": "^2" }, "type": "wp-cli-package", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "bundled": true, "commands": [ - "checksum core" - ] + "core verify-checksums", + "plugin verify-checksums" + ], + "branch-alias": { + "dev-master": "2.x-dev" + } }, "autoload": { "files": [ @@ -6935,7 +6570,7 @@ "issues": "https://github.com/wp-cli/checksum-command/issues", "source": "https://github.com/wp-cli/checksum-command/tree/master" }, - "time": "2017-12-08T15:12:46+00:00" + "time": "2018-08-05T13:27:33+00:00" }, { "name": "wp-cli/mustangostang-spyc", @@ -7186,62 +6821,6 @@ } ], "time": "2024-03-25T16:39:00+00:00" - }, - { - "name": "zordius/lightncandy", - "version": "v1.2.6", - "source": { - "type": "git", - "url": "https://github.com/zordius/lightncandy.git", - "reference": "b451f73e8b5c73e62e365997ba3c993a0376b72a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/zordius/lightncandy/zipball/b451f73e8b5c73e62e365997ba3c993a0376b72a", - "reference": "b451f73e8b5c73e62e365997ba3c993a0376b72a", - "shasum": "" - }, - "require": { - "php": ">=7.1.0" - }, - "require-dev": { - "phpunit/phpunit": ">=7" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2.5-dev" - } - }, - "autoload": { - "psr-4": { - "LightnCandy\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Zordius Chen", - "email": "zordius@gmail.com" - } - ], - "description": "An extremely fast PHP implementation of handlebars ( http://handlebarsjs.com/ ) and mustache ( http://mustache.github.io/ ).", - "homepage": "https://github.com/zordius/lightncandy", - "keywords": [ - "handlebars", - "logicless", - "mustache", - "php", - "template" - ], - "support": { - "issues": "https://github.com/zordius/lightncandy/issues", - "source": "https://github.com/zordius/lightncandy/tree/v1.2.6" - }, - "time": "2021-07-11T04:52:41+00:00" } ], "aliases": [], From fd5446c0a70aa44515f397c84feb7de7b928deb3 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 21:00:56 +0200 Subject: [PATCH 065/112] Update tests --- .github/workflows/tests-php-eva.yml | 3 ++- .github/workflows/tests-php.yml | 3 ++- tests/wpunit/Tribe/functions/templateTags/generalTest.php | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index 284a87c3a8..daa900dcfb 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -351,13 +351,14 @@ jobs: run: | ${SLIC_BIN} use the-events-calendar/common ${SLIC_BIN} composer install - - name: Init the WordPress container + - name: Init the WordPress container and Set up a theme if: steps.skip.outputs.value != 1 run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version ${SLIC_BIN} wp core update --force --version=6.5 ${SLIC_BIN} wp core version + ${SLIC_BIN} wp theme install twentytwenty --activate - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 7bb7359a31..6ee8a6a55d 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -173,13 +173,14 @@ jobs: # ------------------------------------------------------------------------------ # Update WordPress version to our min required. # ------------------------------------------------------------------------------ - - name: Init the WordPress container + - name: Init the WordPress container and set up a theme if: steps.skip.outputs.value != 1 run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version ${SLIC_BIN} wp core update --force --version=6.5 ${SLIC_BIN} wp core version + ${SLIC_BIN} wp theme install twentytwenty --activate - name: Run suite tests if: steps.skip.outputs.value != 1 run: ${SLIC_BIN} run ${{ matrix.suite }} diff --git a/tests/wpunit/Tribe/functions/templateTags/generalTest.php b/tests/wpunit/Tribe/functions/templateTags/generalTest.php index abac21a57c..d163ba9dbb 100644 --- a/tests/wpunit/Tribe/functions/templateTags/generalTest.php +++ b/tests/wpunit/Tribe/functions/templateTags/generalTest.php @@ -71,8 +71,8 @@ static function () { $output = tribe_asset_print_group( 'test-group', false ); $expected_tmpl = <<< TAG - - + + TAG; $expected = str_replace( '{{ common_url }}', home_url( '/wp-content/plugins/the-events-calendar/common/src/resources' ), $expected_tmpl ); From 6ce3003a10fb051c07cc33beba64a1a8e60c7213 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 21:03:55 +0200 Subject: [PATCH 066/112] ensure the theme is active before checking it --- tests/wpunit/Tribe/Utils/Theme_CompatibilityTest.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/wpunit/Tribe/Utils/Theme_CompatibilityTest.php b/tests/wpunit/Tribe/Utils/Theme_CompatibilityTest.php index 2187456f95..c2e1bd383d 100644 --- a/tests/wpunit/Tribe/Utils/Theme_CompatibilityTest.php +++ b/tests/wpunit/Tribe/Utils/Theme_CompatibilityTest.php @@ -7,6 +7,13 @@ class Theme_CompatibilityTest extends WPTestCase { + /** + * @before + */ + public function set_up() { + switch_theme( 'twentytwenty' ); + } + public function themes_supported_data_set() { return [ 'avada_is_supported' => [ 'avada' ], From e356f043409c5802676737b582b5f4ed5465ee8d Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 21:22:06 +0200 Subject: [PATCH 067/112] Fix dumps --- tests/_data/restv1-dump.sql | 339 ++++++++++++++++++++++++++++++- tests/_data/restv1_et-dump.sql | 350 +++++++++++++++++++++++++++++++-- 2 files changed, 664 insertions(+), 25 deletions(-) diff --git a/tests/_data/restv1-dump.sql b/tests/_data/restv1-dump.sql index 023391edd4..de51c144e8 100644 --- a/tests/_data/restv1-dump.sql +++ b/tests/_data/restv1-dump.sql @@ -1,4 +1,5 @@ --- MariaDB dump 10.19 Distrib 10.5.23-MariaDB, for debian-linux-gnu (aarch64) +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.5.26-MariaDB, for debian-linux-gnu (aarch64) -- -- Host: db Database: test -- ------------------------------------------------------ @@ -45,7 +46,7 @@ CREATE TABLE `wp_actionscheduler_actions` ( KEY `group_id` (`group_id`), KEY `last_attempt_gmt` (`last_attempt_gmt`), KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -54,7 +55,7 @@ CREATE TABLE `wp_actionscheduler_actions` ( LOCK TABLES `wp_actionscheduler_actions` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */; -INSERT INTO `wp_actionscheduler_actions` VALUES (5,'woocommerce_cleanup_draft_orders','failed','2023-01-05 13:11:56','2023-01-05 13:11:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1672924316;s:18:\"\0*\0first_timestamp\";i:1672924316;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1672924316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',0,1,'2023-01-05 13:11:56','2023-01-05 13:11:56',0,NULL,10),(17,'woocommerce_cleanup_draft_orders','complete','2023-11-17 13:58:44','2023-11-17 08:58:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1700229524;s:18:\"\0*\0first_timestamp\";i:1700229524;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1700229524;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2024-07-16 19:25:23','2024-07-16 15:25:23',0,NULL,10),(18,'action_scheduler/migration_hook','complete','2023-11-17 14:05:59','2023-11-17 09:05:59','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700229959;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700229959;}',1,1,'2024-07-16 19:25:23','2024-07-16 15:25:23',0,NULL,10),(19,'woocommerce_run_product_attribute_lookup_regeneration_callback','complete','2024-07-16 19:25:17','2024-07-16 15:25:17','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1721157917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1721157917;}',2,1,'2024-07-16 19:25:23','2024-07-16 15:25:23',0,NULL,10),(20,'woocommerce_run_on_woocommerce_admin_updated','complete','2024-07-16 19:25:16','2024-07-16 15:25:16','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1721157916;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1721157916;}',3,1,'2024-07-16 19:25:23','2024-07-16 15:25:23',0,NULL,10),(21,'woocommerce_cleanup_draft_orders','pending','2024-07-17 19:25:23','2024-07-17 15:25:23','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1721244323;s:18:\"\0*\0first_timestamp\";i:1700229524;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1721244323;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(22,'action_scheduler/migration_hook','pending','2024-09-25 10:44:47','2024-09-25 06:44:47','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1727261087;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1727261087;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10); +INSERT INTO `wp_actionscheduler_actions` VALUES (5,'woocommerce_cleanup_draft_orders','failed','2023-01-05 13:11:56','2023-01-05 13:11:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1672924316;s:18:\"\0*\0first_timestamp\";i:1672924316;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1672924316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',0,1,'2023-01-05 13:11:56','2023-01-05 13:11:56',0,NULL,10),(21,'woocommerce_cleanup_draft_orders','failed','2024-07-17 19:25:23','2024-07-17 15:25:23','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1721244323;s:18:\"\0*\0first_timestamp\";i:1700229524;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1721244323;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-01-07 19:15:01','2025-01-07 14:15:01',0,NULL,10),(22,'action_scheduler/migration_hook','complete','2024-09-25 10:44:47','2024-09-25 06:44:47','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1727261087;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1727261087;}',1,1,'2025-01-07 19:15:01','2025-01-07 14:15:01',0,NULL,10),(23,'woocommerce_cleanup_draft_orders','pending','2025-01-08 19:15:01','2025-01-08 14:15:01','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1736363701;s:18:\"\0*\0first_timestamp\";i:1700229524;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1736363701;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10); /*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */; UNLOCK TABLES; @@ -70,7 +71,7 @@ CREATE TABLE `wp_actionscheduler_claims` ( `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`claim_id`), KEY `date_created_gmt` (`date_created_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -123,7 +124,7 @@ CREATE TABLE `wp_actionscheduler_logs` ( PRIMARY KEY (`log_id`), KEY `action_id` (`action_id`), KEY `log_date_gmt` (`log_date_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -132,7 +133,7 @@ CREATE TABLE `wp_actionscheduler_logs` ( LOCK TABLES `wp_actionscheduler_logs` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */; -INSERT INTO `wp_actionscheduler_logs` VALUES (10,5,'action created','2023-01-05 13:11:56','2023-01-05 13:11:56'),(11,5,'action started via WP Cron','2023-01-05 13:11:56','2023-01-05 13:11:56'),(12,5,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2023-01-05 13:11:56','2023-01-05 13:11:56'),(43,17,'action created','2023-11-17 13:58:44','2023-11-17 08:58:44'),(44,18,'action created','2023-11-17 14:04:59','2023-11-17 09:04:59'),(45,19,'action created','2024-07-16 19:25:16','2024-07-16 15:25:16'),(46,20,'action created','2024-07-16 19:25:16','2024-07-16 15:25:16'),(47,17,'action started via WP Cron','2024-07-16 19:25:23','2024-07-16 15:25:23'),(48,17,'action complete via WP Cron','2024-07-16 19:25:23','2024-07-16 15:25:23'),(49,21,'action created','2024-07-16 19:25:23','2024-07-16 15:25:23'),(50,18,'action started via WP Cron','2024-07-16 19:25:23','2024-07-16 15:25:23'),(51,18,'action complete via WP Cron','2024-07-16 19:25:23','2024-07-16 15:25:23'),(52,20,'action started via WP Cron','2024-07-16 19:25:23','2024-07-16 15:25:23'),(53,20,'action complete via WP Cron','2024-07-16 19:25:23','2024-07-16 15:25:23'),(54,19,'action started via WP Cron','2024-07-16 19:25:23','2024-07-16 15:25:23'),(55,19,'action complete via WP Cron','2024-07-16 19:25:23','2024-07-16 15:25:23'),(56,22,'action created','2024-09-25 10:43:47','2024-09-25 06:43:47'); +INSERT INTO `wp_actionscheduler_logs` VALUES (10,5,'action created','2023-01-05 13:11:56','2023-01-05 13:11:56'),(11,5,'action started via WP Cron','2023-01-05 13:11:56','2023-01-05 13:11:56'),(12,5,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2023-01-05 13:11:56','2023-01-05 13:11:56'),(49,21,'action created','2024-07-16 19:25:23','2024-07-16 15:25:23'),(56,22,'action created','2024-09-25 10:43:47','2024-09-25 06:43:47'),(57,21,'action started via WP Cron','2025-01-07 19:15:01','2025-01-07 14:15:01'),(58,21,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2025-01-07 19:15:01','2025-01-07 14:15:01'),(59,23,'action created','2025-01-07 19:15:01','2025-01-07 14:15:01'),(60,22,'action started via WP Cron','2025-01-07 19:15:01','2025-01-07 14:15:01'),(61,22,'action complete via WP Cron','2025-01-07 19:15:01','2025-01-07 14:15:01'); /*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */; UNLOCK TABLES; @@ -413,6 +414,68 @@ LOCK TABLES `wp_edd_customers` WRITE; /*!40000 ALTER TABLE `wp_edd_customers` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `wp_edd_emailmeta` +-- + +DROP TABLE IF EXISTS `wp_edd_emailmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_edd_emailmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `edd_email_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `email_id` (`edd_email_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_edd_emailmeta` +-- + +LOCK TABLES `wp_edd_emailmeta` WRITE; +/*!40000 ALTER TABLE `wp_edd_emailmeta` DISABLE KEYS */; +INSERT INTO `wp_edd_emailmeta` VALUES (1,1,'legacy','purchase_receipt'),(2,1,'legacy','purchase_subject'),(3,1,'legacy','purchase_heading'),(4,2,'legacy','sale_notification'),(5,2,'legacy','sale_notification_subject'),(6,2,'legacy','sale_notification_heading'),(7,2,'legacy','disable_admin_notices'),(8,2,'recipients','admin'); +/*!40000 ALTER TABLE `wp_edd_emailmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_edd_emails` +-- + +DROP TABLE IF EXISTS `wp_edd_emails`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_edd_emails` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `email_id` varchar(32) NOT NULL, + `context` varchar(32) NOT NULL DEFAULT 'order', + `sender` varchar(32) NOT NULL DEFAULT 'edd', + `recipient` varchar(32) NOT NULL DEFAULT 'customer', + `subject` text NOT NULL, + `heading` text DEFAULT NULL, + `content` longtext NOT NULL, + `status` tinyint(1) unsigned NOT NULL DEFAULT 0, + `date_created` datetime NOT NULL DEFAULT current_timestamp(), + `date_modified` datetime NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`), + UNIQUE KEY `email_id` (`email_id`) +) 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_edd_emails` +-- + +LOCK TABLES `wp_edd_emails` WRITE; +/*!40000 ALTER TABLE `wp_edd_emails` DISABLE KEYS */; +INSERT INTO `wp_edd_emails` VALUES (1,'order_receipt','order','edd','customer','Purchase Receipt','Purchase Receipt','Dear {name},\n\nThank you for your purchase. Please click on the link(s) below to download your files.\n\n{download_list}\n\n{sitename}',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(2,'admin_order_notice','order','edd','admin','New download purchase - Order #{payment_id}','New Sale!','Hello\n\nA Downloads purchase has been made.\n\nDownloads sold:\n\n{download_list}\n\nPurchased by: {fullname}\nAmount: {price}\nPayment Method: {payment_method}\n\nThank you',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(3,'order_refund','refund','edd','customer','Your order has been refunded','','Dear {name},\n\nYour order has been refunded.',0,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(4,'admin_order_refund','refund','edd','admin','An order has been refunded','','Order {payment_id} has been refunded.',0,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(5,'new_user','user','edd','customer','[{sitename}] Your username and password','Your account info','Username: {username}\r\nPassword: [entered on site]\r\n Click here to log in →\r\n',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(6,'new_user_admin','user','edd','admin','[{sitename}] New User Registration','New user registration','Username: {username}\r\n\r\nE-mail: {user_email}\r\n',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(7,'user_verification','user','edd','user','Verify your account','Verify your account','Hello {fullname},\n\nYour account with {sitename} needs to be verified before you can access your order history.\n\nVisit this link to verify your account: {verification_url}\n\n',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(8,'password_reset','user','wp','user','[Wordpress Test] Password Reset','','Someone has requested a password reset for the following account:\r\n\r\nSite Name: {sitename}\r\n\r\nUsername: {username}\r\n\r\nIf this was a mistake, ignore this email and nothing will happen.\r\n\r\nTo reset your password, visit the following address:\r\n\r\n{password_reset_link}\r\n\r\nThis password reset request originated from the IP address {ip_address}.\r\n',0,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(9,'stripe_early_fraud_warning','order','edd','admin','Stripe Early Fraud Warning - Order #{payment_id}','Possible Fraudulent Order','Hello\n\nStripe has detected a potential fraudulent order.\n\nDownloads sold:\n\n{download_list}\n\nPurchased by: {fullname}\nAmount: {price}\nOrder Details\n\nNote: Once you have reviewed the order, ensure you take the appropriate action within your Stripe dashboard to help improve future fraud detection.',0,'2025-01-07 19:14:08','2025-01-07 19:14:08'); +/*!40000 ALTER TABLE `wp_edd_emails` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `wp_edd_logmeta` -- @@ -537,6 +600,66 @@ LOCK TABLES `wp_edd_logs_api_requests` WRITE; /*!40000 ALTER TABLE `wp_edd_logs_api_requests` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `wp_edd_logs_emailmeta` +-- + +DROP TABLE IF EXISTS `wp_edd_logs_emailmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_edd_logs_emailmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `edd_logs_email_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `edd_logs_email_id` (`edd_logs_email_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_edd_logs_emailmeta` +-- + +LOCK TABLES `wp_edd_logs_emailmeta` WRITE; +/*!40000 ALTER TABLE `wp_edd_logs_emailmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_edd_logs_emailmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_edd_logs_emails` +-- + +DROP TABLE IF EXISTS `wp_edd_logs_emails`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_edd_logs_emails` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `object_type` varchar(20) NOT NULL DEFAULT 'customer', + `email` varchar(100) NOT NULL DEFAULT '', + `email_id` varchar(32) NOT NULL, + `subject` varchar(200) NOT NULL, + `date_created` datetime NOT NULL DEFAULT current_timestamp(), + `date_modified` datetime NOT NULL DEFAULT current_timestamp(), + `uuid` varchar(100) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `object_id_type` (`object_id`,`object_type`), + KEY `email_id` (`email_id`), + KEY `date_created` (`date_created`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_edd_logs_emails` +-- + +LOCK TABLES `wp_edd_logs_emails` WRITE; +/*!40000 ALTER TABLE `wp_edd_logs_emails` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_edd_logs_emails` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `wp_edd_logs_file_downloadmeta` -- @@ -1037,7 +1160,7 @@ CREATE TABLE `wp_options` ( PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=1161 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=1175 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1046,7 +1169,7 @@ CREATE TABLE `wp_options` ( LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; -INSERT INTO `wp_options` VALUES (1,'siteurl','http://wordpress.test','yes'),(2,'home','http://wordpress.test','yes'),(3,'blogname','Wordpress Test','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@wordpress.test','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:2:{i:0;s:34:\"events-pro/events-calendar-pro.php\";i:1;s:43:\"the-events-calendar/the-events-calendar.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','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','56657','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:3:{s:43:\"the-events-calendar/the-events-calendar.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:31:\"event-tickets/event-tickets.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:35:\"event-automator/event-automator.php\";s:23:\"tec_automator_uninstall\";}','no'),(82,'timezone_string','America/New_York','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:199:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"view_shop_reports\";b:1;s:24:\"view_shop_sensitive_data\";b:1;s:19:\"export_shop_reports\";b:1;s:21:\"manage_shop_discounts\";b:1;s:20:\"manage_shop_settings\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:74:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:30:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:126:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:19:\"delete_others_pages\";b:1;s:19:\"delete_others_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:17:\"edit_others_posts\";b:1;s:10:\"edit_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:13:\"publish_pages\";b:1;s:13:\"publish_posts\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:17:\"view_shop_reports\";b:1;s:24:\"view_shop_sensitive_data\";b:1;s:19:\"export_shop_reports\";b:1;s:20:\"manage_shop_settings\";b:1;s:21:\"manage_shop_discounts\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:15:\"shop_accountant\";a:2:{s:4:\"name\";s:15:\"Shop Accountant\";s:12:\"capabilities\";a:8:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"edit_products\";b:1;s:21:\"read_private_products\";b:1;s:17:\"view_shop_reports\";b:1;s:19:\"export_shop_reports\";b:1;s:18:\"edit_shop_payments\";b:1;}}s:11:\"shop_worker\";a:2:{s:4:\"name\";s:11:\"Shop Worker\";s:12:\"capabilities\";a:61:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;}}s:11:\"shop_vendor\";a:2:{s:4:\"name\";s:11:\"Shop Vendor\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:12:\"edit_product\";b:1;s:13:\"edit_products\";b:1;s:14:\"delete_product\";b:1;s:15:\"delete_products\";b:1;s:16:\"publish_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"assign_product_terms\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:28:{i:1721157926;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721157976;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1721157978;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1721159004;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:1721159491;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1721160703;a:1:{s:30:\"edds_cleanup_rate_limiting_log\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1721160783;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1721161516;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1721166224;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:1721168716;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721178845;a:3:{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:1721179516;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1721181898;a:1:{s:30:\"tribe_schedule_transient_purge\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1721188800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721209404;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721209424;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:1721209426;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:1721215449;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721220691;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721220706;a:1:{s:26:\"edd_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721226559;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721295804;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1721393506;a:1:{s:27:\"edd_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1721395553;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1721649600;a:1:{s:22:\"edd_email_summary_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1727261022;a:1:{s:46:\"tec_tickets_update_glance_item_attendee_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1727261036;a:1:{s:21:\"tribe-recurrence-cron\";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'),(110,'theme_mods_twentyseventeen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(123,'tribe_last_updated_option','1727261039.3766','yes'),(124,'tribe_events_calendar_options','a:40:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:14:\"schema-version\";s:7:\"6.6.4.2\";s:21:\"previous_ecp_versions\";a:8:{i:0;s:1:\"0\";i:1;s:5:\"6.0.2\";i:2;s:7:\"6.0.3.1\";i:3;s:5:\"6.0.5\";i:4;s:7:\"6.0.6.2\";i:5;s:5:\"6.2.7\";i:6;s:5:\"6.2.8\";i:7;s:5:\"6.6.0\";}s:18:\"latest_ecp_version\";s:7:\"6.6.4.2\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:60;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:39:\"last-update-message-the-events-calendar\";s:7:\"6.6.4.2\";s:25:\"ticket-enabled-post-types\";a:2:{i:0;s:12:\"tribe_events\";i:1;s:4:\"page\";}s:28:\"event-tickets-schema-version\";s:8:\"5.13.3.1\";s:31:\"previous_event_tickets_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"5.5.4\";i:2;s:5:\"5.5.5\";i:3;s:7:\"5.6.8.1\";i:4;s:5:\"5.7.0\";i:5;s:6:\"5.12.0\";}s:28:\"latest_event_tickets_version\";s:8:\"5.13.3.1\";s:29:\"tribe_tickets_migrate_offset_\";s:8:\"complete\";s:33:\"last-update-message-event-tickets\";s:5:\"5.5.4\";s:36:\"previous_event_tickets_plus_versions\";a:5:{i:0;s:1:\"0\";i:1;s:5:\"5.6.4\";i:2;s:5:\"5.7.7\";i:3;s:5:\"5.8.0\";i:4;s:5:\"6.0.0\";}s:33:\"latest_event_tickets_plus_version\";s:5:\"6.0.2\";s:33:\"event-tickets-plus-schema-version\";s:5:\"6.0.2\";s:31:\"tickets-plus-qr-options-api-key\";s:8:\"fb89abb8\";s:24:\"tickets_commerce_enabled\";b:1;s:30:\"tickets-commerce-checkout-page\";s:2:\"16\";s:29:\"tickets-commerce-success-page\";s:2:\"17\";s:24:\"tickets-commerce-sandbox\";b:1;s:31:\"tickets-commerce-stock-handling\";s:7:\"pending\";s:30:\"tickets-commerce-currency-code\";s:3:\"USD\";s:34:\"tickets-commerce-currency-position\";s:6:\"prefix\";s:48:\"tickets-commerce-confirmation-email-sender-email\";s:20:\"admin@wordpress.test\";s:47:\"tickets-commerce-confirmation-email-sender-name\";s:5:\"admin\";s:43:\"tickets-commerce-confirmation-email-subject\";s:17:\"You have tickets!\";s:13:\"earliest_date\";s:19:\"2019-01-01 15:00:00\";s:21:\"earliest_date_markers\";a:1:{i:0;i:18;}s:11:\"latest_date\";s:19:\"2019-01-01 18:00:00\";s:19:\"latest_date_markers\";a:1:{i:0;i:18;}s:30:\"event-automator-schema-version\";s:5:\"1.7.0\";s:13:\"opt-in-status\";b:0;s:43:\"tec_tickets_commerce_stripe_webhook_version\";s:8:\"5.13.3.1\";s:18:\"pro-schema-version\";s:5:\"7.1.0\";s:29:\"events-virtual-schema-version\";s:6:\"1.15.8\";}','yes'),(125,'action_scheduler_hybrid_store_demarkation','1','yes'),(126,'schema-ActionScheduler_StoreSchema','7.0.1700225495','yes'),(127,'schema-ActionScheduler_LoggerSchema','3.0.1666777404','yes'),(130,'tribe_last_save_post','1727261039.3767','yes'),(131,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(135,'tec_ct1_events_table_schema_version','1.0.1','yes'),(136,'tec_ct1_occurrences_table_schema_version','1.0.2','yes'),(137,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','yes'),(140,'tribe_last_generate_rewrite_rules','1727261036.692','yes'),(142,'action_scheduler_lock_async-request-runner','66f3e9436d40c2.60517842|1727261055','yes'),(144,'fs_active_plugins','O:8:\"stdClass\":2:{s:7:\"plugins\";a:0:{}s:7:\"abspath\";s:54:\"/Users/brianjessee/Local Sites/tribe/tests/app/public/\";}','yes'),(145,'fs_debug_mode','','yes'),(146,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}','yes'),(147,'fs_gdpr','a:2:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(150,'wp_page_for_privacy_policy','0','yes'),(151,'show_comments_cookies_opt_in','1','yes'),(153,'disallowed_keys','','no'),(154,'comment_previously_approved','1','yes'),(155,'auto_plugin_theme_update_emails','a:0:{}','no'),(156,'auto_update_core_dev','enabled','yes'),(157,'auto_update_core_minor','enabled','yes'),(158,'auto_update_core_major','unset','yes'),(159,'wp_force_deactivated_plugins','a:0:{}','yes'),(160,'finished_updating_comment_type','1','yes'),(161,'user_count','1','no'),(162,'db_upgraded','','yes'),(171,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"admin@wordpress.test\";s:7:\"version\";s:5:\"6.1.1\";s:9:\"timestamp\";i:1670232824;}','no'),(172,'recovery_keys','a:0:{}','yes'),(177,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}}','yes'),(226,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":5,\"critical\":6}','yes'),(260,'recently_activated','a:4:{s:27:\"woocommerce/woocommerce.php\";i:1727261034;s:41:\"event-tickets-plus/event-tickets-plus.php\";i:1727261032;s:31:\"event-tickets/event-tickets.php\";i:1727261029;s:49:\"easy-digital-downloads/easy-digital-downloads.php\";i:1727261027;}','yes'),(295,'fs_api_cache','a:0:{}','no'),(397,'tec_timed_tribe_supports_async_process','','yes'),(430,'edd_settings','a:6:{s:13:\"purchase_page\";i:4;s:12:\"success_page\";i:5;s:12:\"failure_page\";i:6;s:21:\"purchase_history_page\";i:7;s:17:\"confirmation_page\";i:8;s:20:\"stripe_elements_mode\";s:16:\"payment-elements\";}','yes'),(431,'edd_use_php_sessions','1','yes'),(433,'edd_activation_date','1672924302','yes'),(436,'edd_default_api_version','v2','yes'),(437,'edd_completed_upgrades','a:17:{i:0;s:21:\"upgrade_payment_taxes\";i:1;s:37:\"upgrade_customer_payments_association\";i:2;s:21:\"upgrade_user_api_keys\";i:3;s:25:\"remove_refunded_sale_logs\";i:4;s:29:\"update_file_download_log_data\";i:5;s:17:\"migrate_tax_rates\";i:6;s:17:\"migrate_discounts\";i:7;s:14:\"migrate_orders\";i:8;s:26:\"migrate_customer_addresses\";i:9;s:32:\"migrate_customer_email_addresses\";i:10;s:22:\"migrate_customer_notes\";i:11;s:12:\"migrate_logs\";i:12;s:19:\"migrate_order_notes\";i:13;s:23:\"v30_legacy_data_removed\";i:14;s:28:\"stripe_customer_id_migration\";i:15;s:26:\"migrate_order_actions_date\";i:16;s:19:\"discounts_start_end\";}','yes'),(438,'edd_version','3.2.6','yes'),(439,'_transient_edd_cache_excluded_uris','a:4:{i:0;s:3:\"p=4\";i:1;s:3:\"p=5\";i:2;s:9:\"/checkout\";i:3;s:8:\"/receipt\";}','yes'),(440,'widget_edd_cart_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(441,'widget_edd_categories_tags_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(442,'widget_edd_product_details','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(444,'_transient_edd-sc-receipt-check','86400','yes'),(445,'edds_stripe_version','2.8.13.1','yes'),(446,'wpdb_edd_customers_version','202303220','yes'),(447,'wpdb_edd_customermeta_version','201807111','yes'),(448,'wpdb_edd_customer_addresses_version','202004051','yes'),(449,'wpdb_edd_customer_email_addresses_version','202002141','yes'),(450,'wpdb_edd_adjustments_version','202307311','yes'),(451,'wpdb_edd_adjustmentmeta_version','201806142','yes'),(452,'wpdb_edd_notes_version','202002141','yes'),(454,'wpdb_edd_notemeta_version','201805221','yes'),(455,'wpdb_edd_orders_version','202307111','yes'),(456,'wpdb_edd_ordermeta_version','201805221','yes'),(457,'wpdb_edd_order_items_version','202110141','yes'),(458,'wpdb_edd_order_itemmeta_version','201805221','yes'),(459,'wpdb_edd_order_adjustments_version','202105221','yes'),(460,'wpdb_edd_order_adjustmentmeta_version','201805221','yes'),(461,'wpdb_edd_order_addresses_version','202002141','yes'),(462,'wpdb_edd_order_transactions_version','202205241','yes'),(463,'wpdb_edd_logs_version','202002141','yes'),(464,'wpdb_edd_logmeta_version','201805221','yes'),(465,'wpdb_edd_logs_api_requests_version','202002141','yes'),(466,'wpdb_edd_logs_api_requestmeta_version','201907291','yes'),(467,'wpdb_edd_logs_file_downloads_version','202002141','yes'),(468,'wpdb_edd_logs_file_downloadmeta_version','201907291','yes'),(469,'edd_licensed_extensions','{\"timeout\":1727347427,\"products\":[]}','no'),(470,'edd_tracking_notice','1','yes'),(475,'woocommerce_schema_version','430','yes'),(476,'woocommerce_store_address','101 South Street','yes'),(477,'woocommerce_store_address_2','','yes'),(478,'woocommerce_store_city','New York','yes'),(479,'woocommerce_default_country','US:NY','yes'),(480,'woocommerce_store_postcode','10001','yes'),(481,'woocommerce_allowed_countries','all','yes'),(482,'woocommerce_all_except_countries','a:0:{}','yes'),(483,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(484,'woocommerce_ship_to_countries','','yes'),(485,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(486,'woocommerce_default_customer_address','base','yes'),(487,'woocommerce_calc_taxes','no','yes'),(488,'woocommerce_enable_coupons','yes','yes'),(489,'woocommerce_calc_discounts_sequentially','no','no'),(490,'woocommerce_currency','USD','yes'),(491,'woocommerce_currency_pos','left','yes'),(492,'woocommerce_price_thousand_sep',',','yes'),(493,'woocommerce_price_decimal_sep','.','yes'),(494,'woocommerce_price_num_decimals','2','yes'),(495,'woocommerce_shop_page_id','10','yes'),(496,'woocommerce_cart_redirect_after_add','no','yes'),(497,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(498,'woocommerce_placeholder_image','9','yes'),(499,'woocommerce_weight_unit','kg','yes'),(500,'woocommerce_dimension_unit','cm','yes'),(501,'woocommerce_enable_reviews','yes','yes'),(502,'woocommerce_review_rating_verification_label','yes','no'),(503,'woocommerce_review_rating_verification_required','no','no'),(504,'woocommerce_enable_review_rating','yes','yes'),(505,'woocommerce_review_rating_required','yes','no'),(506,'woocommerce_manage_stock','yes','yes'),(507,'woocommerce_hold_stock_minutes','60','no'),(508,'woocommerce_notify_low_stock','yes','no'),(509,'woocommerce_notify_no_stock','yes','no'),(510,'woocommerce_stock_email_recipient','admin@wordpress.test','no'),(511,'woocommerce_notify_low_stock_amount','2','no'),(512,'woocommerce_notify_no_stock_amount','0','yes'),(513,'woocommerce_hide_out_of_stock_items','no','yes'),(514,'woocommerce_stock_format','','yes'),(515,'woocommerce_file_download_method','force','no'),(516,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(517,'woocommerce_downloads_require_login','no','no'),(518,'woocommerce_downloads_grant_access_after_payment','yes','no'),(519,'woocommerce_downloads_deliver_inline','','no'),(520,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(522,'woocommerce_attribute_lookup_direct_updates','no','yes'),(523,'woocommerce_prices_include_tax','no','yes'),(524,'woocommerce_tax_based_on','shipping','yes'),(525,'woocommerce_shipping_tax_class','inherit','yes'),(526,'woocommerce_tax_round_at_subtotal','no','yes'),(527,'woocommerce_tax_classes','','yes'),(528,'woocommerce_tax_display_shop','excl','yes'),(529,'woocommerce_tax_display_cart','excl','yes'),(530,'woocommerce_price_display_suffix','','yes'),(531,'woocommerce_tax_total_display','itemized','no'),(532,'woocommerce_enable_shipping_calc','yes','no'),(533,'woocommerce_shipping_cost_requires_address','no','yes'),(534,'woocommerce_ship_to_destination','billing','no'),(535,'woocommerce_shipping_debug_mode','no','yes'),(536,'woocommerce_enable_guest_checkout','yes','no'),(537,'woocommerce_enable_checkout_login_reminder','no','no'),(538,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(539,'woocommerce_enable_myaccount_registration','no','no'),(540,'woocommerce_registration_generate_username','yes','no'),(541,'woocommerce_registration_generate_password','yes','no'),(542,'woocommerce_erasure_request_removes_order_data','no','no'),(543,'woocommerce_erasure_request_removes_download_data','no','no'),(544,'woocommerce_allow_bulk_remove_personal_data','no','no'),(545,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(546,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(547,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(548,'woocommerce_trash_pending_orders','','no'),(549,'woocommerce_trash_failed_orders','','no'),(550,'woocommerce_trash_cancelled_orders','','no'),(551,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(552,'woocommerce_email_from_name','Wordpress Test','no'),(553,'woocommerce_email_from_address','admin@wordpress.test','no'),(554,'woocommerce_email_header_image','','no'),(555,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(556,'woocommerce_email_base_color','#7f54b3','no'),(557,'woocommerce_email_background_color','#f7f7f7','no'),(558,'woocommerce_email_body_background_color','#ffffff','no'),(559,'woocommerce_email_text_color','#3c3c3c','no'),(560,'woocommerce_merchant_email_notifications','no','no'),(561,'woocommerce_cart_page_id','11','no'),(562,'woocommerce_checkout_page_id','12','no'),(563,'woocommerce_myaccount_page_id','13','no'),(564,'woocommerce_terms_page_id','','no'),(565,'woocommerce_force_ssl_checkout','no','yes'),(566,'woocommerce_unforce_ssl_checkout','no','yes'),(567,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(568,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(569,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(570,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(571,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(572,'woocommerce_myaccount_orders_endpoint','orders','yes'),(573,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(574,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(575,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(576,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(577,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(578,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(579,'woocommerce_logout_endpoint','customer-logout','yes'),(580,'woocommerce_api_enabled','no','yes'),(581,'woocommerce_allow_tracking','no','no'),(582,'woocommerce_show_marketplace_suggestions','yes','no'),(583,'woocommerce_analytics_enabled','yes','yes'),(584,'woocommerce_navigation_enabled','no','yes'),(585,'woocommerce_feature_custom_order_tables_enabled','no','yes'),(586,'woocommerce_single_image_width','600','yes'),(587,'woocommerce_thumbnail_image_width','300','yes'),(588,'woocommerce_checkout_highlight_required_fields','yes','yes'),(589,'woocommerce_demo_store','no','no'),(590,'wc_downloads_approved_directories_mode','enabled','yes'),(591,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(592,'current_theme_supports_woocommerce','yes','yes'),(593,'woocommerce_queue_flush_rewrite_rules','no','yes'),(595,'product_cat_children','a:0:{}','yes'),(596,'default_product_cat','15','yes'),(598,'woocommerce_refund_returns_page_id','14','yes'),(601,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:20:\"admin@wordpress.test\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:20:\"admin@wordpress.test\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(602,'woocommerce_version','9.0.2','yes'),(603,'woocommerce_db_version','8.2.2','yes'),(604,'woocommerce_admin_install_timestamp','1672924314','yes'),(605,'woocommerce_inbox_variant_assignment','3','yes'),(609,'_transient_jetpack_autoloader_plugin_paths','a:0:{}','yes'),(610,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";}','yes'),(611,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"0jxv9z7mXPj1LeMzhbPKfp8fWZJxPthz\";}','yes'),(612,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(613,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(614,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(615,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(616,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(617,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(618,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(619,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(620,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(621,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(622,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(623,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(624,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(625,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(630,'_transient_woocommerce_shipping_task_zone_count_transient','0','yes'),(631,'wc_blocks_db_schema_version','260','yes'),(632,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}','no'),(635,'_transient_woocommerce_reports-transient-version','1672924354','yes'),(643,'woocommerce_task_list_tracked_completed_tasks','a:3:{i:0;s:8:\"purchase\";i:1;s:13:\"store_details\";i:2;s:8:\"products\";}','yes'),(645,'woocommerce_onboarding_profile','a:10:{s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:20:\"admin@wordpress.test\";s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:5:\"other\";}}s:13:\"product_types\";a:1:{i:0;s:9:\"downloads\";}s:13:\"product_count\";s:1:\"0\";s:14:\"selling_venues\";s:2:\"no\";s:12:\"setup_client\";b:1;s:19:\"business_extensions\";a:0:{}s:9:\"completed\";b:1;}','yes'),(647,'woocommerce_task_list_dismissed_tasks','a:0:{}','yes'),(651,'woocommerce_task_list_prompt_shown','1','yes'),(660,'woocommerce_default_homepage_layout','two_columns','yes'),(661,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:5:\"setup\";i:1;s:8:\"extended\";}','yes'),(744,'external_updates-event-tickets-plus','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727261032;s:14:\"checkedVersion\";s:5:\"6.0.2\";s:6:\"update\";N;}','no'),(745,'tribe_pue_key_notices','a:0:{}','yes'),(774,'_transient_product_query-transient-version','1727261022','yes'),(820,'edd_version_upgraded_from','3.2.5','no'),(842,'edds_notice_edd-stripe-core_dismissed','1','yes'),(852,'tec_automator_power_automate_secret_key','884cc3ff27ae261b9ede80398ec4f9716058623b02ba6207570a618fdf0af157817bf099d649883f6eb308b2abfc1c131675620e728abc5e99bc731578730a634466e6d855aba8e5962f66b5a81b07720a66435726c4d8c11b19b9878c9554323266baeda87a58f510ddabac230fd9144e8964e3c4e6a303646b33e937996351','yes'),(855,'_transient_product-transient-version','1700223858','yes'),(858,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(859,'wc_blocks_version','11.1.3','yes'),(860,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(861,'tec_freemius_accounts_archive','s:3742:\"a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}\";','yes'),(862,'tec_freemius_accounts_data_archive','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";a:24:{s:10:\"tec_fs_key\";s:9:\"FS_Plugin\";s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";a:24:{s:10:\"tec_fs_key\";s:9:\"FS_Plugin\";s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}','yes'),(863,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:3:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}s:13:\"event-tickets\";a:2:{s:7:\"wp_slug\";s:31:\"event-tickets/event-tickets.php\";s:5:\"optin\";b:0;}s:19:\"events-calendar-pro\";a:2:{s:7:\"wp_slug\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"optin\";b:0;}}}','yes'),(864,'stellarwp_telemetry_event-tickets_show_optin','0','yes'),(865,'stellarwp_telemetry_the-events-calendar_show_optin','0','yes'),(866,'tec_freemius_plugins_archive','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:36:\"event-tickets/common/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.4\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1670325882;s:11:\"plugin_path\";s:31:\"event-tickets/event-tickets.php\";}}s:7:\"abspath\";s:54:\"/Users/brianjessee/Local Sites/tribe/tests/app/public/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:31:\"event-tickets/event-tickets.php\";s:8:\"sdk_path\";s:36:\"event-tickets/common/vendor/freemius\";s:7:\"version\";s:5:\"2.4.4\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1670325882;}}','yes'),(867,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(870,'woocommerce_custom_orders_table_enabled','no','yes'),(871,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(872,'woocommerce_custom_orders_table_created','yes','yes'),(873,'woocommerce_feature_marketplace_enabled','yes','yes'),(874,'woocommerce_feature_product_block_editor_enabled','no','yes'),(880,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727347436;}','yes'),(881,'stellarwp_telemetry_last_send','','yes'),(885,'wcpay_was_in_use','no','yes'),(888,'external_updates-event-automator','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1700226153;s:14:\"checkedVersion\";N;s:6:\"update\";O:19:\"Tribe__PUE__Utility\":12:{s:2:\"id\";i:0;s:6:\"plugin\";s:35:\"event-automator/event-automator.php\";s:4:\"slug\";s:15:\"event-automator\";s:7:\"version\";s:5:\"1.4.0\";s:8:\"homepage\";s:20:\"https://evnt.is/1bc7\";s:12:\"download_url\";s:245:\"https://pue.theeventscalendar.com/api/plugins/v2/download?plugin=event-automator&version=1.4.0&installed_version&domain=localhost&multisite=0&network_activated=0&active_sites=1&wp_version=6.2.2&key=5f53261eb16f7ddf4fe24b69918c8804c82ea817&dk&o=o\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:245:\"Event Automator, a premium add-on to the open source The Events Calendar plugin or Event Tickets (at least one required), that lets you connect your apps and automate workflows for lead management, communication outreach, and internal processes.\";s:12:\"installation\";s:366:\"Installing Event Automator is easy: just back up your site, download/install The Events Calendar and/or Event Tickets from the WordPress.org repo, and download/install Event Automator from theeventscalendar.com. Activate them both and you\'ll be good to go! If you\'re still confused or encounter problems, check out part 1 of our new user primer (http://m.tri.be/4i).\";s:9:\"changelog\";s:515:\"

= [1.4.0] 2023-10-19 =

\r\n\r\n
    \r\n
  • Feature - Add Support for Microsoft Power Automate with Event Tickets and the new attendee, updated attendee, checkin, new orders, and refunded orders endpoints [EVA-96]
  • \r\n
  • Feature - Add Support for Microsoft Power Automate with The Events Calendar and the new event, updated event, canceled event, and action to create events endpoints [EVA-88]
  • \r\n
  • Fix - Prevent multiple attendees from being added to the queue when doing bulk checkin. [EVA-102]
  • \r\n
\";}s:14:\"upgrade_notice\";s:0:\"\";s:13:\"custom_update\";O:8:\"stdClass\":1:{s:5:\"icons\";O:8:\"stdClass\":1:{s:3:\"svg\";s:76:\"https://images.theeventscalendar.com/uploads/2023/01/EventAutomator-icon.svg\";}}s:13:\"license_error\";N;s:11:\"api_expired\";b:0;s:11:\"api_upgrade\";b:0;}}','no'),(895,'pue_install_key_event_automator','5f53261eb16f7ddf4fe24b69918c8804c82ea817','yes'),(901,'edd_onboarding_completed','1','no'),(929,'wpdb_edd_notifications_version','202303220','yes'),(955,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727261036;s:8:\"response\";a:1:{s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.3.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.4.1\";s:12:\"requires_php\";s:3:\"7.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:33:\"coupon-creator/coupon_creator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/coupon-creator\";s:4:\"slug\";s:14:\"coupon-creator\";s:6:\"plugin\";s:33:\"coupon-creator/coupon_creator.php\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/coupon-creator/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/coupon-creator.3.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";s:3:\"svg\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/coupon-creator/assets/banner-1544x500.png?rev=2688941\";s:2:\"1x\";s:69:\"https://ps.w.org/coupon-creator/assets/banner-772x250.png?rev=2688941\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:5:\"3.2.5\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:5:\"5.7.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/event-tickets.5.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.2.8\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.2.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.2.0\";}}s:7:\"checked\";a:15:{s:33:\"ai-development/ai-development.php\";s:5:\"0.1.0\";s:33:\"coupon-creator/coupon_creator.php\";s:5:\"3.3.0\";s:49:\"coupon-creator-add-ons/coupon-creator-add-ons.php\";s:5:\"3.3.0\";s:41:\"coupon-creator-pro/coupon-creator-pro.php\";s:5:\"3.3.0\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:5:\"3.2.5\";s:31:\"event-tickets/event-tickets.php\";s:5:\"5.7.0\";s:41:\"event-tickets-plus/event-tickets-plus.php\";s:5:\"5.8.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.0\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"6.2.8\";s:35:\"event-automator/event-automator.php\";s:5:\"1.3.1\";s:33:\"events-virtual/events-virtual.php\";s:6:\"1.15.5\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"6.2.4\";s:29:\"volt-vectors/volt-vectors.php\";s:5:\"0.1.0\";s:37:\"volt-vectors-pro/volt-vectors-pro.php\";s:5:\"0.1.0\";s:27:\"woocommerce/woocommerce.php\";s:5:\"8.2.2\";}}','no'),(987,'_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.4.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.4.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.1\";s:7:\"version\";s:5:\"6.4.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1727261017;s:15:\"version_checked\";s:5:\"6.4.1\";s:12:\"translations\";a:0:{}}','no'),(988,'wp_attachment_pages_enabled','1','yes'),(992,'can_compress_scripts','0','yes'),(993,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727261017;s:7:\"checked\";a:4:{s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"2.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.0.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.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(1004,'recovery_mode_email_last_sent','1700228527','yes'),(1019,'wc_remote_inbox_notifications_wca_updated','','no'),(1036,'tec_timed_events_timezone_update_needed','a:3:{s:3:\"key\";s:29:\"events_timezone_update_needed\";s:5:\"value\";b:0;s:10:\"expiration\";i:1727347439;}','yes'),(1046,'rewrite_rules','a:393:{s:32:\"(?:events)/map/(?:page)/(\\d+)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=map&paged=$matches[1]\";s:64:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/map/(?:page)/(\\d+)/?$\";s:96:\"index.php?tribe_events_cat=$matches[1]&post_type=tribe_events&eventDisplay=map&paged=$matches[2]\";s:48:\"(?:events)/(?:tag)/([^/]+)/map/(?:page)/(\\d+)/?$\";s:83:\"index.php?tag=$matches[1]&post_type=tribe_events&eventDisplay=map&paged=$matches[2]\";s:14:\"(?:events)/map\";s:49:\"index.php?post_type=tribe_events&eventDisplay=map\";s:49:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/map/?$\";s:78:\"index.php?tribe_events_cat=$matches[1]&post_type=tribe_events&eventDisplay=map\";s:33:\"(?:events)/(?:tag)/([^/]+)/map/?$\";s:65:\"index.php?tag=$matches[1]&post_type=tribe_events&eventDisplay=map\";s:10:\"events/map\";s:49:\"index.php?post_type=tribe_events&eventDisplay=map\";s:41:\"events/category/(?:[^/]+/)*([^/]+)/map/?$\";s:78:\"index.php?tribe_events_cat=$matches[2]&post_type=tribe_events&eventDisplay=map\";s:25:\"events/tag/([^/]+)/map/?$\";s:65:\"index.php?tag=$matches[2]&post_type=tribe_events&eventDisplay=map\";s:41:\"(?:events)/(?:map)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=map&eventDate=$matches[1]\";s:56:\"(?:events)/(?:map)/(\\d{4}-\\d{2}-\\d{2})/(?:page)/(\\d+)/?$\";s:89:\"index.php?post_type=tribe_events&eventDisplay=map&eventDate=$matches[1]&paged=$matches[2]\";s:53:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:map)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=map\";s:66:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:map)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=map&featured=1\";s:37:\"(?:events)/(?:tag)/([^/]+)/(?:map)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=map\";s:50:\"(?:events)/(?:tag)/([^/]+)/(?:map)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=map&featured=1\";s:22:\"(?:events)/(?:week)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=week\";s:35:\"(?:events)/(?:week)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=week&featured=1\";s:42:\"(?:events)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:72:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]\";s:55:\"(?:events)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:83:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]&featured=1\";s:43:\"(?:events)/(?:week)/(\\d{2})/(?:featured)/?$\";s:83:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]&featured=1\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&featured=1\";s:74:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:101:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&eventDate=$matches[2]\";s:87:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:112:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&eventDate=$matches[2]&featured=1\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:week)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&featured=1\";s:58:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:88:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&eventDate=$matches[2]\";s:71:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:99:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:week)/(?:virtual)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=week&virtual=1\";s:54:\"(?:events)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]&virtual=1\";s:42:\"(?:events)/(?:week)/(\\d{2})/(?:virtual)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]&virtual=1\";s:66:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(?:virtual)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&virtual=1\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&eventDate=$matches[2]&virtual=1\";s:50:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(?:virtual)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&virtual=1\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&eventDate=$matches[2]&virtual=1\";s:60:\"(?:events)/(?:organizers)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:93:\"index.php?eventDisplay=organizer&post_type=tribe_organizer&tec_organizer_category=$matches[1]\";s:75:\"(?:events)/(?:organizers)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:111:\"index.php?eventDisplay=organizer&post_type=tribe_organizer&tec_organizer_category=$matches[1]&paged=$matches[2]\";s:56:\"(?:events)/(?:venues)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:81:\"index.php?eventDisplay=venue&post_type=tribe_venue&tec_venue_category=$matches[1]\";s:71:\"(?:events)/(?:venues)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:99:\"index.php?eventDisplay=venue&post_type=tribe_venue&tec_venue_category=$matches[1]&paged=$matches[2]\";s:40:\"(?:events)/(?:summary)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=summary&paged=$matches[1]\";s:53:\"(?:events)/(?:summary)/(?:featured)/(?:page)/(\\d+)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=summary&featured=1&paged=$matches[1]\";s:25:\"(?:events)/(?:summary)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=summary\";s:38:\"(?:events)/(?:summary)/(?:featured)/?$\";s:64:\"index.php?post_type=tribe_events&eventDisplay=summary&featured=1\";s:45:\"(?:events)/(?:summary)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:75:\"index.php?post_type=tribe_events&eventDisplay=summary&eventDate=$matches[1]\";s:58:\"(?:events)/(?:summary)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:86:\"index.php?post_type=tribe_events&eventDisplay=summary&eventDate=$matches[1]&featured=1\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:summary)/(?:page)/(\\d+)/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=summary&paged=$matches[2]\";s:85:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:summary)/(?:featured)/(?:page)/(\\d+)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=summary&featured=1&paged=$matches[2]\";s:70:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:summary)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=summary&featured=1\";s:57:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:summary)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=summary\";s:56:\"(?:events)/(?:tag)/([^/]+)/(?:summary)/(?:page)/(\\d+)/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=summary&paged=$matches[2]\";s:69:\"(?:events)/(?:tag)/([^/]+)/(?:summary)/(?:featured)/(?:page)/(\\d+)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=summary&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:tag)/([^/]+)/(?:summary)/(?:featured)/?$\";s:80:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=summary&featured=1\";s:41:\"(?:events)/(?:tag)/([^/]+)/(?:summary)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=summary\";s:40:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:56:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]\";s:65:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(feed|rdf|rss|rss2|atom)/?$\";s:73:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&feed=$matches[3]\";s:71:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(\\d+)/(feed|rdf|rss|rss2|atom)/?$\";s:99:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&eventSequence=$matches[3]&feed=$matches[4]\";s:46:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(\\d+)/?$\";s:82:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&eventSequence=$matches[3]\";s:46:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/embed/?$\";s:64:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&embed=1\";s:43:\"(?:event)/([^/]+)/(?:all)/(?:page)/(\\d+)/?$\";s:115:\"index.php?tribe_events=$matches[1]&post_type=tribe_events&eventDisplay=all&tribe_recurrence_list=1&page=$matches[2]\";s:28:\"(?:event)/([^/]+)/(?:all)/?$\";s:98:\"index.php?tribe_events=$matches[1]&post_type=tribe_events&eventDisplay=all&tribe_recurrence_list=1\";s:45:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:63:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&ical=1\";s:23:\"(?:events)/(?:photo)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=photo\";s:36:\"(?:events)/(?:photo)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=photo&featured=1\";s:38:\"(?:events)/(?:photo)/(?:page)/(\\d+)/?$\";s:69:\"index.php?post_type=tribe_events&eventDisplay=photo&paged=$matches[1]\";s:43:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]\";s:58:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/(?:page)/(\\d+)/?$\";s:91:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]&paged=$matches[2]\";s:56:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]&featured=1\";s:71:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/(?:page)/(\\d+)/(?:featured)/?$\";s:102:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]&paged=$matches[2]&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:photo)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=photo\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:photo)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=photo&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:photo)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=photo\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:photo)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=photo&featured=1\";s:40:\"(?:events)/(?:virtual)/(?:page)/(\\d+)/?$\";s:78:\"index.php?post_type=tribe_events&virtual=1&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:virtual)/(feed|rdf|rss|rss2|atom)/?$\";s:77:\"index.php?post_type=tribe_events&virtual=1&eventDisplay=list&feed=$matches[1]\";s:49:\"(?:events)/(?:list)/(?:virtual)/(?:page)/(\\d+)/?$\";s:78:\"index.php?post_type=tribe_events&eventDisplay=list&virtual=1&paged=$matches[1]\";s:34:\"(?:events)/(?:list)/(?:virtual)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=list&virtual=1\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/(?:page)/(\\d+)/?$\";s:107:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&eventDisplay=list&paged=$matches[2]\";s:81:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:virtual)/(?:page)/(\\d+)/?$\";s:107:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&virtual=1&paged=$matches[2]\";s:66:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:virtual)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&virtual=1\";s:56:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/(?:page)/(\\d+)/?$\";s:94:\"index.php?post_type=tribe_events&tag=$matches[1]&virtual=1&eventDisplay=list&paged=$matches[2]\";s:65:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:virtual)/(?:page)/(\\d+)/?$\";s:94:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&virtual=1&paged=$matches[2]\";s:50:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:virtual)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&virtual=1\";s:62:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/feed/?$\";s:99:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&eventDisplay=list&feed=rss2\";s:46:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/feed/?$\";s:86:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&virtual=1\";s:35:\"(?:events)/(?:month)/(?:virtual)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=month&virtual=1\";s:39:\"(?:events)/(\\d{4}-\\d{2})/(?:virtual)/?$\";s:83:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&virtual=1\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:virtual)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&virtual=1\";s:71:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:virtual)/?$\";s:112:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&virtual=1\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:virtual)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&virtual=1\";s:55:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:virtual)/?$\";s:99:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&virtual=1\";s:35:\"(?:events)/(?:today)/(?:virtual)/?$\";s:59:\"index.php?post_type=tribe_events&eventDisplay=day&virtual=1\";s:45:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:81:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&virtual=1\";s:30:\"(?:events)/(?:virtual)/ical/?$\";s:49:\"index.php?post_type=tribe_events&ical=1&virtual=1\";s:38:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:78:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]\";s:50:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/(?:virtual)/?$\";s:88:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&virtual=1\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:virtual)/?$\";s:88:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&virtual=1\";s:85:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:110:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&virtual=1\";s:77:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:110:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&virtual=1\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:virtual)/?$\";s:75:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&virtual=1\";s:69:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:97:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&virtual=1\";s:61:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:97:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&virtual=1\";s:25:\"(?:events)/(?:virtual)/?$\";s:42:\"index.php?post_type=tribe_events&virtual=1\";s:57:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/?$\";s:92:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&eventDisplay=default\";s:41:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/?$\";s:58:\"index.php?post_type=tribe_events&tag=$matches[1]&virtual=1\";s:62:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/ical/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&ical=1\";s:87:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:88:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&feed=$matches[2]\";s:46:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/ical/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&virtual=1&ical=1\";s:71:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:75:\"index.php?post_type=tribe_events&tag=$matches[1]&virtual=1&feed=$matches[2]\";s:35:\"(?:events)/(?:photo)/(?:virtual)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=photo&virtual=1\";s:55:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:83:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]&virtual=1\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:photo)/(?:virtual)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=photo&virtual=1\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:photo)/(?:virtual)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=photo&virtual=1\";s:35:\"(?:venue)/([^/]+)/(?:page)/(\\d+)/?$\";s:70:\"index.php?eventDisplay=venue&tribe_venue=$matches[1]&paged=$matches[2]\";s:20:\"(?:venue)/([^/]+)/?$\";s:52:\"index.php?eventDisplay=venue&tribe_venue=$matches[1]\";s:39:\"(?:organizer)/([^/]+)/(?:page)/(\\d+)/?$\";s:78:\"index.php?eventDisplay=organizer&tribe_organizer=$matches[1]&paged=$matches[2]\";s:24:\"(?:organizer)/([^/]+)/?$\";s:60:\"index.php?eventDisplay=organizer&tribe_organizer=$matches[1]\";s:28:\"tribe/events/kitchen-sink/?$\";s:69:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=page\";s:93:\"tribe/events/kitchen-sink/(page|grid|typographical|elements|events-bar|navigation|manager)/?$\";s:76:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=$matches[1]\";s:28:\"event-aggregator/(insert)/?$\";s:53:\"index.php?tribe-aggregator=1&tribe-action=$matches[1]\";s:25:\"(?:event)/([^/]+)/ical/?$\";s:56:\"index.php?ical=1&name=$matches[1]&post_type=tribe_events\";s:28:\"(?:events)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=default&paged=$matches[1]\";s:41:\"(?:events)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&paged=$matches[1]\";s:38:\"(?:events)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=list&feed=$matches[1]\";s:51:\"(?:events)/(?:featured)/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&feed=$matches[1]\";s:23:\"(?:events)/(?:month)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=month\";s:36:\"(?:events)/(?:month)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=month&featured=1\";s:37:\"(?:events)/(?:month)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:37:\"(?:events)/(?:list)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1&paged=$matches[1]\";s:22:\"(?:events)/(?:list)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=list\";s:35:\"(?:events)/(?:list)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1\";s:23:\"(?:events)/(?:today)/?$\";s:49:\"index.php?post_type=tribe_events&eventDisplay=day\";s:36:\"(?:events)/(?:today)/(?:featured)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=day&featured=1\";s:27:\"(?:events)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:40:\"(?:events)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&featured=1\";s:33:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]\";s:46:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:26:\"(?:events)/(?:featured)/?$\";s:43:\"index.php?post_type=tribe_events&featured=1\";s:13:\"(?:events)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=default\";s:18:\"(?:events)/ical/?$\";s:39:\"index.php?post_type=tribe_events&ical=1\";s:31:\"(?:events)/(?:featured)/ical/?$\";s:50:\"index.php?post_type=tribe_events&ical=1&featured=1\";s:51:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:60:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&featured=1\";s:69:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:82:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&featured=1\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:59:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/?$\";s:102:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:113:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:65:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:78:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&feed=rss2\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&feed=rss2\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/ical/?$\";s:68:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&ical=1\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/ical/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&ical=1\";s:75:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&feed=$matches[2]\";s:88:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&feed=$matches[2]\";s:58:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=default\";s:45:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=default\";s:44:\"(?:events)/(?:tag)/([^/]+)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:month)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&featured=1\";s:53:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:66:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:list)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:today)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&featured=1\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:43:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/?$\";s:89:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:56:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:100:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:49:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:62:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/feed/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/ical/?$\";s:55:\"index.php?post_type=tribe_events&tag=$matches[1]&ical=1\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/ical/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&ical=1\";s:59:\"(?:events)/(?:tag)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&feed=$matches[2]\";s:72:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&feed=$matches[2]\";s:42:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/?$\";s:59:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1\";s:29:\"(?:events)/(?:tag)/([^/]+)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=default\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:22:\"tribe-promoter-auth/?$\";s:37:\"index.php?tribe-promoter-auth-check=1\";s:8:\"event/?$\";s:32:\"index.php?post_type=tribe_events\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=tribe_events&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:34:\"series/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"series/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"series/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"series/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"series/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"series/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"series/([^/]+)/embed/?$\";s:51:\"index.php?tribe_event_series=$matches[1]&embed=true\";s:27:\"series/([^/]+)/trackback/?$\";s:45:\"index.php?tribe_event_series=$matches[1]&tb=1\";s:35:\"series/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?tribe_event_series=$matches[1]&paged=$matches[2]\";s:42:\"series/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?tribe_event_series=$matches[1]&cpage=$matches[2]\";s:31:\"series/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?tribe_event_series=$matches[1]&page=$matches[2]\";s:23:\"series/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"series/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"series/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"series/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"series/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"series/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"venue/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"venue/([^/]+)/embed/?$\";s:44:\"index.php?tribe_venue=$matches[1]&embed=true\";s:26:\"venue/([^/]+)/trackback/?$\";s:38:\"index.php?tribe_venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&cpage=$matches[2]\";s:30:\"venue/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?tribe_venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"venue/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"organizer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"organizer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"organizer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"organizer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"organizer/([^/]+)/embed/?$\";s:48:\"index.php?tribe_organizer=$matches[1]&embed=true\";s:30:\"organizer/([^/]+)/trackback/?$\";s:42:\"index.php?tribe_organizer=$matches[1]&tb=1\";s:38:\"organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&paged=$matches[2]\";s:45:\"organizer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&cpage=$matches[2]\";s:34:\"organizer/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?tribe_organizer=$matches[1]&page=$matches[2]\";s:26:\"organizer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"organizer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"organizer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"organizer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:45:\"index.php?tribe_events=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:39:\"index.php?tribe_events=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&cpage=$matches[2]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?tribe_events=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"events/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:49:\"events/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:30:\"events/category/(.+?)/embed/?$\";s:49:\"index.php?tribe_events_cat=$matches[1]&embed=true\";s:42:\"events/category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tribe_events_cat=$matches[1]&paged=$matches[2]\";s:24:\"events/category/(.+?)/?$\";s:38:\"index.php?tribe_events_cat=$matches[1]\";s:41:\"deleted_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"deleted_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"deleted_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"deleted_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"deleted_event/([^/]+)/embed/?$\";s:46:\"index.php?deleted_event=$matches[1]&embed=true\";s:34:\"deleted_event/([^/]+)/trackback/?$\";s:40:\"index.php?deleted_event=$matches[1]&tb=1\";s:42:\"deleted_event/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&paged=$matches[2]\";s:49:\"deleted_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&cpage=$matches[2]\";s:38:\"deleted_event/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?deleted_event=$matches[1]&page=$matches[2]\";s:30:\"deleted_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"deleted_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"deleted_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"deleted_event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:65:\"events/organizers/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?tec_organizer_category=$matches[1]&feed=$matches[2]\";s:60:\"events/organizers/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?tec_organizer_category=$matches[1]&feed=$matches[2]\";s:41:\"events/organizers/category/(.+?)/embed/?$\";s:55:\"index.php?tec_organizer_category=$matches[1]&embed=true\";s:53:\"events/organizers/category/(.+?)/page/?([0-9]{1,})/?$\";s:62:\"index.php?tec_organizer_category=$matches[1]&paged=$matches[2]\";s:35:\"events/organizers/category/(.+?)/?$\";s:44:\"index.php?tec_organizer_category=$matches[1]\";s:61:\"events/venues/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?tec_venue_category=$matches[1]&feed=$matches[2]\";s:56:\"events/venues/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?tec_venue_category=$matches[1]&feed=$matches[2]\";s:37:\"events/venues/category/(.+?)/embed/?$\";s:51:\"index.php?tec_venue_category=$matches[1]&embed=true\";s:49:\"events/venues/category/(.+?)/page/?([0-9]{1,})/?$\";s:58:\"index.php?tec_venue_category=$matches[1]&paged=$matches[2]\";s:31:\"events/venues/category/(.+?)/?$\";s:40:\"index.php?tec_venue_category=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(1047,'tribe_feature_support_check_lock','1','yes'),(1060,'woocommerce_product_match_featured_image_by_sku','no','yes'),(1061,'woocommerce_feature_order_attribution_enabled','yes','yes'),(1062,'woocommerce_hpos_fts_index_enabled','no','yes'),(1063,'woocommerce_store_id','ddd16fa3-6aac-4b35-8fd8-51f613ed8283','yes'),(1064,'woocommerce_remote_variant_assignment','1','yes'),(1068,'_transient_timeout__woocommerce_upload_directory_status','1721244316','no'),(1069,'_transient__woocommerce_upload_directory_status','protected','no'),(1074,'_transient_timeout_woocommerce_blocks_asset_api_script_data','1729853034','no'),(1075,'_transient_woocommerce_blocks_asset_api_script_data','{\"script_data\":{\"build\\/wc-settings.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-settings.js\",\"version\":\"b31b6165ac2a07ada0ff536d52b1466d\",\"dependencies\":[\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/wc-blocks-middleware.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-middleware.js\",\"version\":\"208988bfef8a0a939e506218fc806a2b\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"build\\/wc-blocks-data.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-data.js\",\"version\":\"6279193027a1b903984715859dfcbaab\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"build\\/wc-blocks-vendors.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-vendors.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/wc-blocks-registry.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-registry.js\",\"version\":\"ecaf398656735e56f2d30eafc248ef35\",\"dependencies\":[\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks.js\",\"version\":\"1159c1fb50bedb71fad49f8808017cfe\",\"dependencies\":[\"wp-blocks\",\"wp-compose\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/wc-blocks-shared-context.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-context.js\",\"version\":\"caa936d2b7c335001cfc366d96d8a569\",\"dependencies\":[\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks-shared-hocs.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-hocs.js\",\"version\":\"7243a9fa7264377a45413afae757013f\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/price-format.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-format.js\",\"version\":\"46126111d3b46712d9c0f0dbd873b138\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"build\\/blocks-checkout.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/blocks-checkout.js\",\"version\":\"cb1e22af331a53010b79e1484a5344bd\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/active-filters.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters.js\",\"version\":\"ed942f2e4631590ba01d30e045367abf\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/active-filters-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters-frontend.js\",\"version\":\"948664e8c5afa263b9c5dfda6dc2e83a\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/all-products.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products.js\",\"version\":\"f478ea858b58d3507924bea2c4c214ad\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-products-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products-frontend.js\",\"version\":\"d12119aa2d9e588535c80fe0310c869e\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-reviews.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-reviews.js\",\"version\":\"d578e628b1e1f0148c7bf60cfe1c602f\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/reviews-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-frontend.js\",\"version\":\"f7574b7910cac2f35291759fd35ce254\",\"dependencies\":[\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-compose\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/attribute-filter.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter.js\",\"version\":\"19c61fdb57ae1e3ee4c4465694e2e73f\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/attribute-filter-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter-frontend.js\",\"version\":\"10589e1dbed5b10fc6383d7730b8b091\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/breadcrumbs.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/breadcrumbs.js\",\"version\":\"779832775ebf460068025eadf0e90da7\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/catalog-sorting.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/catalog-sorting.js\",\"version\":\"70d26793890b54364d1bbd5bce8a2e5f\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/legacy-template.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/legacy-template.js\",\"version\":\"1deb4ed7bca43c65a86d8f5cd71d0f2e\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/customer-account.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/customer-account.js\",\"version\":\"cae8d20aaf0cf655dbdfdee65cb8690e\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/featured-category.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-category.js\",\"version\":\"3d12a7feebe4b68db6a36c9782d5ad32\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/featured-product.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-product.js\",\"version\":\"e4170e4eaef5b2cd3a1ecc1620f83f6e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/filter-wrapper.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper.js\",\"version\":\"39a31dba3fd2d291ce2697866fa1c71d\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/filter-wrapper-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper-frontend.js\",\"version\":\"1c42e853788847e4cb9b601a4b29ff97\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"build\\/handpicked-products.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/handpicked-products.js\",\"version\":\"a19a347add2b45d53540cfee4e85f35a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/mini-cart.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart.js\",\"version\":\"dcafac4b01a7e074b1393897ae84166f\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/mini-cart-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-frontend.js\",\"version\":\"b922d0f8fc627b4c7695288bc4eb7d38\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/store-notices.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/store-notices.js\",\"version\":\"b0410f962bb163ecf804f85945494a69\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/price-filter.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter.js\",\"version\":\"d34658f1bc90f65917dff23469786540\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/price-filter-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter-frontend.js\",\"version\":\"4f2ef15ca232059ed0f17c7cfbea62f5\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"build\\/product-add-to-cart.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-add-to-cart-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-best-sellers.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-best-sellers.js\",\"version\":\"5e118444ec6ac5c2b3b9440f9a558d7f\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-button.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-button-interactivity-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button-interactivity-frontend.js\",\"version\":\"f231c36d2e6154d2cf545a864568f5e4\",\"dependencies\":[\"lodash\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/product-categories.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-categories.js\",\"version\":\"4c0c5bfa88e3bc2d34f8b7cd3089cbc1\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"build\\/product-category.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-category.js\",\"version\":\"bbc8aaa78e356a825d5c33c7e4fcce76\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-collection.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-collection.js\",\"version\":\"941432e3696193936d37736b8faf9837\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-new.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-new.js\",\"version\":\"54fd948597e5afa211abe9b37a3382e8\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-on-sale.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-on-sale.js\",\"version\":\"b39b1e40568e2dd5b37320e6dfa17f57\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-template.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-template.js\",\"version\":\"b73d4ef43094fefd8eb5a09bc3178c82\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/product-query.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query.js\",\"version\":\"b09016077f61d88bbd680cc641cef9ff\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-query-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-results-count.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-results-count.js\",\"version\":\"62389880d09bea807af392c535996912\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-search.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-search.js\",\"version\":\"a32bcc8d5170d5a7d8e4c9854477f8f8\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-summary.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-summary.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-tag.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-tag.js\",\"version\":\"74f9457abc552c377bfd00525d7f7ed6\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-title.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-title-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-top-rated.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-top-rated.js\",\"version\":\"635f63dff3d29cca693bd94a17659bda\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/products-by-attribute.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/products-by-attribute.js\",\"version\":\"73b9ca1ee1dfe920689b7c2ca1134bbb\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/rating-filter.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/rating-filter.js\",\"version\":\"8a60b8434a974c7d9e71c9863ee4a423\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/reviews-by-category.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-category.js\",\"version\":\"6ecfcf28de8997b8f93996a0bf52766c\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/reviews-by-product.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-product.js\",\"version\":\"2a47a97286dbc7a2293f760ee2b21f6f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/single-product.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/single-product.js\",\"version\":\"7dc18ae07298254fb4c2c3f50f368333\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/stock-filter.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter.js\",\"version\":\"8bfac93830eed1003e87b254e7103dda\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/stock-filter-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter-frontend.js\",\"version\":\"bb50cc5d94568fa66c1b2da4c7ab3060\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/cart.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart.js\",\"version\":\"23d484e326a0b12a525fb0d7beddac73\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-frontend.js\",\"version\":\"89e864cb281577fa4668ce653ccc6f41\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products--product-price-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products--product-price-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/billing-address--checkout-blocks\\/order--decc3dc6-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/billing-address--checkout-blocks\\/order--decc3dc6-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/order-summary-shipping--checkout-block--24d3fc0c-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/order-summary-shipping--checkout-block--24d3fc0c-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/cart-cross-sells-products--cart-blocks\\/cart-line-items--cart-blocks\\/cart-order--3c5fe802-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/cart-cross-sells-products--cart-blocks\\/cart-line-items--cart-blocks\\/cart-order--3c5fe802-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/cart-line-items--checkout-blocks\\/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/cart-line-items--checkout-blocks\\/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-taxes-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/filled-cart-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-cart-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/empty-cart-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-cart-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-totals-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-totals-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-items-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-items-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-line-items-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-line-items-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-express-payment-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-express-payment-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/proceed-to-checkout-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/proceed-to-checkout-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-accepted-payment-methods-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-discount-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-fee-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-heading-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-heading-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-shipping-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-cross-sells-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-cross-sells-products-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-products-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout.js\",\"version\":\"1b91965aaf315e8ca91923398605c910\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-frontend.js\",\"version\":\"a6427457ee65cfa508d1d3bcc982f8a8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-blocks\\/actions-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions--checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions--checkout-blocks\\/terms-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/billing-address--checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/billing-address--checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-actions-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-actions-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-billing-address-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-billing-address-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-contact-information-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-contact-information-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-express-payment-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-express-payment-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-fields-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-fields-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-note-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-note-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-discount-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-fee-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-payment-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-payment-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-shipping-address-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-address-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-shipping-methods-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-methods-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-shipping-method-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-method-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-pickup-options-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-pickup-options-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-terms-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-terms-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-totals-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-totals-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents.js\",\"version\":\"e9456573a7b01f9120587bf7edc5a57d\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/empty-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-mini-cart-contents-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/filled-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-mini-cart-contents-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-footer-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-footer-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-items-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-items-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-products-table-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-products-table-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-shopping-button-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-shopping-button-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-cart-button-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-cart-button-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-checkout-button-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-checkout-button-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-title-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-title-items-counter-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-title-label-block.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-label-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-component-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-component-frontend.js\",\"version\":\"a0eb1c412a9dfd9bcec35fdcfbbd716d\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/mini-cart-contents-block\\/cart-button--mini-cart-contents-block\\/checkout-button--mini-cart-contents---358acf4e-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/cart-button--mini-cart-contents-block\\/checkout-button--mini-cart-contents---358acf4e-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/products-table-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/products-table-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/products-table--product-image--product-title-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/products-table--product-image--product-title-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--mini-cart-contents-block\\/products-table--price-filter-wrapper--product-price-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--mini-cart-contents-block\\/products-table--price-filter-wrapper--product-price-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--mini-cart-contents-block\\/products-table-style.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--mini-cart-contents-block\\/products-table-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/wc-shipping-method-pickup-location.js\":{\"src\":\"http:\\/\\/localhost:8888\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-shipping-method-pickup-location.js\",\"version\":\"47dbbddb245b2a5c4200dd7ae830e8b6\",\"dependencies\":[\"react\",\"react-dom\",\"wc-settings\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]}},\"version\":\"11.1.3\",\"hash\":\"216f28e03bd2c562e548cff2926e1270\"}','no'),(1076,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(1080,'_transient_timeout_wc_term_counts','1723749923','no'),(1081,'_transient_wc_term_counts','a:0:{}','no'),(1082,'woocommerce_attribute_lookup_enabled','yes','yes'),(1087,'_transient_timeout_wcpay_incentive_store_has_orders','1721179524','no'),(1088,'_transient_wcpay_incentive_store_has_orders','no','no'),(1091,'_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs','1721762724','no'),(1092,'_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:1:{s:5:\"en_US\";a:0:{}}','no'),(1093,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1721157927;}','yes'),(1094,'edd_notification_req_timeout','1721157927','no'),(1095,'tribe_tickets_migrate_offset_','complete','no'),(1104,'_transient_timeout_edd_check_protection_files','1727347395','no'),(1105,'_transient_edd_check_protection_files','1','no'),(1108,'tec_automator_zapier_secret_key','72ebea43599a0d45808b523df88a0f1ffae7285ddc211d27b345b0ca1d5bc1d2eefa77d494bdb1db57bba2637960cf62a4c35ae9af5d69c7a9a290e0d88fd83cf82962ce0c06c033cb0f873d7a72185974ada7c43feaf4b0558df328b977466811347b584e0f7937342126a770e8ab12f482669c632bcc83dbe3dd4dabb21dd0','yes'),(1111,'_transient_timeout_wcpay_welcome_page_incentive','1727282617','no'),(1112,'_transient_wcpay_welcome_page_incentive','O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:25:\"http_request_not_executed\";a:1:{i:0;s:39:\"User has blocked requests through HTTP.\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}','no'),(1113,'_transient_timeout__woocommerce_helper_subscriptions','1727261917','no'),(1114,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(1115,'_site_transient_timeout_theme_roots','1727262817','no'),(1116,'_site_transient_theme_roots','a:1:{s:16:\"twentytwentyfour\";s:7:\"/themes\";}','no'),(1117,'_transient_timeout__woocommerce_helper_updates','1727304217','no'),(1118,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1727261017;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(1119,'_transient_timeout_tribe_aggregator_services_list','1727347422','no'),(1120,'_transient_tribe_aggregator_services_list','a:1:{s:6:\"origin\";a:1:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";s:3:\"csv\";s:4:\"name\";s:8:\"CSV File\";}}}','no'),(1121,'_transient_timeout_wc_report_orders_stats_aa0b899defc894795118a851128e0e10','1727865822','no'),(1122,'_transient_wc_report_orders_stats_aa0b899defc894795118a851128e0e10','a:2:{s:7:\"version\";s:10:\"1672924354\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:5:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-39\";s:10:\"date_start\";s:19:\"2024-09-23 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-23 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-25 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-26 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2024-38\";s:10:\"date_start\";s:19:\"2024-09-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-16 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-23 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2024-37\";s:10:\"date_start\";s:19:\"2024-09-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-09 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-16 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2024-36\";s:10:\"date_start\";s:19:\"2024-09-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-02 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-09 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:7:\"2024-35\";s:10:\"date_start\";s:19:\"2024-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-01 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-02 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:5;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(1123,'_transient_timeout_wc_report_orders_stats_1a5eee52bebf1bb604b1c42658413307','1727865822','no'),(1124,'_transient_wc_report_orders_stats_1a5eee52bebf1bb604b1c42658413307','a:2:{s:7:\"version\";s:10:\"1672924354\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:5:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-39\";s:10:\"date_start\";s:19:\"2024-09-23 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-23 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-25 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-26 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2024-38\";s:10:\"date_start\";s:19:\"2024-09-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-16 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-23 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2024-37\";s:10:\"date_start\";s:19:\"2024-09-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-09 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-16 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2024-36\";s:10:\"date_start\";s:19:\"2024-09-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-02 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-09 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:7:\"2024-35\";s:10:\"date_start\";s:19:\"2024-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-01 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-02 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:5;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(1125,'_transient_timeout_wc_report_products_stats_36fbeaadeac9668a566dd9f4592f1d97','1727865822','no'),(1126,'_transient_wc_report_products_stats_36fbeaadeac9668a566dd9f4592f1d97','a:2:{s:7:\"version\";s:10:\"1672924354\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:5:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-39\";s:10:\"date_start\";s:19:\"2024-09-23 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-23 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-25 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-26 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2024-38\";s:10:\"date_start\";s:19:\"2024-09-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-16 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-23 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2024-37\";s:10:\"date_start\";s:19:\"2024-09-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-09 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-16 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2024-36\";s:10:\"date_start\";s:19:\"2024-09-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-02 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-09 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:7:\"2024-35\";s:10:\"date_start\";s:19:\"2024-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-01 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-02 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:5;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(1127,'_transient_timeout_wc_report_variations_stats_09c534287f986fb3bc613eaa94a853e2','1727865822','no'),(1128,'_transient_wc_report_variations_stats_09c534287f986fb3bc613eaa94a853e2','a:2:{s:7:\"version\";s:10:\"1672924354\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:5:{i:0;a:6:{s:8:\"interval\";s:7:\"2024-39\";s:10:\"date_start\";s:19:\"2024-09-23 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-23 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-25 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-26 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2024-38\";s:10:\"date_start\";s:19:\"2024-09-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-16 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-23 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2024-37\";s:10:\"date_start\";s:19:\"2024-09-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-09 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-16 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2024-36\";s:10:\"date_start\";s:19:\"2024-09-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-02 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-09 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:7:\"2024-35\";s:10:\"date_start\";s:19:\"2024-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-01 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-02 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:5;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(1129,'_transient_timeout_wc_report_orders_stats_654fa50eecbaca5c6231f0c8d3ed4f01','1727865822','no'),(1130,'_transient_wc_report_orders_stats_654fa50eecbaca5c6231f0c8d3ed4f01','a:2:{s:7:\"version\";s:10:\"1672924354\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:25:{i:0;a:6:{s:8:\"interval\";s:10:\"2024-09-01\";s:10:\"date_start\";s:19:\"2024-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-01 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-02 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2024-09-02\";s:10:\"date_start\";s:19:\"2024-09-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-02 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-03 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2024-09-03\";s:10:\"date_start\";s:19:\"2024-09-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-03 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-04 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2024-09-04\";s:10:\"date_start\";s:19:\"2024-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-04 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-05 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2024-09-05\";s:10:\"date_start\";s:19:\"2024-09-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-05 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-06 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2024-09-06\";s:10:\"date_start\";s:19:\"2024-09-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-06 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-07 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2024-09-07\";s:10:\"date_start\";s:19:\"2024-09-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-07 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-08 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2024-09-08\";s:10:\"date_start\";s:19:\"2024-09-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-08 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-09 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2024-09-09\";s:10:\"date_start\";s:19:\"2024-09-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-09 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-10 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2024-09-10\";s:10:\"date_start\";s:19:\"2024-09-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-10 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-11 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2024-09-11\";s:10:\"date_start\";s:19:\"2024-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-11 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-12 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2024-09-12\";s:10:\"date_start\";s:19:\"2024-09-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-12 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-13 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2024-09-13\";s:10:\"date_start\";s:19:\"2024-09-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-13 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-14 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2024-09-14\";s:10:\"date_start\";s:19:\"2024-09-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-14 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-15 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2024-09-15\";s:10:\"date_start\";s:19:\"2024-09-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-15 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-16 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2024-09-16\";s:10:\"date_start\";s:19:\"2024-09-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-16 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-17 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2024-09-17\";s:10:\"date_start\";s:19:\"2024-09-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-17 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-18 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2024-09-18\";s:10:\"date_start\";s:19:\"2024-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-18 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-19 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2024-09-19\";s:10:\"date_start\";s:19:\"2024-09-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-19 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-20 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2024-09-20\";s:10:\"date_start\";s:19:\"2024-09-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-20 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-21 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:20;a:6:{s:8:\"interval\";s:10:\"2024-09-21\";s:10:\"date_start\";s:19:\"2024-09-21 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-21 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-22 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:21;a:6:{s:8:\"interval\";s:10:\"2024-09-22\";s:10:\"date_start\";s:19:\"2024-09-22 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-22 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-23 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:22;a:6:{s:8:\"interval\";s:10:\"2024-09-23\";s:10:\"date_start\";s:19:\"2024-09-23 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-23 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-23 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-24 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:23;a:6:{s:8:\"interval\";s:10:\"2024-09-24\";s:10:\"date_start\";s:19:\"2024-09-24 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-24 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-24 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-25 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:24;a:6:{s:8:\"interval\";s:10:\"2024-09-25\";s:10:\"date_start\";s:19:\"2024-09-25 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2024-09-25 04:00:00\";s:8:\"date_end\";s:19:\"2024-09-25 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2024-09-26 03:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:25;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(1131,'_transient_timeout_wc_low_stock_count','1729853022','no'),(1132,'_transient_wc_low_stock_count','0','no'),(1133,'_transient_timeout_wc_outofstock_count','1729853022','no'),(1134,'_transient_wc_outofstock_count','0','no'),(1135,'_transient_timeout_wc_tracks_blog_details','1727347422','no'),(1136,'_transient_wc_tracks_blog_details','a:5:{s:3:\"url\";s:21:\"http://localhost:8888\";s:9:\"blog_lang\";s:5:\"en_US\";s:7:\"blog_id\";b:0;s:14:\"products_count\";s:1:\"1\";s:10:\"wc_version\";s:5:\"8.2.2\";}','no'),(1137,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1727304223','no'),(1138,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','

RSS Error: WP HTTP Error: User has blocked requests through HTTP.

RSS Error: WP HTTP Error: User has blocked requests through HTTP.

','no'),(1139,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1727865834','no'),(1140,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:1:{s:5:\"en_US\";a:0:{}}','no'),(1141,'_transient_timeout_as-post-store-dependencies-met','1727347427','no'),(1142,'_transient_as-post-store-dependencies-met','yes','no'),(1144,'widget_tribe-widget-event-countdown','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1145,'widget_tribe-widget-featured-venue','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1146,'widget_tribe-widget-events-month','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1147,'widget_tribe-widget-events-week','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1148,'tec_timed_tec_custom_tables_v1_ecp_initialized','a:3:{s:3:\"key\";s:36:\"tec_custom_tables_v1_ecp_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727347436;}','yes'),(1149,'tec_ct1_series_relationship_table_schema_version','1.0.0','yes'),(1150,'tec_ct1_events_field_schema_version','1.0.1','yes'),(1151,'tec_ct1_occurrences_field_schema_version','1.0.1','yes'),(1152,'_transient_timeout_tribe_events_series_flush_rewrite','1729853036','no'),(1153,'_transient_tribe_events_series_flush_rewrite','1','no'),(1154,'stellarwp_telemetry_events-calendar-pro_show_optin','0','yes'),(1157,'_transient_timeout__tribe_admin_notices','1729853036','no'),(1158,'_transient__tribe_admin_notices','a:1:{s:44:\"updated-to-merge-version-consolidated-notice\";a:3:{i:0;s:205:\"

Thanks for upgrading The Events Calendar Pro to 7.1.0 now with even more value! Learn more about the latest changes here.

\";i:1;a:5:{s:4:\"type\";s:7:\"success\";s:7:\"dismiss\";b:1;s:6:\"action\";s:13:\"admin_notices\";s:8:\"priority\";i:1;s:15:\"active_callback\";s:80:\"TEC\\Common\\Integrations\\Plugin_Merge_Provider_Abstract::should_show_merge_notice\";}i:2;i:1758797036;}}','no'),(1159,'external_updates-events-calendar-pro','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727261036;s:14:\"checkedVersion\";s:5:\"7.1.0\";s:6:\"update\";N;}','no'),(1160,'tec_timed_events_is_rest_api_blocked','a:3:{s:3:\"key\";s:26:\"events_is_rest_api_blocked\";s:5:\"value\";s:45:\"http://localhost:8888/wp-json/tribe/events/v1\";s:10:\"expiration\";i:1727433839;}','yes'); +INSERT INTO `wp_options` VALUES (1,'siteurl','http://wordpress.test','yes'),(2,'home','http://wordpress.test','yes'),(3,'blogname','Wordpress Test','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@wordpress.test','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:2:{i:0;s:34:\"events-pro/events-calendar-pro.php\";i:1;s:43:\"the-events-calendar/the-events-calendar.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','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','57155','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:3:{s:43:\"the-events-calendar/the-events-calendar.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:31:\"event-tickets/event-tickets.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:35:\"event-automator/event-automator.php\";s:23:\"tec_automator_uninstall\";}','no'),(82,'timezone_string','America/New_York','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:199:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"view_shop_reports\";b:1;s:24:\"view_shop_sensitive_data\";b:1;s:19:\"export_shop_reports\";b:1;s:21:\"manage_shop_discounts\";b:1;s:20:\"manage_shop_settings\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:74:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:30:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:126:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:19:\"delete_others_pages\";b:1;s:19:\"delete_others_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:17:\"edit_others_posts\";b:1;s:10:\"edit_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:13:\"publish_pages\";b:1;s:13:\"publish_posts\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:17:\"view_shop_reports\";b:1;s:24:\"view_shop_sensitive_data\";b:1;s:19:\"export_shop_reports\";b:1;s:20:\"manage_shop_settings\";b:1;s:21:\"manage_shop_discounts\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:15:\"shop_accountant\";a:2:{s:4:\"name\";s:15:\"Shop Accountant\";s:12:\"capabilities\";a:8:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"edit_products\";b:1;s:21:\"read_private_products\";b:1;s:17:\"view_shop_reports\";b:1;s:19:\"export_shop_reports\";b:1;s:18:\"edit_shop_payments\";b:1;}}s:11:\"shop_worker\";a:2:{s:4:\"name\";s:11:\"Shop Worker\";s:12:\"capabilities\";a:61:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;}}s:11:\"shop_vendor\";a:2:{s:4:\"name\";s:11:\"Shop Vendor\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:12:\"edit_product\";b:1;s:13:\"edit_products\";b:1;s:14:\"delete_product\";b:1;s:15:\"delete_products\";b:1;s:16:\"publish_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"assign_product_terms\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:24:{i:1736277318;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1736277926;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736279004;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:1736279491;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1736280703;a:1:{s:30:\"edds_cleanup_rate_limiting_log\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1736280783;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1736286224;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:1736288716;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736298845;a:3:{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:1736299516;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1736301898;a:1:{s:30:\"tribe_schedule_transient_purge\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1736308800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736329404;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736329424;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:1736329426;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:1736333036;a:1:{s:21:\"tribe-recurrence-cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736335449;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736340691;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736340706;a:1:{s:26:\"edd_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736346559;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736415804;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736513506;a:1:{s:27:\"edd_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736515553;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(110,'theme_mods_twentyseventeen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(123,'tribe_last_updated_option','1736277301.1217','yes'),(124,'tribe_events_calendar_options','a:40:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:14:\"schema-version\";s:5:\"6.9.0\";s:21:\"previous_ecp_versions\";a:9:{i:0;s:1:\"0\";i:1;s:5:\"6.0.2\";i:2;s:7:\"6.0.3.1\";i:3;s:5:\"6.0.5\";i:4;s:7:\"6.0.6.2\";i:5;s:5:\"6.2.7\";i:6;s:5:\"6.2.8\";i:7;s:5:\"6.6.0\";i:8;s:7:\"6.6.4.2\";}s:18:\"latest_ecp_version\";s:5:\"6.9.0\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:60;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:39:\"last-update-message-the-events-calendar\";s:7:\"6.6.4.2\";s:25:\"ticket-enabled-post-types\";a:2:{i:0;s:12:\"tribe_events\";i:1;s:4:\"page\";}s:28:\"event-tickets-schema-version\";s:8:\"5.13.3.1\";s:31:\"previous_event_tickets_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"5.5.4\";i:2;s:5:\"5.5.5\";i:3;s:7:\"5.6.8.1\";i:4;s:5:\"5.7.0\";i:5;s:6:\"5.12.0\";}s:28:\"latest_event_tickets_version\";s:8:\"5.13.3.1\";s:29:\"tribe_tickets_migrate_offset_\";s:8:\"complete\";s:33:\"last-update-message-event-tickets\";s:5:\"5.5.4\";s:36:\"previous_event_tickets_plus_versions\";a:5:{i:0;s:1:\"0\";i:1;s:5:\"5.6.4\";i:2;s:5:\"5.7.7\";i:3;s:5:\"5.8.0\";i:4;s:5:\"6.0.0\";}s:33:\"latest_event_tickets_plus_version\";s:5:\"6.0.2\";s:33:\"event-tickets-plus-schema-version\";s:5:\"6.0.2\";s:31:\"tickets-plus-qr-options-api-key\";s:8:\"fb89abb8\";s:24:\"tickets_commerce_enabled\";b:1;s:30:\"tickets-commerce-checkout-page\";s:2:\"16\";s:29:\"tickets-commerce-success-page\";s:2:\"17\";s:24:\"tickets-commerce-sandbox\";b:1;s:31:\"tickets-commerce-stock-handling\";s:7:\"pending\";s:30:\"tickets-commerce-currency-code\";s:3:\"USD\";s:34:\"tickets-commerce-currency-position\";s:6:\"prefix\";s:48:\"tickets-commerce-confirmation-email-sender-email\";s:20:\"admin@wordpress.test\";s:47:\"tickets-commerce-confirmation-email-sender-name\";s:5:\"admin\";s:43:\"tickets-commerce-confirmation-email-subject\";s:17:\"You have tickets!\";s:13:\"earliest_date\";s:19:\"2019-01-01 15:00:00\";s:21:\"earliest_date_markers\";a:1:{i:0;i:18;}s:11:\"latest_date\";s:19:\"2019-01-01 18:00:00\";s:19:\"latest_date_markers\";a:1:{i:0;i:18;}s:30:\"event-automator-schema-version\";s:5:\"1.7.0\";s:13:\"opt-in-status\";b:0;s:43:\"tec_tickets_commerce_stripe_webhook_version\";s:8:\"5.13.3.1\";s:18:\"pro-schema-version\";s:5:\"7.1.0\";s:29:\"events-virtual-schema-version\";s:6:\"1.15.8\";}','yes'),(125,'action_scheduler_hybrid_store_demarkation','1','yes'),(126,'schema-ActionScheduler_StoreSchema','7.0.1700225495','yes'),(127,'schema-ActionScheduler_LoggerSchema','3.0.1666777404','yes'),(130,'tribe_last_save_post','1736277301.1219','yes'),(131,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(135,'tec_ct1_events_table_schema_version','1.0.1','yes'),(136,'tec_ct1_occurrences_table_schema_version','1.0.2','yes'),(137,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','yes'),(140,'tribe_last_generate_rewrite_rules','1736277301.1628','yes'),(142,'action_scheduler_lock_async-request-runner','66f3e9436d40c2.60517842|1727261055','yes'),(144,'fs_active_plugins','O:8:\"stdClass\":2:{s:7:\"plugins\";a:0:{}s:7:\"abspath\";s:54:\"/Users/brianjessee/Local Sites/tribe/tests/app/public/\";}','yes'),(145,'fs_debug_mode','','yes'),(146,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}','yes'),(147,'fs_gdpr','a:2:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(150,'wp_page_for_privacy_policy','0','yes'),(151,'show_comments_cookies_opt_in','1','yes'),(153,'disallowed_keys','','no'),(154,'comment_previously_approved','1','yes'),(155,'auto_plugin_theme_update_emails','a:0:{}','no'),(156,'auto_update_core_dev','enabled','yes'),(157,'auto_update_core_minor','enabled','yes'),(158,'auto_update_core_major','unset','yes'),(159,'wp_force_deactivated_plugins','a:0:{}','yes'),(160,'finished_updating_comment_type','1','yes'),(161,'user_count','1','no'),(162,'db_upgraded','1','yes'),(171,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"admin@wordpress.test\";s:7:\"version\";s:5:\"6.1.1\";s:9:\"timestamp\";i:1670232824;}','no'),(172,'recovery_keys','a:0:{}','yes'),(177,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}}','yes'),(226,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":6,\"critical\":4}','yes'),(260,'recently_activated','a:4:{s:27:\"woocommerce/woocommerce.php\";i:1727261034;s:41:\"event-tickets-plus/event-tickets-plus.php\";i:1727261032;s:31:\"event-tickets/event-tickets.php\";i:1727261029;s:49:\"easy-digital-downloads/easy-digital-downloads.php\";i:1727261027;}','yes'),(295,'fs_api_cache','a:0:{}','no'),(397,'tec_timed_tribe_supports_async_process','a:3:{s:3:\"key\";s:28:\"tribe_supports_async_process\";s:5:\"value\";N;s:10:\"expiration\";i:1736277301;}','yes'),(430,'edd_settings','a:6:{s:13:\"purchase_page\";i:4;s:12:\"success_page\";i:5;s:12:\"failure_page\";i:6;s:21:\"purchase_history_page\";i:7;s:17:\"confirmation_page\";i:8;s:20:\"stripe_elements_mode\";s:16:\"payment-elements\";}','yes'),(431,'edd_use_php_sessions','1','yes'),(433,'edd_activation_date','1672924302','yes'),(436,'edd_default_api_version','v2','yes'),(437,'edd_completed_upgrades','a:17:{i:0;s:21:\"upgrade_payment_taxes\";i:1;s:37:\"upgrade_customer_payments_association\";i:2;s:21:\"upgrade_user_api_keys\";i:3;s:25:\"remove_refunded_sale_logs\";i:4;s:29:\"update_file_download_log_data\";i:5;s:17:\"migrate_tax_rates\";i:6;s:17:\"migrate_discounts\";i:7;s:14:\"migrate_orders\";i:8;s:26:\"migrate_customer_addresses\";i:9;s:32:\"migrate_customer_email_addresses\";i:10;s:22:\"migrate_customer_notes\";i:11;s:12:\"migrate_logs\";i:12;s:19:\"migrate_order_notes\";i:13;s:23:\"v30_legacy_data_removed\";i:14;s:28:\"stripe_customer_id_migration\";i:15;s:26:\"migrate_order_actions_date\";i:16;s:19:\"discounts_start_end\";}','yes'),(438,'edd_version','3.2.6','yes'),(439,'_transient_edd_cache_excluded_uris','a:4:{i:0;s:3:\"p=4\";i:1;s:3:\"p=5\";i:2;s:9:\"/checkout\";i:3;s:8:\"/receipt\";}','yes'),(440,'widget_edd_cart_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(441,'widget_edd_categories_tags_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(442,'widget_edd_product_details','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(444,'_transient_edd-sc-receipt-check','86400','yes'),(445,'edds_stripe_version','2.8.13.1','yes'),(446,'wpdb_edd_customers_version','202303220','yes'),(447,'wpdb_edd_customermeta_version','201807111','yes'),(448,'wpdb_edd_customer_addresses_version','202004051','yes'),(449,'wpdb_edd_customer_email_addresses_version','202002141','yes'),(450,'wpdb_edd_adjustments_version','202307311','yes'),(451,'wpdb_edd_adjustmentmeta_version','201806142','yes'),(452,'wpdb_edd_notes_version','202002141','yes'),(454,'wpdb_edd_notemeta_version','201805221','yes'),(455,'wpdb_edd_orders_version','202307111','yes'),(456,'wpdb_edd_ordermeta_version','201805221','yes'),(457,'wpdb_edd_order_items_version','202110141','yes'),(458,'wpdb_edd_order_itemmeta_version','201805221','yes'),(459,'wpdb_edd_order_adjustments_version','202105221','yes'),(460,'wpdb_edd_order_adjustmentmeta_version','201805221','yes'),(461,'wpdb_edd_order_addresses_version','202002141','yes'),(462,'wpdb_edd_order_transactions_version','202205241','yes'),(463,'wpdb_edd_logs_version','202002141','yes'),(464,'wpdb_edd_logmeta_version','201805221','yes'),(465,'wpdb_edd_logs_api_requests_version','202002141','yes'),(466,'wpdb_edd_logs_api_requestmeta_version','201907291','yes'),(467,'wpdb_edd_logs_file_downloads_version','202002141','yes'),(468,'wpdb_edd_logs_file_downloadmeta_version','201907291','yes'),(469,'edd_licensed_extensions','{\"timeout\":1727347427,\"products\":[]}','no'),(470,'edd_tracking_notice','1','yes'),(475,'woocommerce_schema_version','430','yes'),(476,'woocommerce_store_address','101 South Street','yes'),(477,'woocommerce_store_address_2','','yes'),(478,'woocommerce_store_city','New York','yes'),(479,'woocommerce_default_country','US:NY','yes'),(480,'woocommerce_store_postcode','10001','yes'),(481,'woocommerce_allowed_countries','all','yes'),(482,'woocommerce_all_except_countries','a:0:{}','yes'),(483,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(484,'woocommerce_ship_to_countries','','yes'),(485,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(486,'woocommerce_default_customer_address','base','yes'),(487,'woocommerce_calc_taxes','no','yes'),(488,'woocommerce_enable_coupons','yes','yes'),(489,'woocommerce_calc_discounts_sequentially','no','no'),(490,'woocommerce_currency','USD','yes'),(491,'woocommerce_currency_pos','left','yes'),(492,'woocommerce_price_thousand_sep',',','yes'),(493,'woocommerce_price_decimal_sep','.','yes'),(494,'woocommerce_price_num_decimals','2','yes'),(495,'woocommerce_shop_page_id','10','yes'),(496,'woocommerce_cart_redirect_after_add','no','yes'),(497,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(498,'woocommerce_placeholder_image','9','yes'),(499,'woocommerce_weight_unit','kg','yes'),(500,'woocommerce_dimension_unit','cm','yes'),(501,'woocommerce_enable_reviews','yes','yes'),(502,'woocommerce_review_rating_verification_label','yes','no'),(503,'woocommerce_review_rating_verification_required','no','no'),(504,'woocommerce_enable_review_rating','yes','yes'),(505,'woocommerce_review_rating_required','yes','no'),(506,'woocommerce_manage_stock','yes','yes'),(507,'woocommerce_hold_stock_minutes','60','no'),(508,'woocommerce_notify_low_stock','yes','no'),(509,'woocommerce_notify_no_stock','yes','no'),(510,'woocommerce_stock_email_recipient','admin@wordpress.test','no'),(511,'woocommerce_notify_low_stock_amount','2','no'),(512,'woocommerce_notify_no_stock_amount','0','yes'),(513,'woocommerce_hide_out_of_stock_items','no','yes'),(514,'woocommerce_stock_format','','yes'),(515,'woocommerce_file_download_method','force','no'),(516,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(517,'woocommerce_downloads_require_login','no','no'),(518,'woocommerce_downloads_grant_access_after_payment','yes','no'),(519,'woocommerce_downloads_deliver_inline','','no'),(520,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(522,'woocommerce_attribute_lookup_direct_updates','no','yes'),(523,'woocommerce_prices_include_tax','no','yes'),(524,'woocommerce_tax_based_on','shipping','yes'),(525,'woocommerce_shipping_tax_class','inherit','yes'),(526,'woocommerce_tax_round_at_subtotal','no','yes'),(527,'woocommerce_tax_classes','','yes'),(528,'woocommerce_tax_display_shop','excl','yes'),(529,'woocommerce_tax_display_cart','excl','yes'),(530,'woocommerce_price_display_suffix','','yes'),(531,'woocommerce_tax_total_display','itemized','no'),(532,'woocommerce_enable_shipping_calc','yes','no'),(533,'woocommerce_shipping_cost_requires_address','no','yes'),(534,'woocommerce_ship_to_destination','billing','no'),(535,'woocommerce_shipping_debug_mode','no','yes'),(536,'woocommerce_enable_guest_checkout','yes','no'),(537,'woocommerce_enable_checkout_login_reminder','no','no'),(538,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(539,'woocommerce_enable_myaccount_registration','no','no'),(540,'woocommerce_registration_generate_username','yes','no'),(541,'woocommerce_registration_generate_password','yes','no'),(542,'woocommerce_erasure_request_removes_order_data','no','no'),(543,'woocommerce_erasure_request_removes_download_data','no','no'),(544,'woocommerce_allow_bulk_remove_personal_data','no','no'),(545,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(546,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(547,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(548,'woocommerce_trash_pending_orders','','no'),(549,'woocommerce_trash_failed_orders','','no'),(550,'woocommerce_trash_cancelled_orders','','no'),(551,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(552,'woocommerce_email_from_name','Wordpress Test','no'),(553,'woocommerce_email_from_address','admin@wordpress.test','no'),(554,'woocommerce_email_header_image','','no'),(555,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(556,'woocommerce_email_base_color','#7f54b3','no'),(557,'woocommerce_email_background_color','#f7f7f7','no'),(558,'woocommerce_email_body_background_color','#ffffff','no'),(559,'woocommerce_email_text_color','#3c3c3c','no'),(560,'woocommerce_merchant_email_notifications','no','no'),(561,'woocommerce_cart_page_id','11','no'),(562,'woocommerce_checkout_page_id','12','no'),(563,'woocommerce_myaccount_page_id','13','no'),(564,'woocommerce_terms_page_id','','no'),(565,'woocommerce_force_ssl_checkout','no','yes'),(566,'woocommerce_unforce_ssl_checkout','no','yes'),(567,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(568,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(569,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(570,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(571,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(572,'woocommerce_myaccount_orders_endpoint','orders','yes'),(573,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(574,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(575,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(576,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(577,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(578,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(579,'woocommerce_logout_endpoint','customer-logout','yes'),(580,'woocommerce_api_enabled','no','yes'),(581,'woocommerce_allow_tracking','no','no'),(582,'woocommerce_show_marketplace_suggestions','yes','no'),(583,'woocommerce_analytics_enabled','yes','yes'),(584,'woocommerce_navigation_enabled','no','yes'),(585,'woocommerce_feature_custom_order_tables_enabled','no','yes'),(586,'woocommerce_single_image_width','600','yes'),(587,'woocommerce_thumbnail_image_width','300','yes'),(588,'woocommerce_checkout_highlight_required_fields','yes','yes'),(589,'woocommerce_demo_store','no','no'),(590,'wc_downloads_approved_directories_mode','enabled','yes'),(591,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(592,'current_theme_supports_woocommerce','yes','yes'),(593,'woocommerce_queue_flush_rewrite_rules','no','yes'),(595,'product_cat_children','a:0:{}','yes'),(596,'default_product_cat','15','yes'),(598,'woocommerce_refund_returns_page_id','14','yes'),(601,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:20:\"admin@wordpress.test\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:20:\"admin@wordpress.test\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(602,'woocommerce_version','9.0.2','yes'),(603,'woocommerce_db_version','8.2.2','yes'),(604,'woocommerce_admin_install_timestamp','1672924314','yes'),(605,'woocommerce_inbox_variant_assignment','3','yes'),(609,'_transient_jetpack_autoloader_plugin_paths','a:0:{}','yes'),(610,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";}','yes'),(611,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"0jxv9z7mXPj1LeMzhbPKfp8fWZJxPthz\";}','yes'),(612,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(613,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(614,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(615,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(616,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(617,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(618,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(619,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(620,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(621,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(622,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(623,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(624,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(625,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(630,'_transient_woocommerce_shipping_task_zone_count_transient','0','yes'),(631,'wc_blocks_db_schema_version','260','yes'),(632,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}','no'),(635,'_transient_woocommerce_reports-transient-version','1672924354','yes'),(643,'woocommerce_task_list_tracked_completed_tasks','a:3:{i:0;s:8:\"purchase\";i:1;s:13:\"store_details\";i:2;s:8:\"products\";}','yes'),(645,'woocommerce_onboarding_profile','a:10:{s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:20:\"admin@wordpress.test\";s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:5:\"other\";}}s:13:\"product_types\";a:1:{i:0;s:9:\"downloads\";}s:13:\"product_count\";s:1:\"0\";s:14:\"selling_venues\";s:2:\"no\";s:12:\"setup_client\";b:1;s:19:\"business_extensions\";a:0:{}s:9:\"completed\";b:1;}','yes'),(647,'woocommerce_task_list_dismissed_tasks','a:0:{}','yes'),(651,'woocommerce_task_list_prompt_shown','1','yes'),(660,'woocommerce_default_homepage_layout','two_columns','yes'),(661,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:5:\"setup\";i:1;s:8:\"extended\";}','yes'),(744,'external_updates-event-tickets-plus','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727261032;s:14:\"checkedVersion\";s:5:\"6.0.2\";s:6:\"update\";N;}','no'),(745,'tribe_pue_key_notices','a:0:{}','yes'),(774,'_transient_product_query-transient-version','1727261022','yes'),(820,'edd_version_upgraded_from','3.2.5','no'),(842,'edds_notice_edd-stripe-core_dismissed','1','yes'),(852,'tec_automator_power_automate_secret_key','884cc3ff27ae261b9ede80398ec4f9716058623b02ba6207570a618fdf0af157817bf099d649883f6eb308b2abfc1c131675620e728abc5e99bc731578730a634466e6d855aba8e5962f66b5a81b07720a66435726c4d8c11b19b9878c9554323266baeda87a58f510ddabac230fd9144e8964e3c4e6a303646b33e937996351','yes'),(855,'_transient_product-transient-version','1700223858','yes'),(858,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(859,'wc_blocks_version','11.1.3','yes'),(860,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(861,'tec_freemius_accounts_archive','s:3742:\"a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}\";','yes'),(862,'tec_freemius_accounts_data_archive','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";a:24:{s:10:\"tec_fs_key\";s:9:\"FS_Plugin\";s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";a:24:{s:10:\"tec_fs_key\";s:9:\"FS_Plugin\";s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}','yes'),(863,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:3:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}s:13:\"event-tickets\";a:2:{s:7:\"wp_slug\";s:31:\"event-tickets/event-tickets.php\";s:5:\"optin\";b:0;}s:19:\"events-calendar-pro\";a:2:{s:7:\"wp_slug\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"optin\";b:0;}}}','yes'),(864,'stellarwp_telemetry_event-tickets_show_optin','0','yes'),(865,'stellarwp_telemetry_the-events-calendar_show_optin','0','yes'),(866,'tec_freemius_plugins_archive','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:36:\"event-tickets/common/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.4\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1670325882;s:11:\"plugin_path\";s:31:\"event-tickets/event-tickets.php\";}}s:7:\"abspath\";s:54:\"/Users/brianjessee/Local Sites/tribe/tests/app/public/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:31:\"event-tickets/event-tickets.php\";s:8:\"sdk_path\";s:36:\"event-tickets/common/vendor/freemius\";s:7:\"version\";s:5:\"2.4.4\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1670325882;}}','yes'),(867,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(870,'woocommerce_custom_orders_table_enabled','no','yes'),(871,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(872,'woocommerce_custom_orders_table_created','yes','yes'),(873,'woocommerce_feature_marketplace_enabled','yes','yes'),(874,'woocommerce_feature_product_block_editor_enabled','no','yes'),(880,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1736363701;}','yes'),(881,'stellarwp_telemetry_last_send','','yes'),(885,'wcpay_was_in_use','no','yes'),(888,'external_updates-event-automator','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1700226153;s:14:\"checkedVersion\";N;s:6:\"update\";O:19:\"Tribe__PUE__Utility\":12:{s:2:\"id\";i:0;s:6:\"plugin\";s:35:\"event-automator/event-automator.php\";s:4:\"slug\";s:15:\"event-automator\";s:7:\"version\";s:5:\"1.4.0\";s:8:\"homepage\";s:20:\"https://evnt.is/1bc7\";s:12:\"download_url\";s:245:\"https://pue.theeventscalendar.com/api/plugins/v2/download?plugin=event-automator&version=1.4.0&installed_version&domain=localhost&multisite=0&network_activated=0&active_sites=1&wp_version=6.2.2&key=5f53261eb16f7ddf4fe24b69918c8804c82ea817&dk&o=o\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:245:\"Event Automator, a premium add-on to the open source The Events Calendar plugin or Event Tickets (at least one required), that lets you connect your apps and automate workflows for lead management, communication outreach, and internal processes.\";s:12:\"installation\";s:366:\"Installing Event Automator is easy: just back up your site, download/install The Events Calendar and/or Event Tickets from the WordPress.org repo, and download/install Event Automator from theeventscalendar.com. Activate them both and you\'ll be good to go! If you\'re still confused or encounter problems, check out part 1 of our new user primer (http://m.tri.be/4i).\";s:9:\"changelog\";s:515:\"

= [1.4.0] 2023-10-19 =

\r\n\r\n
    \r\n
  • Feature - Add Support for Microsoft Power Automate with Event Tickets and the new attendee, updated attendee, checkin, new orders, and refunded orders endpoints [EVA-96]
  • \r\n
  • Feature - Add Support for Microsoft Power Automate with The Events Calendar and the new event, updated event, canceled event, and action to create events endpoints [EVA-88]
  • \r\n
  • Fix - Prevent multiple attendees from being added to the queue when doing bulk checkin. [EVA-102]
  • \r\n
\";}s:14:\"upgrade_notice\";s:0:\"\";s:13:\"custom_update\";O:8:\"stdClass\":1:{s:5:\"icons\";O:8:\"stdClass\":1:{s:3:\"svg\";s:76:\"https://images.theeventscalendar.com/uploads/2023/01/EventAutomator-icon.svg\";}}s:13:\"license_error\";N;s:11:\"api_expired\";b:0;s:11:\"api_upgrade\";b:0;}}','no'),(895,'pue_install_key_event_automator','5f53261eb16f7ddf4fe24b69918c8804c82ea817','yes'),(901,'edd_onboarding_completed','1','no'),(929,'wpdb_edd_notifications_version','202303220','yes'),(955,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1736277309;s:8:\"response\";a:1:{s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:8:\"5.18.0.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/event-tickets.5.18.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:7:\"3.3.5.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.3.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:6:\"3.17.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/query-monitor.3.17.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=2870124\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.9.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:33:\"user-switching/user-switching.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/user-switching\";s:4:\"slug\";s:14:\"user-switching\";s:6:\"plugin\";s:33:\"user-switching/user-switching.php\";s:11:\"new_version\";s:5:\"1.9.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/user-switching/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/user-switching.1.9.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=3193956\";s:3:\"svg\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=3193956\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/user-switching/assets/banner-1544x500.png?rev=2204929\";s:2:\"1x\";s:69:\"https://ps.w.org/user-switching/assets/banner-772x250.png?rev=2204929\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"wp-rollback/wp-rollback.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-rollback\";s:4:\"slug\";s:11:\"wp-rollback\";s:6:\"plugin\";s:27:\"wp-rollback/wp-rollback.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-rollback/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-rollback.2.0.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-256x256.jpg?rev=3014868\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-128x128.jpg?rev=3014868\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-rollback/assets/banner-1544x500.jpg?rev=3014868\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-rollback/assets/banner-772x250.jpg?rev=3014872\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:34:\"events-pro/events-calendar-pro.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:37:\"stellarwp/plugins/events-calendar-pro\";s:6:\"plugin\";s:34:\"events-pro/events-calendar-pro.php\";s:4:\"slug\";s:19:\"events-calendar-pro\";s:11:\"new_version\";s:5:\"7.3.1\";s:3:\"url\";s:18:\"https://evnt.is/4d\";s:7:\"package\";s:299:\"https://pue.theeventscalendar.com/api/plugins/v2/download?plugin=events-calendar-pro&version=7.3.1&installed_version=7.3.1&domain=wordpress.test&multisite=0&network_activated=0&active_sites=1&wp_version=6.5&key=97f261bb1246e1c8ad0b7ace9ec6cb7764a09730&dk=97f261bb1246e1c8ad0b7ace9ec6cb7764a09730&o=e\";s:5:\"icons\";a:1:{s:3:\"svg\";s:84:\"https://theeventscalendar.com/content/themes/tribe-ecp/img/svg/product-icons/ECP.svg\";}}}}','no'),(988,'wp_attachment_pages_enabled','1','yes'),(993,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1736277311;s:7:\"checked\";a:6:{s:12:\"twentytwenty\";s:3:\"2.7\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.2\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:5:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.4.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.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.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.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','no'),(1004,'recovery_mode_email_last_sent','1700228527','yes'),(1019,'wc_remote_inbox_notifications_wca_updated','','no'),(1036,'tec_timed_events_timezone_update_needed','a:3:{s:3:\"key\";s:29:\"events_timezone_update_needed\";s:5:\"value\";b:0;s:10:\"expiration\";i:1727347439;}','yes'),(1046,'rewrite_rules','a:393:{s:32:\"(?:events)/map/(?:page)/(\\d+)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=map&paged=$matches[1]\";s:64:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/map/(?:page)/(\\d+)/?$\";s:96:\"index.php?tribe_events_cat=$matches[1]&post_type=tribe_events&eventDisplay=map&paged=$matches[2]\";s:48:\"(?:events)/(?:tag)/([^/]+)/map/(?:page)/(\\d+)/?$\";s:83:\"index.php?tag=$matches[1]&post_type=tribe_events&eventDisplay=map&paged=$matches[2]\";s:14:\"(?:events)/map\";s:49:\"index.php?post_type=tribe_events&eventDisplay=map\";s:49:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/map/?$\";s:78:\"index.php?tribe_events_cat=$matches[1]&post_type=tribe_events&eventDisplay=map\";s:33:\"(?:events)/(?:tag)/([^/]+)/map/?$\";s:65:\"index.php?tag=$matches[1]&post_type=tribe_events&eventDisplay=map\";s:10:\"events/map\";s:49:\"index.php?post_type=tribe_events&eventDisplay=map\";s:41:\"events/category/(?:[^/]+/)*([^/]+)/map/?$\";s:78:\"index.php?tribe_events_cat=$matches[2]&post_type=tribe_events&eventDisplay=map\";s:25:\"events/tag/([^/]+)/map/?$\";s:65:\"index.php?tag=$matches[2]&post_type=tribe_events&eventDisplay=map\";s:41:\"(?:events)/(?:map)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=map&eventDate=$matches[1]\";s:56:\"(?:events)/(?:map)/(\\d{4}-\\d{2}-\\d{2})/(?:page)/(\\d+)/?$\";s:89:\"index.php?post_type=tribe_events&eventDisplay=map&eventDate=$matches[1]&paged=$matches[2]\";s:53:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:map)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=map\";s:66:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:map)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=map&featured=1\";s:37:\"(?:events)/(?:tag)/([^/]+)/(?:map)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=map\";s:50:\"(?:events)/(?:tag)/([^/]+)/(?:map)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=map&featured=1\";s:22:\"(?:events)/(?:week)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=week\";s:35:\"(?:events)/(?:week)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=week&featured=1\";s:42:\"(?:events)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:72:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]\";s:55:\"(?:events)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:83:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]&featured=1\";s:43:\"(?:events)/(?:week)/(\\d{2})/(?:featured)/?$\";s:83:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]&featured=1\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&featured=1\";s:74:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:101:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&eventDate=$matches[2]\";s:87:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:112:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&eventDate=$matches[2]&featured=1\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:week)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&featured=1\";s:58:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:88:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&eventDate=$matches[2]\";s:71:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:99:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:week)/(?:virtual)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=week&virtual=1\";s:54:\"(?:events)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]&virtual=1\";s:42:\"(?:events)/(?:week)/(\\d{2})/(?:virtual)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=week&eventDate=$matches[1]&virtual=1\";s:66:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(?:virtual)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&virtual=1\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=week&eventDate=$matches[2]&virtual=1\";s:50:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(?:virtual)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&virtual=1\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:week)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=week&eventDate=$matches[2]&virtual=1\";s:60:\"(?:events)/(?:organizers)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:93:\"index.php?eventDisplay=organizer&post_type=tribe_organizer&tec_organizer_category=$matches[1]\";s:75:\"(?:events)/(?:organizers)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:111:\"index.php?eventDisplay=organizer&post_type=tribe_organizer&tec_organizer_category=$matches[1]&paged=$matches[2]\";s:56:\"(?:events)/(?:venues)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:81:\"index.php?eventDisplay=venue&post_type=tribe_venue&tec_venue_category=$matches[1]\";s:71:\"(?:events)/(?:venues)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:99:\"index.php?eventDisplay=venue&post_type=tribe_venue&tec_venue_category=$matches[1]&paged=$matches[2]\";s:40:\"(?:events)/(?:summary)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=summary&paged=$matches[1]\";s:53:\"(?:events)/(?:summary)/(?:featured)/(?:page)/(\\d+)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=summary&featured=1&paged=$matches[1]\";s:25:\"(?:events)/(?:summary)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=summary\";s:38:\"(?:events)/(?:summary)/(?:featured)/?$\";s:64:\"index.php?post_type=tribe_events&eventDisplay=summary&featured=1\";s:45:\"(?:events)/(?:summary)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:75:\"index.php?post_type=tribe_events&eventDisplay=summary&eventDate=$matches[1]\";s:58:\"(?:events)/(?:summary)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:86:\"index.php?post_type=tribe_events&eventDisplay=summary&eventDate=$matches[1]&featured=1\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:summary)/(?:page)/(\\d+)/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=summary&paged=$matches[2]\";s:85:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:summary)/(?:featured)/(?:page)/(\\d+)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=summary&featured=1&paged=$matches[2]\";s:70:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:summary)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=summary&featured=1\";s:57:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:summary)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=summary\";s:56:\"(?:events)/(?:tag)/([^/]+)/(?:summary)/(?:page)/(\\d+)/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=summary&paged=$matches[2]\";s:69:\"(?:events)/(?:tag)/([^/]+)/(?:summary)/(?:featured)/(?:page)/(\\d+)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=summary&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:tag)/([^/]+)/(?:summary)/(?:featured)/?$\";s:80:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=summary&featured=1\";s:41:\"(?:events)/(?:tag)/([^/]+)/(?:summary)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=summary\";s:40:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:56:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]\";s:65:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(feed|rdf|rss|rss2|atom)/?$\";s:73:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&feed=$matches[3]\";s:71:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(\\d+)/(feed|rdf|rss|rss2|atom)/?$\";s:99:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&eventSequence=$matches[3]&feed=$matches[4]\";s:46:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(\\d+)/?$\";s:82:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&eventSequence=$matches[3]\";s:46:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/embed/?$\";s:64:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&embed=1\";s:43:\"(?:event)/([^/]+)/(?:all)/(?:page)/(\\d+)/?$\";s:115:\"index.php?tribe_events=$matches[1]&post_type=tribe_events&eventDisplay=all&tribe_recurrence_list=1&page=$matches[2]\";s:28:\"(?:event)/([^/]+)/(?:all)/?$\";s:98:\"index.php?tribe_events=$matches[1]&post_type=tribe_events&eventDisplay=all&tribe_recurrence_list=1\";s:45:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:63:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&ical=1\";s:23:\"(?:events)/(?:photo)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=photo\";s:36:\"(?:events)/(?:photo)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=photo&featured=1\";s:38:\"(?:events)/(?:photo)/(?:page)/(\\d+)/?$\";s:69:\"index.php?post_type=tribe_events&eventDisplay=photo&paged=$matches[1]\";s:43:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]\";s:58:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/(?:page)/(\\d+)/?$\";s:91:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]&paged=$matches[2]\";s:56:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]&featured=1\";s:71:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/(?:page)/(\\d+)/(?:featured)/?$\";s:102:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]&paged=$matches[2]&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:photo)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=photo\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:photo)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=photo&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:photo)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=photo\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:photo)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=photo&featured=1\";s:40:\"(?:events)/(?:virtual)/(?:page)/(\\d+)/?$\";s:78:\"index.php?post_type=tribe_events&virtual=1&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:virtual)/(feed|rdf|rss|rss2|atom)/?$\";s:77:\"index.php?post_type=tribe_events&virtual=1&eventDisplay=list&feed=$matches[1]\";s:49:\"(?:events)/(?:list)/(?:virtual)/(?:page)/(\\d+)/?$\";s:78:\"index.php?post_type=tribe_events&eventDisplay=list&virtual=1&paged=$matches[1]\";s:34:\"(?:events)/(?:list)/(?:virtual)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=list&virtual=1\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/(?:page)/(\\d+)/?$\";s:107:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&eventDisplay=list&paged=$matches[2]\";s:81:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:virtual)/(?:page)/(\\d+)/?$\";s:107:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&virtual=1&paged=$matches[2]\";s:66:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:virtual)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&virtual=1\";s:56:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/(?:page)/(\\d+)/?$\";s:94:\"index.php?post_type=tribe_events&tag=$matches[1]&virtual=1&eventDisplay=list&paged=$matches[2]\";s:65:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:virtual)/(?:page)/(\\d+)/?$\";s:94:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&virtual=1&paged=$matches[2]\";s:50:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:virtual)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&virtual=1\";s:62:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/feed/?$\";s:99:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&eventDisplay=list&feed=rss2\";s:46:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/feed/?$\";s:86:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&virtual=1\";s:35:\"(?:events)/(?:month)/(?:virtual)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=month&virtual=1\";s:39:\"(?:events)/(\\d{4}-\\d{2})/(?:virtual)/?$\";s:83:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&virtual=1\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:virtual)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&virtual=1\";s:71:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:virtual)/?$\";s:112:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&virtual=1\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:virtual)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&virtual=1\";s:55:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:virtual)/?$\";s:99:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&virtual=1\";s:35:\"(?:events)/(?:today)/(?:virtual)/?$\";s:59:\"index.php?post_type=tribe_events&eventDisplay=day&virtual=1\";s:45:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:81:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&virtual=1\";s:30:\"(?:events)/(?:virtual)/ical/?$\";s:49:\"index.php?post_type=tribe_events&ical=1&virtual=1\";s:38:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:78:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]\";s:50:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/(?:virtual)/?$\";s:88:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&virtual=1\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:virtual)/?$\";s:88:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&virtual=1\";s:85:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:110:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&virtual=1\";s:77:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:110:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&virtual=1\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:virtual)/?$\";s:75:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&virtual=1\";s:69:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:97:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&virtual=1\";s:61:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:97:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&virtual=1\";s:25:\"(?:events)/(?:virtual)/?$\";s:42:\"index.php?post_type=tribe_events&virtual=1\";s:57:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/?$\";s:92:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&eventDisplay=default\";s:41:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/?$\";s:58:\"index.php?post_type=tribe_events&tag=$matches[1]&virtual=1\";s:62:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/ical/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&ical=1\";s:87:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:virtual)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:88:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&virtual=1&feed=$matches[2]\";s:46:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/ical/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&virtual=1&ical=1\";s:71:\"(?:events)/(?:tag)/([^/]+)/(?:virtual)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:75:\"index.php?post_type=tribe_events&tag=$matches[1]&virtual=1&feed=$matches[2]\";s:35:\"(?:events)/(?:photo)/(?:virtual)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=photo&virtual=1\";s:55:\"(?:events)/(?:photo)/(\\d{4}-\\d{2}-\\d{2})/(?:virtual)/?$\";s:83:\"index.php?post_type=tribe_events&eventDisplay=photo&eventDate=$matches[1]&virtual=1\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:photo)/(?:virtual)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=photo&virtual=1\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:photo)/(?:virtual)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=photo&virtual=1\";s:35:\"(?:venue)/([^/]+)/(?:page)/(\\d+)/?$\";s:70:\"index.php?eventDisplay=venue&tribe_venue=$matches[1]&paged=$matches[2]\";s:20:\"(?:venue)/([^/]+)/?$\";s:52:\"index.php?eventDisplay=venue&tribe_venue=$matches[1]\";s:39:\"(?:organizer)/([^/]+)/(?:page)/(\\d+)/?$\";s:78:\"index.php?eventDisplay=organizer&tribe_organizer=$matches[1]&paged=$matches[2]\";s:24:\"(?:organizer)/([^/]+)/?$\";s:60:\"index.php?eventDisplay=organizer&tribe_organizer=$matches[1]\";s:28:\"tribe/events/kitchen-sink/?$\";s:69:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=page\";s:93:\"tribe/events/kitchen-sink/(page|grid|typographical|elements|events-bar|navigation|manager)/?$\";s:76:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=$matches[1]\";s:28:\"event-aggregator/(insert)/?$\";s:53:\"index.php?tribe-aggregator=1&tribe-action=$matches[1]\";s:25:\"(?:event)/([^/]+)/ical/?$\";s:56:\"index.php?ical=1&name=$matches[1]&post_type=tribe_events\";s:28:\"(?:events)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=default&paged=$matches[1]\";s:41:\"(?:events)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&paged=$matches[1]\";s:38:\"(?:events)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=list&feed=$matches[1]\";s:51:\"(?:events)/(?:featured)/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&feed=$matches[1]\";s:23:\"(?:events)/(?:month)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=month\";s:36:\"(?:events)/(?:month)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=month&featured=1\";s:37:\"(?:events)/(?:month)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:37:\"(?:events)/(?:list)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1&paged=$matches[1]\";s:22:\"(?:events)/(?:list)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=list\";s:35:\"(?:events)/(?:list)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1\";s:23:\"(?:events)/(?:today)/?$\";s:49:\"index.php?post_type=tribe_events&eventDisplay=day\";s:36:\"(?:events)/(?:today)/(?:featured)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=day&featured=1\";s:27:\"(?:events)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:40:\"(?:events)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&featured=1\";s:33:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]\";s:46:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:26:\"(?:events)/(?:featured)/?$\";s:43:\"index.php?post_type=tribe_events&featured=1\";s:13:\"(?:events)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=default\";s:18:\"(?:events)/ical/?$\";s:39:\"index.php?post_type=tribe_events&ical=1\";s:31:\"(?:events)/(?:featured)/ical/?$\";s:50:\"index.php?post_type=tribe_events&ical=1&featured=1\";s:51:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:60:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&featured=1\";s:69:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:82:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&featured=1\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:59:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/?$\";s:102:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:113:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:65:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:78:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&feed=rss2\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&feed=rss2\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/ical/?$\";s:68:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&ical=1\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/ical/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&ical=1\";s:75:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&feed=$matches[2]\";s:88:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&feed=$matches[2]\";s:58:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=default\";s:45:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=default\";s:44:\"(?:events)/(?:tag)/([^/]+)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:month)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&featured=1\";s:53:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:66:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:list)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:today)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&featured=1\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:43:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/?$\";s:89:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:56:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:100:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:49:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:62:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/feed/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/ical/?$\";s:55:\"index.php?post_type=tribe_events&tag=$matches[1]&ical=1\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/ical/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&ical=1\";s:59:\"(?:events)/(?:tag)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&feed=$matches[2]\";s:72:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&feed=$matches[2]\";s:42:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/?$\";s:59:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1\";s:29:\"(?:events)/(?:tag)/([^/]+)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=default\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:22:\"tribe-promoter-auth/?$\";s:37:\"index.php?tribe-promoter-auth-check=1\";s:8:\"event/?$\";s:32:\"index.php?post_type=tribe_events\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=tribe_events&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:34:\"series/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"series/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"series/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"series/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"series/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"series/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"series/([^/]+)/embed/?$\";s:51:\"index.php?tribe_event_series=$matches[1]&embed=true\";s:27:\"series/([^/]+)/trackback/?$\";s:45:\"index.php?tribe_event_series=$matches[1]&tb=1\";s:35:\"series/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?tribe_event_series=$matches[1]&paged=$matches[2]\";s:42:\"series/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?tribe_event_series=$matches[1]&cpage=$matches[2]\";s:31:\"series/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?tribe_event_series=$matches[1]&page=$matches[2]\";s:23:\"series/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"series/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"series/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"series/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"series/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"series/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"venue/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"venue/([^/]+)/embed/?$\";s:44:\"index.php?tribe_venue=$matches[1]&embed=true\";s:26:\"venue/([^/]+)/trackback/?$\";s:38:\"index.php?tribe_venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&cpage=$matches[2]\";s:30:\"venue/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?tribe_venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"venue/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"organizer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"organizer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"organizer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"organizer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"organizer/([^/]+)/embed/?$\";s:48:\"index.php?tribe_organizer=$matches[1]&embed=true\";s:30:\"organizer/([^/]+)/trackback/?$\";s:42:\"index.php?tribe_organizer=$matches[1]&tb=1\";s:38:\"organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&paged=$matches[2]\";s:45:\"organizer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&cpage=$matches[2]\";s:34:\"organizer/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?tribe_organizer=$matches[1]&page=$matches[2]\";s:26:\"organizer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"organizer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"organizer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"organizer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:45:\"index.php?tribe_events=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:39:\"index.php?tribe_events=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&cpage=$matches[2]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?tribe_events=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"events/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:49:\"events/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:30:\"events/category/(.+?)/embed/?$\";s:49:\"index.php?tribe_events_cat=$matches[1]&embed=true\";s:42:\"events/category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tribe_events_cat=$matches[1]&paged=$matches[2]\";s:24:\"events/category/(.+?)/?$\";s:38:\"index.php?tribe_events_cat=$matches[1]\";s:41:\"deleted_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"deleted_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"deleted_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"deleted_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"deleted_event/([^/]+)/embed/?$\";s:46:\"index.php?deleted_event=$matches[1]&embed=true\";s:34:\"deleted_event/([^/]+)/trackback/?$\";s:40:\"index.php?deleted_event=$matches[1]&tb=1\";s:42:\"deleted_event/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&paged=$matches[2]\";s:49:\"deleted_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&cpage=$matches[2]\";s:38:\"deleted_event/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?deleted_event=$matches[1]&page=$matches[2]\";s:30:\"deleted_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"deleted_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"deleted_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"deleted_event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:65:\"events/organizers/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?tec_organizer_category=$matches[1]&feed=$matches[2]\";s:60:\"events/organizers/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?tec_organizer_category=$matches[1]&feed=$matches[2]\";s:41:\"events/organizers/category/(.+?)/embed/?$\";s:55:\"index.php?tec_organizer_category=$matches[1]&embed=true\";s:53:\"events/organizers/category/(.+?)/page/?([0-9]{1,})/?$\";s:62:\"index.php?tec_organizer_category=$matches[1]&paged=$matches[2]\";s:35:\"events/organizers/category/(.+?)/?$\";s:44:\"index.php?tec_organizer_category=$matches[1]\";s:61:\"events/venues/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?tec_venue_category=$matches[1]&feed=$matches[2]\";s:56:\"events/venues/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?tec_venue_category=$matches[1]&feed=$matches[2]\";s:37:\"events/venues/category/(.+?)/embed/?$\";s:51:\"index.php?tec_venue_category=$matches[1]&embed=true\";s:49:\"events/venues/category/(.+?)/page/?([0-9]{1,})/?$\";s:58:\"index.php?tec_venue_category=$matches[1]&paged=$matches[2]\";s:31:\"events/venues/category/(.+?)/?$\";s:40:\"index.php?tec_venue_category=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(1047,'tribe_feature_support_check_lock','1','yes'),(1060,'woocommerce_product_match_featured_image_by_sku','no','yes'),(1061,'woocommerce_feature_order_attribution_enabled','yes','yes'),(1062,'woocommerce_hpos_fts_index_enabled','no','yes'),(1063,'woocommerce_store_id','ddd16fa3-6aac-4b35-8fd8-51f613ed8283','yes'),(1064,'woocommerce_remote_variant_assignment','1','yes'),(1076,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(1082,'woocommerce_attribute_lookup_enabled','yes','yes'),(1093,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1721157927;}','yes'),(1094,'edd_notification_req_timeout','1721157927','no'),(1095,'tribe_tickets_migrate_offset_','complete','no'),(1108,'tec_automator_zapier_secret_key','72ebea43599a0d45808b523df88a0f1ffae7285ddc211d27b345b0ca1d5bc1d2eefa77d494bdb1db57bba2637960cf62a4c35ae9af5d69c7a9a290e0d88fd83cf82962ce0c06c033cb0f873d7a72185974ada7c43feaf4b0558df328b977466811347b584e0f7937342126a770e8ab12f482669c632bcc83dbe3dd4dabb21dd0','yes'),(1144,'widget_tribe-widget-event-countdown','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1145,'widget_tribe-widget-featured-venue','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1146,'widget_tribe-widget-events-month','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1147,'widget_tribe-widget-events-week','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1148,'tec_timed_tec_custom_tables_v1_ecp_initialized','a:3:{s:3:\"key\";s:36:\"tec_custom_tables_v1_ecp_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1736363701;}','yes'),(1149,'tec_ct1_series_relationship_table_schema_version','1.0.0','yes'),(1150,'tec_ct1_events_field_schema_version','1.0.1','yes'),(1151,'tec_ct1_occurrences_field_schema_version','1.0.1','yes'),(1154,'stellarwp_telemetry_events-calendar-pro_show_optin','0','yes'),(1159,'external_updates-events-calendar-pro','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1736277310;s:14:\"checkedVersion\";s:5:\"7.3.1\";s:6:\"update\";O:19:\"Tribe__PUE__Utility\":13:{s:2:\"id\";i:0;s:6:\"plugin\";s:34:\"events-pro/events-calendar-pro.php\";s:4:\"slug\";s:19:\"events-calendar-pro\";s:7:\"version\";s:5:\"7.3.1\";s:8:\"homepage\";s:18:\"https://evnt.is/4d\";s:12:\"download_url\";s:299:\"https://pue.theeventscalendar.com/api/plugins/v2/download?plugin=events-calendar-pro&version=7.3.1&installed_version=7.3.1&domain=wordpress.test&multisite=0&network_activated=0&active_sites=1&wp_version=6.5&key=97f261bb1246e1c8ad0b7ace9ec6cb7764a09730&dk=97f261bb1246e1c8ad0b7ace9ec6cb7764a09730&o=e\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:204:\"Events Calendar Pro is an extension to The Events Calendar, and includes recurring events, additional frontend views and more. To see a full feature list please visit the product page (http://evnt.is/4d).\";s:12:\"installation\";s:353:\"Installing Events Calendar Pro is easy: just back up your site, download/install The Events Calendar from the WordPress.org repo, and download/install Events Calendar Pro from theeventscalendar.com. Activate them both and you\'ll be good to go! If you\'re still confused or encounter problems, check out part 1 of our new user primer (http://m.tri.be/4i).\";s:9:\"changelog\";s:1466:\"

= [7.3.1] 2024-12-17 =

\r\n\r\n
    \r\n
  • Feature - Added the tec_events_pro_use_geocode_results filter, allowing users to retain entered venue details (default) or save geocoded address results when manually creating a venue using a custom Google Maps API key.
  • \r\n
  • Tweak - Added filters: tec_events_pro_use_geocode_results
  • \r\n
  • Tweak - Changed views: v2/organizer/meta/featured-image
  • \r\n
  • Tweak - Corrected template override path for featured image for organizers [ECP-1681]
  • \r\n
  • Fix - Added function pass_overwritten_template_files_through_hierarchy_filters to pass the overwritten template files through the hierarchy filters. [ECP-1873]
  • \r\n
  • Fix - Load the correct settings page when clicking the \"Fix venues data\" button. [ECP-1869]
  • \r\n
  • Fix - Provinces/States for non-US countries are now saved to the correct field when importing events from Google Calendar with a custom Google Maps API key. [ECP-1877]
  • \r\n
  • Fix - Removed leading slash from set_template_folder for custom-tables-v1 directory. [ECP-1477]
  • \r\n
  • Fix - When manually creating a venue with a custom Google Maps API key, the entered details are now preserved. [ECP-1874]
  • \r\n
  • Fix - When using \"Move to trash events older than\", trashed imported events are now ignored. [TEC-5319]
  • \r\n
  • Language - 0 new strings added, 26 updated, 0 fuzzied, and 0 obsoleted.
  • \r\n
\";}s:14:\"upgrade_notice\";s:0:\"\";s:13:\"custom_update\";O:8:\"stdClass\":1:{s:5:\"icons\";O:8:\"stdClass\":1:{s:3:\"svg\";s:84:\"https://theeventscalendar.com/content/themes/tribe-ecp/img/svg/product-icons/ECP.svg\";}}s:13:\"license_error\";N;s:8:\"auth_url\";N;s:11:\"api_expired\";b:0;s:11:\"api_upgrade\";b:0;}}','no'),(1160,'tec_timed_events_is_rest_api_blocked','a:3:{s:3:\"key\";s:26:\"events_is_rest_api_blocked\";s:5:\"value\";s:45:\"http://localhost:8888/wp-json/tribe/events/v1\";s:10:\"expiration\";i:1727433839;}','yes'),(1161,'_transient_timeout_as-post-store-dependencies-met','1736363701','no'),(1162,'_transient_as-post-store-dependencies-met','yes','no'),(1165,'_transient_timeout_tribe_events_series_flush_rewrite','1738869301','no'),(1166,'_transient_tribe_events_series_flush_rewrite','1','no'),(1168,'action_scheduler_migration_status','complete','yes'),(1169,'_site_transient_timeout_theme_roots','1736279101','no'),(1170,'_site_transient_theme_roots','a:6:{s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(1172,'admin_email_lifespan','1751829308','yes'),(1174,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.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.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:61:\"https://downloads.w.org/release/wordpress-6.5.5-partial-0.zip\";s:8:\"rollback\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-rollback-0.zip\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:3:\"6.5\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1736277311;s:15:\"version_checked\";s:3:\"6.5\";s:12:\"translations\";a:0:{}}','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; @@ -1123,7 +1246,7 @@ CREATE TABLE `wp_posts` ( LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; -INSERT INTO `wp_posts` VALUES (4,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','[download_checkout]','Checkout','','publish','closed','closed','','checkout','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',0,'http://wordpress.test/checkout/',0,'page','',0),(5,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','','Receipt','','publish','closed','closed','','receipt','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/receipt/',0,'page','',0),(6,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','

Your transaction failed; please try again or contact site support.

','Transaction Failed','','publish','closed','closed','','transaction-failed','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/transaction-failed/',0,'page','',0),(7,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','','Order History','','publish','closed','closed','','order-history','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/order-history/',0,'page','',0),(8,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','

Thank you for your purchase!

','Confirmation','','publish','closed','closed','','confirmation','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/confirmation/',0,'page','',0),(9,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/wp-content/uploads/2023/01/woocommerce-placeholder.png',0,'attachment','image/png',0),(10,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','','Shop','','publish','closed','closed','','shop','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/shop/',0,'page','',0),(11,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/cart/',0,'page','',0),(12,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout-2','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/checkout-2/',0,'page','',0),(13,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/my-account/',0,'page','',0),(14,1,'2023-01-05 13:11:54','0000-00-00 00:00:00','\n

This is a sample page.

\n\n\n\n

Overview

\n\n\n\n

Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.

\n\n\n\n

To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.

\n\n\n\n

Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.

\n\n\n\n

Additional non-returnable items:

\n\n\n\n
    \n
  • Gift cards
  • \n
  • Downloadable software products
  • \n
  • Some health and personal care items
  • \n
\n\n\n\n

To complete your return, we require a receipt or proof of purchase.

\n\n\n\n

Please do not send your purchase back to the manufacturer.

\n\n\n\n

There are certain situations where only partial refunds are granted:

\n\n\n\n
    \n
  • Book with obvious signs of use
  • \n
  • CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.
  • \n
  • Any item not in its original condition, is damaged or missing parts for reasons not due to our error.
  • \n
  • Any item that is returned more than 30 days after delivery
  • \n
\n\n\n\n

Refunds

\n\n\n\n

Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.

\n\n\n\n

If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.

\n\n\n\nLate or missing refunds\n\n\n\n

If you haven’t received a refund yet, first check your bank account again.

\n\n\n\n

Then contact your credit card company, it may take some time before your refund is officially posted.

\n\n\n\n

Next contact your bank. There is often some processing time before a refund is posted.

\n\n\n\n

If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.

\n\n\n\nSale items\n\n\n\n

Only regular priced items may be refunded. Sale items cannot be refunded.

\n\n\n\n

Exchanges

\n\n\n\n

We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.

\n\n\n\n

Gifts

\n\n\n\n

If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.

\n\n\n\n

If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.

\n\n\n\n

Shipping returns

\n\n\n\n

To return your product, you should mail your product to: {physical address}.

\n\n\n\n

You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.

\n\n\n\n

Depending on where you live, the time it may take for your exchanged product to reach you may vary.

\n\n\n\n

If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.

\n\n\n\n

Need help?

\n\n\n\n

Contact us at {email} for questions related to refunds and returns.

\n','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2023-01-05 13:11:54','0000-00-00 00:00:00','',0,'http://wordpress.test/?page_id=14',0,'page','',0),(16,1,'2023-01-06 12:37:19','2023-01-06 12:37:19','[tec_tickets_checkout]','Tickets Checkout','','publish','closed','closed','','tickets-checkout','','','2023-01-06 12:37:19','2023-01-06 12:37:19','',0,'http://wordpress.test/tickets-checkout/',0,'page','',0),(17,1,'2023-01-06 12:37:19','2023-01-06 12:37:19','[tec_tickets_success]','Order Completed','','publish','closed','closed','','tickets-order','','','2023-01-06 12:37:19','2023-01-06 12:37:19','',0,'http://wordpress.test/tickets-order/',0,'page','',0),(18,0,'2023-11-17 07:24:17','2023-11-17 12:24:17','','Test Event','','publish','open','closed','','test-event','','','2023-11-17 07:24:17','2023-11-17 12:24:17','',0,'http://wordpress.test/event/test-event/',0,'tribe_events','',0),(19,0,'2023-11-17 07:24:18','2023-11-17 12:24:18','','Test WooCommerce ticket for 18','Test WooCommerce ticket description for 18','publish','open','closed','','test-woocommerce-ticket-for-18','','','2023-11-17 07:24:18','2023-11-17 12:24:18','',0,'http://wordpress.test/product/test-woocommerce-ticket-for-18/',-1,'product','',0),(20,1,'2024-09-25 06:43:42','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-09-25 06:43:42','0000-00-00 00:00:00','',0,'http://localhost:8888/?p=20',0,'post','',0); +INSERT INTO `wp_posts` VALUES (4,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','[download_checkout]','Checkout','','publish','closed','closed','','checkout','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',0,'http://wordpress.test/checkout/',0,'page','',0),(5,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','','Receipt','','publish','closed','closed','','receipt','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/receipt/',0,'page','',0),(6,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','

Your transaction failed; please try again or contact site support.

','Transaction Failed','','publish','closed','closed','','transaction-failed','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/transaction-failed/',0,'page','',0),(7,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','','Order History','','publish','closed','closed','','order-history','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/order-history/',0,'page','',0),(8,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','

Thank you for your purchase!

','Confirmation','','publish','closed','closed','','confirmation','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/confirmation/',0,'page','',0),(9,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/wp-content/uploads/2023/01/woocommerce-placeholder.png',0,'attachment','image/png',0),(10,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','','Shop','','publish','closed','closed','','shop','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/shop/',0,'page','',0),(11,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/cart/',0,'page','',0),(12,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout-2','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/checkout-2/',0,'page','',0),(13,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/my-account/',0,'page','',0),(14,1,'2023-01-05 13:11:54','0000-00-00 00:00:00','\n

This is a sample page.

\n\n\n\n

Overview

\n\n\n\n

Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.

\n\n\n\n

To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.

\n\n\n\n

Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.

\n\n\n\n

Additional non-returnable items:

\n\n\n\n
    \n
  • Gift cards
  • \n
  • Downloadable software products
  • \n
  • Some health and personal care items
  • \n
\n\n\n\n

To complete your return, we require a receipt or proof of purchase.

\n\n\n\n

Please do not send your purchase back to the manufacturer.

\n\n\n\n

There are certain situations where only partial refunds are granted:

\n\n\n\n
    \n
  • Book with obvious signs of use
  • \n
  • CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.
  • \n
  • Any item not in its original condition, is damaged or missing parts for reasons not due to our error.
  • \n
  • Any item that is returned more than 30 days after delivery
  • \n
\n\n\n\n

Refunds

\n\n\n\n

Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.

\n\n\n\n

If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.

\n\n\n\nLate or missing refunds\n\n\n\n

If you haven’t received a refund yet, first check your bank account again.

\n\n\n\n

Then contact your credit card company, it may take some time before your refund is officially posted.

\n\n\n\n

Next contact your bank. There is often some processing time before a refund is posted.

\n\n\n\n

If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.

\n\n\n\nSale items\n\n\n\n

Only regular priced items may be refunded. Sale items cannot be refunded.

\n\n\n\n

Exchanges

\n\n\n\n

We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.

\n\n\n\n

Gifts

\n\n\n\n

If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.

\n\n\n\n

If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.

\n\n\n\n

Shipping returns

\n\n\n\n

To return your product, you should mail your product to: {physical address}.

\n\n\n\n

You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.

\n\n\n\n

Depending on where you live, the time it may take for your exchanged product to reach you may vary.

\n\n\n\n

If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.

\n\n\n\n

Need help?

\n\n\n\n

Contact us at {email} for questions related to refunds and returns.

\n','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2023-01-05 13:11:54','0000-00-00 00:00:00','',0,'http://wordpress.test/?page_id=14',0,'page','',0),(16,1,'2023-01-06 12:37:19','2023-01-06 12:37:19','[tec_tickets_checkout]','Tickets Checkout','','publish','closed','closed','','tickets-checkout','','','2023-01-06 12:37:19','2023-01-06 12:37:19','',0,'http://wordpress.test/tickets-checkout/',0,'page','',0),(17,1,'2023-01-06 12:37:19','2023-01-06 12:37:19','[tec_tickets_success]','Order Completed','','publish','closed','closed','','tickets-order','','','2023-01-06 12:37:19','2023-01-06 12:37:19','',0,'http://wordpress.test/tickets-order/',0,'page','',0),(18,0,'2023-11-17 07:24:17','2023-11-17 12:24:17','','Test Event','','publish','open','closed','','test-event','','','2023-11-17 07:24:17','2023-11-17 12:24:17','',0,'http://wordpress.test/event/test-event/',0,'tribe_events','',0),(19,0,'2023-11-17 07:24:18','2023-11-17 12:24:18','','Test WooCommerce ticket for 18','Test WooCommerce ticket description for 18','publish','open','closed','','test-woocommerce-ticket-for-18','','','2023-11-17 07:24:18','2023-11-17 12:24:18','',0,'http://wordpress.test/product/test-woocommerce-ticket-for-18/',-1,'product','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; @@ -1198,6 +1321,98 @@ INSERT INTO `wp_tec_occurrences` VALUES (1,1,18,'2019-01-01 10:00:00','2019-01-0 /*!40000 ALTER TABLE `wp_tec_occurrences` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `wp_tec_order_modifier_relationships` +-- + +DROP TABLE IF EXISTS `wp_tec_order_modifier_relationships`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_order_modifier_relationships` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `modifier_id` bigint(20) unsigned NOT NULL, + `post_id` bigint(20) unsigned NOT NULL, + `post_type` varchar(20) NOT NULL, + PRIMARY KEY (`id`), + KEY `tec_order_modifier_relationship_index_modifier_id` (`modifier_id`), + KEY `tec_order_modifier_relationship_index_post_id` (`post_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_order_modifier_relationships` +-- + +LOCK TABLES `wp_tec_order_modifier_relationships` WRITE; +/*!40000 ALTER TABLE `wp_tec_order_modifier_relationships` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_order_modifier_relationships` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_order_modifiers` +-- + +DROP TABLE IF EXISTS `wp_tec_order_modifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_order_modifiers` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `modifier_type` varchar(150) NOT NULL, + `sub_type` varchar(255) NOT NULL, + `raw_amount` decimal(18,6) NOT NULL, + `slug` varchar(150) NOT NULL, + `display_name` varchar(255) NOT NULL, + `status` varchar(20) NOT NULL DEFAULT 'draft', + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `start_time` timestamp NULL DEFAULT NULL, + `end_time` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `tec_order_modifier_index_slug` (`slug`), + KEY `tec_order_modifier_index_modifier_type` (`modifier_type`), + KEY `tec_order_modifier_index_status_modifier_type` (`status`,`modifier_type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_order_modifiers` +-- + +LOCK TABLES `wp_tec_order_modifiers` WRITE; +/*!40000 ALTER TABLE `wp_tec_order_modifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_order_modifiers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_order_modifiers_meta` +-- + +DROP TABLE IF EXISTS `wp_tec_order_modifiers_meta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_order_modifiers_meta` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `order_modifier_id` bigint(20) unsigned NOT NULL, + `meta_key` varchar(100) NOT NULL, + `meta_value` text NOT NULL, + `priority` int(11) NOT NULL DEFAULT 0, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `tec_order_modifier_meta_index_order_modifier_id` (`order_modifier_id`), + KEY `tec_order_modifier_meta_index_meta_key` (`meta_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_order_modifiers_meta` +-- + +LOCK TABLES `wp_tec_order_modifiers_meta` WRITE; +/*!40000 ALTER TABLE `wp_tec_order_modifiers_meta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_order_modifiers_meta` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `wp_tec_series_relationships` -- @@ -1225,6 +1440,110 @@ LOCK TABLES `wp_tec_series_relationships` WRITE; /*!40000 ALTER TABLE `wp_tec_series_relationships` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `wp_tec_slr_layouts` +-- + +DROP TABLE IF EXISTS `wp_tec_slr_layouts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_slr_layouts` ( + `id` varchar(36) NOT NULL, + `name` varchar(255) NOT NULL, + `created_date` datetime NOT NULL, + `map` varchar(36) NOT NULL, + `seats` int(11) NOT NULL DEFAULT 0, + `screenshot_url` varchar(255) DEFAULT '', + 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_tec_slr_layouts` +-- + +LOCK TABLES `wp_tec_slr_layouts` WRITE; +/*!40000 ALTER TABLE `wp_tec_slr_layouts` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_slr_layouts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_slr_maps` +-- + +DROP TABLE IF EXISTS `wp_tec_slr_maps`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_slr_maps` ( + `id` varchar(36) NOT NULL, + `name` varchar(255) NOT NULL, + `seats` int(11) NOT NULL DEFAULT 0, + `screenshot_url` varchar(255) DEFAULT '', + 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_tec_slr_maps` +-- + +LOCK TABLES `wp_tec_slr_maps` WRITE; +/*!40000 ALTER TABLE `wp_tec_slr_maps` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_slr_maps` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_slr_seat_types` +-- + +DROP TABLE IF EXISTS `wp_tec_slr_seat_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_slr_seat_types` ( + `id` varchar(36) NOT NULL, + `name` varchar(255) NOT NULL, + `map` varchar(36) NOT NULL, + `layout` varchar(36) NOT NULL, + `seats` int(11) NOT NULL DEFAULT 0, + 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_tec_slr_seat_types` +-- + +LOCK TABLES `wp_tec_slr_seat_types` WRITE; +/*!40000 ALTER TABLE `wp_tec_slr_seat_types` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_slr_seat_types` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_slr_sessions` +-- + +DROP TABLE IF EXISTS `wp_tec_slr_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_slr_sessions` ( + `token` varchar(150) NOT NULL, + `object_id` bigint(20) NOT NULL, + `expiration` int(11) NOT NULL, + `reservations` longblob DEFAULT NULL, + `expiration_lock` tinyint(1) DEFAULT 0, + PRIMARY KEY (`token`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_slr_sessions` +-- + +LOCK TABLES `wp_tec_slr_sessions` WRITE; +/*!40000 ALTER TABLE `wp_tec_slr_sessions` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_slr_sessions` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `wp_term_relationships` -- @@ -2460,4 +2779,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-09-25 10:44:22 +-- Dump completed on 2025-01-07 19:15:24 diff --git a/tests/_data/restv1_et-dump.sql b/tests/_data/restv1_et-dump.sql index 066894044c..8d3eccc43b 100644 --- a/tests/_data/restv1_et-dump.sql +++ b/tests/_data/restv1_et-dump.sql @@ -1,4 +1,5 @@ --- MariaDB dump 10.19 Distrib 10.5.23-MariaDB, for debian-linux-gnu (aarch64) +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.5.26-MariaDB, for debian-linux-gnu (aarch64) -- -- Host: db Database: test -- ------------------------------------------------------ @@ -45,7 +46,7 @@ CREATE TABLE `wp_actionscheduler_actions` ( KEY `group_id` (`group_id`), KEY `last_attempt_gmt` (`last_attempt_gmt`), KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -54,7 +55,7 @@ CREATE TABLE `wp_actionscheduler_actions` ( LOCK TABLES `wp_actionscheduler_actions` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */; -INSERT INTO `wp_actionscheduler_actions` VALUES (4,'action_scheduler/migration_hook','complete','2022-12-06 11:25:48','2022-12-06 11:25:48','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1670325948;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1670325948;}',1,1,'2023-01-05 13:11:28','2023-01-05 13:11:28',0,NULL,10),(5,'woocommerce_cleanup_draft_orders','failed','2023-01-05 13:11:56','2023-01-05 13:11:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1672924316;s:18:\"\0*\0first_timestamp\";i:1672924316;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1672924316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',0,1,'2023-01-05 13:11:56','2023-01-05 13:11:56',0,NULL,10),(6,'woocommerce_cleanup_draft_orders','complete','2023-01-06 13:11:56','2023-01-06 13:11:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1673010716;s:18:\"\0*\0first_timestamp\";i:1672924316;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1673010716;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',0,1,'2023-01-09 14:29:21','2023-01-09 14:29:21',0,NULL,10),(7,'woocommerce_cleanup_draft_orders','complete','2023-01-10 14:29:21','2023-01-10 14:29:21','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1673360961;s:18:\"\0*\0first_timestamp\";i:1672924316;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1673360961;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',0,1,'2023-11-17 13:20:23','2023-11-17 08:20:23',0,NULL,10),(8,'woocommerce_run_product_attribute_lookup_regeneration_callback','complete','2023-11-17 12:51:37','2023-11-17 07:51:37','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700225497;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700225497;}',2,1,'2023-11-17 13:57:26','2023-11-17 08:57:26',0,NULL,10),(9,'woocommerce_run_on_woocommerce_admin_updated','complete','2023-11-17 12:51:36','2023-11-17 07:51:36','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700225496;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700225496;}',3,1,'2023-11-17 13:57:15','2023-11-17 08:57:15',0,NULL,10),(10,'woocommerce_run_update_callback','complete','2023-11-17 13:10:23','2023-11-17 08:10:23','{\"update_callback\":\"wc_update_750_add_columns_to_order_stats_table\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700226623;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700226623;}',2,1,'2023-11-17 13:54:10','2023-11-17 08:54:10',0,NULL,10),(11,'woocommerce_run_update_callback','complete','2023-11-17 13:10:24','2023-11-17 08:10:24','{\"update_callback\":\"wc_update_750_disable_new_product_management_experience\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700226624;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700226624;}',2,1,'2023-11-17 13:54:22','2023-11-17 08:54:22',0,NULL,10),(12,'woocommerce_run_update_callback','complete','2023-11-17 13:10:25','2023-11-17 08:10:25','{\"update_callback\":\"wc_update_770_remove_multichannel_marketing_feature_options\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700226625;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700226625;}',2,1,'2023-11-17 13:54:36','2023-11-17 08:54:36',0,NULL,10),(13,'woocommerce_run_update_callback','complete','2023-11-17 13:10:26','2023-11-17 08:10:26','{\"update_callback\":\"wc_update_810_migrate_transactional_metadata_for_hpos\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700226626;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700226626;}',2,1,'2023-11-17 13:54:48','2023-11-17 08:54:48',0,NULL,10),(14,'woocommerce_update_db_to_current_version','complete','2023-11-17 13:10:27','2023-11-17 08:10:27','{\"version\":\"8.2.2\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700226627;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700226627;}',2,1,'2023-11-17 13:57:37','2023-11-17 08:57:37',0,NULL,10),(15,'woocommerce_cleanup_draft_orders','canceled','2023-11-18 13:20:23','2023-11-18 08:20:23','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1700313623;s:18:\"\0*\0first_timestamp\";i:1672924316;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1700313623;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(17,'woocommerce_cleanup_draft_orders','pending','2023-11-17 13:58:44','2023-11-17 08:58:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1700229524;s:18:\"\0*\0first_timestamp\";i:1700229524;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1700229524;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(18,'action_scheduler/migration_hook','pending','2023-11-17 14:05:59','2023-11-17 09:05:59','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700229959;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700229959;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(19,'woocommerce_run_product_attribute_lookup_regeneration_callback','pending','2024-07-16 19:32:14','2024-07-16 15:32:14','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1721158334;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1721158334;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(20,'woocommerce_run_on_woocommerce_admin_updated','pending','2024-07-16 19:32:13','2024-07-16 15:32:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1721158333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1721158333;}',3,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10); +INSERT INTO `wp_actionscheduler_actions` VALUES (5,'woocommerce_cleanup_draft_orders','failed','2023-01-05 13:11:56','2023-01-05 13:11:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1672924316;s:18:\"\0*\0first_timestamp\";i:1672924316;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1672924316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',0,1,'2023-01-05 13:11:56','2023-01-05 13:11:56',0,NULL,10),(17,'woocommerce_cleanup_draft_orders','complete','2023-11-17 13:58:44','2023-11-17 08:58:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1700229524;s:18:\"\0*\0first_timestamp\";i:1700229524;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1700229524;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,1,'2025-01-07 19:14:08','2025-01-07 14:14:08',0,NULL,10),(18,'action_scheduler/migration_hook','complete','2023-11-17 14:05:59','2023-11-17 09:05:59','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1700229959;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1700229959;}',1,1,'2025-01-07 19:14:08','2025-01-07 14:14:08',0,NULL,10),(19,'woocommerce_run_product_attribute_lookup_regeneration_callback','complete','2024-07-16 19:32:14','2024-07-16 15:32:14','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1721158334;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1721158334;}',2,1,'2025-01-07 19:14:08','2025-01-07 14:14:08',0,NULL,10),(20,'woocommerce_run_on_woocommerce_admin_updated','complete','2024-07-16 19:32:13','2024-07-16 15:32:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1721158333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1721158333;}',3,1,'2025-01-07 19:14:08','2025-01-07 14:14:08',0,NULL,10),(21,'woocommerce_cleanup_draft_orders','pending','2025-01-08 19:14:08','2025-01-08 14:14:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1736363648;s:18:\"\0*\0first_timestamp\";i:1700229524;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1736363648;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',4,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10); /*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */; UNLOCK TABLES; @@ -70,7 +71,7 @@ CREATE TABLE `wp_actionscheduler_claims` ( `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`claim_id`), KEY `date_created_gmt` (`date_created_gmt`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -123,7 +124,7 @@ CREATE TABLE `wp_actionscheduler_logs` ( PRIMARY KEY (`log_id`), KEY `action_id` (`action_id`), KEY `log_date_gmt` (`log_date_gmt`) -) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -132,7 +133,7 @@ CREATE TABLE `wp_actionscheduler_logs` ( LOCK TABLES `wp_actionscheduler_logs` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */; -INSERT INTO `wp_actionscheduler_logs` VALUES (7,4,'action created','2022-12-06 11:24:48','2022-12-06 11:24:48'),(8,4,'action started via Async Request','2023-01-05 13:11:28','2023-01-05 13:11:28'),(9,4,'action complete via Async Request','2023-01-05 13:11:28','2023-01-05 13:11:28'),(10,5,'action created','2023-01-05 13:11:56','2023-01-05 13:11:56'),(11,5,'action started via WP Cron','2023-01-05 13:11:56','2023-01-05 13:11:56'),(12,5,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2023-01-05 13:11:56','2023-01-05 13:11:56'),(13,6,'action created','2023-01-05 13:11:56','2023-01-05 13:11:56'),(14,6,'action started via Async Request','2023-01-09 14:29:21','2023-01-09 14:29:21'),(15,6,'action complete via Async Request','2023-01-09 14:29:21','2023-01-09 14:29:21'),(16,7,'action created','2023-01-09 14:29:21','2023-01-09 14:29:21'),(17,8,'action created','2023-11-17 12:51:36','2023-11-17 07:51:36'),(18,9,'action created','2023-11-17 12:51:36','2023-11-17 07:51:36'),(19,10,'action created','2023-11-17 13:10:23','2023-11-17 08:10:23'),(20,11,'action created','2023-11-17 13:10:23','2023-11-17 08:10:23'),(21,12,'action created','2023-11-17 13:10:23','2023-11-17 08:10:23'),(22,13,'action created','2023-11-17 13:10:23','2023-11-17 08:10:23'),(23,14,'action created','2023-11-17 13:10:23','2023-11-17 08:10:23'),(24,7,'action started via Admin List Table','2023-11-17 13:20:23','2023-11-17 08:20:23'),(25,7,'action complete via Admin List Table','2023-11-17 13:20:23','2023-11-17 08:20:23'),(26,15,'action created','2023-11-17 13:20:23','2023-11-17 08:20:23'),(27,10,'action started via Admin List Table','2023-11-17 13:54:10','2023-11-17 08:54:10'),(28,10,'action complete via Admin List Table','2023-11-17 13:54:10','2023-11-17 08:54:10'),(29,11,'action started via Admin List Table','2023-11-17 13:54:22','2023-11-17 08:54:22'),(30,11,'action complete via Admin List Table','2023-11-17 13:54:22','2023-11-17 08:54:22'),(31,12,'action started via Admin List Table','2023-11-17 13:54:36','2023-11-17 08:54:36'),(32,12,'action complete via Admin List Table','2023-11-17 13:54:36','2023-11-17 08:54:36'),(33,13,'action started via Admin List Table','2023-11-17 13:54:48','2023-11-17 08:54:48'),(34,13,'action complete via Admin List Table','2023-11-17 13:54:48','2023-11-17 08:54:48'),(35,9,'action started via Admin List Table','2023-11-17 13:57:14','2023-11-17 08:57:14'),(36,9,'action complete via Admin List Table','2023-11-17 13:57:15','2023-11-17 08:57:15'),(37,8,'action started via Admin List Table','2023-11-17 13:57:26','2023-11-17 08:57:26'),(38,8,'action complete via Admin List Table','2023-11-17 13:57:26','2023-11-17 08:57:26'),(39,14,'action started via Admin List Table','2023-11-17 13:57:37','2023-11-17 08:57:37'),(40,14,'action complete via Admin List Table','2023-11-17 13:57:37','2023-11-17 08:57:37'),(41,15,'action canceled','2023-11-17 13:58:07','2023-11-17 08:58:07'),(43,17,'action created','2023-11-17 13:58:44','2023-11-17 08:58:44'),(44,18,'action created','2023-11-17 14:04:59','2023-11-17 09:04:59'),(45,19,'action created','2024-07-16 19:32:13','2024-07-16 15:32:13'),(46,20,'action created','2024-07-16 19:32:13','2024-07-16 15:32:13'); +INSERT INTO `wp_actionscheduler_logs` VALUES (10,5,'action created','2023-01-05 13:11:56','2023-01-05 13:11:56'),(11,5,'action started via WP Cron','2023-01-05 13:11:56','2023-01-05 13:11:56'),(12,5,'action failed via WP Cron: Scheduled action for woocommerce_cleanup_draft_orders will not be executed as no callbacks are registered.','2023-01-05 13:11:56','2023-01-05 13:11:56'),(43,17,'action created','2023-11-17 13:58:44','2023-11-17 08:58:44'),(44,18,'action created','2023-11-17 14:04:59','2023-11-17 09:04:59'),(45,19,'action created','2024-07-16 19:32:13','2024-07-16 15:32:13'),(46,20,'action created','2024-07-16 19:32:13','2024-07-16 15:32:13'),(47,17,'action started via WP Cron','2025-01-07 19:14:08','2025-01-07 14:14:08'),(48,17,'action complete via WP Cron','2025-01-07 19:14:08','2025-01-07 14:14:08'),(49,21,'action created','2025-01-07 19:14:08','2025-01-07 14:14:08'),(50,18,'action started via WP Cron','2025-01-07 19:14:08','2025-01-07 14:14:08'),(51,18,'action complete via WP Cron','2025-01-07 19:14:08','2025-01-07 14:14:08'),(52,20,'action started via WP Cron','2025-01-07 19:14:08','2025-01-07 14:14:08'),(53,20,'action complete via WP Cron','2025-01-07 19:14:08','2025-01-07 14:14:08'),(54,19,'action started via WP Cron','2025-01-07 19:14:08','2025-01-07 14:14:08'),(55,19,'action complete via WP Cron','2025-01-07 19:14:08','2025-01-07 14:14:08'); /*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */; UNLOCK TABLES; @@ -413,6 +414,68 @@ LOCK TABLES `wp_edd_customers` WRITE; /*!40000 ALTER TABLE `wp_edd_customers` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `wp_edd_emailmeta` +-- + +DROP TABLE IF EXISTS `wp_edd_emailmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_edd_emailmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `edd_email_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `email_id` (`edd_email_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_edd_emailmeta` +-- + +LOCK TABLES `wp_edd_emailmeta` WRITE; +/*!40000 ALTER TABLE `wp_edd_emailmeta` DISABLE KEYS */; +INSERT INTO `wp_edd_emailmeta` VALUES (1,1,'legacy','purchase_receipt'),(2,1,'legacy','purchase_subject'),(3,1,'legacy','purchase_heading'),(4,2,'legacy','sale_notification'),(5,2,'legacy','sale_notification_subject'),(6,2,'legacy','sale_notification_heading'),(7,2,'legacy','disable_admin_notices'),(8,2,'recipients','admin'); +/*!40000 ALTER TABLE `wp_edd_emailmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_edd_emails` +-- + +DROP TABLE IF EXISTS `wp_edd_emails`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_edd_emails` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `email_id` varchar(32) NOT NULL, + `context` varchar(32) NOT NULL DEFAULT 'order', + `sender` varchar(32) NOT NULL DEFAULT 'edd', + `recipient` varchar(32) NOT NULL DEFAULT 'customer', + `subject` text NOT NULL, + `heading` text DEFAULT NULL, + `content` longtext NOT NULL, + `status` tinyint(1) unsigned NOT NULL DEFAULT 0, + `date_created` datetime NOT NULL DEFAULT current_timestamp(), + `date_modified` datetime NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`), + UNIQUE KEY `email_id` (`email_id`) +) 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_edd_emails` +-- + +LOCK TABLES `wp_edd_emails` WRITE; +/*!40000 ALTER TABLE `wp_edd_emails` DISABLE KEYS */; +INSERT INTO `wp_edd_emails` VALUES (1,'order_receipt','order','edd','customer','Purchase Receipt','Purchase Receipt','Dear {name},\n\nThank you for your purchase. Please click on the link(s) below to download your files.\n\n{download_list}\n\n{sitename}',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(2,'admin_order_notice','order','edd','admin','New download purchase - Order #{payment_id}','New Sale!','Hello\n\nA Downloads purchase has been made.\n\nDownloads sold:\n\n{download_list}\n\nPurchased by: {fullname}\nAmount: {price}\nPayment Method: {payment_method}\n\nThank you',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(3,'order_refund','refund','edd','customer','Your order has been refunded','','Dear {name},\n\nYour order has been refunded.',0,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(4,'admin_order_refund','refund','edd','admin','An order has been refunded','','Order {payment_id} has been refunded.',0,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(5,'new_user','user','edd','customer','[{sitename}] Your username and password','Your account info','Username: {username}\r\nPassword: [entered on site]\r\n Click here to log in →\r\n',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(6,'new_user_admin','user','edd','admin','[{sitename}] New User Registration','New user registration','Username: {username}\r\n\r\nE-mail: {user_email}\r\n',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(7,'user_verification','user','edd','user','Verify your account','Verify your account','Hello {fullname},\n\nYour account with {sitename} needs to be verified before you can access your order history.\n\nVisit this link to verify your account: {verification_url}\n\n',1,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(8,'password_reset','user','wp','user','[Wordpress Test] Password Reset','','Someone has requested a password reset for the following account:\r\n\r\nSite Name: {sitename}\r\n\r\nUsername: {username}\r\n\r\nIf this was a mistake, ignore this email and nothing will happen.\r\n\r\nTo reset your password, visit the following address:\r\n\r\n{password_reset_link}\r\n\r\nThis password reset request originated from the IP address {ip_address}.\r\n',0,'2025-01-07 19:14:08','2025-01-07 19:14:08'),(9,'stripe_early_fraud_warning','order','edd','admin','Stripe Early Fraud Warning - Order #{payment_id}','Possible Fraudulent Order','Hello\n\nStripe has detected a potential fraudulent order.\n\nDownloads sold:\n\n{download_list}\n\nPurchased by: {fullname}\nAmount: {price}\nOrder Details\n\nNote: Once you have reviewed the order, ensure you take the appropriate action within your Stripe dashboard to help improve future fraud detection.',0,'2025-01-07 19:14:08','2025-01-07 19:14:08'); +/*!40000 ALTER TABLE `wp_edd_emails` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `wp_edd_logmeta` -- @@ -537,6 +600,66 @@ LOCK TABLES `wp_edd_logs_api_requests` WRITE; /*!40000 ALTER TABLE `wp_edd_logs_api_requests` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `wp_edd_logs_emailmeta` +-- + +DROP TABLE IF EXISTS `wp_edd_logs_emailmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_edd_logs_emailmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `edd_logs_email_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `edd_logs_email_id` (`edd_logs_email_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_edd_logs_emailmeta` +-- + +LOCK TABLES `wp_edd_logs_emailmeta` WRITE; +/*!40000 ALTER TABLE `wp_edd_logs_emailmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_edd_logs_emailmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_edd_logs_emails` +-- + +DROP TABLE IF EXISTS `wp_edd_logs_emails`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_edd_logs_emails` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `object_type` varchar(20) NOT NULL DEFAULT 'customer', + `email` varchar(100) NOT NULL DEFAULT '', + `email_id` varchar(32) NOT NULL, + `subject` varchar(200) NOT NULL, + `date_created` datetime NOT NULL DEFAULT current_timestamp(), + `date_modified` datetime NOT NULL DEFAULT current_timestamp(), + `uuid` varchar(100) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `object_id_type` (`object_id`,`object_type`), + KEY `email_id` (`email_id`), + KEY `date_created` (`date_created`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_edd_logs_emails` +-- + +LOCK TABLES `wp_edd_logs_emails` WRITE; +/*!40000 ALTER TABLE `wp_edd_logs_emails` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_edd_logs_emails` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `wp_edd_logs_file_downloadmeta` -- @@ -1037,7 +1160,7 @@ CREATE TABLE `wp_options` ( PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=1112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=1167 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1046,7 +1169,7 @@ CREATE TABLE `wp_options` ( LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; -INSERT INTO `wp_options` VALUES (1,'siteurl','http://wordpress.test','yes'),(2,'home','http://wordpress.test','yes'),(3,'blogname','Wordpress Test','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@wordpress.test','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:5:{i:0;s:49:\"easy-digital-downloads/easy-digital-downloads.php\";i:1;s:41:\"event-tickets-plus/event-tickets-plus.php\";i:2;s:31:\"event-tickets/event-tickets.php\";i:3;s:43:\"the-events-calendar/the-events-calendar.php\";i:4;s:27:\"woocommerce/woocommerce.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','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','56657','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:3:{s:43:\"the-events-calendar/the-events-calendar.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:31:\"event-tickets/event-tickets.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:35:\"event-automator/event-automator.php\";s:23:\"tec_automator_uninstall\";}','no'),(82,'timezone_string','America/New_York','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:199:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"view_shop_reports\";b:1;s:24:\"view_shop_sensitive_data\";b:1;s:19:\"export_shop_reports\";b:1;s:21:\"manage_shop_discounts\";b:1;s:20:\"manage_shop_settings\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:74:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:30:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:126:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:19:\"delete_others_pages\";b:1;s:19:\"delete_others_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:17:\"edit_others_posts\";b:1;s:10:\"edit_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:13:\"publish_pages\";b:1;s:13:\"publish_posts\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:17:\"view_shop_reports\";b:1;s:24:\"view_shop_sensitive_data\";b:1;s:19:\"export_shop_reports\";b:1;s:20:\"manage_shop_settings\";b:1;s:21:\"manage_shop_discounts\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:15:\"shop_accountant\";a:2:{s:4:\"name\";s:15:\"Shop Accountant\";s:12:\"capabilities\";a:8:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"edit_products\";b:1;s:21:\"read_private_products\";b:1;s:17:\"view_shop_reports\";b:1;s:19:\"export_shop_reports\";b:1;s:18:\"edit_shop_payments\";b:1;}}s:11:\"shop_worker\";a:2:{s:4:\"name\";s:11:\"Shop Worker\";s:12:\"capabilities\";a:61:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;}}s:11:\"shop_vendor\";a:2:{s:4:\"name\";s:11:\"Shop Vendor\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:12:\"edit_product\";b:1;s:13:\"edit_products\";b:1;s:14:\"delete_product\";b:1;s:15:\"delete_products\";b:1;s:16:\"publish_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"assign_product_terms\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:27:{i:1673274618;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1673275404;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:1673277103;a:1:{s:30:\"edds_cleanup_rate_limiting_log\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1673277119;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1673277183;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1673300624;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:1673313245;a:3:{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:1673343804;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1673343824;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:1673343826;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:1673349849;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1673360959;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1673516604;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1700225491;a:2:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1700225506;a:3:{s:30:\"generate_category_lookup_table\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}s:27:\"edd_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:26:\"edd_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1700225536;a:1:{s:46:\"tec_tickets_update_glance_item_attendee_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1700227553;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1700230951;a:1:{s:30:\"tribe_schedule_transient_purge\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1700485200;a:1:{s:22:\"edd_email_summary_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1721158332;a:1:{s:26:\"tribe_tickets_migrate_4_12\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1721158343;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721158393;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1721161933;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1721169133;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1721179933;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1721188800;a:1:{s:27:\"woocommerce_scheduled_sales\";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'),(110,'theme_mods_twentyseventeen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(123,'tribe_last_updated_option','1727267593.5199','yes'),(124,'tribe_events_calendar_options','a:38:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:14:\"schema-version\";s:7:\"6.6.4.2\";s:21:\"previous_ecp_versions\";a:7:{i:0;s:1:\"0\";i:1;s:5:\"6.0.2\";i:2;s:7:\"6.0.3.1\";i:3;s:5:\"6.0.5\";i:4;s:7:\"6.0.6.2\";i:5;s:5:\"6.2.7\";i:6;s:5:\"6.2.8\";}s:18:\"latest_ecp_version\";s:7:\"6.6.4.2\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:60;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:39:\"last-update-message-the-events-calendar\";s:5:\"6.2.8\";s:25:\"ticket-enabled-post-types\";a:2:{i:0;s:12:\"tribe_events\";i:1;s:4:\"page\";}s:28:\"event-tickets-schema-version\";s:8:\"5.13.3.1\";s:31:\"previous_event_tickets_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"5.5.4\";i:2;s:5:\"5.5.5\";i:3;s:7:\"5.6.8.1\";i:4;s:5:\"5.7.0\";i:5;s:6:\"5.12.0\";}s:28:\"latest_event_tickets_version\";s:8:\"5.13.3.1\";s:29:\"tribe_tickets_migrate_offset_\";s:8:\"complete\";s:33:\"last-update-message-event-tickets\";s:5:\"5.5.4\";s:36:\"previous_event_tickets_plus_versions\";a:5:{i:0;s:1:\"0\";i:1;s:5:\"5.6.4\";i:2;s:5:\"5.7.7\";i:3;s:5:\"5.8.0\";i:4;s:5:\"6.0.0\";}s:33:\"latest_event_tickets_plus_version\";s:5:\"6.0.2\";s:33:\"event-tickets-plus-schema-version\";s:5:\"6.0.2\";s:31:\"tickets-plus-qr-options-api-key\";s:8:\"fb89abb8\";s:24:\"tickets_commerce_enabled\";b:1;s:30:\"tickets-commerce-checkout-page\";s:2:\"16\";s:29:\"tickets-commerce-success-page\";s:2:\"17\";s:24:\"tickets-commerce-sandbox\";b:1;s:31:\"tickets-commerce-stock-handling\";s:7:\"pending\";s:30:\"tickets-commerce-currency-code\";s:3:\"USD\";s:34:\"tickets-commerce-currency-position\";s:6:\"prefix\";s:48:\"tickets-commerce-confirmation-email-sender-email\";s:20:\"admin@wordpress.test\";s:47:\"tickets-commerce-confirmation-email-sender-name\";s:5:\"admin\";s:43:\"tickets-commerce-confirmation-email-subject\";s:17:\"You have tickets!\";s:13:\"earliest_date\";s:19:\"2019-01-01 15:00:00\";s:21:\"earliest_date_markers\";a:1:{i:0;i:18;}s:11:\"latest_date\";s:19:\"2019-01-01 18:00:00\";s:19:\"latest_date_markers\";a:1:{i:0;i:18;}s:30:\"event-automator-schema-version\";s:5:\"1.7.0\";s:13:\"opt-in-status\";b:0;s:43:\"tec_tickets_commerce_stripe_webhook_version\";s:8:\"5.13.3.1\";}','yes'),(125,'action_scheduler_hybrid_store_demarkation','1','yes'),(126,'schema-ActionScheduler_StoreSchema','7.0.1700225495','yes'),(127,'schema-ActionScheduler_LoggerSchema','3.0.1666777404','yes'),(130,'tribe_last_save_post','1727267593.52','yes'),(131,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(135,'tec_ct1_events_table_schema_version','1.0.1','yes'),(136,'tec_ct1_occurrences_table_schema_version','1.0.2','yes'),(137,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','yes'),(140,'tribe_last_generate_rewrite_rules','1727267593.4878','yes'),(142,'action_scheduler_lock_async-request-runner','66f402e4ad0f44.69465166|1727267616','yes'),(144,'fs_active_plugins','O:8:\"stdClass\":2:{s:7:\"plugins\";a:0:{}s:7:\"abspath\";s:54:\"/Users/brianjessee/Local Sites/tribe/tests/app/public/\";}','yes'),(145,'fs_debug_mode','','yes'),(146,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}','yes'),(147,'fs_gdpr','a:2:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(150,'wp_page_for_privacy_policy','0','yes'),(151,'show_comments_cookies_opt_in','1','yes'),(153,'disallowed_keys','','no'),(154,'comment_previously_approved','1','yes'),(155,'auto_plugin_theme_update_emails','a:0:{}','no'),(156,'auto_update_core_dev','enabled','yes'),(157,'auto_update_core_minor','enabled','yes'),(158,'auto_update_core_major','unset','yes'),(159,'wp_force_deactivated_plugins','a:0:{}','yes'),(160,'finished_updating_comment_type','1','yes'),(161,'user_count','1','no'),(162,'db_upgraded','','yes'),(171,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"admin@wordpress.test\";s:7:\"version\";s:5:\"6.1.1\";s:9:\"timestamp\";i:1670232824;}','no'),(172,'recovery_keys','a:1:{s:22:\"XtMzHsMEnupZW70KCLjeTw\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B.xHePRjPeG/X2X7GWPTRH5yp7qCdS/\";s:10:\"created_at\";i:1700228528;}}','yes'),(177,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}}','yes'),(226,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":3,\"critical\":1}','yes'),(260,'recently_activated','a:0:{}','yes'),(295,'fs_api_cache','a:0:{}','no'),(397,'tec_timed_tribe_supports_async_process','a:3:{s:3:\"key\";s:28:\"tribe_supports_async_process\";s:5:\"value\";N;s:10:\"expiration\";i:1727267604;}','yes'),(430,'edd_settings','a:6:{s:13:\"purchase_page\";i:4;s:12:\"success_page\";i:5;s:12:\"failure_page\";i:6;s:21:\"purchase_history_page\";i:7;s:17:\"confirmation_page\";i:8;s:20:\"stripe_elements_mode\";s:16:\"payment-elements\";}','yes'),(431,'edd_use_php_sessions','1','yes'),(433,'edd_activation_date','1672924302','yes'),(436,'edd_default_api_version','v2','yes'),(437,'edd_completed_upgrades','a:17:{i:0;s:21:\"upgrade_payment_taxes\";i:1;s:37:\"upgrade_customer_payments_association\";i:2;s:21:\"upgrade_user_api_keys\";i:3;s:25:\"remove_refunded_sale_logs\";i:4;s:29:\"update_file_download_log_data\";i:5;s:17:\"migrate_tax_rates\";i:6;s:17:\"migrate_discounts\";i:7;s:14:\"migrate_orders\";i:8;s:26:\"migrate_customer_addresses\";i:9;s:32:\"migrate_customer_email_addresses\";i:10;s:22:\"migrate_customer_notes\";i:11;s:12:\"migrate_logs\";i:12;s:19:\"migrate_order_notes\";i:13;s:23:\"v30_legacy_data_removed\";i:14;s:28:\"stripe_customer_id_migration\";i:15;s:26:\"migrate_order_actions_date\";i:16;s:19:\"discounts_start_end\";}','yes'),(438,'edd_version','3.2.6','yes'),(439,'_transient_edd_cache_excluded_uris','a:4:{i:0;s:3:\"p=4\";i:1;s:3:\"p=5\";i:2;s:9:\"/checkout\";i:3;s:8:\"/receipt\";}','yes'),(440,'widget_edd_cart_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(441,'widget_edd_categories_tags_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(442,'widget_edd_product_details','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(444,'_transient_edd-sc-receipt-check','86400','yes'),(445,'edds_stripe_version','2.8.13.1','yes'),(446,'wpdb_edd_customers_version','202303220','yes'),(447,'wpdb_edd_customermeta_version','201807111','yes'),(448,'wpdb_edd_customer_addresses_version','202004051','yes'),(449,'wpdb_edd_customer_email_addresses_version','202002141','yes'),(450,'wpdb_edd_adjustments_version','202307311','yes'),(451,'wpdb_edd_adjustmentmeta_version','201806142','yes'),(452,'wpdb_edd_notes_version','202002141','yes'),(454,'wpdb_edd_notemeta_version','201805221','yes'),(455,'wpdb_edd_orders_version','202307111','yes'),(456,'wpdb_edd_ordermeta_version','201805221','yes'),(457,'wpdb_edd_order_items_version','202110141','yes'),(458,'wpdb_edd_order_itemmeta_version','201805221','yes'),(459,'wpdb_edd_order_adjustments_version','202105221','yes'),(460,'wpdb_edd_order_adjustmentmeta_version','201805221','yes'),(461,'wpdb_edd_order_addresses_version','202002141','yes'),(462,'wpdb_edd_order_transactions_version','202205241','yes'),(463,'wpdb_edd_logs_version','202002141','yes'),(464,'wpdb_edd_logmeta_version','201805221','yes'),(465,'wpdb_edd_logs_api_requests_version','202002141','yes'),(466,'wpdb_edd_logs_api_requestmeta_version','201907291','yes'),(467,'wpdb_edd_logs_file_downloads_version','202002141','yes'),(468,'wpdb_edd_logs_file_downloadmeta_version','201907291','yes'),(469,'edd_licensed_extensions','{\"timeout\":1727353993,\"products\":[]}','no'),(470,'edd_tracking_notice','1','yes'),(475,'woocommerce_schema_version','430','yes'),(476,'woocommerce_store_address','101 South Street','yes'),(477,'woocommerce_store_address_2','','yes'),(478,'woocommerce_store_city','New York','yes'),(479,'woocommerce_default_country','US:NY','yes'),(480,'woocommerce_store_postcode','10001','yes'),(481,'woocommerce_allowed_countries','all','yes'),(482,'woocommerce_all_except_countries','a:0:{}','yes'),(483,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(484,'woocommerce_ship_to_countries','','yes'),(485,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(486,'woocommerce_default_customer_address','base','yes'),(487,'woocommerce_calc_taxes','no','yes'),(488,'woocommerce_enable_coupons','yes','yes'),(489,'woocommerce_calc_discounts_sequentially','no','no'),(490,'woocommerce_currency','USD','yes'),(491,'woocommerce_currency_pos','left','yes'),(492,'woocommerce_price_thousand_sep',',','yes'),(493,'woocommerce_price_decimal_sep','.','yes'),(494,'woocommerce_price_num_decimals','2','yes'),(495,'woocommerce_shop_page_id','10','yes'),(496,'woocommerce_cart_redirect_after_add','no','yes'),(497,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(498,'woocommerce_placeholder_image','9','yes'),(499,'woocommerce_weight_unit','kg','yes'),(500,'woocommerce_dimension_unit','cm','yes'),(501,'woocommerce_enable_reviews','yes','yes'),(502,'woocommerce_review_rating_verification_label','yes','no'),(503,'woocommerce_review_rating_verification_required','no','no'),(504,'woocommerce_enable_review_rating','yes','yes'),(505,'woocommerce_review_rating_required','yes','no'),(506,'woocommerce_manage_stock','yes','yes'),(507,'woocommerce_hold_stock_minutes','60','no'),(508,'woocommerce_notify_low_stock','yes','no'),(509,'woocommerce_notify_no_stock','yes','no'),(510,'woocommerce_stock_email_recipient','admin@wordpress.test','no'),(511,'woocommerce_notify_low_stock_amount','2','no'),(512,'woocommerce_notify_no_stock_amount','0','yes'),(513,'woocommerce_hide_out_of_stock_items','no','yes'),(514,'woocommerce_stock_format','','yes'),(515,'woocommerce_file_download_method','force','no'),(516,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(517,'woocommerce_downloads_require_login','no','no'),(518,'woocommerce_downloads_grant_access_after_payment','yes','no'),(519,'woocommerce_downloads_deliver_inline','','no'),(520,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(522,'woocommerce_attribute_lookup_direct_updates','no','yes'),(523,'woocommerce_prices_include_tax','no','yes'),(524,'woocommerce_tax_based_on','shipping','yes'),(525,'woocommerce_shipping_tax_class','inherit','yes'),(526,'woocommerce_tax_round_at_subtotal','no','yes'),(527,'woocommerce_tax_classes','','yes'),(528,'woocommerce_tax_display_shop','excl','yes'),(529,'woocommerce_tax_display_cart','excl','yes'),(530,'woocommerce_price_display_suffix','','yes'),(531,'woocommerce_tax_total_display','itemized','no'),(532,'woocommerce_enable_shipping_calc','yes','no'),(533,'woocommerce_shipping_cost_requires_address','no','yes'),(534,'woocommerce_ship_to_destination','billing','no'),(535,'woocommerce_shipping_debug_mode','no','yes'),(536,'woocommerce_enable_guest_checkout','yes','no'),(537,'woocommerce_enable_checkout_login_reminder','no','no'),(538,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(539,'woocommerce_enable_myaccount_registration','no','no'),(540,'woocommerce_registration_generate_username','yes','no'),(541,'woocommerce_registration_generate_password','yes','no'),(542,'woocommerce_erasure_request_removes_order_data','no','no'),(543,'woocommerce_erasure_request_removes_download_data','no','no'),(544,'woocommerce_allow_bulk_remove_personal_data','no','no'),(545,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(546,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(547,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(548,'woocommerce_trash_pending_orders','','no'),(549,'woocommerce_trash_failed_orders','','no'),(550,'woocommerce_trash_cancelled_orders','','no'),(551,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(552,'woocommerce_email_from_name','Wordpress Test','no'),(553,'woocommerce_email_from_address','admin@wordpress.test','no'),(554,'woocommerce_email_header_image','','no'),(555,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(556,'woocommerce_email_base_color','#7f54b3','no'),(557,'woocommerce_email_background_color','#f7f7f7','no'),(558,'woocommerce_email_body_background_color','#ffffff','no'),(559,'woocommerce_email_text_color','#3c3c3c','no'),(560,'woocommerce_merchant_email_notifications','no','no'),(561,'woocommerce_cart_page_id','11','no'),(562,'woocommerce_checkout_page_id','12','no'),(563,'woocommerce_myaccount_page_id','13','no'),(564,'woocommerce_terms_page_id','','no'),(565,'woocommerce_force_ssl_checkout','no','yes'),(566,'woocommerce_unforce_ssl_checkout','no','yes'),(567,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(568,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(569,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(570,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(571,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(572,'woocommerce_myaccount_orders_endpoint','orders','yes'),(573,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(574,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(575,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(576,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(577,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(578,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(579,'woocommerce_logout_endpoint','customer-logout','yes'),(580,'woocommerce_api_enabled','no','yes'),(581,'woocommerce_allow_tracking','no','no'),(582,'woocommerce_show_marketplace_suggestions','yes','no'),(583,'woocommerce_analytics_enabled','yes','yes'),(584,'woocommerce_navigation_enabled','no','yes'),(585,'woocommerce_feature_custom_order_tables_enabled','no','yes'),(586,'woocommerce_single_image_width','600','yes'),(587,'woocommerce_thumbnail_image_width','300','yes'),(588,'woocommerce_checkout_highlight_required_fields','yes','yes'),(589,'woocommerce_demo_store','no','no'),(590,'wc_downloads_approved_directories_mode','enabled','yes'),(591,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(592,'current_theme_supports_woocommerce','yes','yes'),(593,'woocommerce_queue_flush_rewrite_rules','no','yes'),(595,'product_cat_children','a:0:{}','yes'),(596,'default_product_cat','15','yes'),(598,'woocommerce_refund_returns_page_id','14','yes'),(601,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:20:\"admin@wordpress.test\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:20:\"admin@wordpress.test\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(602,'woocommerce_version','9.0.2','yes'),(603,'woocommerce_db_version','8.2.2','yes'),(604,'woocommerce_admin_install_timestamp','1672924314','yes'),(605,'woocommerce_inbox_variant_assignment','3','yes'),(609,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(610,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";}','yes'),(611,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"0jxv9z7mXPj1LeMzhbPKfp8fWZJxPthz\";}','yes'),(612,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(613,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(614,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(615,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(616,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(617,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(618,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(619,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(620,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(621,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(622,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(623,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(624,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(625,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(630,'_transient_woocommerce_shipping_task_zone_count_transient','0','yes'),(631,'wc_blocks_db_schema_version','260','yes'),(632,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}','no'),(635,'_transient_woocommerce_reports-transient-version','1672924354','yes'),(643,'woocommerce_task_list_tracked_completed_tasks','a:3:{i:0;s:8:\"purchase\";i:1;s:13:\"store_details\";i:2;s:8:\"products\";}','yes'),(645,'woocommerce_onboarding_profile','a:10:{s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:20:\"admin@wordpress.test\";s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:5:\"other\";}}s:13:\"product_types\";a:1:{i:0;s:9:\"downloads\";}s:13:\"product_count\";s:1:\"0\";s:14:\"selling_venues\";s:2:\"no\";s:12:\"setup_client\";b:1;s:19:\"business_extensions\";a:0:{}s:9:\"completed\";b:1;}','yes'),(647,'woocommerce_task_list_dismissed_tasks','a:0:{}','yes'),(651,'woocommerce_task_list_prompt_shown','1','yes'),(660,'woocommerce_default_homepage_layout','two_columns','yes'),(661,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:5:\"setup\";i:1;s:8:\"extended\";}','yes'),(744,'external_updates-event-tickets-plus','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1727267593;s:14:\"checkedVersion\";s:5:\"6.0.2\";s:6:\"update\";N;}','no'),(745,'tribe_pue_key_notices','a:0:{}','yes'),(774,'_transient_product_query-transient-version','1700223858','yes'),(820,'edd_version_upgraded_from','3.2.5','no'),(842,'edds_notice_edd-stripe-core_dismissed','1','yes'),(852,'tec_automator_power_automate_secret_key','884cc3ff27ae261b9ede80398ec4f9716058623b02ba6207570a618fdf0af157817bf099d649883f6eb308b2abfc1c131675620e728abc5e99bc731578730a634466e6d855aba8e5962f66b5a81b07720a66435726c4d8c11b19b9878c9554323266baeda87a58f510ddabac230fd9144e8964e3c4e6a303646b33e937996351','yes'),(855,'_transient_product-transient-version','1700223858','yes'),(858,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(859,'wc_blocks_version','11.1.3','yes'),(860,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(861,'tec_freemius_accounts_archive','s:3742:\"a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}\";','yes'),(862,'tec_freemius_accounts_data_archive','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";a:24:{s:10:\"tec_fs_key\";s:9:\"FS_Plugin\";s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";a:24:{s:10:\"tec_fs_key\";s:9:\"FS_Plugin\";s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}','yes'),(863,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}s:13:\"event-tickets\";a:2:{s:7:\"wp_slug\";s:31:\"event-tickets/event-tickets.php\";s:5:\"optin\";b:0;}}}','yes'),(864,'stellarwp_telemetry_event-tickets_show_optin','0','yes'),(865,'stellarwp_telemetry_the-events-calendar_show_optin','0','yes'),(866,'tec_freemius_plugins_archive','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:36:\"event-tickets/common/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.4\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1670325882;s:11:\"plugin_path\";s:31:\"event-tickets/event-tickets.php\";}}s:7:\"abspath\";s:54:\"/Users/brianjessee/Local Sites/tribe/tests/app/public/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:31:\"event-tickets/event-tickets.php\";s:8:\"sdk_path\";s:36:\"event-tickets/common/vendor/freemius\";s:7:\"version\";s:5:\"2.4.4\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1670325882;}}','yes'),(867,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(870,'woocommerce_custom_orders_table_enabled','no','yes'),(871,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(872,'woocommerce_custom_orders_table_created','yes','yes'),(873,'woocommerce_feature_marketplace_enabled','yes','yes'),(874,'woocommerce_feature_product_block_editor_enabled','no','yes'),(880,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1727353993;}','yes'),(881,'stellarwp_telemetry_last_send','','yes'),(885,'wcpay_was_in_use','no','yes'),(888,'external_updates-event-automator','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1700226153;s:14:\"checkedVersion\";N;s:6:\"update\";O:19:\"Tribe__PUE__Utility\":12:{s:2:\"id\";i:0;s:6:\"plugin\";s:35:\"event-automator/event-automator.php\";s:4:\"slug\";s:15:\"event-automator\";s:7:\"version\";s:5:\"1.4.0\";s:8:\"homepage\";s:20:\"https://evnt.is/1bc7\";s:12:\"download_url\";s:245:\"https://pue.theeventscalendar.com/api/plugins/v2/download?plugin=event-automator&version=1.4.0&installed_version&domain=localhost&multisite=0&network_activated=0&active_sites=1&wp_version=6.2.2&key=5f53261eb16f7ddf4fe24b69918c8804c82ea817&dk&o=o\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:245:\"Event Automator, a premium add-on to the open source The Events Calendar plugin or Event Tickets (at least one required), that lets you connect your apps and automate workflows for lead management, communication outreach, and internal processes.\";s:12:\"installation\";s:366:\"Installing Event Automator is easy: just back up your site, download/install The Events Calendar and/or Event Tickets from the WordPress.org repo, and download/install Event Automator from theeventscalendar.com. Activate them both and you\'ll be good to go! If you\'re still confused or encounter problems, check out part 1 of our new user primer (http://m.tri.be/4i).\";s:9:\"changelog\";s:515:\"

= [1.4.0] 2023-10-19 =

\r\n\r\n
    \r\n
  • Feature - Add Support for Microsoft Power Automate with Event Tickets and the new attendee, updated attendee, checkin, new orders, and refunded orders endpoints [EVA-96]
  • \r\n
  • Feature - Add Support for Microsoft Power Automate with The Events Calendar and the new event, updated event, canceled event, and action to create events endpoints [EVA-88]
  • \r\n
  • Fix - Prevent multiple attendees from being added to the queue when doing bulk checkin. [EVA-102]
  • \r\n
\";}s:14:\"upgrade_notice\";s:0:\"\";s:13:\"custom_update\";O:8:\"stdClass\":1:{s:5:\"icons\";O:8:\"stdClass\":1:{s:3:\"svg\";s:76:\"https://images.theeventscalendar.com/uploads/2023/01/EventAutomator-icon.svg\";}}s:13:\"license_error\";N;s:11:\"api_expired\";b:0;s:11:\"api_upgrade\";b:0;}}','no'),(895,'pue_install_key_event_automator','5f53261eb16f7ddf4fe24b69918c8804c82ea817','yes'),(901,'edd_onboarding_completed','1','no'),(929,'wpdb_edd_notifications_version','202303220','yes'),(955,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727267593;s:8:\"response\";a:1:{s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.3.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.4.1\";s:12:\"requires_php\";s:3:\"7.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:33:\"coupon-creator/coupon_creator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/coupon-creator\";s:4:\"slug\";s:14:\"coupon-creator\";s:6:\"plugin\";s:33:\"coupon-creator/coupon_creator.php\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/coupon-creator/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/coupon-creator.3.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";s:3:\"svg\";s:59:\"https://ps.w.org/coupon-creator/assets/icon.svg?rev=2688941\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/coupon-creator/assets/banner-1544x500.png?rev=2688941\";s:2:\"1x\";s:69:\"https://ps.w.org/coupon-creator/assets/banner-772x250.png?rev=2688941\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:5:\"3.2.5\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:5:\"5.7.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/event-tickets.5.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.2.8\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.2.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.2.0\";}}s:7:\"checked\";a:15:{s:33:\"ai-development/ai-development.php\";s:5:\"0.1.0\";s:33:\"coupon-creator/coupon_creator.php\";s:5:\"3.3.0\";s:49:\"coupon-creator-add-ons/coupon-creator-add-ons.php\";s:5:\"3.3.0\";s:41:\"coupon-creator-pro/coupon-creator-pro.php\";s:5:\"3.3.0\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:5:\"3.2.5\";s:31:\"event-tickets/event-tickets.php\";s:5:\"5.7.0\";s:41:\"event-tickets-plus/event-tickets-plus.php\";s:5:\"5.8.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.0\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"6.2.8\";s:35:\"event-automator/event-automator.php\";s:5:\"1.3.1\";s:33:\"events-virtual/events-virtual.php\";s:6:\"1.15.5\";s:34:\"events-pro/events-calendar-pro.php\";s:5:\"6.2.4\";s:29:\"volt-vectors/volt-vectors.php\";s:5:\"0.1.0\";s:37:\"volt-vectors-pro/volt-vectors-pro.php\";s:5:\"0.1.0\";s:27:\"woocommerce/woocommerce.php\";s:5:\"8.2.2\";}}','no'),(987,'_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.4.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.4.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.1\";s:7:\"version\";s:5:\"6.4.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1727267587;s:15:\"version_checked\";s:5:\"6.4.1\";s:12:\"translations\";a:0:{}}','no'),(988,'wp_attachment_pages_enabled','1','yes'),(992,'can_compress_scripts','0','yes'),(993,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1727267587;s:7:\"checked\";a:4:{s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"2.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.0.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.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(1004,'recovery_mode_email_last_sent','1700228527','yes'),(1019,'wc_remote_inbox_notifications_wca_updated','','no'),(1036,'tec_timed_events_timezone_update_needed','a:3:{s:3:\"key\";s:29:\"events_timezone_update_needed\";s:5:\"value\";b:0;s:10:\"expiration\";i:1700316213;}','yes'),(1047,'tribe_feature_support_check_lock','1','yes'),(1058,'woocommerce_product_match_featured_image_by_sku','no','yes'),(1059,'woocommerce_feature_order_attribution_enabled','yes','yes'),(1060,'woocommerce_hpos_fts_index_enabled','no','yes'),(1061,'woocommerce_store_id','96c28bc3-48bf-41eb-9737-dbb695f270ce','yes'),(1062,'woocommerce_remote_variant_assignment','59','yes'),(1063,'woocommerce_attribute_lookup_regeneration_in_progress','yes','yes'),(1064,'woocommerce_attribute_lookup_last_product_id_to_process','19','yes'),(1065,'woocommerce_attribute_lookup_processed_count','0','yes'),(1066,'_transient_timeout__woocommerce_upload_directory_status','1721244733','no'),(1067,'_transient__woocommerce_upload_directory_status','protected','no'),(1072,'rewrite_rules','a:498:{s:21:\"tickets/([0-9]{1,})/?\";s:43:\"index.php?p=$matches[1]&tribe-edit-orders=1\";s:29:\"(?:attendee\\-registration)/?$\";s:33:\"index.php?attendee-registration=1\";s:28:\"tribe/events/kitchen-sink/?$\";s:69:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=page\";s:93:\"tribe/events/kitchen-sink/(page|grid|typographical|elements|events-bar|navigation|manager)/?$\";s:76:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=$matches[1]\";s:28:\"event-aggregator/(insert)/?$\";s:53:\"index.php?tribe-aggregator=1&tribe-action=$matches[1]\";s:25:\"(?:event)/([^/]+)/ical/?$\";s:56:\"index.php?ical=1&name=$matches[1]&post_type=tribe_events\";s:28:\"(?:events)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=default&paged=$matches[1]\";s:41:\"(?:events)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&paged=$matches[1]\";s:38:\"(?:events)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=list&feed=$matches[1]\";s:51:\"(?:events)/(?:featured)/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&feed=$matches[1]\";s:23:\"(?:events)/(?:month)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=month\";s:36:\"(?:events)/(?:month)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=month&featured=1\";s:37:\"(?:events)/(?:month)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:37:\"(?:events)/(?:list)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1&paged=$matches[1]\";s:22:\"(?:events)/(?:list)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=list\";s:35:\"(?:events)/(?:list)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1\";s:23:\"(?:events)/(?:today)/?$\";s:49:\"index.php?post_type=tribe_events&eventDisplay=day\";s:36:\"(?:events)/(?:today)/(?:featured)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=day&featured=1\";s:27:\"(?:events)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:40:\"(?:events)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&featured=1\";s:33:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]\";s:46:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:26:\"(?:events)/(?:featured)/?$\";s:43:\"index.php?post_type=tribe_events&featured=1\";s:13:\"(?:events)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=default\";s:18:\"(?:events)/ical/?$\";s:39:\"index.php?post_type=tribe_events&ical=1\";s:31:\"(?:events)/(?:featured)/ical/?$\";s:50:\"index.php?post_type=tribe_events&ical=1&featured=1\";s:38:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:78:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]\";s:51:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:60:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&featured=1\";s:69:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:82:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&featured=1\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:59:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/?$\";s:102:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:113:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:65:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:78:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&feed=rss2\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&feed=rss2\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/ical/?$\";s:68:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&ical=1\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/ical/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&ical=1\";s:75:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&feed=$matches[2]\";s:88:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&feed=$matches[2]\";s:58:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=default\";s:45:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=default\";s:44:\"(?:events)/(?:tag)/([^/]+)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:month)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&featured=1\";s:53:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:66:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:list)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:today)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&featured=1\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:43:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/?$\";s:89:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:56:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:100:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:49:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:62:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/feed/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/ical/?$\";s:55:\"index.php?post_type=tribe_events&tag=$matches[1]&ical=1\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/ical/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&ical=1\";s:59:\"(?:events)/(?:tag)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&feed=$matches[2]\";s:72:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&feed=$matches[2]\";s:42:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/?$\";s:59:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1\";s:29:\"(?:events)/(?:tag)/([^/]+)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=default\";s:32:\"(?:event)/([^/]+)/(?:tickets)/?$\";s:78:\"index.php?tribe_events=$matches[1]&post_type=tribe_events&eventDisplay=tickets\";s:52:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:tickets)/?$\";s:100:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&post_type=tribe_events&eventDisplay=tickets\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:12:\"downloads/?$\";s:28:\"index.php?post_type=download\";s:42:\"downloads/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=download&feed=$matches[1]\";s:37:\"downloads/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=download&feed=$matches[1]\";s:29:\"downloads/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=download&paged=$matches[1]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:22:\"tribe-promoter-auth/?$\";s:37:\"index.php?tribe-promoter-auth-check=1\";s:8:\"event/?$\";s:32:\"index.php?post_type=tribe_events\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=tribe_events&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:33:\"category/(.+?)/edd-add(/(.*))?/?$\";s:55:\"index.php?category_name=$matches[1]&edd-add=$matches[3]\";s:36:\"category/(.+?)/edd-remove(/(.*))?/?$\";s:58:\"index.php?category_name=$matches[1]&edd-remove=$matches[3]\";s:33:\"category/(.+?)/edd-api(/(.*))?/?$\";s:55:\"index.php?category_name=$matches[1]&edd-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:30:\"tag/([^/]+)/edd-add(/(.*))?/?$\";s:45:\"index.php?tag=$matches[1]&edd-add=$matches[3]\";s:33:\"tag/([^/]+)/edd-remove(/(.*))?/?$\";s:48:\"index.php?tag=$matches[1]&edd-remove=$matches[3]\";s:30:\"tag/([^/]+)/edd-api(/(.*))?/?$\";s:45:\"index.php?tag=$matches[1]&edd-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"downloads/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?download_category=$matches[1]&feed=$matches[2]\";s:52:\"downloads/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?download_category=$matches[1]&feed=$matches[2]\";s:33:\"downloads/category/(.+?)/embed/?$\";s:50:\"index.php?download_category=$matches[1]&embed=true\";s:45:\"downloads/category/(.+?)/page/?([0-9]{1,})/?$\";s:57:\"index.php?download_category=$matches[1]&paged=$matches[2]\";s:27:\"downloads/category/(.+?)/?$\";s:39:\"index.php?download_category=$matches[1]\";s:54:\"downloads/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?download_tag=$matches[1]&feed=$matches[2]\";s:49:\"downloads/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?download_tag=$matches[1]&feed=$matches[2]\";s:30:\"downloads/tag/([^/]+)/embed/?$\";s:45:\"index.php?download_tag=$matches[1]&embed=true\";s:42:\"downloads/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?download_tag=$matches[1]&paged=$matches[2]\";s:24:\"downloads/tag/([^/]+)/?$\";s:34:\"index.php?download_tag=$matches[1]\";s:37:\"downloads/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"downloads/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"downloads/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"downloads/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"downloads/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"downloads/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"downloads/([^/]+)/embed/?$\";s:41:\"index.php?download=$matches[1]&embed=true\";s:30:\"downloads/([^/]+)/trackback/?$\";s:35:\"index.php?download=$matches[1]&tb=1\";s:50:\"downloads/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?download=$matches[1]&feed=$matches[2]\";s:45:\"downloads/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?download=$matches[1]&feed=$matches[2]\";s:38:\"downloads/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?download=$matches[1]&paged=$matches[2]\";s:45:\"downloads/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?download=$matches[1]&cpage=$matches[2]\";s:35:\"downloads/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?download=$matches[1]&wc-api=$matches[3]\";s:36:\"downloads/([^/]+)/edd-add(/(.*))?/?$\";s:50:\"index.php?download=$matches[1]&edd-add=$matches[3]\";s:39:\"downloads/([^/]+)/edd-remove(/(.*))?/?$\";s:53:\"index.php?download=$matches[1]&edd-remove=$matches[3]\";s:36:\"downloads/([^/]+)/edd-api(/(.*))?/?$\";s:50:\"index.php?download=$matches[1]&edd-api=$matches[3]\";s:41:\"downloads/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"downloads/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"downloads/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:53:\"downloads/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:45:\"downloads/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:56:\"downloads/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:42:\"downloads/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:53:\"downloads/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:34:\"downloads/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?download=$matches[1]&page=$matches[2]\";s:26:\"downloads/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"downloads/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"downloads/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"downloads/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"downloads/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"downloads/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:34:\"product/([^/]+)/edd-add(/(.*))?/?$\";s:49:\"index.php?product=$matches[1]&edd-add=$matches[3]\";s:37:\"product/([^/]+)/edd-remove(/(.*))?/?$\";s:52:\"index.php?product=$matches[1]&edd-remove=$matches[3]\";s:34:\"product/([^/]+)/edd-api(/(.*))?/?$\";s:49:\"index.php?product=$matches[1]&edd-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:40:\"product/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:51:\"product/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:43:\"product/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:54:\"product/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:40:\"product/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:51:\"product/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:58:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"ticket-meta-fieldset/([^/]+)/embed/?$\";s:53:\"index.php?ticket-meta-fieldset=$matches[1]&embed=true\";s:41:\"ticket-meta-fieldset/([^/]+)/trackback/?$\";s:47:\"index.php?ticket-meta-fieldset=$matches[1]&tb=1\";s:49:\"ticket-meta-fieldset/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?ticket-meta-fieldset=$matches[1]&paged=$matches[2]\";s:56:\"ticket-meta-fieldset/([^/]+)/comment-page-([0-9]{1,})/?$\";s:60:\"index.php?ticket-meta-fieldset=$matches[1]&cpage=$matches[2]\";s:46:\"ticket-meta-fieldset/([^/]+)/wc-api(/(.*))?/?$\";s:61:\"index.php?ticket-meta-fieldset=$matches[1]&wc-api=$matches[3]\";s:47:\"ticket-meta-fieldset/([^/]+)/edd-add(/(.*))?/?$\";s:62:\"index.php?ticket-meta-fieldset=$matches[1]&edd-add=$matches[3]\";s:50:\"ticket-meta-fieldset/([^/]+)/edd-remove(/(.*))?/?$\";s:65:\"index.php?ticket-meta-fieldset=$matches[1]&edd-remove=$matches[3]\";s:47:\"ticket-meta-fieldset/([^/]+)/edd-api(/(.*))?/?$\";s:62:\"index.php?ticket-meta-fieldset=$matches[1]&edd-api=$matches[3]\";s:52:\"ticket-meta-fieldset/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:63:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"ticket-meta-fieldset/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:64:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:56:\"ticket-meta-fieldset/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:67:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:53:\"ticket-meta-fieldset/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:64:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:45:\"ticket-meta-fieldset/([^/]+)(?:/([0-9]+))?/?$\";s:59:\"index.php?ticket-meta-fieldset=$matches[1]&page=$matches[2]\";s:37:\"ticket-meta-fieldset/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"ticket-meta-fieldset/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"ticket-meta-fieldset/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"ticket-meta-fieldset/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"ticket-meta-fieldset/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"ticket-meta-fieldset/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"venue/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"venue/([^/]+)/embed/?$\";s:44:\"index.php?tribe_venue=$matches[1]&embed=true\";s:26:\"venue/([^/]+)/trackback/?$\";s:38:\"index.php?tribe_venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&cpage=$matches[2]\";s:31:\"venue/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?tribe_venue=$matches[1]&wc-api=$matches[3]\";s:32:\"venue/([^/]+)/edd-add(/(.*))?/?$\";s:53:\"index.php?tribe_venue=$matches[1]&edd-add=$matches[3]\";s:35:\"venue/([^/]+)/edd-remove(/(.*))?/?$\";s:56:\"index.php?tribe_venue=$matches[1]&edd-remove=$matches[3]\";s:32:\"venue/([^/]+)/edd-api(/(.*))?/?$\";s:53:\"index.php?tribe_venue=$matches[1]&edd-api=$matches[3]\";s:37:\"venue/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"venue/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"venue/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:49:\"venue/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:41:\"venue/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:52:\"venue/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:38:\"venue/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:49:\"venue/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:30:\"venue/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?tribe_venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"venue/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"organizer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"organizer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"organizer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"organizer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"organizer/([^/]+)/embed/?$\";s:48:\"index.php?tribe_organizer=$matches[1]&embed=true\";s:30:\"organizer/([^/]+)/trackback/?$\";s:42:\"index.php?tribe_organizer=$matches[1]&tb=1\";s:38:\"organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&paged=$matches[2]\";s:45:\"organizer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&cpage=$matches[2]\";s:35:\"organizer/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?tribe_organizer=$matches[1]&wc-api=$matches[3]\";s:36:\"organizer/([^/]+)/edd-add(/(.*))?/?$\";s:57:\"index.php?tribe_organizer=$matches[1]&edd-add=$matches[3]\";s:39:\"organizer/([^/]+)/edd-remove(/(.*))?/?$\";s:60:\"index.php?tribe_organizer=$matches[1]&edd-remove=$matches[3]\";s:36:\"organizer/([^/]+)/edd-api(/(.*))?/?$\";s:57:\"index.php?tribe_organizer=$matches[1]&edd-api=$matches[3]\";s:41:\"organizer/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"organizer/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"organizer/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:53:\"organizer/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:45:\"organizer/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:56:\"organizer/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:42:\"organizer/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:53:\"organizer/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:34:\"organizer/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?tribe_organizer=$matches[1]&page=$matches[2]\";s:26:\"organizer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"organizer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"organizer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"organizer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:45:\"index.php?tribe_events=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:39:\"index.php?tribe_events=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&cpage=$matches[2]\";s:31:\"event/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?tribe_events=$matches[1]&wc-api=$matches[3]\";s:32:\"event/([^/]+)/edd-add(/(.*))?/?$\";s:54:\"index.php?tribe_events=$matches[1]&edd-add=$matches[3]\";s:35:\"event/([^/]+)/edd-remove(/(.*))?/?$\";s:57:\"index.php?tribe_events=$matches[1]&edd-remove=$matches[3]\";s:32:\"event/([^/]+)/edd-api(/(.*))?/?$\";s:54:\"index.php?tribe_events=$matches[1]&edd-api=$matches[3]\";s:37:\"event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"event/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:49:\"event/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:41:\"event/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:52:\"event/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:38:\"event/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:49:\"event/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?tribe_events=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"events/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:49:\"events/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:30:\"events/category/(.+?)/embed/?$\";s:49:\"index.php?tribe_events_cat=$matches[1]&embed=true\";s:42:\"events/category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tribe_events_cat=$matches[1]&paged=$matches[2]\";s:24:\"events/category/(.+?)/?$\";s:38:\"index.php?tribe_events_cat=$matches[1]\";s:41:\"deleted_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"deleted_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"deleted_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"deleted_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"deleted_event/([^/]+)/embed/?$\";s:46:\"index.php?deleted_event=$matches[1]&embed=true\";s:34:\"deleted_event/([^/]+)/trackback/?$\";s:40:\"index.php?deleted_event=$matches[1]&tb=1\";s:42:\"deleted_event/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&paged=$matches[2]\";s:49:\"deleted_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&cpage=$matches[2]\";s:39:\"deleted_event/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?deleted_event=$matches[1]&wc-api=$matches[3]\";s:40:\"deleted_event/([^/]+)/edd-add(/(.*))?/?$\";s:55:\"index.php?deleted_event=$matches[1]&edd-add=$matches[3]\";s:43:\"deleted_event/([^/]+)/edd-remove(/(.*))?/?$\";s:58:\"index.php?deleted_event=$matches[1]&edd-remove=$matches[3]\";s:40:\"deleted_event/([^/]+)/edd-api(/(.*))?/?$\";s:55:\"index.php?deleted_event=$matches[1]&edd-api=$matches[3]\";s:45:\"deleted_event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"deleted_event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:46:\"deleted_event/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:57:\"deleted_event/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:49:\"deleted_event/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:60:\"deleted_event/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:46:\"deleted_event/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:57:\"deleted_event/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:38:\"deleted_event/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?deleted_event=$matches[1]&page=$matches[2]\";s:30:\"deleted_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"deleted_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"deleted_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"deleted_event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:18:\"edd-add(/(.*))?/?$\";s:30:\"index.php?&edd-add=$matches[2]\";s:21:\"edd-remove(/(.*))?/?$\";s:33:\"index.php?&edd-remove=$matches[2]\";s:18:\"edd-api(/(.*))?/?$\";s:30:\"index.php?&edd-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:27:\"comments/edd-add(/(.*))?/?$\";s:30:\"index.php?&edd-add=$matches[2]\";s:30:\"comments/edd-remove(/(.*))?/?$\";s:33:\"index.php?&edd-remove=$matches[2]\";s:27:\"comments/edd-api(/(.*))?/?$\";s:30:\"index.php?&edd-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:30:\"search/(.+)/edd-add(/(.*))?/?$\";s:43:\"index.php?s=$matches[1]&edd-add=$matches[3]\";s:33:\"search/(.+)/edd-remove(/(.*))?/?$\";s:46:\"index.php?s=$matches[1]&edd-remove=$matches[3]\";s:30:\"search/(.+)/edd-api(/(.*))?/?$\";s:43:\"index.php?s=$matches[1]&edd-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:33:\"author/([^/]+)/edd-add(/(.*))?/?$\";s:53:\"index.php?author_name=$matches[1]&edd-add=$matches[3]\";s:36:\"author/([^/]+)/edd-remove(/(.*))?/?$\";s:56:\"index.php?author_name=$matches[1]&edd-remove=$matches[3]\";s:33:\"author/([^/]+)/edd-api(/(.*))?/?$\";s:53:\"index.php?author_name=$matches[1]&edd-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:55:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/edd-add(/(.*))?/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&edd-add=$matches[5]\";s:58:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/edd-remove(/(.*))?/?$\";s:86:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&edd-remove=$matches[5]\";s:55:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/edd-api(/(.*))?/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&edd-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:42:\"([0-9]{4})/([0-9]{1,2})/edd-add(/(.*))?/?$\";s:67:\"index.php?year=$matches[1]&monthnum=$matches[2]&edd-add=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/edd-remove(/(.*))?/?$\";s:70:\"index.php?year=$matches[1]&monthnum=$matches[2]&edd-remove=$matches[4]\";s:42:\"([0-9]{4})/([0-9]{1,2})/edd-api(/(.*))?/?$\";s:67:\"index.php?year=$matches[1]&monthnum=$matches[2]&edd-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:29:\"([0-9]{4})/edd-add(/(.*))?/?$\";s:46:\"index.php?year=$matches[1]&edd-add=$matches[3]\";s:32:\"([0-9]{4})/edd-remove(/(.*))?/?$\";s:49:\"index.php?year=$matches[1]&edd-remove=$matches[3]\";s:29:\"([0-9]{4})/edd-api(/(.*))?/?$\";s:46:\"index.php?year=$matches[1]&edd-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:63:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/edd-add(/(.*))?/?$\";s:100:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&edd-add=$matches[6]\";s:66:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/edd-remove(/(.*))?/?$\";s:103:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&edd-remove=$matches[6]\";s:63:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/edd-api(/(.*))?/?$\";s:100:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&edd-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:63:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:74:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:66:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:63:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:74:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:26:\"(.?.+?)/edd-add(/(.*))?/?$\";s:50:\"index.php?pagename=$matches[1]&edd-add=$matches[3]\";s:29:\"(.?.+?)/edd-remove(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&edd-remove=$matches[3]\";s:26:\"(.?.+?)/edd-api(/(.*))?/?$\";s:50:\"index.php?pagename=$matches[1]&edd-api=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\".?.+?/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:43:\".?.+?/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:35:\".?.+?/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:46:\".?.+?/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:32:\".?.+?/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:43:\".?.+?/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(1075,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(1076,'_transient_timeout_as-post-store-dependencies-met','1727279091','no'),(1077,'_transient_as-post-store-dependencies-met','yes','no'),(1078,'_transient_timeout_woocommerce_blocks_asset_api_script_data','1729859604','no'),(1079,'_transient_woocommerce_blocks_asset_api_script_data','{\"script_data\":{\"build\\/wc-settings.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-settings.js\",\"version\":\"b31b6165ac2a07ada0ff536d52b1466d\",\"dependencies\":[\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/wc-blocks-middleware.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-middleware.js\",\"version\":\"208988bfef8a0a939e506218fc806a2b\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"build\\/wc-blocks-data.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-data.js\",\"version\":\"6279193027a1b903984715859dfcbaab\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"build\\/wc-blocks-vendors.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-vendors.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/wc-blocks-registry.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-registry.js\",\"version\":\"ecaf398656735e56f2d30eafc248ef35\",\"dependencies\":[\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks.js\",\"version\":\"1159c1fb50bedb71fad49f8808017cfe\",\"dependencies\":[\"wp-blocks\",\"wp-compose\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/wc-blocks-shared-context.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-context.js\",\"version\":\"caa936d2b7c335001cfc366d96d8a569\",\"dependencies\":[\"wp-element\",\"wp-polyfill\"]},\"build\\/wc-blocks-shared-hocs.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/wc-blocks-shared-hocs.js\",\"version\":\"7243a9fa7264377a45413afae757013f\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/price-format.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-format.js\",\"version\":\"46126111d3b46712d9c0f0dbd873b138\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"build\\/blocks-checkout.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/blocks-checkout.js\",\"version\":\"cb1e22af331a53010b79e1484a5344bd\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/active-filters.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters.js\",\"version\":\"ed942f2e4631590ba01d30e045367abf\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/active-filters-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/active-filters-frontend.js\",\"version\":\"948664e8c5afa263b9c5dfda6dc2e83a\",\"dependencies\":[\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/all-products.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products.js\",\"version\":\"f478ea858b58d3507924bea2c4c214ad\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-products-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-products-frontend.js\",\"version\":\"d12119aa2d9e588535c80fe0310c869e\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/all-reviews.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/all-reviews.js\",\"version\":\"d578e628b1e1f0148c7bf60cfe1c602f\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/reviews-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-frontend.js\",\"version\":\"f7574b7910cac2f35291759fd35ce254\",\"dependencies\":[\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-compose\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"build\\/attribute-filter.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter.js\",\"version\":\"19c61fdb57ae1e3ee4c4465694e2e73f\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/attribute-filter-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/attribute-filter-frontend.js\",\"version\":\"10589e1dbed5b10fc6383d7730b8b091\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/breadcrumbs.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/breadcrumbs.js\",\"version\":\"779832775ebf460068025eadf0e90da7\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/catalog-sorting.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/catalog-sorting.js\",\"version\":\"70d26793890b54364d1bbd5bce8a2e5f\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/legacy-template.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/legacy-template.js\",\"version\":\"1deb4ed7bca43c65a86d8f5cd71d0f2e\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/customer-account.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/customer-account.js\",\"version\":\"cae8d20aaf0cf655dbdfdee65cb8690e\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/featured-category.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-category.js\",\"version\":\"3d12a7feebe4b68db6a36c9782d5ad32\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/featured-product.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/featured-product.js\",\"version\":\"e4170e4eaef5b2cd3a1ecc1620f83f6e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"build\\/filter-wrapper.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper.js\",\"version\":\"39a31dba3fd2d291ce2697866fa1c71d\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/filter-wrapper-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filter-wrapper-frontend.js\",\"version\":\"1c42e853788847e4cb9b601a4b29ff97\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"build\\/handpicked-products.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/handpicked-products.js\",\"version\":\"a19a347add2b45d53540cfee4e85f35a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/mini-cart.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart.js\",\"version\":\"dcafac4b01a7e074b1393897ae84166f\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/mini-cart-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-frontend.js\",\"version\":\"b922d0f8fc627b4c7695288bc4eb7d38\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/store-notices.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/store-notices.js\",\"version\":\"b0410f962bb163ecf804f85945494a69\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/price-filter.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter.js\",\"version\":\"d34658f1bc90f65917dff23469786540\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/price-filter-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/price-filter-frontend.js\",\"version\":\"4f2ef15ca232059ed0f17c7cfbea62f5\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"build\\/product-add-to-cart.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-add-to-cart-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-add-to-cart-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-best-sellers.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-best-sellers.js\",\"version\":\"5e118444ec6ac5c2b3b9440f9a558d7f\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-button.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-button-interactivity-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-button-interactivity-frontend.js\",\"version\":\"f231c36d2e6154d2cf545a864568f5e4\",\"dependencies\":[\"lodash\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"build\\/product-categories.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-categories.js\",\"version\":\"4c0c5bfa88e3bc2d34f8b7cd3089cbc1\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"build\\/product-category.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-category.js\",\"version\":\"bbc8aaa78e356a825d5c33c7e4fcce76\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-collection.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-collection.js\",\"version\":\"941432e3696193936d37736b8faf9837\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-new.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-new.js\",\"version\":\"54fd948597e5afa211abe9b37a3382e8\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-on-sale.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-on-sale.js\",\"version\":\"b39b1e40568e2dd5b37320e6dfa17f57\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-template.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-template.js\",\"version\":\"b73d4ef43094fefd8eb5a09bc3178c82\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"build\\/product-query.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query.js\",\"version\":\"b09016077f61d88bbd680cc641cef9ff\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/product-query-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-query-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-results-count.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-results-count.js\",\"version\":\"62389880d09bea807af392c535996912\",\"dependencies\":[\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-search.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-search.js\",\"version\":\"a32bcc8d5170d5a7d8e4c9854477f8f8\",\"dependencies\":[\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"build\\/product-summary.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-summary.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-tag.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-tag.js\",\"version\":\"74f9457abc552c377bfd00525d7f7ed6\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/product-title.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-title-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-title-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/product-top-rated.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/product-top-rated.js\",\"version\":\"635f63dff3d29cca693bd94a17659bda\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/products-by-attribute.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/products-by-attribute.js\",\"version\":\"73b9ca1ee1dfe920689b7c2ca1134bbb\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"build\\/rating-filter.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/rating-filter.js\",\"version\":\"8a60b8434a974c7d9e71c9863ee4a423\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/reviews-by-category.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-category.js\",\"version\":\"6ecfcf28de8997b8f93996a0bf52766c\",\"dependencies\":[\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/reviews-by-product.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/reviews-by-product.js\",\"version\":\"2a47a97286dbc7a2293f760ee2b21f6f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"build\\/single-product.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/single-product.js\",\"version\":\"7dc18ae07298254fb4c2c3f50f368333\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/stock-filter.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter.js\",\"version\":\"8bfac93830eed1003e87b254e7103dda\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/stock-filter-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/stock-filter-frontend.js\",\"version\":\"bb50cc5d94568fa66c1b2da4c7ab3060\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"build\\/cart.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart.js\",\"version\":\"23d484e326a0b12a525fb0d7beddac73\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-frontend.js\",\"version\":\"89e864cb281577fa4668ce653ccc6f41\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-cross-sells-products--product-price-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-cross-sells-products--product-price-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/billing-address--checkout-blocks\\/order--decc3dc6-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/billing-address--checkout-blocks\\/order--decc3dc6-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/order-summary-shipping--checkout-block--24d3fc0c-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/order-summary-shipping--checkout-blocks\\/order-summary-shipping--checkout-block--24d3fc0c-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/cart-cross-sells-products--cart-blocks\\/cart-line-items--cart-blocks\\/cart-order--3c5fe802-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/cart-cross-sells-products--cart-blocks\\/cart-line-items--cart-blocks\\/cart-order--3c5fe802-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--cart-blocks\\/cart-line-items--checkout-blocks\\/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--cart-blocks\\/cart-line-items--checkout-blocks\\/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-taxes-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/filled-cart-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-cart-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/empty-cart-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-cart-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-totals-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-totals-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-items-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-items-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-line-items-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-line-items-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-express-payment-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-express-payment-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/proceed-to-checkout-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/proceed-to-checkout-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-accepted-payment-methods-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-discount-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-fee-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-heading-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-heading-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-order-summary-shipping-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-cross-sells-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/cart-cross-sells-products-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/cart-cross-sells-products-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout.js\",\"version\":\"1b91965aaf315e8ca91923398605c910\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-frontend.js\",\"version\":\"a6427457ee65cfa508d1d3bcc982f8a8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/checkout-blocks\\/actions-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions--checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions--checkout-blocks\\/terms-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/fields-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/vendors--checkout-blocks\\/billing-address--checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/vendors--checkout-blocks\\/billing-address--checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-actions-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-actions-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-billing-address-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-billing-address-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-contact-information-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-contact-information-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-express-payment-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-express-payment-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-fields-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-fields-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-note-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-note-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-discount-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-fee-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-payment-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-payment-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-shipping-address-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-address-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-shipping-methods-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-methods-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-shipping-method-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-shipping-method-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-pickup-options-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-pickup-options-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-terms-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-terms-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/checkout-totals-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/checkout-totals-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-contents.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-contents.js\",\"version\":\"e9456573a7b01f9120587bf7edc5a57d\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"build\\/empty-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/empty-mini-cart-contents-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/filled-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/filled-mini-cart-contents-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-footer-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-footer-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-items-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-items-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-products-table-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-products-table-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-shopping-button-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-shopping-button-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-cart-button-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-cart-button-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-checkout-button-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-checkout-button-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-title-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-title-items-counter-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]},\"build\\/mini-cart-title-label-block.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/packages\\/woocommerce-blocks\\/build\\/mini-cart-title-label-block.js\",\"version\":\"11.1.3\",\"dependencies\":[]}},\"version\":\"11.1.3\",\"hash\":\"3adb2ead9e039f46ad573607fc0b4c0a\"}','no'),(1086,'_transient_timeout_edd_check_protection_files','1727353836','no'),(1087,'_transient_edd_check_protection_files','1','no'),(1088,'tec_automator_zapier_secret_key','d5a9a9f71472806969d56d56f307572cb25a589240effad4cfda6369610f4bcaf3222cfc106206a5c504790c234900aedc83ca4778858cdaeea3fb2782abee9567d1f6c7895bb29e580cab02c3ddcd83ea80e9b3452b573c073ff4db785fd653e494a15d689e2814a57229f433a55af3f0ac7c4ae9f660a4b9daa55bcc07b1c2','yes'),(1089,'_transient_timeout__tribe_admin_notices','1729859436','no'),(1090,'_transient__tribe_admin_notices','a:1:{s:44:\"updated-to-merge-version-consolidated-notice\";a:3:{i:0;s:200:\"

Thanks for upgrading Event Tickets Plus to 6.0.2 now with even more value! Learn more about the latest changes here.

\";i:1;a:5:{s:4:\"type\";s:7:\"success\";s:7:\"dismiss\";b:1;s:6:\"action\";s:13:\"admin_notices\";s:8:\"priority\";i:1;s:15:\"active_callback\";s:80:\"TEC\\Common\\Integrations\\Plugin_Merge_Provider_Abstract::should_show_merge_notice\";}i:2;i:1758803436;}}','no'),(1091,'_transient_timeout_wcpay_welcome_page_incentive','1727289187','no'),(1092,'_transient_wcpay_welcome_page_incentive','O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:25:\"http_request_not_executed\";a:1:{i:0;s:39:\"User has blocked requests through HTTP.\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}','no'),(1093,'_transient_timeout__woocommerce_helper_subscriptions','1727268487','no'),(1094,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(1095,'_site_transient_timeout_theme_roots','1727269387','no'),(1096,'_site_transient_theme_roots','a:1:{s:16:\"twentytwentyfour\";s:7:\"/themes\";}','no'),(1097,'_transient_timeout__woocommerce_helper_updates','1727310787','no'),(1098,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1727267587;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(1099,'_transient_timeout_wc_tracks_blog_details','1727353987','no'),(1100,'_transient_wc_tracks_blog_details','a:5:{s:3:\"url\";s:21:\"http://localhost:8888\";s:9:\"blog_lang\";s:5:\"en_US\";s:7:\"blog_id\";b:0;s:14:\"products_count\";s:1:\"1\";s:10:\"wc_version\";s:5:\"8.2.2\";}','no'),(1102,'_transient_timeout__tribe_events_activation_redirect','1727267623','no'),(1103,'_transient__tribe_events_activation_redirect','1','no'),(1104,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1727872393','no'),(1105,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:1:{s:5:\"en_US\";a:0:{}}','no'),(1110,'_transient_timeout_tribe_aggregator_services_list','1727353993','no'),(1111,'_transient_tribe_aggregator_services_list','a:1:{s:6:\"origin\";a:1:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";s:3:\"csv\";s:4:\"name\";s:8:\"CSV File\";}}}','no'); +INSERT INTO `wp_options` VALUES (1,'siteurl','http://wordpress.test','yes'),(2,'home','http://wordpress.test','yes'),(3,'blogname','Wordpress Test','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@wordpress.test','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:5:{i:0;s:49:\"easy-digital-downloads/easy-digital-downloads.php\";i:1;s:41:\"event-tickets-plus/event-tickets-plus.php\";i:2;s:31:\"event-tickets/event-tickets.php\";i:3;s:43:\"the-events-calendar/the-events-calendar.php\";i:4;s:27:\"woocommerce/woocommerce.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','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','57155','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:3:{s:43:\"the-events-calendar/the-events-calendar.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:31:\"event-tickets/event-tickets.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:35:\"event-automator/event-automator.php\";s:23:\"tec_automator_uninstall\";}','no'),(82,'timezone_string','America/New_York','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:199:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"view_shop_reports\";b:1;s:24:\"view_shop_sensitive_data\";b:1;s:19:\"export_shop_reports\";b:1;s:21:\"manage_shop_discounts\";b:1;s:20:\"manage_shop_settings\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:74:{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:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:30:{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:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:126:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:19:\"delete_others_pages\";b:1;s:19:\"delete_others_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:17:\"edit_others_posts\";b:1;s:10:\"edit_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:13:\"publish_pages\";b:1;s:13:\"publish_posts\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:17:\"view_shop_reports\";b:1;s:24:\"view_shop_sensitive_data\";b:1;s:19:\"export_shop_reports\";b:1;s:20:\"manage_shop_settings\";b:1;s:21:\"manage_shop_discounts\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:15:\"shop_accountant\";a:2:{s:4:\"name\";s:15:\"Shop Accountant\";s:12:\"capabilities\";a:8:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"edit_products\";b:1;s:21:\"read_private_products\";b:1;s:17:\"view_shop_reports\";b:1;s:19:\"export_shop_reports\";b:1;s:18:\"edit_shop_payments\";b:1;}}s:11:\"shop_worker\";a:2:{s:4:\"name\";s:11:\"Shop Worker\";s:12:\"capabilities\";a:61:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:18:\"view_product_stats\";b:1;s:15:\"import_products\";b:1;s:17:\"edit_shop_payment\";b:1;s:17:\"read_shop_payment\";b:1;s:19:\"delete_shop_payment\";b:1;s:18:\"edit_shop_payments\";b:1;s:25:\"edit_others_shop_payments\";b:1;s:21:\"publish_shop_payments\";b:1;s:26:\"read_private_shop_payments\";b:1;s:20:\"delete_shop_payments\";b:1;s:28:\"delete_private_shop_payments\";b:1;s:30:\"delete_published_shop_payments\";b:1;s:27:\"delete_others_shop_payments\";b:1;s:26:\"edit_private_shop_payments\";b:1;s:28:\"edit_published_shop_payments\";b:1;s:25:\"manage_shop_payment_terms\";b:1;s:23:\"edit_shop_payment_terms\";b:1;s:25:\"delete_shop_payment_terms\";b:1;s:25:\"assign_shop_payment_terms\";b:1;s:23:\"view_shop_payment_stats\";b:1;s:20:\"import_shop_payments\";b:1;s:18:\"edit_shop_discount\";b:1;s:18:\"read_shop_discount\";b:1;s:20:\"delete_shop_discount\";b:1;s:19:\"edit_shop_discounts\";b:1;s:26:\"edit_others_shop_discounts\";b:1;s:22:\"publish_shop_discounts\";b:1;s:27:\"read_private_shop_discounts\";b:1;s:21:\"delete_shop_discounts\";b:1;s:29:\"delete_private_shop_discounts\";b:1;s:31:\"delete_published_shop_discounts\";b:1;s:28:\"delete_others_shop_discounts\";b:1;s:27:\"edit_private_shop_discounts\";b:1;s:29:\"edit_published_shop_discounts\";b:1;s:26:\"manage_shop_discount_terms\";b:1;s:24:\"edit_shop_discount_terms\";b:1;s:26:\"delete_shop_discount_terms\";b:1;s:26:\"assign_shop_discount_terms\";b:1;s:24:\"view_shop_discount_stats\";b:1;s:21:\"import_shop_discounts\";b:1;}}s:11:\"shop_vendor\";a:2:{s:4:\"name\";s:11:\"Shop Vendor\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:12:\"edit_product\";b:1;s:13:\"edit_products\";b:1;s:14:\"delete_product\";b:1;s:15:\"delete_products\";b:1;s:16:\"publish_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"assign_product_terms\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:28:{i:1736277257;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736277258;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1736277307;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1736279004;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:1736279491;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1736280703;a:1:{s:30:\"edds_cleanup_rate_limiting_log\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1736280719;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1736280783;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1736280846;a:1:{s:31:\"tec_tickets_seating_tables_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1736280847;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1736286224;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:1736288047;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736298845;a:3:{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:1736298847;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1736302951;a:1:{s:30:\"tribe_schedule_transient_purge\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1736312400;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736329404;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736329424;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:1736329426;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:1736335449;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736340691;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736340706;a:1:{s:26:\"edd_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736346559;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1736415804;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736513506;a:1:{s:27:\"edd_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736515553;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1736773200;a:1:{s:22:\"edd_email_summary_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(110,'theme_mods_twentyseventeen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(123,'tribe_last_updated_option','1736277249.2683','yes'),(124,'tribe_events_calendar_options','a:38:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:14:\"schema-version\";s:5:\"6.9.0\";s:21:\"previous_ecp_versions\";a:8:{i:0;s:1:\"0\";i:1;s:5:\"6.0.2\";i:2;s:7:\"6.0.3.1\";i:3;s:5:\"6.0.5\";i:4;s:7:\"6.0.6.2\";i:5;s:5:\"6.2.7\";i:6;s:5:\"6.2.8\";i:7;s:7:\"6.6.4.2\";}s:18:\"latest_ecp_version\";s:5:\"6.9.0\";s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:24:\"recurrenceMaxMonthsAfter\";i:60;s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:39:\"last-update-message-the-events-calendar\";s:5:\"6.2.8\";s:25:\"ticket-enabled-post-types\";a:2:{i:0;s:12:\"tribe_events\";i:1;s:4:\"page\";}s:28:\"event-tickets-schema-version\";s:6:\"5.18.0\";s:31:\"previous_event_tickets_versions\";a:7:{i:0;s:1:\"0\";i:1;s:5:\"5.5.4\";i:2;s:5:\"5.5.5\";i:3;s:7:\"5.6.8.1\";i:4;s:5:\"5.7.0\";i:5;s:6:\"5.12.0\";i:6;s:8:\"5.13.3.1\";}s:28:\"latest_event_tickets_version\";s:6:\"5.18.0\";s:29:\"tribe_tickets_migrate_offset_\";s:8:\"complete\";s:33:\"last-update-message-event-tickets\";s:5:\"5.5.4\";s:36:\"previous_event_tickets_plus_versions\";a:6:{i:0;s:1:\"0\";i:1;s:5:\"5.6.4\";i:2;s:5:\"5.7.7\";i:3;s:5:\"5.8.0\";i:4;s:5:\"6.0.0\";i:5;s:5:\"6.0.2\";}s:33:\"latest_event_tickets_plus_version\";s:5:\"6.1.2\";s:33:\"event-tickets-plus-schema-version\";s:5:\"6.1.2\";s:31:\"tickets-plus-qr-options-api-key\";s:8:\"fb89abb8\";s:24:\"tickets_commerce_enabled\";b:1;s:30:\"tickets-commerce-checkout-page\";s:2:\"16\";s:29:\"tickets-commerce-success-page\";s:2:\"17\";s:24:\"tickets-commerce-sandbox\";b:1;s:31:\"tickets-commerce-stock-handling\";s:7:\"pending\";s:30:\"tickets-commerce-currency-code\";s:3:\"USD\";s:34:\"tickets-commerce-currency-position\";s:6:\"prefix\";s:48:\"tickets-commerce-confirmation-email-sender-email\";s:20:\"admin@wordpress.test\";s:47:\"tickets-commerce-confirmation-email-sender-name\";s:5:\"admin\";s:43:\"tickets-commerce-confirmation-email-subject\";s:17:\"You have tickets!\";s:13:\"earliest_date\";s:19:\"2019-01-01 15:00:00\";s:21:\"earliest_date_markers\";a:1:{i:0;i:18;}s:11:\"latest_date\";s:19:\"2019-01-01 18:00:00\";s:19:\"latest_date_markers\";a:1:{i:0;i:18;}s:30:\"event-automator-schema-version\";s:5:\"1.7.0\";s:13:\"opt-in-status\";b:0;s:43:\"tec_tickets_commerce_stripe_webhook_version\";s:8:\"5.13.3.1\";}','yes'),(125,'action_scheduler_hybrid_store_demarkation','1','yes'),(126,'schema-ActionScheduler_StoreSchema','7.0.1700225495','yes'),(127,'schema-ActionScheduler_LoggerSchema','3.0.1666777404','yes'),(130,'tribe_last_save_post','1736277249.2684','yes'),(131,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(135,'tec_ct1_events_table_schema_version','1.0.1','yes'),(136,'tec_ct1_occurrences_table_schema_version','1.0.2','yes'),(137,'tec_ct1_migration_state','a:3:{s:18:\"complete_timestamp\";N;s:5:\"phase\";s:22:\"migration-not-required\";s:19:\"preview_unsupported\";b:0;}','yes'),(140,'tribe_last_generate_rewrite_rules','1736277247.6026','yes'),(142,'action_scheduler_lock_async-request-runner','677d7d01468a92.35497820|1736277309','yes'),(144,'fs_active_plugins','O:8:\"stdClass\":2:{s:7:\"plugins\";a:0:{}s:7:\"abspath\";s:54:\"/Users/brianjessee/Local Sites/tribe/tests/app/public/\";}','yes'),(145,'fs_debug_mode','','yes'),(146,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}','yes'),(147,'fs_gdpr','a:2:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(150,'wp_page_for_privacy_policy','0','yes'),(151,'show_comments_cookies_opt_in','1','yes'),(153,'disallowed_keys','','no'),(154,'comment_previously_approved','1','yes'),(155,'auto_plugin_theme_update_emails','a:0:{}','no'),(156,'auto_update_core_dev','enabled','yes'),(157,'auto_update_core_minor','enabled','yes'),(158,'auto_update_core_major','unset','yes'),(159,'wp_force_deactivated_plugins','a:0:{}','yes'),(160,'finished_updating_comment_type','1','yes'),(161,'user_count','1','no'),(162,'db_upgraded','1','yes'),(171,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"admin@wordpress.test\";s:7:\"version\";s:5:\"6.1.1\";s:9:\"timestamp\";i:1670232824;}','no'),(172,'recovery_keys','a:0:{}','yes'),(177,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}}','yes'),(226,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":8,\"critical\":4}','yes'),(260,'recently_activated','a:0:{}','yes'),(295,'fs_api_cache','a:0:{}','no'),(397,'tec_timed_tribe_supports_async_process','a:3:{s:3:\"key\";s:28:\"tribe_supports_async_process\";s:5:\"value\";N;s:10:\"expiration\";i:1736277270;}','yes'),(430,'edd_settings','a:6:{s:13:\"purchase_page\";i:4;s:12:\"success_page\";i:5;s:12:\"failure_page\";i:6;s:21:\"purchase_history_page\";i:7;s:17:\"confirmation_page\";i:8;s:20:\"stripe_elements_mode\";s:16:\"payment-elements\";}','yes'),(433,'edd_activation_date','1672924302','yes'),(436,'edd_default_api_version','v2','yes'),(437,'edd_completed_upgrades','a:18:{i:0;s:21:\"upgrade_payment_taxes\";i:1;s:37:\"upgrade_customer_payments_association\";i:2;s:21:\"upgrade_user_api_keys\";i:3;s:25:\"remove_refunded_sale_logs\";i:4;s:29:\"update_file_download_log_data\";i:5;s:17:\"migrate_tax_rates\";i:6;s:17:\"migrate_discounts\";i:7;s:14:\"migrate_orders\";i:8;s:26:\"migrate_customer_addresses\";i:9;s:32:\"migrate_customer_email_addresses\";i:10;s:22:\"migrate_customer_notes\";i:11;s:12:\"migrate_logs\";i:12;s:19:\"migrate_order_notes\";i:13;s:23:\"v30_legacy_data_removed\";i:14;s:28:\"stripe_customer_id_migration\";i:15;s:26:\"migrate_order_actions_date\";i:16;s:19:\"discounts_start_end\";i:17;s:21:\"edd_emails_registered\";}','yes'),(438,'edd_version','3.3.5.2','yes'),(439,'_transient_edd_cache_excluded_uris','a:4:{i:0;s:3:\"p=4\";i:1;s:3:\"p=5\";i:2;s:9:\"/checkout\";i:3;s:8:\"/receipt\";}','yes'),(440,'widget_edd_cart_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(441,'widget_edd_categories_tags_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(442,'widget_edd_product_details','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(444,'_transient_edd-sc-receipt-check','86400','yes'),(445,'edds_stripe_version','2.8.13.1','yes'),(446,'wpdb_edd_customers_version','202303220','yes'),(447,'wpdb_edd_customermeta_version','201807111','yes'),(448,'wpdb_edd_customer_addresses_version','202004051','yes'),(449,'wpdb_edd_customer_email_addresses_version','202002141','yes'),(450,'wpdb_edd_adjustments_version','202307311','yes'),(451,'wpdb_edd_adjustmentmeta_version','201806142','yes'),(452,'wpdb_edd_notes_version','202002141','yes'),(454,'wpdb_edd_notemeta_version','201805221','yes'),(455,'wpdb_edd_orders_version','202307111','yes'),(456,'wpdb_edd_ordermeta_version','201805221','yes'),(457,'wpdb_edd_order_items_version','202110141','yes'),(458,'wpdb_edd_order_itemmeta_version','201805221','yes'),(459,'wpdb_edd_order_adjustments_version','202105221','yes'),(460,'wpdb_edd_order_adjustmentmeta_version','201805221','yes'),(461,'wpdb_edd_order_addresses_version','202002141','yes'),(462,'wpdb_edd_order_transactions_version','202205241','yes'),(463,'wpdb_edd_logs_version','202002141','yes'),(464,'wpdb_edd_logmeta_version','201805221','yes'),(465,'wpdb_edd_logs_api_requests_version','202002141','yes'),(466,'wpdb_edd_logs_api_requestmeta_version','201907291','yes'),(467,'wpdb_edd_logs_file_downloads_version','202002141','yes'),(468,'wpdb_edd_logs_file_downloadmeta_version','201907291','yes'),(469,'edd_licensed_extensions','{\"timeout\":1736363649,\"products\":[]}','no'),(470,'edd_tracking_notice','1','yes'),(475,'woocommerce_schema_version','920','yes'),(476,'woocommerce_store_address','101 South Street','yes'),(477,'woocommerce_store_address_2','','yes'),(478,'woocommerce_store_city','New York','yes'),(479,'woocommerce_default_country','US:NY','yes'),(480,'woocommerce_store_postcode','10001','yes'),(481,'woocommerce_allowed_countries','all','yes'),(482,'woocommerce_all_except_countries','a:0:{}','yes'),(483,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(484,'woocommerce_ship_to_countries','','yes'),(485,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(486,'woocommerce_default_customer_address','base','yes'),(487,'woocommerce_calc_taxes','no','yes'),(488,'woocommerce_enable_coupons','yes','yes'),(489,'woocommerce_calc_discounts_sequentially','no','no'),(490,'woocommerce_currency','USD','yes'),(491,'woocommerce_currency_pos','left','yes'),(492,'woocommerce_price_thousand_sep',',','yes'),(493,'woocommerce_price_decimal_sep','.','yes'),(494,'woocommerce_price_num_decimals','2','yes'),(495,'woocommerce_shop_page_id','10','yes'),(496,'woocommerce_cart_redirect_after_add','no','yes'),(497,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(498,'woocommerce_placeholder_image','9','yes'),(499,'woocommerce_weight_unit','kg','yes'),(500,'woocommerce_dimension_unit','cm','yes'),(501,'woocommerce_enable_reviews','yes','yes'),(502,'woocommerce_review_rating_verification_label','yes','no'),(503,'woocommerce_review_rating_verification_required','no','no'),(504,'woocommerce_enable_review_rating','yes','yes'),(505,'woocommerce_review_rating_required','yes','no'),(506,'woocommerce_manage_stock','yes','yes'),(507,'woocommerce_hold_stock_minutes','60','no'),(508,'woocommerce_notify_low_stock','yes','no'),(509,'woocommerce_notify_no_stock','yes','no'),(510,'woocommerce_stock_email_recipient','admin@wordpress.test','no'),(511,'woocommerce_notify_low_stock_amount','2','no'),(512,'woocommerce_notify_no_stock_amount','0','yes'),(513,'woocommerce_hide_out_of_stock_items','no','yes'),(514,'woocommerce_stock_format','','yes'),(515,'woocommerce_file_download_method','force','no'),(516,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(517,'woocommerce_downloads_require_login','no','no'),(518,'woocommerce_downloads_grant_access_after_payment','yes','no'),(519,'woocommerce_downloads_deliver_inline','','no'),(520,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(522,'woocommerce_attribute_lookup_direct_updates','no','yes'),(523,'woocommerce_prices_include_tax','no','yes'),(524,'woocommerce_tax_based_on','shipping','yes'),(525,'woocommerce_shipping_tax_class','inherit','yes'),(526,'woocommerce_tax_round_at_subtotal','no','yes'),(527,'woocommerce_tax_classes','','yes'),(528,'woocommerce_tax_display_shop','excl','yes'),(529,'woocommerce_tax_display_cart','excl','yes'),(530,'woocommerce_price_display_suffix','','yes'),(531,'woocommerce_tax_total_display','itemized','no'),(532,'woocommerce_enable_shipping_calc','yes','no'),(533,'woocommerce_shipping_cost_requires_address','no','yes'),(534,'woocommerce_ship_to_destination','billing','no'),(535,'woocommerce_shipping_debug_mode','no','yes'),(536,'woocommerce_enable_guest_checkout','yes','no'),(537,'woocommerce_enable_checkout_login_reminder','no','no'),(538,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(539,'woocommerce_enable_myaccount_registration','no','no'),(540,'woocommerce_registration_generate_username','yes','no'),(541,'woocommerce_registration_generate_password','yes','no'),(542,'woocommerce_erasure_request_removes_order_data','no','no'),(543,'woocommerce_erasure_request_removes_download_data','no','no'),(544,'woocommerce_allow_bulk_remove_personal_data','no','no'),(545,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(546,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(547,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(548,'woocommerce_trash_pending_orders','','no'),(549,'woocommerce_trash_failed_orders','','no'),(550,'woocommerce_trash_cancelled_orders','','no'),(551,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(552,'woocommerce_email_from_name','Wordpress Test','no'),(553,'woocommerce_email_from_address','admin@wordpress.test','no'),(554,'woocommerce_email_header_image','','no'),(555,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(556,'woocommerce_email_base_color','#7f54b3','no'),(557,'woocommerce_email_background_color','#f7f7f7','no'),(558,'woocommerce_email_body_background_color','#ffffff','no'),(559,'woocommerce_email_text_color','#3c3c3c','no'),(560,'woocommerce_merchant_email_notifications','no','no'),(561,'woocommerce_cart_page_id','11','no'),(562,'woocommerce_checkout_page_id','12','no'),(563,'woocommerce_myaccount_page_id','13','no'),(564,'woocommerce_terms_page_id','','no'),(565,'woocommerce_force_ssl_checkout','no','yes'),(566,'woocommerce_unforce_ssl_checkout','no','yes'),(567,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(568,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(569,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(570,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(571,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(572,'woocommerce_myaccount_orders_endpoint','orders','yes'),(573,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(574,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(575,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(576,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(577,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(578,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(579,'woocommerce_logout_endpoint','customer-logout','yes'),(580,'woocommerce_api_enabled','no','yes'),(581,'woocommerce_allow_tracking','no','no'),(582,'woocommerce_show_marketplace_suggestions','yes','no'),(583,'woocommerce_analytics_enabled','yes','yes'),(584,'woocommerce_navigation_enabled','no','yes'),(585,'woocommerce_feature_custom_order_tables_enabled','no','yes'),(586,'woocommerce_single_image_width','600','yes'),(587,'woocommerce_thumbnail_image_width','300','yes'),(588,'woocommerce_checkout_highlight_required_fields','yes','yes'),(589,'woocommerce_demo_store','no','no'),(590,'wc_downloads_approved_directories_mode','enabled','yes'),(591,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(592,'current_theme_supports_woocommerce','yes','yes'),(593,'woocommerce_queue_flush_rewrite_rules','no','yes'),(595,'product_cat_children','a:0:{}','yes'),(596,'default_product_cat','15','yes'),(598,'woocommerce_refund_returns_page_id','14','yes'),(601,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:20:\"admin@wordpress.test\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:20:\"admin@wordpress.test\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(602,'woocommerce_version','9.5.1','yes'),(603,'woocommerce_db_version','8.2.2','yes'),(604,'woocommerce_admin_install_timestamp','1672924314','yes'),(605,'woocommerce_inbox_variant_assignment','3','yes'),(609,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(610,'woocommerce_admin_notices','a:3:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";i:2;s:14:\"template_files\";}','yes'),(611,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"0jxv9z7mXPj1LeMzhbPKfp8fWZJxPthz\";}','yes'),(612,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(613,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(614,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(615,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(616,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(617,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(618,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(619,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(620,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(621,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(622,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(623,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(624,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(625,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(630,'_transient_woocommerce_shipping_task_zone_count_transient','0','yes'),(631,'wc_blocks_db_schema_version','260','yes'),(632,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}','no'),(635,'_transient_woocommerce_reports-transient-version','1672924354','yes'),(643,'woocommerce_task_list_tracked_completed_tasks','a:3:{i:0;s:8:\"purchase\";i:1;s:13:\"store_details\";i:2;s:8:\"products\";}','yes'),(645,'woocommerce_onboarding_profile','a:10:{s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:20:\"admin@wordpress.test\";s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:5:\"other\";}}s:13:\"product_types\";a:1:{i:0;s:9:\"downloads\";}s:13:\"product_count\";s:1:\"0\";s:14:\"selling_venues\";s:2:\"no\";s:12:\"setup_client\";b:1;s:19:\"business_extensions\";a:0:{}s:9:\"completed\";b:1;}','yes'),(647,'woocommerce_task_list_dismissed_tasks','a:0:{}','yes'),(651,'woocommerce_task_list_prompt_shown','1','yes'),(660,'woocommerce_default_homepage_layout','two_columns','yes'),(661,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:5:\"setup\";i:1;s:8:\"extended\";}','yes'),(744,'external_updates-event-tickets-plus','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1736277258;s:14:\"checkedVersion\";s:5:\"6.1.2\";s:6:\"update\";O:19:\"Tribe__PUE__Utility\":16:{s:2:\"id\";i:0;s:6:\"plugin\";N;s:4:\"slug\";N;s:7:\"version\";s:5:\"6.1.2\";s:8:\"homepage\";N;s:12:\"download_url\";N;s:8:\"sections\";O:8:\"stdClass\":1:{s:9:\"changelog\";s:1573:\"

= [6.1.2] 2024-12-17 =

\r\n\r\n
    \r\n
  • Tweak - Changed views: tickets-plus/attendee-list-checkbox-rsvp, tickets-plus/attendee-list-checkbox-tickets, tickets-plus/orders-edit-meta, tickets-wallet-plus/pdf/pass/body/ticket-info/attendee-details
  • \r\n
  • Tweak - Updated file paths in the folder \'src/views/tickets-plus\' for attendee-list-checkbox-rsvp.php, attendee-list-checkbox-tickets.php, and orders-edit-meta.php from [your-theme]/tribe to [your-theme]/tribe-events. [ETP-888]
  • \r\n
  • Fix - Attendee registration fields will now appear when the AR modal is disabled. [ET-2266]
  • \r\n
  • Fix - Corrected all template override paths in src/admin-views/manual-attendees files and set set_template_folder_lookup to true. [ETP-961]
  • \r\n
  • Fix - Ensure that number_format is used with a float value to prevent issues with PHP 8.0+. [ETP-962]
  • \r\n
  • Fix - Prevent Seating scripts from loading in Attendee Registration page or Checkout when there are no Seating Tickets in cart. [ETP-964]
  • \r\n
  • Fix - Remove an additional pdf/ being added to the template override path for the files in the attendee-details directory. [ET-2265]
  • \r\n
  • Fix - You will now be correctly forwarded to the attendee registration page when using IAC with the attendee registration modal disabled. [ETP-950]
  • \r\n
  • Language - 0 new strings added, 31 updated, 0 fuzzied, and 0 obsoleted.
  • \r\n
\";}s:14:\"upgrade_notice\";N;s:13:\"custom_update\";N;s:13:\"license_error\";s:308:\"

Your license key is invalid. You may need to download and install an updated version of the plugin. You can check the status of your licenses and download plugins by logging in to your account.

\";s:8:\"auth_url\";N;s:11:\"api_expired\";N;s:11:\"api_upgrade\";N;s:11:\"api_invalid\";b:1;s:19:\"api_invalid_message\";s:332:\"

You are using %plugin_name% but your license key is invalid. You may need to download and install an updated version of the plugin. You can check the status of your licenses and download plugins by logging in to your account.

\";s:26:\"api_inline_invalid_message\";s:300:\"

Your license key is invalid. You may need to download and install an updated version of the plugin. You can check the status of your licenses and download plugins by logging in to your account.

\";}}','no'),(745,'tribe_pue_key_notices','a:1:{s:11:\"invalid_key\";a:1:{s:18:\"Event Tickets Plus\";b:1;}}','yes'),(774,'_transient_product_query-transient-version','1700223858','yes'),(820,'edd_version_upgraded_from','3.2.6','no'),(842,'edds_notice_edd-stripe-core_dismissed','1','yes'),(852,'tec_automator_power_automate_secret_key','884cc3ff27ae261b9ede80398ec4f9716058623b02ba6207570a618fdf0af157817bf099d649883f6eb308b2abfc1c131675620e728abc5e99bc731578730a634466e6d855aba8e5962f66b5a81b07720a66435726c4d8c11b19b9878c9554323266baeda87a58f510ddabac230fd9144e8964e3c4e6a303646b33e937996351','yes'),(855,'_transient_product-transient-version','1700223858','yes'),(858,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(859,'wc_blocks_version','11.8.0-dev','yes'),(860,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(861,'tec_freemius_accounts_archive','s:3742:\"a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}\";','yes'),(862,'tec_freemius_accounts_data_archive','a:6:{s:21:\"id_slug_type_path_map\";a:2:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}i:3841;a:3:{s:4:\"slug\";s:13:\"event-tickets\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}}s:11:\"plugin_data\";a:2:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1666777406;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"6.0.5\";s:14:\"plugin_version\";s:7:\"6.0.6.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:3:\"::1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1666777406;s:7:\"version\";s:5:\"6.0.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1667820280;s:7:\"version\";s:7:\"6.0.3.1\";}}s:13:\"event-tickets\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"event-tickets/event-tickets.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1670232855;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.4\";s:14:\"plugin_version\";s:5:\"5.5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"wordpress.test\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1670232855;s:7:\"version\";s:5:\"5.5.4\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1670232858;s:7:\"version\";s:5:\"5.5.4\";}}}s:13:\"file_slug_map\";a:2:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";s:31:\"event-tickets/event-tickets.php\";s:13:\"event-tickets\";}s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";a:24:{s:10:\"tec_fs_key\";s:9:\"FS_Plugin\";s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"6.0.6.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:13:\"event-tickets\";a:24:{s:10:\"tec_fs_key\";s:9:\"FS_Plugin\";s:16:\"parent_plugin_id\";N;s:5:\"title\";s:13:\"Event Tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:12:\"premium_slug\";s:21:\"event-tickets-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:31:\"event-tickets/event-tickets.php\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6dd9310b57c62871c59e58b8e739e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3841\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"f780b4baade26d5c042675aa17df5c05\";s:13:\"admin_notices\";a:2:{s:19:\"the-events-calendar\";a:0:{}s:13:\"event-tickets\";a:0:{}}}','yes'),(863,'stellarwp_telemetry','a:1:{s:7:\"plugins\";a:2:{s:19:\"the-events-calendar\";a:2:{s:7:\"wp_slug\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"optin\";b:0;}s:13:\"event-tickets\";a:2:{s:7:\"wp_slug\";s:31:\"event-tickets/event-tickets.php\";s:5:\"optin\";b:0;}}}','yes'),(864,'stellarwp_telemetry_event-tickets_show_optin','0','yes'),(865,'stellarwp_telemetry_the-events-calendar_show_optin','0','yes'),(866,'tec_freemius_plugins_archive','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:36:\"event-tickets/common/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.4\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1670325882;s:11:\"plugin_path\";s:31:\"event-tickets/event-tickets.php\";}}s:7:\"abspath\";s:54:\"/Users/brianjessee/Local Sites/tribe/tests/app/public/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:31:\"event-tickets/event-tickets.php\";s:8:\"sdk_path\";s:36:\"event-tickets/common/vendor/freemius\";s:7:\"version\";s:5:\"2.4.4\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1670325882;}}','yes'),(867,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(870,'woocommerce_custom_orders_table_enabled','no','yes'),(871,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(872,'woocommerce_custom_orders_table_created','yes','yes'),(873,'woocommerce_feature_marketplace_enabled','yes','yes'),(874,'woocommerce_feature_product_block_editor_enabled','no','yes'),(880,'tec_timed_tec_custom_tables_v1_initialized','a:3:{s:3:\"key\";s:32:\"tec_custom_tables_v1_initialized\";s:5:\"value\";i:1;s:10:\"expiration\";i:1736363647;}','yes'),(881,'stellarwp_telemetry_last_send','','yes'),(885,'wcpay_was_in_use','no','yes'),(888,'external_updates-event-automator','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1700226153;s:14:\"checkedVersion\";N;s:6:\"update\";O:19:\"Tribe__PUE__Utility\":12:{s:2:\"id\";i:0;s:6:\"plugin\";s:35:\"event-automator/event-automator.php\";s:4:\"slug\";s:15:\"event-automator\";s:7:\"version\";s:5:\"1.4.0\";s:8:\"homepage\";s:20:\"https://evnt.is/1bc7\";s:12:\"download_url\";s:245:\"https://pue.theeventscalendar.com/api/plugins/v2/download?plugin=event-automator&version=1.4.0&installed_version&domain=localhost&multisite=0&network_activated=0&active_sites=1&wp_version=6.2.2&key=5f53261eb16f7ddf4fe24b69918c8804c82ea817&dk&o=o\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:245:\"Event Automator, a premium add-on to the open source The Events Calendar plugin or Event Tickets (at least one required), that lets you connect your apps and automate workflows for lead management, communication outreach, and internal processes.\";s:12:\"installation\";s:366:\"Installing Event Automator is easy: just back up your site, download/install The Events Calendar and/or Event Tickets from the WordPress.org repo, and download/install Event Automator from theeventscalendar.com. Activate them both and you\'ll be good to go! If you\'re still confused or encounter problems, check out part 1 of our new user primer (http://m.tri.be/4i).\";s:9:\"changelog\";s:515:\"

= [1.4.0] 2023-10-19 =

\r\n\r\n
    \r\n
  • Feature - Add Support for Microsoft Power Automate with Event Tickets and the new attendee, updated attendee, checkin, new orders, and refunded orders endpoints [EVA-96]
  • \r\n
  • Feature - Add Support for Microsoft Power Automate with The Events Calendar and the new event, updated event, canceled event, and action to create events endpoints [EVA-88]
  • \r\n
  • Fix - Prevent multiple attendees from being added to the queue when doing bulk checkin. [EVA-102]
  • \r\n
\";}s:14:\"upgrade_notice\";s:0:\"\";s:13:\"custom_update\";O:8:\"stdClass\":1:{s:5:\"icons\";O:8:\"stdClass\":1:{s:3:\"svg\";s:76:\"https://images.theeventscalendar.com/uploads/2023/01/EventAutomator-icon.svg\";}}s:13:\"license_error\";N;s:11:\"api_expired\";b:0;s:11:\"api_upgrade\";b:0;}}','no'),(895,'pue_install_key_event_automator','5f53261eb16f7ddf4fe24b69918c8804c82ea817','yes'),(901,'edd_onboarding_completed','1','no'),(929,'wpdb_edd_notifications_version','202303220','yes'),(955,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1736277257;s:8:\"response\";a:1:{s:31:\"event-tickets/event-tickets.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/event-tickets\";s:4:\"slug\";s:13:\"event-tickets\";s:6:\"plugin\";s:31:\"event-tickets/event-tickets.php\";s:11:\"new_version\";s:8:\"5.18.0.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/event-tickets/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/event-tickets.5.18.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";s:3:\"svg\";s:58:\"https://ps.w.org/event-tickets/assets/icon.svg?rev=2259340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/event-tickets/assets/banner-1544x500.png?rev=2257626\";s:2:\"1x\";s:68:\"https://ps.w.org/event-tickets/assets/banner-772x250.png?rev=2257626\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:49:\"easy-digital-downloads/easy-digital-downloads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/easy-digital-downloads\";s:4:\"slug\";s:22:\"easy-digital-downloads\";s:6:\"plugin\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:11:\"new_version\";s:7:\"3.3.5.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/easy-digital-downloads/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/easy-digital-downloads.3.3.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";s:3:\"svg\";s:66:\"https://ps.w.org/easy-digital-downloads/assets/icon.svg?rev=971968\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/easy-digital-downloads/assets/banner-1544x500.png?rev=2636140\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-digital-downloads/assets/banner-772x250.png?rev=2636140\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:6:\"3.17.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/query-monitor.3.17.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=2870124\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"6.9.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440\";s:2:\"1x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-128x128.gif?rev=2516440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:33:\"user-switching/user-switching.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/user-switching\";s:4:\"slug\";s:14:\"user-switching\";s:6:\"plugin\";s:33:\"user-switching/user-switching.php\";s:11:\"new_version\";s:5:\"1.9.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/user-switching/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/user-switching.1.9.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=3193956\";s:3:\"svg\";s:59:\"https://ps.w.org/user-switching/assets/icon.svg?rev=3193956\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/user-switching/assets/banner-1544x500.png?rev=2204929\";s:2:\"1x\";s:69:\"https://ps.w.org/user-switching/assets/banner-772x250.png?rev=2204929\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"wp-rollback/wp-rollback.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-rollback\";s:4:\"slug\";s:11:\"wp-rollback\";s:6:\"plugin\";s:27:\"wp-rollback/wp-rollback.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-rollback/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-rollback.2.0.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-256x256.jpg?rev=3014868\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-rollback/assets/icon-128x128.jpg?rev=3014868\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-rollback/assets/banner-1544x500.jpg?rev=3014868\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-rollback/assets/banner-772x250.jpg?rev=3014872\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:41:\"event-tickets-plus/event-tickets-plus.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"stellarwp/plugins/\";s:6:\"plugin\";s:41:\"event-tickets-plus/event-tickets-plus.php\";s:4:\"slug\";N;s:11:\"new_version\";s:5:\"6.1.2\";s:3:\"url\";N;s:7:\"package\";N;}}}','no'),(988,'wp_attachment_pages_enabled','1','yes'),(993,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1736277258;s:7:\"checked\";a:6:{s:12:\"twentytwenty\";s:3:\"2.7\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.2\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:5:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.4.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.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.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.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','no'),(1004,'recovery_mode_email_last_sent','1700228527','yes'),(1019,'wc_remote_inbox_notifications_wca_updated','','no'),(1036,'tec_timed_events_timezone_update_needed','a:3:{s:3:\"key\";s:29:\"events_timezone_update_needed\";s:5:\"value\";b:0;s:10:\"expiration\";i:1700316213;}','yes'),(1047,'tribe_feature_support_check_lock','1','yes'),(1058,'woocommerce_product_match_featured_image_by_sku','no','yes'),(1059,'woocommerce_feature_order_attribution_enabled','yes','yes'),(1060,'woocommerce_hpos_fts_index_enabled','no','yes'),(1061,'woocommerce_store_id','96c28bc3-48bf-41eb-9737-dbb695f270ce','yes'),(1062,'woocommerce_remote_variant_assignment','59','yes'),(1072,'rewrite_rules','a:536:{s:21:\"tickets/([0-9]{1,})/?\";s:43:\"index.php?p=$matches[1]&tribe-edit-orders=1\";s:29:\"(?:attendee\\-registration)/?$\";s:33:\"index.php?attendee-registration=1\";s:28:\"tribe/events/kitchen-sink/?$\";s:69:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=page\";s:93:\"tribe/events/kitchen-sink/(page|grid|typographical|elements|events-bar|navigation|manager)/?$\";s:76:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=$matches[1]\";s:28:\"event-aggregator/(insert)/?$\";s:53:\"index.php?tribe-aggregator=1&tribe-action=$matches[1]\";s:25:\"(?:event)/([^/]+)/ical/?$\";s:56:\"index.php?ical=1&name=$matches[1]&post_type=tribe_events\";s:28:\"(?:events)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=default&paged=$matches[1]\";s:41:\"(?:events)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&paged=$matches[1]\";s:38:\"(?:events)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=list&feed=$matches[1]\";s:51:\"(?:events)/(?:featured)/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&feed=$matches[1]\";s:23:\"(?:events)/(?:month)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=month\";s:36:\"(?:events)/(?:month)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=month&featured=1\";s:37:\"(?:events)/(?:month)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:37:\"(?:events)/(?:list)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1&paged=$matches[1]\";s:22:\"(?:events)/(?:list)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=list\";s:35:\"(?:events)/(?:list)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1\";s:23:\"(?:events)/(?:today)/?$\";s:49:\"index.php?post_type=tribe_events&eventDisplay=day\";s:36:\"(?:events)/(?:today)/(?:featured)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=day&featured=1\";s:27:\"(?:events)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:40:\"(?:events)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&featured=1\";s:33:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]\";s:46:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:26:\"(?:events)/(?:featured)/?$\";s:43:\"index.php?post_type=tribe_events&featured=1\";s:13:\"(?:events)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=default\";s:18:\"(?:events)/ical/?$\";s:39:\"index.php?post_type=tribe_events&ical=1\";s:31:\"(?:events)/(?:featured)/ical/?$\";s:50:\"index.php?post_type=tribe_events&ical=1&featured=1\";s:38:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:78:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]\";s:51:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:60:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&featured=1\";s:69:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:82:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&featured=1\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:59:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/?$\";s:102:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:113:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:65:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:78:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&feed=rss2\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&feed=rss2\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/ical/?$\";s:68:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&ical=1\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/ical/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&ical=1\";s:75:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&feed=$matches[2]\";s:88:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&feed=$matches[2]\";s:58:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=default\";s:45:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=default\";s:44:\"(?:events)/(?:tag)/([^/]+)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:month)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&featured=1\";s:53:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:66:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:list)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:today)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&featured=1\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:43:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/?$\";s:89:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:56:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:100:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:49:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:62:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/feed/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/ical/?$\";s:55:\"index.php?post_type=tribe_events&tag=$matches[1]&ical=1\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/ical/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&ical=1\";s:59:\"(?:events)/(?:tag)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&feed=$matches[2]\";s:72:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&feed=$matches[2]\";s:42:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/?$\";s:59:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1\";s:29:\"(?:events)/(?:tag)/([^/]+)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=default\";s:32:\"(?:event)/([^/]+)/(?:tickets)/?$\";s:78:\"index.php?tribe_events=$matches[1]&post_type=tribe_events&eventDisplay=tickets\";s:52:\"(?:event)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:tickets)/?$\";s:100:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&post_type=tribe_events&eventDisplay=tickets\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:21:\"^wc/file/transient/?$\";s:33:\"index.php?wc-transient-file-name=\";s:24:\"^wc/file/transient/(.+)$\";s:44:\"index.php?wc-transient-file-name=$matches[1]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:12:\"downloads/?$\";s:28:\"index.php?post_type=download\";s:42:\"downloads/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=download&feed=$matches[1]\";s:37:\"downloads/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=download&feed=$matches[1]\";s:29:\"downloads/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=download&paged=$matches[1]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:22:\"tribe-promoter-auth/?$\";s:37:\"index.php?tribe-promoter-auth-check=1\";s:8:\"event/?$\";s:32:\"index.php?post_type=tribe_events\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=tribe_events&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:43:\"category/(.+?)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?category_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:33:\"category/(.+?)/edd-add(/(.*))?/?$\";s:55:\"index.php?category_name=$matches[1]&edd-add=$matches[3]\";s:36:\"category/(.+?)/edd-remove(/(.*))?/?$\";s:58:\"index.php?category_name=$matches[1]&edd-remove=$matches[3]\";s:33:\"category/(.+?)/edd-api(/(.*))?/?$\";s:55:\"index.php?category_name=$matches[1]&edd-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:40:\"tag/([^/]+)/wc/file/transient(/(.*))?/?$\";s:55:\"index.php?tag=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:30:\"tag/([^/]+)/edd-add(/(.*))?/?$\";s:45:\"index.php?tag=$matches[1]&edd-add=$matches[3]\";s:33:\"tag/([^/]+)/edd-remove(/(.*))?/?$\";s:48:\"index.php?tag=$matches[1]&edd-remove=$matches[3]\";s:30:\"tag/([^/]+)/edd-api(/(.*))?/?$\";s:45:\"index.php?tag=$matches[1]&edd-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"downloads/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?download_category=$matches[1]&feed=$matches[2]\";s:52:\"downloads/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?download_category=$matches[1]&feed=$matches[2]\";s:33:\"downloads/category/(.+?)/embed/?$\";s:50:\"index.php?download_category=$matches[1]&embed=true\";s:45:\"downloads/category/(.+?)/page/?([0-9]{1,})/?$\";s:57:\"index.php?download_category=$matches[1]&paged=$matches[2]\";s:27:\"downloads/category/(.+?)/?$\";s:39:\"index.php?download_category=$matches[1]\";s:54:\"downloads/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?download_tag=$matches[1]&feed=$matches[2]\";s:49:\"downloads/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?download_tag=$matches[1]&feed=$matches[2]\";s:30:\"downloads/tag/([^/]+)/embed/?$\";s:45:\"index.php?download_tag=$matches[1]&embed=true\";s:42:\"downloads/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?download_tag=$matches[1]&paged=$matches[2]\";s:24:\"downloads/tag/([^/]+)/?$\";s:34:\"index.php?download_tag=$matches[1]\";s:37:\"downloads/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"downloads/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"downloads/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"downloads/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"downloads/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"downloads/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"downloads/([^/]+)/embed/?$\";s:41:\"index.php?download=$matches[1]&embed=true\";s:30:\"downloads/([^/]+)/trackback/?$\";s:35:\"index.php?download=$matches[1]&tb=1\";s:50:\"downloads/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?download=$matches[1]&feed=$matches[2]\";s:45:\"downloads/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?download=$matches[1]&feed=$matches[2]\";s:38:\"downloads/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?download=$matches[1]&paged=$matches[2]\";s:45:\"downloads/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?download=$matches[1]&cpage=$matches[2]\";s:46:\"downloads/([^/]+)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?download=$matches[1]&wc/file/transient=$matches[3]\";s:35:\"downloads/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?download=$matches[1]&wc-api=$matches[3]\";s:36:\"downloads/([^/]+)/edd-add(/(.*))?/?$\";s:50:\"index.php?download=$matches[1]&edd-add=$matches[3]\";s:39:\"downloads/([^/]+)/edd-remove(/(.*))?/?$\";s:53:\"index.php?download=$matches[1]&edd-remove=$matches[3]\";s:36:\"downloads/([^/]+)/edd-api(/(.*))?/?$\";s:50:\"index.php?download=$matches[1]&edd-api=$matches[3]\";s:52:\"downloads/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:63:\"downloads/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:41:\"downloads/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"downloads/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"downloads/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:53:\"downloads/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:45:\"downloads/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:56:\"downloads/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:42:\"downloads/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:53:\"downloads/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:34:\"downloads/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?download=$matches[1]&page=$matches[2]\";s:26:\"downloads/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"downloads/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"downloads/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"downloads/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"downloads/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"downloads/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:44:\"product/([^/]+)/wc/file/transient(/(.*))?/?$\";s:59:\"index.php?product=$matches[1]&wc/file/transient=$matches[3]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:34:\"product/([^/]+)/edd-add(/(.*))?/?$\";s:49:\"index.php?product=$matches[1]&edd-add=$matches[3]\";s:37:\"product/([^/]+)/edd-remove(/(.*))?/?$\";s:52:\"index.php?product=$matches[1]&edd-remove=$matches[3]\";s:34:\"product/([^/]+)/edd-api(/(.*))?/?$\";s:49:\"index.php?product=$matches[1]&edd-api=$matches[3]\";s:50:\"product/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:61:\"product/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:40:\"product/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:51:\"product/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:43:\"product/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:54:\"product/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:40:\"product/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:51:\"product/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:58:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"ticket-meta-fieldset/([^/]+)/embed/?$\";s:53:\"index.php?ticket-meta-fieldset=$matches[1]&embed=true\";s:41:\"ticket-meta-fieldset/([^/]+)/trackback/?$\";s:47:\"index.php?ticket-meta-fieldset=$matches[1]&tb=1\";s:49:\"ticket-meta-fieldset/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?ticket-meta-fieldset=$matches[1]&paged=$matches[2]\";s:56:\"ticket-meta-fieldset/([^/]+)/comment-page-([0-9]{1,})/?$\";s:60:\"index.php?ticket-meta-fieldset=$matches[1]&cpage=$matches[2]\";s:57:\"ticket-meta-fieldset/([^/]+)/wc/file/transient(/(.*))?/?$\";s:72:\"index.php?ticket-meta-fieldset=$matches[1]&wc/file/transient=$matches[3]\";s:46:\"ticket-meta-fieldset/([^/]+)/wc-api(/(.*))?/?$\";s:61:\"index.php?ticket-meta-fieldset=$matches[1]&wc-api=$matches[3]\";s:47:\"ticket-meta-fieldset/([^/]+)/edd-add(/(.*))?/?$\";s:62:\"index.php?ticket-meta-fieldset=$matches[1]&edd-add=$matches[3]\";s:50:\"ticket-meta-fieldset/([^/]+)/edd-remove(/(.*))?/?$\";s:65:\"index.php?ticket-meta-fieldset=$matches[1]&edd-remove=$matches[3]\";s:47:\"ticket-meta-fieldset/([^/]+)/edd-api(/(.*))?/?$\";s:62:\"index.php?ticket-meta-fieldset=$matches[1]&edd-api=$matches[3]\";s:63:\"ticket-meta-fieldset/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:74:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:52:\"ticket-meta-fieldset/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:63:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"ticket-meta-fieldset/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:64:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:56:\"ticket-meta-fieldset/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:67:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:53:\"ticket-meta-fieldset/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:64:\"ticket-meta-fieldset/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:45:\"ticket-meta-fieldset/([^/]+)(?:/([0-9]+))?/?$\";s:59:\"index.php?ticket-meta-fieldset=$matches[1]&page=$matches[2]\";s:37:\"ticket-meta-fieldset/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"ticket-meta-fieldset/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"ticket-meta-fieldset/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"ticket-meta-fieldset/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"ticket-meta-fieldset/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"ticket-meta-fieldset/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"venue/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"venue/([^/]+)/embed/?$\";s:44:\"index.php?tribe_venue=$matches[1]&embed=true\";s:26:\"venue/([^/]+)/trackback/?$\";s:38:\"index.php?tribe_venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&cpage=$matches[2]\";s:42:\"venue/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?tribe_venue=$matches[1]&wc/file/transient=$matches[3]\";s:31:\"venue/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?tribe_venue=$matches[1]&wc-api=$matches[3]\";s:32:\"venue/([^/]+)/edd-add(/(.*))?/?$\";s:53:\"index.php?tribe_venue=$matches[1]&edd-add=$matches[3]\";s:35:\"venue/([^/]+)/edd-remove(/(.*))?/?$\";s:56:\"index.php?tribe_venue=$matches[1]&edd-remove=$matches[3]\";s:32:\"venue/([^/]+)/edd-api(/(.*))?/?$\";s:53:\"index.php?tribe_venue=$matches[1]&edd-api=$matches[3]\";s:48:\"venue/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:59:\"venue/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"venue/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"venue/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"venue/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:49:\"venue/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:41:\"venue/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:52:\"venue/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:38:\"venue/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:49:\"venue/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:30:\"venue/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?tribe_venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"venue/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"organizer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"organizer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"organizer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"organizer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"organizer/([^/]+)/embed/?$\";s:48:\"index.php?tribe_organizer=$matches[1]&embed=true\";s:30:\"organizer/([^/]+)/trackback/?$\";s:42:\"index.php?tribe_organizer=$matches[1]&tb=1\";s:38:\"organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&paged=$matches[2]\";s:45:\"organizer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&cpage=$matches[2]\";s:46:\"organizer/([^/]+)/wc/file/transient(/(.*))?/?$\";s:67:\"index.php?tribe_organizer=$matches[1]&wc/file/transient=$matches[3]\";s:35:\"organizer/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?tribe_organizer=$matches[1]&wc-api=$matches[3]\";s:36:\"organizer/([^/]+)/edd-add(/(.*))?/?$\";s:57:\"index.php?tribe_organizer=$matches[1]&edd-add=$matches[3]\";s:39:\"organizer/([^/]+)/edd-remove(/(.*))?/?$\";s:60:\"index.php?tribe_organizer=$matches[1]&edd-remove=$matches[3]\";s:36:\"organizer/([^/]+)/edd-api(/(.*))?/?$\";s:57:\"index.php?tribe_organizer=$matches[1]&edd-api=$matches[3]\";s:52:\"organizer/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:63:\"organizer/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:41:\"organizer/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"organizer/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"organizer/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:53:\"organizer/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:45:\"organizer/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:56:\"organizer/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:42:\"organizer/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:53:\"organizer/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:34:\"organizer/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?tribe_organizer=$matches[1]&page=$matches[2]\";s:26:\"organizer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"organizer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"organizer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"organizer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:45:\"index.php?tribe_events=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:39:\"index.php?tribe_events=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&cpage=$matches[2]\";s:42:\"event/([^/]+)/wc/file/transient(/(.*))?/?$\";s:64:\"index.php?tribe_events=$matches[1]&wc/file/transient=$matches[3]\";s:31:\"event/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?tribe_events=$matches[1]&wc-api=$matches[3]\";s:32:\"event/([^/]+)/edd-add(/(.*))?/?$\";s:54:\"index.php?tribe_events=$matches[1]&edd-add=$matches[3]\";s:35:\"event/([^/]+)/edd-remove(/(.*))?/?$\";s:57:\"index.php?tribe_events=$matches[1]&edd-remove=$matches[3]\";s:32:\"event/([^/]+)/edd-api(/(.*))?/?$\";s:54:\"index.php?tribe_events=$matches[1]&edd-api=$matches[3]\";s:48:\"event/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:59:\"event/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"event/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:49:\"event/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:41:\"event/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:52:\"event/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:38:\"event/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:49:\"event/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?tribe_events=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"events/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:49:\"events/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:30:\"events/category/(.+?)/embed/?$\";s:49:\"index.php?tribe_events_cat=$matches[1]&embed=true\";s:42:\"events/category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tribe_events_cat=$matches[1]&paged=$matches[2]\";s:24:\"events/category/(.+?)/?$\";s:38:\"index.php?tribe_events_cat=$matches[1]\";s:41:\"deleted_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"deleted_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"deleted_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"deleted_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"deleted_event/([^/]+)/embed/?$\";s:46:\"index.php?deleted_event=$matches[1]&embed=true\";s:34:\"deleted_event/([^/]+)/trackback/?$\";s:40:\"index.php?deleted_event=$matches[1]&tb=1\";s:42:\"deleted_event/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&paged=$matches[2]\";s:49:\"deleted_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&cpage=$matches[2]\";s:50:\"deleted_event/([^/]+)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?deleted_event=$matches[1]&wc/file/transient=$matches[3]\";s:39:\"deleted_event/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?deleted_event=$matches[1]&wc-api=$matches[3]\";s:40:\"deleted_event/([^/]+)/edd-add(/(.*))?/?$\";s:55:\"index.php?deleted_event=$matches[1]&edd-add=$matches[3]\";s:43:\"deleted_event/([^/]+)/edd-remove(/(.*))?/?$\";s:58:\"index.php?deleted_event=$matches[1]&edd-remove=$matches[3]\";s:40:\"deleted_event/([^/]+)/edd-api(/(.*))?/?$\";s:55:\"index.php?deleted_event=$matches[1]&edd-api=$matches[3]\";s:56:\"deleted_event/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:67:\"deleted_event/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:45:\"deleted_event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"deleted_event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:46:\"deleted_event/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:57:\"deleted_event/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:49:\"deleted_event/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:60:\"deleted_event/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:46:\"deleted_event/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:57:\"deleted_event/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:38:\"deleted_event/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?deleted_event=$matches[1]&page=$matches[2]\";s:30:\"deleted_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"deleted_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"deleted_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"deleted_event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:28:\"wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:18:\"edd-add(/(.*))?/?$\";s:30:\"index.php?&edd-add=$matches[2]\";s:21:\"edd-remove(/(.*))?/?$\";s:33:\"index.php?&edd-remove=$matches[2]\";s:18:\"edd-api(/(.*))?/?$\";s:30:\"index.php?&edd-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:37:\"comments/wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:27:\"comments/edd-add(/(.*))?/?$\";s:30:\"index.php?&edd-add=$matches[2]\";s:30:\"comments/edd-remove(/(.*))?/?$\";s:33:\"index.php?&edd-remove=$matches[2]\";s:27:\"comments/edd-api(/(.*))?/?$\";s:30:\"index.php?&edd-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:40:\"search/(.+)/wc/file/transient(/(.*))?/?$\";s:53:\"index.php?s=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:30:\"search/(.+)/edd-add(/(.*))?/?$\";s:43:\"index.php?s=$matches[1]&edd-add=$matches[3]\";s:33:\"search/(.+)/edd-remove(/(.*))?/?$\";s:46:\"index.php?s=$matches[1]&edd-remove=$matches[3]\";s:30:\"search/(.+)/edd-api(/(.*))?/?$\";s:43:\"index.php?s=$matches[1]&edd-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:43:\"author/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?author_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:33:\"author/([^/]+)/edd-add(/(.*))?/?$\";s:53:\"index.php?author_name=$matches[1]&edd-add=$matches[3]\";s:36:\"author/([^/]+)/edd-remove(/(.*))?/?$\";s:56:\"index.php?author_name=$matches[1]&edd-remove=$matches[3]\";s:33:\"author/([^/]+)/edd-api(/(.*))?/?$\";s:53:\"index.php?author_name=$matches[1]&edd-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:93:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc/file/transient=$matches[5]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:55:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/edd-add(/(.*))?/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&edd-add=$matches[5]\";s:58:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/edd-remove(/(.*))?/?$\";s:86:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&edd-remove=$matches[5]\";s:55:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/edd-api(/(.*))?/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&edd-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:52:\"([0-9]{4})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:77:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc/file/transient=$matches[4]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:42:\"([0-9]{4})/([0-9]{1,2})/edd-add(/(.*))?/?$\";s:67:\"index.php?year=$matches[1]&monthnum=$matches[2]&edd-add=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/edd-remove(/(.*))?/?$\";s:70:\"index.php?year=$matches[1]&monthnum=$matches[2]&edd-remove=$matches[4]\";s:42:\"([0-9]{4})/([0-9]{1,2})/edd-api(/(.*))?/?$\";s:67:\"index.php?year=$matches[1]&monthnum=$matches[2]&edd-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:39:\"([0-9]{4})/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?year=$matches[1]&wc/file/transient=$matches[3]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:29:\"([0-9]{4})/edd-add(/(.*))?/?$\";s:46:\"index.php?year=$matches[1]&edd-add=$matches[3]\";s:32:\"([0-9]{4})/edd-remove(/(.*))?/?$\";s:49:\"index.php?year=$matches[1]&edd-remove=$matches[3]\";s:29:\"([0-9]{4})/edd-api(/(.*))?/?$\";s:46:\"index.php?year=$matches[1]&edd-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:73:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc/file/transient(/(.*))?/?$\";s:110:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc/file/transient=$matches[6]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:63:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/edd-add(/(.*))?/?$\";s:100:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&edd-add=$matches[6]\";s:66:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/edd-remove(/(.*))?/?$\";s:103:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&edd-remove=$matches[6]\";s:63:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/edd-api(/(.*))?/?$\";s:100:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&edd-api=$matches[6]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:84:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:63:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:74:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:66:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:63:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:74:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:36:\"(.?.+?)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:26:\"(.?.+?)/edd-add(/(.*))?/?$\";s:50:\"index.php?pagename=$matches[1]&edd-add=$matches[3]\";s:29:\"(.?.+?)/edd-remove(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&edd-remove=$matches[3]\";s:26:\"(.?.+?)/edd-api(/(.*))?/?$\";s:50:\"index.php?pagename=$matches[1]&edd-api=$matches[3]\";s:42:\".?.+?/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\".?.+?/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\".?.+?/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:43:\".?.+?/attachment/([^/]+)/edd-add(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-add=$matches[3]\";s:35:\".?.+?/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:46:\".?.+?/attachment/([^/]+)/edd-remove(/(.*))?/?$\";s:55:\"index.php?attachment=$matches[1]&edd-remove=$matches[3]\";s:32:\".?.+?/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:43:\".?.+?/attachment/([^/]+)/edd-api(/(.*))?/?$\";s:52:\"index.php?attachment=$matches[1]&edd-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(1088,'tec_automator_zapier_secret_key','d5a9a9f71472806969d56d56f307572cb25a589240effad4cfda6369610f4bcaf3222cfc106206a5c504790c234900aedc83ca4778858cdaeea3fb2782abee9567d1f6c7895bb29e580cab02c3ddcd83ea80e9b3452b573c073ff4db785fd653e494a15d689e2814a57229f433a55af3f0ac7c4ae9f660a4b9daa55bcc07b1c2','yes'),(1112,'stellar_schema_version_tec-order-modifiers','1.0.0','yes'),(1113,'stellar_schema_version_tec-order-modifiers-meta','1.0.0','yes'),(1114,'stellar_schema_version_tec-order-modifiers-relationships','1.0.0','yes'),(1115,'stellar_schema_version_tec-slr-maps','1.0.0','yes'),(1116,'stellar_schema_version_tec-slr-layouts','1.0.0','yes'),(1117,'stellar_schema_version_tec-slr-seat-types','1.0.0','yes'),(1118,'stellar_schema_version_tec-slr-sessions','1.1.0','yes'),(1119,'edd_session_handling','php','yes'),(1122,'wpdb_edd_emails_version','202310270','yes'),(1123,'wpdb_edd_emailmeta_version','202311040','yes'),(1126,'woocommerce_downloads_count_partial','yes','yes'),(1127,'woocommerce_email_footer_text_color','#3c3c3c','no'),(1128,'woocommerce_feature_site_visibility_badge_enabled','yes','yes'),(1129,'woocommerce_feature_cost_of_goods_sold_enabled','no','yes'),(1130,'_transient_timeout__woocommerce_upload_directory_status','1736363647','no'),(1131,'_transient__woocommerce_upload_directory_status','protected','no'),(1132,'_transient_timeout_as-post-store-dependencies-met','1736363647','no'),(1133,'_transient_as-post-store-dependencies-met','yes','no'),(1134,'_site_transient_timeout_woocommerce_blocks_patterns','1738869247','no'),(1135,'_site_transient_woocommerce_blocks_patterns','a:2:{s:7:\"version\";s:5:\"9.5.1\";s:8:\"patterns\";a:38:{i:0;a:11:{s:5:\"title\";s:6:\"Banner\";s:4:\"slug\";s:25:\"woocommerce-blocks/banner\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:64:\"/var/www/html/wp-content/plugins/woocommerce/patterns/banner.php\";}i:1;a:11:{s:5:\"title\";s:23:\"Coming Soon Entire Site\";s:4:\"slug\";s:35:\"woocommerce/coming-soon-entire-site\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:81:\"/var/www/html/wp-content/plugins/woocommerce/patterns/coming-soon-entire-site.php\";}i:2;a:11:{s:5:\"title\";s:22:\"Coming Soon Store Only\";s:4:\"slug\";s:34:\"woocommerce/coming-soon-store-only\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:80:\"/var/www/html/wp-content/plugins/woocommerce/patterns/coming-soon-store-only.php\";}i:3;a:11:{s:5:\"title\";s:11:\"Coming Soon\";s:4:\"slug\";s:23:\"woocommerce/coming-soon\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:69:\"/var/www/html/wp-content/plugins/woocommerce/patterns/coming-soon.php\";}i:4;a:11:{s:5:\"title\";s:29:\"Content right with image left\";s:4:\"slug\";s:48:\"woocommerce-blocks/content-right-with-image-left\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, About\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:82:\"/var/www/html/wp-content/plugins/woocommerce/patterns/content-right-image-left.php\";}i:5;a:11:{s:5:\"title\";s:29:\"Featured Category Cover Image\";s:4:\"slug\";s:48:\"woocommerce-blocks/featured-category-cover-image\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:87:\"/var/www/html/wp-content/plugins/woocommerce/patterns/featured-category-cover-image.php\";}i:6;a:11:{s:5:\"title\";s:24:\"Featured Category Triple\";s:4:\"slug\";s:43:\"woocommerce-blocks/featured-category-triple\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:82:\"/var/www/html/wp-content/plugins/woocommerce/patterns/featured-category-triple.php\";}i:7;a:11:{s:5:\"title\";s:15:\"Product Filters\";s:4:\"slug\";s:34:\"woocommerce-blocks/product-filters\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:108:\"woocommerce/active-filters, woocommerce/price-filter, woocommerce/attribute-filter, woocommerce/stock-filter\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:65:\"/var/www/html/wp-content/plugins/woocommerce/patterns/filters.php\";}i:8;a:11:{s:5:\"title\";s:12:\"Large Footer\";s:4:\"slug\";s:31:\"woocommerce-blocks/footer-large\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:70:\"/var/www/html/wp-content/plugins/woocommerce/patterns/footer-large.php\";}i:9;a:11:{s:5:\"title\";s:23:\"Footer with Simple Menu\";s:4:\"slug\";s:37:\"woocommerce-blocks/footer-simple-menu\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:76:\"/var/www/html/wp-content/plugins/woocommerce/patterns/footer-simple-menu.php\";}i:10;a:11:{s:5:\"title\";s:17:\"Footer with menus\";s:4:\"slug\";s:38:\"woocommerce-blocks/footer-with-3-menus\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:77:\"/var/www/html/wp-content/plugins/woocommerce/patterns/footer-with-3-menus.php\";}i:11;a:11:{s:5:\"title\";s:28:\"Four Image Grid Content Left\";s:4:\"slug\";s:47:\"woocommerce-blocks/form-image-grid-content-left\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, About\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:86:\"/var/www/html/wp-content/plugins/woocommerce/patterns/four-image-grid-content-left.php\";}i:12;a:11:{s:5:\"title\";s:20:\"Centered Header Menu\";s:4:\"slug\";s:39:\"woocommerce-blocks/header-centered-menu\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:81:\"/var/www/html/wp-content/plugins/woocommerce/patterns/header-centered-pattern.php\";}i:13;a:11:{s:5:\"title\";s:23:\"Distraction Free Header\";s:4:\"slug\";s:42:\"woocommerce-blocks/header-distraction-free\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:81:\"/var/www/html/wp-content/plugins/woocommerce/patterns/header-distraction-free.php\";}i:14;a:11:{s:5:\"title\";s:16:\"Essential Header\";s:4:\"slug\";s:35:\"woocommerce-blocks/header-essential\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:74:\"/var/www/html/wp-content/plugins/woocommerce/patterns/header-essential.php\";}i:15;a:11:{s:5:\"title\";s:12:\"Large Header\";s:4:\"slug\";s:31:\"woocommerce-blocks/header-large\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:70:\"/var/www/html/wp-content/plugins/woocommerce/patterns/header-large.php\";}i:16;a:11:{s:5:\"title\";s:14:\"Minimal Header\";s:4:\"slug\";s:33:\"woocommerce-blocks/header-minimal\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:72:\"/var/www/html/wp-content/plugins/woocommerce/patterns/header-minimal.php\";}i:17;a:11:{s:5:\"title\";s:47:\"Heading with three columns of content with link\";s:4:\"slug\";s:66:\"woocommerce-blocks/heading-with-three-columns-of-content-with-link\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:21:\"WooCommerce, Services\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:105:\"/var/www/html/wp-content/plugins/woocommerce/patterns/heading-with-three-columns-of-content-with-link.php\";}i:18;a:11:{s:5:\"title\";s:20:\"Hero Product 3 Split\";s:4:\"slug\";s:39:\"woocommerce-blocks/hero-product-3-split\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:78:\"/var/www/html/wp-content/plugins/woocommerce/patterns/hero-product-3-split.php\";}i:19;a:11:{s:5:\"title\";s:23:\"Hero Product Chessboard\";s:4:\"slug\";s:42:\"woocommerce-blocks/hero-product-chessboard\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:81:\"/var/www/html/wp-content/plugins/woocommerce/patterns/hero-product-chessboard.php\";}i:20;a:11:{s:5:\"title\";s:18:\"Hero Product Split\";s:4:\"slug\";s:37:\"woocommerce-blocks/hero-product-split\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:76:\"/var/www/html/wp-content/plugins/woocommerce/patterns/hero-product-split.php\";}i:21;a:11:{s:5:\"title\";s:33:\"Centered content with image below\";s:4:\"slug\";s:52:\"woocommerce-blocks/centered-content-with-image-below\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:97:\"/var/www/html/wp-content/plugins/woocommerce/patterns/intro-centered-content-with-image-below.php\";}i:22;a:11:{s:5:\"title\";s:22:\"Just Arrived Full Hero\";s:4:\"slug\";s:41:\"woocommerce-blocks/just-arrived-full-hero\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:80:\"/var/www/html/wp-content/plugins/woocommerce/patterns/just-arrived-full-hero.php\";}i:23;a:11:{s:5:\"title\";s:33:\"No Products Found - Clear Filters\";s:4:\"slug\";s:43:\"woocommerce/no-products-found-clear-filters\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:83:\"/var/www/html/wp-content/plugins/woocommerce/patterns/no-products-found-filters.php\";}i:24;a:11:{s:5:\"title\";s:17:\"No Products Found\";s:4:\"slug\";s:29:\"woocommerce/no-products-found\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:75:\"/var/www/html/wp-content/plugins/woocommerce/patterns/no-products-found.php\";}i:25;a:11:{s:5:\"title\";s:19:\"Default Coming Soon\";s:4:\"slug\";s:36:\"woocommerce/page-coming-soon-default\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:31:\"coming-soon-newsletter-template\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:82:\"/var/www/html/wp-content/plugins/woocommerce/patterns/page-coming-soon-default.php\";}i:26;a:11:{s:5:\"title\";s:34:\"Coming Soon With Header and Footer\";s:4:\"slug\";s:47:\"woocommerce/page-coming-soon-with-header-footer\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:31:\"coming-soon-newsletter-template\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:93:\"/var/www/html/wp-content/plugins/woocommerce/patterns/page-coming-soon-with-header-footer.php\";}i:27;a:11:{s:5:\"title\";s:28:\"Product Collection 3 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-3-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:86:\"/var/www/html/wp-content/plugins/woocommerce/patterns/product-collection-3-columns.php\";}i:28;a:11:{s:5:\"title\";s:28:\"Product Collection 4 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-4-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:86:\"/var/www/html/wp-content/plugins/woocommerce/patterns/product-collection-4-columns.php\";}i:29;a:11:{s:5:\"title\";s:28:\"Product Collection 5 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-5-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:86:\"/var/www/html/wp-content/plugins/woocommerce/patterns/product-collection-5-columns.php\";}i:30;a:11:{s:5:\"title\";s:47:\"Product Collection: Featured Products 5 Columns\";s:4:\"slug\";s:65:\"woocommerce-blocks/product-collection-featured-products-5-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:104:\"/var/www/html/wp-content/plugins/woocommerce/patterns/product-collection-featured-products-5-columns.php\";}i:31;a:11:{s:5:\"title\";s:15:\"Product Gallery\";s:4:\"slug\";s:48:\"woocommerce-blocks/product-query-product-gallery\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:36:\"core/query/woocommerce/product-query\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:87:\"/var/www/html/wp-content/plugins/woocommerce/patterns/product-query-product-gallery.php\";}i:32;a:11:{s:5:\"title\";s:14:\"Product Search\";s:4:\"slug\";s:31:\"woocommerce/product-search-form\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:77:\"/var/www/html/wp-content/plugins/woocommerce/patterns/product-search-form.php\";}i:33;a:11:{s:5:\"title\";s:16:\"Related Products\";s:4:\"slug\";s:35:\"woocommerce-blocks/related-products\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:74:\"/var/www/html/wp-content/plugins/woocommerce/patterns/related-products.php\";}i:34;a:11:{s:5:\"title\";s:33:\"Social: Follow us on social media\";s:4:\"slug\";s:51:\"woocommerce-blocks/social-follow-us-in-social-media\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:25:\"WooCommerce, social-media\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:90:\"/var/www/html/wp-content/plugins/woocommerce/patterns/social-follow-us-in-social-media.php\";}i:35;a:11:{s:5:\"title\";s:22:\"Testimonials 3 Columns\";s:4:\"slug\";s:41:\"woocommerce-blocks/testimonials-3-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:20:\"WooCommerce, Reviews\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:80:\"/var/www/html/wp-content/plugins/woocommerce/patterns/testimonials-3-columns.php\";}i:36;a:11:{s:5:\"title\";s:19:\"Testimonials Single\";s:4:\"slug\";s:38:\"woocommerce-blocks/testimonials-single\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:20:\"WooCommerce, Reviews\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:77:\"/var/www/html/wp-content/plugins/woocommerce/patterns/testimonials-single.php\";}i:37;a:11:{s:5:\"title\";s:37:\"Three columns with images and content\";s:4:\"slug\";s:56:\"woocommerce-blocks/three-columns-with-images-and-content\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:21:\"WooCommerce, Services\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:95:\"/var/www/html/wp-content/plugins/woocommerce/patterns/three-columns-with-images-and-content.php\";}}}','no'),(1137,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(1138,'_transient_timeout_tec_tickets_plus_imagick_fseek_support','1736882048','no'),(1139,'_transient_tec_tickets_plus_imagick_fseek_support','yes','no'),(1140,'action_scheduler_migration_status','complete','yes'),(1141,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1736882048','no'),(1142,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:1:{s:5:\"en_US\";a:0:{}}','no'),(1143,'_transient_timeout_wc_term_counts','1738869248','no'),(1144,'_transient_wc_term_counts','a:0:{}','no'),(1145,'woocommerce_attribute_lookup_enabled','yes','yes'),(1146,'stellarwp_uplink_update_status_tec-seating','O:8:\"stdClass\":3:{s:10:\"last_check\";i:1736277258;s:15:\"checked_version\";s:6:\"5.18.0\";s:6:\"update\";O:8:\"stdClass\":0:{}}','yes'),(1147,'stellarwp_uplink_update_status_event-tickets-plus','O:8:\"stdClass\":3:{s:10:\"last_check\";i:1736277258;s:15:\"checked_version\";s:5:\"6.1.2\";s:6:\"update\";O:8:\"stdClass\":0:{}}','yes'),(1148,'_transient_timeout__woocommerce_helper_subscriptions','1736278148','no'),(1149,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(1150,'_site_transient_timeout_theme_roots','1736279048','no'),(1151,'_site_transient_theme_roots','a:6:{s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(1152,'_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs','1736882048','no'),(1153,'_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:1:{s:5:\"en_US\";a:0:{}}','no'),(1154,'_transient_timeout_woocommerce_blocks_asset_api_script_data','1738869260','no'),(1155,'_transient_woocommerce_blocks_asset_api_script_data','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"eb5ac71a827c4c81fed8\",\"dependencies\":[\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-types.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-types.js\",\"version\":\"bda84b1be3361607d04a\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"e3f189e7e5007fb14fff\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"bf6b6808e29dd19e91b9\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"b11f59edc6d52068b7a2\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"8db91d7a57c47e3eb6f6\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"8eba41362d1dafa41905\",\"dependencies\":[\"react\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"cba59eca47d9101980bf\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"483d2180eda1f53dc60d\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\",\"version\":\"310fb0b97cc939547132\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\",\"version\":\"7c1cbc00f89f395a28b2\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\",\"version\":\"c785ec96148aa09a247a\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"b00178cb31b1aeee8038\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"5f11d5c440e62fef7bb5\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\",\"version\":\"8997b5406dcf18064a4e\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\":{\"src\":\"http:\\/\\/wordpress.test\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\",\"version\":\"9f910c57a575d29e7f8e\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]}},\"version\":\"wc-9.5.1\",\"hash\":\"3f9a85aab2581e18e668adda54bf178e\"}','no'),(1156,'_transient_timeout_edd_check_protection_files','1736363649','no'),(1157,'_transient_edd_check_protection_files','1','no'),(1158,'wpdb_edd_logs_emails_version','202311100','yes'),(1159,'wpdb_edd_logs_emailmeta_version','202311100','yes'),(1160,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1736277249;}','yes'),(1161,'edd_notification_req_timeout','1736273649','no'),(1162,'tribe_tickets_migrate_offset_','complete','no'),(1164,'admin_email_lifespan','1751829256','yes'),(1166,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.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.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:61:\"https://downloads.w.org/release/wordpress-6.5.5-partial-0.zip\";s:8:\"rollback\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-rollback-0.zip\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:3:\"6.5\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1736277259;s:15:\"version_checked\";s:3:\"6.5\";s:12:\"translations\";a:0:{}}','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; @@ -1123,7 +1246,7 @@ CREATE TABLE `wp_posts` ( LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; -INSERT INTO `wp_posts` VALUES (4,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','[download_checkout]','Checkout','','publish','closed','closed','','checkout','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',0,'http://wordpress.test/checkout/',0,'page','',0),(5,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','','Receipt','','publish','closed','closed','','receipt','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/receipt/',0,'page','',0),(6,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','

Your transaction failed; please try again or contact site support.

','Transaction Failed','','publish','closed','closed','','transaction-failed','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/transaction-failed/',0,'page','',0),(7,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','','Order History','','publish','closed','closed','','order-history','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/order-history/',0,'page','',0),(8,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','

Thank you for your purchase!

','Confirmation','','publish','closed','closed','','confirmation','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/confirmation/',0,'page','',0),(9,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/wp-content/uploads/2023/01/woocommerce-placeholder.png',0,'attachment','image/png',0),(10,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','','Shop','','publish','closed','closed','','shop','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/shop/',0,'page','',0),(11,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/cart/',0,'page','',0),(12,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout-2','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/checkout-2/',0,'page','',0),(13,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/my-account/',0,'page','',0),(14,1,'2023-01-05 13:11:54','0000-00-00 00:00:00','\n

This is a sample page.

\n\n\n\n

Overview

\n\n\n\n

Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.

\n\n\n\n

To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.

\n\n\n\n

Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.

\n\n\n\n

Additional non-returnable items:

\n\n\n\n
    \n
  • Gift cards
  • \n
  • Downloadable software products
  • \n
  • Some health and personal care items
  • \n
\n\n\n\n

To complete your return, we require a receipt or proof of purchase.

\n\n\n\n

Please do not send your purchase back to the manufacturer.

\n\n\n\n

There are certain situations where only partial refunds are granted:

\n\n\n\n
    \n
  • Book with obvious signs of use
  • \n
  • CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.
  • \n
  • Any item not in its original condition, is damaged or missing parts for reasons not due to our error.
  • \n
  • Any item that is returned more than 30 days after delivery
  • \n
\n\n\n\n

Refunds

\n\n\n\n

Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.

\n\n\n\n

If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.

\n\n\n\nLate or missing refunds\n\n\n\n

If you haven’t received a refund yet, first check your bank account again.

\n\n\n\n

Then contact your credit card company, it may take some time before your refund is officially posted.

\n\n\n\n

Next contact your bank. There is often some processing time before a refund is posted.

\n\n\n\n

If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.

\n\n\n\nSale items\n\n\n\n

Only regular priced items may be refunded. Sale items cannot be refunded.

\n\n\n\n

Exchanges

\n\n\n\n

We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.

\n\n\n\n

Gifts

\n\n\n\n

If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.

\n\n\n\n

If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.

\n\n\n\n

Shipping returns

\n\n\n\n

To return your product, you should mail your product to: {physical address}.

\n\n\n\n

You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.

\n\n\n\n

Depending on where you live, the time it may take for your exchanged product to reach you may vary.

\n\n\n\n

If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.

\n\n\n\n

Need help?

\n\n\n\n

Contact us at {email} for questions related to refunds and returns.

\n','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2023-01-05 13:11:54','0000-00-00 00:00:00','',0,'http://wordpress.test/?page_id=14',0,'page','',0),(15,1,'2023-01-06 12:37:03','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-01-06 12:37:03','0000-00-00 00:00:00','',0,'http://wordpress.test/?p=15',0,'post','',0),(16,1,'2023-01-06 12:37:19','2023-01-06 12:37:19','[tec_tickets_checkout]','Tickets Checkout','','publish','closed','closed','','tickets-checkout','','','2023-01-06 12:37:19','2023-01-06 12:37:19','',0,'http://wordpress.test/tickets-checkout/',0,'page','',0),(17,1,'2023-01-06 12:37:19','2023-01-06 12:37:19','[tec_tickets_success]','Order Completed','','publish','closed','closed','','tickets-order','','','2023-01-06 12:37:19','2023-01-06 12:37:19','',0,'http://wordpress.test/tickets-order/',0,'page','',0),(18,0,'2023-11-17 07:24:17','2023-11-17 12:24:17','','Test Event','','publish','open','closed','','test-event','','','2023-11-17 07:24:17','2023-11-17 12:24:17','',0,'http://wordpress.test/event/test-event/',0,'tribe_events','',0),(19,0,'2023-11-17 07:24:18','2023-11-17 12:24:18','','Test WooCommerce ticket for 18','Test WooCommerce ticket description for 18','publish','open','closed','','test-woocommerce-ticket-for-18','','','2023-11-17 07:24:18','2023-11-17 12:24:18','',0,'http://wordpress.test/product/test-woocommerce-ticket-for-18/',-1,'product','',0); +INSERT INTO `wp_posts` VALUES (4,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','[download_checkout]','Checkout','','publish','closed','closed','','checkout','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',0,'http://wordpress.test/checkout/',0,'page','',0),(5,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','','Receipt','','publish','closed','closed','','receipt','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/receipt/',0,'page','',0),(6,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','

Your transaction failed; please try again or contact site support.

','Transaction Failed','','publish','closed','closed','','transaction-failed','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/transaction-failed/',0,'page','',0),(7,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','','Order History','','publish','closed','closed','','order-history','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/order-history/',0,'page','',0),(8,1,'2023-01-05 13:11:42','2023-01-05 13:11:42','

Thank you for your purchase!

','Confirmation','','publish','closed','closed','','confirmation','','','2023-01-05 13:11:42','2023-01-05 13:11:42','',4,'http://wordpress.test/checkout/confirmation/',0,'page','',0),(9,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/wp-content/uploads/2023/01/woocommerce-placeholder.png',0,'attachment','image/png',0),(10,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','','Shop','','publish','closed','closed','','shop','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/shop/',0,'page','',0),(11,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/cart/',0,'page','',0),(12,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout-2','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/checkout-2/',0,'page','',0),(13,1,'2023-01-05 13:11:54','2023-01-05 13:11:54','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account','','','2023-01-05 13:11:54','2023-01-05 13:11:54','',0,'http://wordpress.test/my-account/',0,'page','',0),(14,1,'2023-01-05 13:11:54','0000-00-00 00:00:00','\n

This is a sample page.

\n\n\n\n

Overview

\n\n\n\n

Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.

\n\n\n\n

To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.

\n\n\n\n

Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.

\n\n\n\n

Additional non-returnable items:

\n\n\n\n
    \n
  • Gift cards
  • \n
  • Downloadable software products
  • \n
  • Some health and personal care items
  • \n
\n\n\n\n

To complete your return, we require a receipt or proof of purchase.

\n\n\n\n

Please do not send your purchase back to the manufacturer.

\n\n\n\n

There are certain situations where only partial refunds are granted:

\n\n\n\n
    \n
  • Book with obvious signs of use
  • \n
  • CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.
  • \n
  • Any item not in its original condition, is damaged or missing parts for reasons not due to our error.
  • \n
  • Any item that is returned more than 30 days after delivery
  • \n
\n\n\n\n

Refunds

\n\n\n\n

Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.

\n\n\n\n

If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.

\n\n\n\nLate or missing refunds\n\n\n\n

If you haven’t received a refund yet, first check your bank account again.

\n\n\n\n

Then contact your credit card company, it may take some time before your refund is officially posted.

\n\n\n\n

Next contact your bank. There is often some processing time before a refund is posted.

\n\n\n\n

If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.

\n\n\n\nSale items\n\n\n\n

Only regular priced items may be refunded. Sale items cannot be refunded.

\n\n\n\n

Exchanges

\n\n\n\n

We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.

\n\n\n\n

Gifts

\n\n\n\n

If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.

\n\n\n\n

If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.

\n\n\n\n

Shipping returns

\n\n\n\n

To return your product, you should mail your product to: {physical address}.

\n\n\n\n

You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.

\n\n\n\n

Depending on where you live, the time it may take for your exchanged product to reach you may vary.

\n\n\n\n

If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.

\n\n\n\n

Need help?

\n\n\n\n

Contact us at {email} for questions related to refunds and returns.

\n','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2023-01-05 13:11:54','0000-00-00 00:00:00','',0,'http://wordpress.test/?page_id=14',0,'page','',0),(16,1,'2023-01-06 12:37:19','2023-01-06 12:37:19','[tec_tickets_checkout]','Tickets Checkout','','publish','closed','closed','','tickets-checkout','','','2023-01-06 12:37:19','2023-01-06 12:37:19','',0,'http://wordpress.test/tickets-checkout/',0,'page','',0),(17,1,'2023-01-06 12:37:19','2023-01-06 12:37:19','[tec_tickets_success]','Order Completed','','publish','closed','closed','','tickets-order','','','2023-01-06 12:37:19','2023-01-06 12:37:19','',0,'http://wordpress.test/tickets-order/',0,'page','',0),(18,0,'2023-11-17 07:24:17','2023-11-17 12:24:17','','Test Event','','publish','open','closed','','test-event','','','2023-11-17 07:24:17','2023-11-17 12:24:17','',0,'http://wordpress.test/event/test-event/',0,'tribe_events','',0),(19,0,'2023-11-17 07:24:18','2023-11-17 12:24:18','','Test WooCommerce ticket for 18','Test WooCommerce ticket description for 18','publish','open','closed','','test-woocommerce-ticket-for-18','','','2023-11-17 07:24:18','2023-11-17 12:24:18','',0,'http://wordpress.test/product/test-woocommerce-ticket-for-18/',-1,'product','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; @@ -1194,6 +1317,202 @@ INSERT INTO `wp_tec_occurrences` VALUES (1,1,18,'2019-01-01 10:00:00','2019-01-0 /*!40000 ALTER TABLE `wp_tec_occurrences` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `wp_tec_order_modifier_relationships` +-- + +DROP TABLE IF EXISTS `wp_tec_order_modifier_relationships`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_order_modifier_relationships` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `modifier_id` bigint(20) unsigned NOT NULL, + `post_id` bigint(20) unsigned NOT NULL, + `post_type` varchar(20) NOT NULL, + PRIMARY KEY (`id`), + KEY `tec_order_modifier_relationship_index_modifier_id` (`modifier_id`), + KEY `tec_order_modifier_relationship_index_post_id` (`post_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_order_modifier_relationships` +-- + +LOCK TABLES `wp_tec_order_modifier_relationships` WRITE; +/*!40000 ALTER TABLE `wp_tec_order_modifier_relationships` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_order_modifier_relationships` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_order_modifiers` +-- + +DROP TABLE IF EXISTS `wp_tec_order_modifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_order_modifiers` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `modifier_type` varchar(150) NOT NULL, + `sub_type` varchar(255) NOT NULL, + `raw_amount` decimal(18,6) NOT NULL, + `slug` varchar(150) NOT NULL, + `display_name` varchar(255) NOT NULL, + `status` varchar(20) NOT NULL DEFAULT 'draft', + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `start_time` timestamp NULL DEFAULT NULL, + `end_time` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `tec_order_modifier_index_slug` (`slug`), + KEY `tec_order_modifier_index_modifier_type` (`modifier_type`), + KEY `tec_order_modifier_index_status_modifier_type` (`status`,`modifier_type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_order_modifiers` +-- + +LOCK TABLES `wp_tec_order_modifiers` WRITE; +/*!40000 ALTER TABLE `wp_tec_order_modifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_order_modifiers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_order_modifiers_meta` +-- + +DROP TABLE IF EXISTS `wp_tec_order_modifiers_meta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_order_modifiers_meta` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `order_modifier_id` bigint(20) unsigned NOT NULL, + `meta_key` varchar(100) NOT NULL, + `meta_value` text NOT NULL, + `priority` int(11) NOT NULL DEFAULT 0, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `tec_order_modifier_meta_index_order_modifier_id` (`order_modifier_id`), + KEY `tec_order_modifier_meta_index_meta_key` (`meta_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_order_modifiers_meta` +-- + +LOCK TABLES `wp_tec_order_modifiers_meta` WRITE; +/*!40000 ALTER TABLE `wp_tec_order_modifiers_meta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_order_modifiers_meta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_slr_layouts` +-- + +DROP TABLE IF EXISTS `wp_tec_slr_layouts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_slr_layouts` ( + `id` varchar(36) NOT NULL, + `name` varchar(255) NOT NULL, + `created_date` datetime NOT NULL, + `map` varchar(36) NOT NULL, + `seats` int(11) NOT NULL DEFAULT 0, + `screenshot_url` varchar(255) DEFAULT '', + 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_tec_slr_layouts` +-- + +LOCK TABLES `wp_tec_slr_layouts` WRITE; +/*!40000 ALTER TABLE `wp_tec_slr_layouts` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_slr_layouts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_slr_maps` +-- + +DROP TABLE IF EXISTS `wp_tec_slr_maps`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_slr_maps` ( + `id` varchar(36) NOT NULL, + `name` varchar(255) NOT NULL, + `seats` int(11) NOT NULL DEFAULT 0, + `screenshot_url` varchar(255) DEFAULT '', + 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_tec_slr_maps` +-- + +LOCK TABLES `wp_tec_slr_maps` WRITE; +/*!40000 ALTER TABLE `wp_tec_slr_maps` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_slr_maps` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_slr_seat_types` +-- + +DROP TABLE IF EXISTS `wp_tec_slr_seat_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_slr_seat_types` ( + `id` varchar(36) NOT NULL, + `name` varchar(255) NOT NULL, + `map` varchar(36) NOT NULL, + `layout` varchar(36) NOT NULL, + `seats` int(11) NOT NULL DEFAULT 0, + 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_tec_slr_seat_types` +-- + +LOCK TABLES `wp_tec_slr_seat_types` WRITE; +/*!40000 ALTER TABLE `wp_tec_slr_seat_types` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_slr_seat_types` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_tec_slr_sessions` +-- + +DROP TABLE IF EXISTS `wp_tec_slr_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_tec_slr_sessions` ( + `token` varchar(150) NOT NULL, + `object_id` bigint(20) NOT NULL, + `expiration` int(11) NOT NULL, + `reservations` longblob DEFAULT NULL, + `expiration_lock` tinyint(1) DEFAULT 0, + PRIMARY KEY (`token`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_tec_slr_sessions` +-- + +LOCK TABLES `wp_tec_slr_sessions` WRITE; +/*!40000 ALTER TABLE `wp_tec_slr_sessions` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_tec_slr_sessions` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `wp_term_relationships` -- @@ -1387,7 +1706,7 @@ CREATE TABLE `wp_wc_admin_note_actions` ( `nonce_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`action_id`), KEY `note_id` (`note_id`) -) ENGINE=InnoDB AUTO_INCREMENT=695 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=699 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1396,7 +1715,7 @@ CREATE TABLE `wp_wc_admin_note_actions` ( LOCK TABLES `wp_wc_admin_note_actions` WRITE; /*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */; -INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'notify-refund-returns-page','Edit page','http://wordpress.test/wp-admin/post.php?post=14&action=edit','actioned','',NULL,NULL),(2,2,'connect','Connect','?page=wc-addons§ion=helper','unactioned','',NULL,NULL),(25,23,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned','',NULL,NULL),(45,37,'add-first-product','Add a product','http://wordpress.test/wp-admin/admin.php?page=wc-admin&task=products','actioned','',NULL,NULL),(46,38,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(47,39,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL),(48,3,'browse_extensions','Browse extensions','http://wordpress.test/wp-admin/admin.php?page=wc-addons','unactioned','',NULL,NULL),(76,28,'wc-admin-wisepad3','Grow my business offline','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3','actioned','',NULL,NULL),(81,31,'woocommerce_admin_deprecation_q4_2022','Deactivate WooCommerce Admin','http://wordpress.test/wp-admin/plugins.php','actioned','',NULL,NULL),(82,32,'paypal_paylater_g3_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g3_q4_22','unactioned','',NULL,NULL),(83,33,'paypal_paylater_g2_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22','unactioned','',NULL,NULL),(84,34,'google_listings_ads_custom_attribute_mapping_q4_2022','Learn more','https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping','actioned','',NULL,NULL),(424,40,'update-db_done','Thanks!','http://localhost:8888/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1&s&wc-hide-notice=update','actioned','woocommerce_hide_notices_nonce','woocommerce_hide_notices_nonce','_wc_notice_nonce'),(605,4,'wayflyer_bnpl_q4_2021','Level up with funding','https://woo.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned','',NULL,NULL),(606,5,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woo.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned','',NULL,NULL),(607,6,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL),(608,7,'learn-more','Learn more','https://woo.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL),(609,8,'optimizing-the-checkout-flow','Learn more','https://woo.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL),(610,9,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned','',NULL,NULL),(611,10,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL),(612,11,'get-started','Get started','https://woo.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned','',NULL,NULL),(613,12,'update-wc-subscriptions-3-0-15','View latest version','http://localhost:8888/wp-admin/&page=wc-addons§ion=helper','actioned','',NULL,NULL),(614,13,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL),(615,16,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(616,17,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(617,18,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(618,18,'dismiss','Dismiss','','actioned','',NULL,NULL),(619,19,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(620,19,'dismiss','Dismiss','','actioned','',NULL,NULL),(621,20,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(622,20,'dismiss','Dismiss','','actioned','',NULL,NULL),(623,21,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(624,21,'dismiss','Dismiss','','actioned','',NULL,NULL),(625,22,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned','',NULL,NULL),(626,24,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(627,24,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL),(628,25,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(629,25,'dismiss','Dismiss','','actioned','',NULL,NULL),(630,26,'pinterest_03_2022_update','Update Instructions','https://woo.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned','',NULL,NULL),(631,27,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL),(632,29,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned','',NULL,NULL),(633,29,'dismiss','Dismiss','','actioned','',NULL,NULL),(634,30,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned','',NULL,NULL),(635,30,'dismiss','Dismiss','','actioned','',NULL,NULL),(636,35,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','http://localhost:8888/wp-admin/update-core.php','unactioned','',NULL,NULL),(637,35,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(638,36,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','http://localhost:8888/wp-admin/update-core.php','unactioned','',NULL,NULL),(639,36,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(640,41,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL),(641,42,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(642,42,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL),(643,43,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL),(644,43,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL),(645,44,'tap_to_pay_iphone_q2_2023_no_wcpay','Simplify my payments','https://woo.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay','actioned','',NULL,NULL),(646,45,'extension-settings','See available updates','http://localhost:8888/wp-admin/update-core.php','unactioned','',NULL,NULL),(647,45,'dismiss','Dismiss','#','actioned','',NULL,NULL),(648,46,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(649,46,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(650,47,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL),(651,48,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(652,49,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(653,49,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL),(654,50,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(655,50,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(656,51,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(657,51,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(658,52,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(659,52,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(660,53,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(661,53,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL),(662,54,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(663,54,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL),(664,55,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(665,55,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL),(666,56,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(667,56,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(668,57,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(669,57,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss','Dismiss','#','actioned','',NULL,NULL),(670,58,'woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(671,58,'woocommerce-WCPayments-June-2023-updated-needed-Dismiss','Dismiss','#','actioned','',NULL,NULL),(672,59,'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(673,59,'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss','Dismiss','#','actioned','',NULL,NULL),(674,60,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(675,60,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL),(676,61,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(677,61,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','http://localhost:8888/wp-admin/#','actioned','',NULL,NULL),(678,62,'woocommerce-WCGC-July-2023-update-needed','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(679,62,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL),(680,63,'learn-more','Learn more','https://woo.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL),(681,64,'plugin-list','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(682,64,'dismiss','Dismiss','http://localhost:8888/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL),(683,65,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','http://localhost:8888/wp-admin/update-core.php?','unactioned','',NULL,NULL),(684,65,'dismiss','Dismiss','#','actioned','',NULL,NULL),(685,66,'dismiss','Dismiss','#','actioned','',NULL,NULL),(686,67,'woocommerce-WooPayments-Aug-2023-update-needed','See available updates','http://localhost:8888/wp-admin/update-core.php?','unactioned','',NULL,NULL),(687,67,'dismiss','Dismiss','#','actioned','',NULL,NULL),(688,68,'dismiss','Dismiss','#','actioned','',NULL,NULL),(689,69,'avalara_q3-2023_noAvaTax','Automate my sales tax','https://woo.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax','unactioned','',NULL,NULL),(690,70,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned','',NULL,NULL),(691,71,'woocommerce-usermeta-Sept2023-productvendors','See available updates','http://localhost:8888/wp-admin/plugins.php','unactioned','',NULL,NULL),(692,71,'dismiss','Dismiss','http://localhost:8888/wp-admin/#','actioned','',NULL,NULL),(693,72,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','http://localhost:8888/wp-admin/update-core.php','unactioned','',NULL,NULL),(694,72,'dismiss','Dismiss','#','actioned','',NULL,NULL); +INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'notify-refund-returns-page','Edit page','http://wordpress.test/wp-admin/post.php?post=14&action=edit','actioned','',NULL,NULL),(2,2,'connect','Connect','?page=wc-addons§ion=helper','unactioned','',NULL,NULL),(25,23,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned','',NULL,NULL),(45,37,'add-first-product','Add a product','http://wordpress.test/wp-admin/admin.php?page=wc-admin&task=products','actioned','',NULL,NULL),(46,38,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(47,39,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL),(48,3,'browse_extensions','Browse extensions','http://wordpress.test/wp-admin/admin.php?page=wc-addons','unactioned','',NULL,NULL),(76,28,'wc-admin-wisepad3','Grow my business offline','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3','actioned','',NULL,NULL),(81,31,'woocommerce_admin_deprecation_q4_2022','Deactivate WooCommerce Admin','http://wordpress.test/wp-admin/plugins.php','actioned','',NULL,NULL),(82,32,'paypal_paylater_g3_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g3_q4_22','unactioned','',NULL,NULL),(83,33,'paypal_paylater_g2_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22','unactioned','',NULL,NULL),(84,34,'google_listings_ads_custom_attribute_mapping_q4_2022','Learn more','https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping','actioned','',NULL,NULL),(424,40,'update-db_done','Thanks!','http://localhost:8888/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1&s&wc-hide-notice=update','actioned','woocommerce_hide_notices_nonce','woocommerce_hide_notices_nonce','_wc_notice_nonce'),(605,4,'wayflyer_bnpl_q4_2021','Level up with funding','https://woo.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned','',NULL,NULL),(606,5,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woo.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned','',NULL,NULL),(607,6,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL),(608,7,'learn-more','Learn more','https://woo.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL),(609,8,'optimizing-the-checkout-flow','Learn more','https://woo.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL),(610,9,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned','',NULL,NULL),(611,10,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL),(612,11,'get-started','Get started','https://woo.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned','',NULL,NULL),(613,12,'update-wc-subscriptions-3-0-15','View latest version','http://localhost:8888/wp-admin/&page=wc-addons§ion=helper','actioned','',NULL,NULL),(614,13,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL),(615,16,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(616,17,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(617,18,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(618,18,'dismiss','Dismiss','','actioned','',NULL,NULL),(619,19,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(620,19,'dismiss','Dismiss','','actioned','',NULL,NULL),(621,20,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(622,20,'dismiss','Dismiss','','actioned','',NULL,NULL),(623,21,'learn-more','Learn more','https://woo.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(624,21,'dismiss','Dismiss','','actioned','',NULL,NULL),(625,22,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned','',NULL,NULL),(626,24,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(627,24,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL),(628,25,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(629,25,'dismiss','Dismiss','','actioned','',NULL,NULL),(630,26,'pinterest_03_2022_update','Update Instructions','https://woo.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned','',NULL,NULL),(631,27,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL),(632,29,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned','',NULL,NULL),(633,29,'dismiss','Dismiss','','actioned','',NULL,NULL),(634,30,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned','',NULL,NULL),(635,30,'dismiss','Dismiss','','actioned','',NULL,NULL),(636,35,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','http://localhost:8888/wp-admin/update-core.php','unactioned','',NULL,NULL),(637,35,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(638,36,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','http://localhost:8888/wp-admin/update-core.php','unactioned','',NULL,NULL),(639,36,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),(640,41,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL),(641,42,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(642,42,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL),(643,43,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL),(644,43,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL),(645,44,'tap_to_pay_iphone_q2_2023_no_wcpay','Simplify my payments','https://woo.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay','actioned','',NULL,NULL),(646,45,'extension-settings','See available updates','http://localhost:8888/wp-admin/update-core.php','unactioned','',NULL,NULL),(647,45,'dismiss','Dismiss','#','actioned','',NULL,NULL),(648,46,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(649,46,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(650,47,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL),(651,48,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(652,49,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(653,49,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL),(654,50,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(655,50,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),(656,51,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(657,51,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(658,52,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(659,52,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),(660,53,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(661,53,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL),(662,54,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(663,54,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL),(664,55,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(665,55,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woo.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL),(666,56,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(667,56,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','http://localhost:8888/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),(668,57,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(669,57,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss','Dismiss','#','actioned','',NULL,NULL),(670,58,'woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(671,58,'woocommerce-WCPayments-June-2023-updated-needed-Dismiss','Dismiss','#','actioned','',NULL,NULL),(672,59,'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(673,59,'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss','Dismiss','#','actioned','',NULL,NULL),(674,60,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(675,60,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL),(676,61,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),(677,61,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','http://localhost:8888/wp-admin/#','actioned','',NULL,NULL),(678,62,'woocommerce-WCGC-July-2023-update-needed','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(679,62,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL),(680,63,'learn-more','Learn more','https://woo.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL),(681,64,'plugin-list','See available updates','http://localhost:8888/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),(682,64,'dismiss','Dismiss','http://localhost:8888/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL),(683,65,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','http://localhost:8888/wp-admin/update-core.php?','unactioned','',NULL,NULL),(684,65,'dismiss','Dismiss','#','actioned','',NULL,NULL),(685,66,'dismiss','Dismiss','#','actioned','',NULL,NULL),(686,67,'woocommerce-WooPayments-Aug-2023-update-needed','See available updates','http://localhost:8888/wp-admin/update-core.php?','unactioned','',NULL,NULL),(687,67,'dismiss','Dismiss','#','actioned','',NULL,NULL),(688,68,'dismiss','Dismiss','#','actioned','',NULL,NULL),(689,69,'avalara_q3-2023_noAvaTax','Automate my sales tax','https://woo.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax','unactioned','',NULL,NULL),(690,70,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned','',NULL,NULL),(691,71,'woocommerce-usermeta-Sept2023-productvendors','See available updates','http://localhost:8888/wp-admin/plugins.php','unactioned','',NULL,NULL),(692,71,'dismiss','Dismiss','http://localhost:8888/wp-admin/#','actioned','',NULL,NULL),(693,72,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','http://localhost:8888/wp-admin/update-core.php','unactioned','',NULL,NULL),(694,72,'dismiss','Dismiss','#','actioned','',NULL,NULL),(695,73,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(696,74,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(697,75,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(698,76,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL); /*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */; UNLOCK TABLES; @@ -1426,7 +1745,7 @@ CREATE TABLE `wp_wc_admin_notes` ( `is_read` tinyint(1) NOT NULL DEFAULT 0, `icon` varchar(200) NOT NULL DEFAULT 'info', PRIMARY KEY (`note_id`) -) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1435,7 +1754,7 @@ CREATE TABLE `wp_wc_admin_notes` ( LOCK TABLES `wp_wc_admin_notes` WRITE; /*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */; -INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2023-01-05 13:11:55',NULL,0,'plain','',1,0,'info'),(2,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2023-01-05 13:11:56',NULL,0,'plain','',1,0,'info'),(3,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',1,0,'info'),(4,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(5,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by WooCommerce Shipping – all directly from your mobile device!','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(6,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(7,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.

Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with WooCommerce Shipping.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(8,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(9,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(10,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(11,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(12,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade WooCommerce Subscriptions to version 3.0.15 or later.

Click the button below to view and update to the latest Subscriptions version, or log in to WooCommerce.com Dashboard and navigate to your Downloads page.

We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.

If you have any questions we are here to help — just open a ticket.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(13,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(14,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(15,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(16,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!

Now is a great time to upgrade to our latest PayPal extension to continue to receive support and updates with PayPal.

Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(17,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.

Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(18,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(19,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(20,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(21,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(22,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(23,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(24,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use PayPal Payments to accept PayPal.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(25,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(26,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit Plugins > Installed Plugins, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(27,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(28,'wc-admin-wisepad3','marketing','en_US','Take your business on the go in Canada with WooCommerce In-Person Payments','Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory – no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(29,'woocommerce-payments-august-2022-need-to-update','update','en_US','Action required: Please update WooCommerce Payments','An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(30,'woocommerce-payments-august-2022-store-patched','update','en_US','WooCommerce Payments has been automatically updated','You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(31,'woocommerce_admin_deprecation_q4_2022','info','en_US','WooCommerce Admin is part of WooCommerce!','To make sure your store continues to run smoothly, check that WooCommerce is up-to-date – at least version 6.5 – and then disable the WooCommerce Admin plugin.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(32,'paypal_paylater_g3_q4_22','marketing','en_US','Turn browsers into buyers with Pay Later','Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 4 & Pay Monthly, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales – at no extra cost to you.','{}','unactioned','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',1,0,'info'),(33,'paypal_paylater_g2_q4_22','marketing','en_US','Upgrade to PayPal Payments to offer Pay Later at checkout','PayPal Pay Later is included in PayPal Payments at no additional cost to you. Customers can spread their payments over time while you get paid up front. \r\nThere’s never been a better time to upgrade your PayPal plugin. Simply download it and connect with a PayPal Business account.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(34,'google_listings_ads_custom_attribute_mapping_q4_2022','marketing','en_US','Our latest improvement to the Google Listings & Ads extension: Attribute Mapping','You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(35,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(36,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(37,'wc-admin-add-first-product-note','email','en_US','Add your first product','{greetings}

Nice one; you\'ve created a WooCommerce store! Now it\'s time to add your first product and get ready to start selling.

There are three ways to add your products: you can create products manually, import them at once via CSV file, or migrate them from another service.

Explore our docs for more information, or just get started!','{\"role\":\"administrator\"}','unactioned','woocommerce-admin','2023-01-09 14:29:21',NULL,0,'plain','http://wordpress.test/wp-content/plugins/woocommerce/images/admin_notes/dashboard-widget-setup.png',0,0,'info'),(38,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2023-01-09 14:29:21',NULL,0,'plain','',0,0,'info'),(39,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2023-01-09 14:29:21',NULL,0,'plain','',0,0,'info'),(40,'wc-update-db-reminder','update','en_US','WooCommerce database update done','WooCommerce database update complete. Thank you for updating to the latest version!','{}','actioned','woocommerce-core','2023-11-17 12:52:13',NULL,0,'plain','',0,0,'info'),(41,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(42,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nGet started in seconds.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(43,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','Your store requires a security update for WooCommerce Payments. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(44,'tap_to_pay_iphone_q2_2023_no_wcpay','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','unactioned','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(45,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','Your store requires a security update for the WooCommerce Pre-Orders extension. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(46,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(47,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n

\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(48,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n

\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(49,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(50,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(51,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(52,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(53,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(54,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(55,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(56,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(57,'woocommerce-WCstripe-May-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Stripe plugin','Your store requires a security update for the WooCommerce Stripe plugin. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(58,'woocommerce-WCPayments-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Payments','Your store requires a security update for the WooCommerce Payments plugin. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(59,'woocommerce-WCSubscriptions-June-2023-updated-needed','marketing','en_US','Action required: Security update of WooCommerce Subscriptions','Your store requires a security update for the WooCommerce Subscriptions plugin. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(60,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','Your store requires a security update for the Returns and Warranty Requests extension. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(61,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(62,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(63,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(64,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','Your store requires an update for the WooCommerce Shipping extension. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(65,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','Your shop requires an important security update for the WooCommerce Stripe plugin. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(66,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','Your store has been updated to the latest secure version of the WooCommerce Stripe plugin. This update was released on July 31.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(67,'woocommerce-WooPayments-Aug-2023-update-needed','update','en_US','Action required: Security update for WooPayments (WooCommerce Payments) plugin','Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(68,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','Your store has been updated to the more secure version of WooPayments (WooCommerce Payments). This update was released on July 31.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(69,'avalara_q3-2023_noAvaTax','marketing','en_US','Automatically calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(70,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(71,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','Your shop needs an update to address a vulnerability in WooCommerce. The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. Read our developer update for more information.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(72,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'); +INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2023-01-05 13:11:55',NULL,0,'plain','',1,0,'info'),(2,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2023-01-05 13:11:56',NULL,0,'plain','',1,0,'info'),(3,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',1,0,'info'),(4,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(5,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by WooCommerce Shipping – all directly from your mobile device!','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(6,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(7,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.

Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with WooCommerce Shipping.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(8,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(9,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(10,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(11,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(12,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade WooCommerce Subscriptions to version 3.0.15 or later.

Click the button below to view and update to the latest Subscriptions version, or log in to WooCommerce.com Dashboard and navigate to your Downloads page.

We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.

If you have any questions we are here to help — just open a ticket.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(13,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(14,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(15,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(16,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!

Now is a great time to upgrade to our latest PayPal extension to continue to receive support and updates with PayPal.

Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(17,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.

Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(18,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(19,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(20,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(21,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(22,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(23,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(24,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use PayPal Payments to accept PayPal.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(25,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(26,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit Plugins > Installed Plugins, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(27,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(28,'wc-admin-wisepad3','marketing','en_US','Take your business on the go in Canada with WooCommerce In-Person Payments','Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory – no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(29,'woocommerce-payments-august-2022-need-to-update','update','en_US','Action required: Please update WooCommerce Payments','An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(30,'woocommerce-payments-august-2022-store-patched','update','en_US','WooCommerce Payments has been automatically updated','You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(31,'woocommerce_admin_deprecation_q4_2022','info','en_US','WooCommerce Admin is part of WooCommerce!','To make sure your store continues to run smoothly, check that WooCommerce is up-to-date – at least version 6.5 – and then disable the WooCommerce Admin plugin.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(32,'paypal_paylater_g3_q4_22','marketing','en_US','Turn browsers into buyers with Pay Later','Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 4 & Pay Monthly, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales – at no extra cost to you.','{}','unactioned','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',1,0,'info'),(33,'paypal_paylater_g2_q4_22','marketing','en_US','Upgrade to PayPal Payments to offer Pay Later at checkout','PayPal Pay Later is included in PayPal Payments at no additional cost to you. Customers can spread their payments over time while you get paid up front. \r\nThere’s never been a better time to upgrade your PayPal plugin. Simply download it and connect with a PayPal Business account.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(34,'google_listings_ads_custom_attribute_mapping_q4_2022','marketing','en_US','Our latest improvement to the Google Listings & Ads extension: Attribute Mapping','You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(35,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(36,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2023-01-05 13:13:22',NULL,0,'plain','',0,0,'info'),(37,'wc-admin-add-first-product-note','email','en_US','Add your first product','{greetings}

Nice one; you\'ve created a WooCommerce store! Now it\'s time to add your first product and get ready to start selling.

There are three ways to add your products: you can create products manually, import them at once via CSV file, or migrate them from another service.

Explore our docs for more information, or just get started!','{\"role\":\"administrator\"}','unactioned','woocommerce-admin','2023-01-09 14:29:21',NULL,0,'plain','http://wordpress.test/wp-content/plugins/woocommerce/images/admin_notes/dashboard-widget-setup.png',0,0,'info'),(38,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2023-01-09 14:29:21',NULL,0,'plain','',0,0,'info'),(39,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2023-01-09 14:29:21',NULL,0,'plain','',0,0,'info'),(40,'wc-update-db-reminder','update','en_US','WooCommerce database update done','WooCommerce database update complete. Thank you for updating to the latest version!','{}','actioned','woocommerce-core','2023-11-17 12:52:13',NULL,0,'plain','',0,0,'info'),(41,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(42,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nGet started in seconds.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(43,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','Your store requires a security update for WooCommerce Payments. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(44,'tap_to_pay_iphone_q2_2023_no_wcpay','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','unactioned','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(45,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','Your store requires a security update for the WooCommerce Pre-Orders extension. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(46,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(47,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n

\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(48,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n

\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(49,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(50,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(51,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(52,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(53,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(54,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(55,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(56,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(57,'woocommerce-WCstripe-May-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Stripe plugin','Your store requires a security update for the WooCommerce Stripe plugin. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(58,'woocommerce-WCPayments-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Payments','Your store requires a security update for the WooCommerce Payments plugin. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(59,'woocommerce-WCSubscriptions-June-2023-updated-needed','marketing','en_US','Action required: Security update of WooCommerce Subscriptions','Your store requires a security update for the WooCommerce Subscriptions plugin. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(60,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','Your store requires a security update for the Returns and Warranty Requests extension. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(61,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(62,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(63,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(64,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','Your store requires an update for the WooCommerce Shipping extension. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(65,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','Your shop requires an important security update for the WooCommerce Stripe plugin. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:14',NULL,0,'plain','',0,0,'info'),(66,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','Your store has been updated to the latest secure version of the WooCommerce Stripe plugin. This update was released on July 31.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(67,'woocommerce-WooPayments-Aug-2023-update-needed','update','en_US','Action required: Security update for WooPayments (WooCommerce Payments) plugin','Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(68,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','Your store has been updated to the more secure version of WooPayments (WooCommerce Payments). This update was released on July 31.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(69,'avalara_q3-2023_noAvaTax','marketing','en_US','Automatically calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(70,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(71,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','Your shop needs an update to address a vulnerability in WooCommerce. The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. Read our developer update for more information.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(72,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2023-11-17 13:57:15',NULL,0,'plain','',0,0,'info'),(73,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','{}','unactioned','woocommerce-admin','2025-01-07 19:14:08',NULL,0,'plain','',0,0,'info'),(74,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2025-01-07 19:14:08',NULL,0,'plain','',0,0,'info'),(75,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2025-01-07 19:14:08',NULL,0,'plain','',0,0,'info'),(76,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2025-01-07 19:14:08',NULL,0,'plain','',0,0,'info'); /*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */; UNLOCK TABLES; @@ -1886,6 +2205,7 @@ CREATE TABLE `wp_wc_product_meta_lookup` ( `total_sales` bigint(20) DEFAULT 0, `tax_status` varchar(100) DEFAULT 'taxable', `tax_class` varchar(100) DEFAULT '', + `global_unique_id` varchar(100) DEFAULT '', PRIMARY KEY (`product_id`), KEY `virtual` (`virtual`), KEY `downloadable` (`downloadable`), @@ -1903,7 +2223,7 @@ CREATE TABLE `wp_wc_product_meta_lookup` ( LOCK TABLES `wp_wc_product_meta_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */; -INSERT INTO `wp_wc_product_meta_lookup` VALUES (19,'',1,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''); +INSERT INTO `wp_wc_product_meta_lookup` VALUES (19,'',1,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','',''); /*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */; UNLOCK TABLES; @@ -2429,4 +2749,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-09-25 12:33:24 +-- Dump completed on 2025-01-07 19:14:37 From 200cecd2db82336ce9c2d4da6cde113f51f2b556 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 21:22:14 +0200 Subject: [PATCH 068/112] Fix workflows --- .github/workflows/tests-php-eva.yml | 8 +- .github/workflows/tests-php-with-woo.yml | 392 +++++++++++++++++++++++ .github/workflows/tests-php.yml | 2 +- 3 files changed, 394 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/tests-php-with-woo.yml diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index daa900dcfb..11f06aab7f 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -323,12 +323,6 @@ jobs: docker network prune -f ${SLIC_BIN} use events-pro ${SLIC_BIN} composer install --no-dev - # -------------------------------------------------------------------------- - # Install and activate WooCommerce - # ------------------------------------------------------------------------------ - - name: Install WooCommerce - if: steps.skip.outputs.value != 1 - run: ${SLIC_BIN} site-cli plugin install woocommerce --version='8.2.2' # ------------------------------------------------------------------------------ # Install and activate Easy Digital Downloads # ------------------------------------------------------------------------------ @@ -356,7 +350,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.5 + ${SLIC_BIN} wp core update --force --version=6.6 ${SLIC_BIN} wp core version ${SLIC_BIN} wp theme install twentytwenty --activate - name: Run suite tests diff --git a/.github/workflows/tests-php-with-woo.yml b/.github/workflows/tests-php-with-woo.yml new file mode 100644 index 0000000000..b827ce7473 --- /dev/null +++ b/.github/workflows/tests-php-with-woo.yml @@ -0,0 +1,392 @@ +name: 'EVA Codeception + Woo Tests' +on: [ pull_request ] +jobs: + test: + strategy: + fail-fast: false + matrix: + suite: [ eva_integration, restv1_et ] + runs-on: ubuntu-latest + steps: + # ------------------------------------------------------------------------------ + # Checkout the repo + # ------------------------------------------------------------------------------ + - name: Checkout the repository + uses: actions/checkout@v4 + with: + fetch-depth: 1000 + token: ${{ secrets.GH_BOT_TOKEN }} + submodules: recursive + # ------------------------------------------------------------------------------ + # Check if any PHP files have changed + # ------------------------------------------------------------------------------ + - name: Check changed files + id: skip + run: | + num_php_files=$(git diff ${{ github.event.pull_request.base.sha }} HEAD --name-only | grep -P "\.php" | wc -l) + if [[ -z "$num_php_files" ]]; then + echo "value=1" >> $GITHUB_OUTPUT + echo "## No PHP Files changed, PHP tests automatically pass." >> $GITHUB_STEP_SUMMARY + elif [[ "$num_php_files" == "0" || "$num_php_files" == "" ]]; then + echo "value=1" >> $GITHUB_OUTPUT + echo "## No PHP Files changed, PHP tests automatically pass." >> $GITHUB_STEP_SUMMARY + else + echo "value=0" >> $GITHUB_OUTPUT + echo "## Found PHP file changes, running PHP tests." >> $GITHUB_STEP_SUMMARY + fi + # ------------------------------------------------------------------------------ + # Checkout slic + # ------------------------------------------------------------------------------ + - name: Checkout slic + uses: actions/checkout@v4 + if: steps.skip.outputs.value != 1 + with: + repository: stellarwp/slic + ref: main + path: slic + fetch-depth: 1 + # ------------------------------------------------------------------------------ + # Prepare our composer cache directory + # ------------------------------------------------------------------------------ + - name: Get Composer Cache Directory + id: get-composer-cache-dir + if: steps.skip.outputs.value != 1 + run: | + echo "::set-output name=dir::$(composer config cache-files-dir)" + - uses: actions/cache@v2 + id: composer-cache + if: steps.skip.outputs.value != 1 + with: + path: ${{ steps.get-composer-cache-dir.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-composer- + # ------------------------------------------------------------------------------ + # Initialize slic + # ------------------------------------------------------------------------------ + - name: Move slic directory up + if: steps.skip.outputs.value != 1 + run: | + mv slic ./../slic + - name: Set up slic env vars + if: steps.skip.outputs.value != 1 + run: | + echo "SLIC_COMPOSER_VERSION=2" >> $GITHUB_ENV + echo "SLIC_BIN=${GITHUB_WORKSPACE}/../slic/slic" >> $GITHUB_ENV + echo "SLIC_WP_DIR=${GITHUB_WORKSPACE}/../slic/_wordpress" >> $GITHUB_ENV + - name: Set run context for slic + if: steps.skip.outputs.value != 1 + run: echo "SLIC=1" >> $GITHUB_ENV && echo "CI=1" >> $GITHUB_ENV + - name: Start ssh-agent + if: steps.skip.outputs.value != 1 + run: | + mkdir -p "${HOME}/.ssh"; + ssh-agent -a /tmp/ssh_agent.sock; + - name: Export SSH_AUTH_SOCK env var + if: steps.skip.outputs.value != 1 + run: echo "SSH_AUTH_SOCK=/tmp/ssh_agent.sock" >> $GITHUB_ENV + - name: Set up slic for CI + if: steps.skip.outputs.value != 1 + run: | + cd ${GITHUB_WORKSPACE}/.. + ${SLIC_BIN} here + ${SLIC_BIN} interactive off + ${SLIC_BIN} build-prompt off + ${SLIC_BIN} build-subdir off + ${SLIC_BIN} xdebug off + ${SLIC_BIN} composer-cache set /home/runner/.cache/composer + ${SLIC_BIN} debug on + ${SLIC_BIN} info + ${SLIC_BIN} config + # ------------------------------------------------------------------------------ + # Fetch branches for dependent repos + # ------------------------------------------------------------------------------ + - name: Fetch head branch from TEC + uses: octokit/request-action@v2.x + if: steps.skip.outputs.value != 1 + id: fetch-tec-head-branch + with: + route: GET /repos/{owner}/{repo}/branches/${{ github.head_ref }} + owner: the-events-calendar + repo: the-events-calendar + env: + GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} + continue-on-error: true + - name: Fetch base branch from TEC + uses: octokit/request-action@v2.x + id: fetch-tec-base-branch + if: steps.skip.outputs.value != 1 && steps.fetch-tec-head-branch.outcome != 'success' + with: + route: GET /repos/{owner}/{repo}/branches/${{ github.base_ref }} + owner: the-events-calendar + repo: the-events-calendar + env: + GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} + continue-on-error: true + - name: Fetch head branch from ET + uses: octokit/request-action@v2.x + id: fetch-et-head-branch + if: steps.skip.outputs.value != 1 + with: + route: GET /repos/{owner}/{repo}/branches/${{ github.head_ref }} + owner: the-events-calendar + repo: event-tickets + env: + GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} + continue-on-error: true + - name: Fetch base branch from ET + uses: octokit/request-action@v2.x + id: fetch-et-base-branch + if: steps.skip.outputs.value != 1 && steps.fetch-et-head-branch.outcome != 'success' + with: + route: GET /repos/{owner}/{repo}/branches/${{ github.base_ref }} + owner: the-events-calendar + repo: event-tickets + env: + GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} + continue-on-error: true + - name: Fetch head branch from ET+ + uses: octokit/request-action@v2.x + id: fetch-et-plus-head-branch + if: steps.skip.outputs.value != 1 + with: + route: GET /repos/{owner}/{repo}/branches/${{ github.head_ref }} + owner: the-events-calendar + repo: event-tickets-plus + env: + GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} + continue-on-error: true + - name: Fetch base branch from ET+ + uses: octokit/request-action@v2.x + id: fetch-et-plus-base-branch + if: steps.skip.outputs.value != 1 && steps.fetch-et-plus-head-branch.outcome != 'success' + with: + route: GET /repos/{owner}/{repo}/branches/${{ github.base_ref }} + owner: the-events-calendar + repo: event-tickets-plus + env: + GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} + continue-on-error: true + - name: Fetch head branch from Pro + uses: octokit/request-action@v2.x + id: fetch-pro-head-branch + if: steps.skip.outputs.value != 1 + with: + route: GET /repos/{owner}/{repo}/branches/${{ github.head_ref }} + owner: the-events-calendar + repo: events-pro + env: + GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} + continue-on-error: true + - name: Fetch base branch from Pro + uses: octokit/request-action@v2.x + id: fetch-pro-base-branch + if: steps.skip.outputs.value != 1 && steps.fetch-pro-head-branch.outcome != 'success' + with: + route: GET /repos/{owner}/{repo}/branches/${{ github.base_ref }} + owner: the-events-calendar + repo: events-pro + env: + GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} + continue-on-error: true + # -------------------------------------------------------------------------- + # Set TEC branch + # ------------------------------------------------------------------------------ + - name: Set TEC with head branch + if: steps.skip.outputs.value != 1 && steps.fetch-tec-head-branch.outcome == 'success' + run: echo "TEC_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV + - name: Set TEC with base branch + if: steps.skip.outputs.value != 1 && steps.fetch-tec-head-branch.outcome != 'success' && steps.fetch-tec-base-branch.outcome == 'success' + run: echo "TEC_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV + - name: Set TEC with master branch + if: steps.skip.outputs.value != 1 && steps.fetch-tec-head-branch.outcome != 'success' && steps.fetch-tec-base-branch.outcome != 'success' + run: echo "TEC_BRANCH=master" >> $GITHUB_ENV + # ------------------------------------------------------------------------------ + # Set ET branch + # ------------------------------------------------------------------------------ + - name: Set ET with head branch + if: steps.skip.outputs.value != 1 && steps.fetch-et-head-branch.outcome == 'success' + run: echo "ET_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV + - name: Set ET with base branch + if: steps.skip.outputs.value != 1 && steps.fetch-et-head-branch.outcome != 'success' && steps.fetch-et-base-branch.outcome == 'success' + run: echo "ET_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV + - name: Set ET with master branch + if: steps.skip.outputs.value != 1 && steps.fetch-et-head-branch.outcome != 'success' && steps.fetch-et-base-branch.outcome != 'success' + run: echo "ET_BRANCH=master" >> $GITHUB_ENV + # ------------------------------------------------------------------------------ + # Set ET+ branch + # ------------------------------------------------------------------------------ + - name: Set ET+ with head branch + if: steps.skip.outputs.value != 1 && steps.fetch-et-plus-head-branch.outcome == 'success' + run: echo "ET_PLUS_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV + - name: Set ET+ with base branch + if: steps.skip.outputs.value != 1 && steps.fetch-et-plus-head-branch.outcome != 'success' && steps.fetch-et-plus-base-branch.outcome == 'success' + run: echo "ET_PLUS_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV + - name: Set ET+ with master branch + if: steps.skip.outputs.value != 1 && steps.fetch-et-plus-head-branch.outcome != 'success' && steps.fetch-et-plus-base-branch.outcome != 'success' + run: echo "ET_PLUS_BRANCH=master" >> $GITHUB_ENV + # -------------------------------------------------------------------------- + # Set Pro branch + # -------------------------------------------------------------------------- + - name: Set Pro with head branch + if: steps.skip.outputs.value != 1 && steps.fetch-pro-head-branch.outcome == 'success' + run: echo "PRO_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV + - name: Set Pro with base branch + if: steps.skip.outputs.value != 1 && steps.fetch-pro-head-branch.outcome != 'success' && steps.fetch-pro-base-branch.outcome == 'success' + run: echo "PRO_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV + - name: Set Pro with master branch + if: steps.skip.outputs.value != 1 && steps.fetch-pro-head-branch.outcome != 'success' && steps.fetch-pro-base-branch.outcome != 'success' + run: echo "PRO_BRANCH=master" >> $GITHUB_ENV + # -------------------------------------------------------------------------- + # Clone and init TEC + # ------------------------------------------------------------------------------ + - name: Clone TEC + uses: actions/checkout@v4 + if: steps.skip.outputs.value != 1 + with: + fetch-depth: 1 + repository: the-events-calendar/the-events-calendar + ref: ${{ env.TEC_BRANCH }} + token: ${{ secrets.GH_BOT_TOKEN }} + path: the-events-calendar + submodules: recursive + - name: Init TEC + if: steps.skip.outputs.value != 1 + run: | + mv ${GITHUB_WORKSPACE}/the-events-calendar ${GITHUB_WORKSPACE}/../the-events-calendar + docker network prune -f + ${SLIC_BIN} use the-events-calendar + ${SLIC_BIN} composer install --no-dev + # ------------------------------------------------------------------------------ + # Clone and init ET + # ------------------------------------------------------------------------------ + - name: Clone ET + uses: actions/checkout@v4 + if: steps.skip.outputs.value != 1 + with: + fetch-depth: 1 + repository: the-events-calendar/event-tickets + ref: ${{ env.ET_BRANCH }} + token: ${{ secrets.GH_BOT_TOKEN }} + path: event-tickets + submodules: recursive + - name: Init ET + if: steps.skip.outputs.value != 1 + run: | + mv ${GITHUB_WORKSPACE}/event-tickets ${GITHUB_WORKSPACE}/../event-tickets + docker network prune -f + ${SLIC_BIN} use event-tickets + ${SLIC_BIN} composer install --no-dev + - name: Set up Common + if: steps.skip.outputs.value != 1 + run: | + docker network prune -f + ${SLIC_BIN} use event-tickets/common + ${SLIC_BIN} composer install --no-dev + # ------------------------------------------------------------------------------ + # Clone and init ET+ + # ------------------------------------------------------------------------------ + - name: Clone ET+ + uses: actions/checkout@v4 + if: steps.skip.outputs.value != 1 + with: + fetch-depth: 1 + repository: the-events-calendar/event-tickets-plus + ref: ${{ env.ET_PLUS_BRANCH }} + token: ${{ secrets.GH_BOT_TOKEN }} + path: event-tickets-plus + submodules: recursive + - name: Init ET+ + if: steps.skip.outputs.value != 1 + run: | + mv ${GITHUB_WORKSPACE}/event-tickets-plus ${GITHUB_WORKSPACE}/../event-tickets-plus + docker network prune -f + ${SLIC_BIN} use event-tickets-plus + ${SLIC_BIN} composer install --no-dev + # -------------------------------------------------------------------------- + # Clone and init Pro + # -------------------------------------------------------------------------- + - name: Clone Pro + uses: actions/checkout@v2 + if: steps.skip.outputs.value != 1 + with: + fetch-depth: 1 + repository: the-events-calendar/events-pro + ref: ${{ env.PRO_BRANCH }} + token: ${{ secrets.GH_BOT_TOKEN }} + path: events-pro + submodules: recursive + - name: Init Pro + if: steps.skip.outputs.value != 1 + run: | + mv ${GITHUB_WORKSPACE}/events-pro ${GITHUB_WORKSPACE}/../events-pro + docker network prune -f + ${SLIC_BIN} use events-pro + ${SLIC_BIN} composer install --no-dev + # -------------------------------------------------------------------------- + # Install and activate WooCommerce + # ------------------------------------------------------------------------------ + - name: Install WooCommerce + if: steps.skip.outputs.value != 1 + run: ${SLIC_BIN} site-cli plugin install woocommerce --version='8.2.2' + # ------------------------------------------------------------------------------ + # Install and activate Easy Digital Downloads + # ------------------------------------------------------------------------------ + - name: Install Easy Digital Downloads + if: steps.skip.outputs.value != 1 + run: ${SLIC_BIN} site-cli plugin install easy-digital-downloads + # ------------------------------------------------------------------------------ + # Set up Common + # ------------------------------------------------------------------------------ + - name: Move Common inside TEC + if: steps.skip.outputs.value != 1 + run: | + rm -rf ${GITHUB_WORKSPACE}/../the-events-calendar/common + cp -r ${GITHUB_WORKSPACE} ${GITHUB_WORKSPACE}/../the-events-calendar/common + # ------------------------------------------------------------------------------ + # Set up Common and run tests + # ------------------------------------------------------------------------------ + - name: Set up Common + if: steps.skip.outputs.value != 1 + run: | + ${SLIC_BIN} use the-events-calendar/common + ${SLIC_BIN} composer install + - name: Init the WordPress container and Set up a theme + if: steps.skip.outputs.value != 1 + run: | + ${SLIC_BIN} up wordpress + ${SLIC_BIN} wp core version + ${SLIC_BIN} wp core update --force --version=6.6 + ${SLIC_BIN} wp core version + ${SLIC_BIN} wp theme install twentytwenty --activate + - name: Run suite tests + if: steps.skip.outputs.value != 1 + run: ${SLIC_BIN} run ${{ matrix.suite }} + # ------------------------------------------------------------------------------ + # Copy test outputs into workspace (On failure) + # ------------------------------------------------------------------------------ + - name: Copy test outputs into workspace + if: ${{ steps.skip.outputs.value != 1 && failure() }} + run: | + mkdir -p "${GITHUB_WORKSPACE}/tests/_output/" + cp -r "${GITHUB_WORKSPACE}/../the-events-calendar/common/tests/_output/." "${GITHUB_WORKSPACE}/tests/_output/" || echo "No artifacts found to copy." + + # ------------------------------------------------------------------------------ + # Verify artifacts exist + # ------------------------------------------------------------------------------ + - name: Verify artifacts exist + if: ${{ steps.skip.outputs.value != 1 && failure() }} + run: | + echo "Listing contents of '${GITHUB_WORKSPACE}/tests/_output/':" + ls -la "${GITHUB_WORKSPACE}/tests/_output/" || echo "No artifacts found." + + # ------------------------------------------------------------------------------ + # Upload artifacts (On failure) + # ------------------------------------------------------------------------------ + - name: Upload artifacts + uses: actions/upload-artifact@v4 + if: ${{ steps.skip.outputs.value != 1 && failure() }} + with: + name: output ${{ matrix.suite }} + path: tests/_output/ + retention-days: 7 diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index 6ee8a6a55d..db7454c9ec 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,7 +178,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.5 + ${SLIC_BIN} wp core update --force --version=6.6 ${SLIC_BIN} wp core version ${SLIC_BIN} wp theme install twentytwenty --activate - name: Run suite tests From 4517ae0b3c4aabb4af0b4544b55ebc2b79734cfa Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 21:22:22 +0200 Subject: [PATCH 069/112] Fix suite set ups --- tests/eva_integration.suite.dist.yml | 1 - tests/restv1_et.suite.dist.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/eva_integration.suite.dist.yml b/tests/eva_integration.suite.dist.yml index b431d37d98..67d4854ccd 100644 --- a/tests/eva_integration.suite.dist.yml +++ b/tests/eva_integration.suite.dist.yml @@ -24,6 +24,5 @@ modules: - event-tickets/event-tickets.php - event-tickets-plus/event-tickets-plus.php - easy-digital-downloads/easy-digital-downloads.php - silentlyActivatePlugins: - woocommerce/woocommerce.php - WPQueries diff --git a/tests/restv1_et.suite.dist.yml b/tests/restv1_et.suite.dist.yml index 2c8a2a7db9..e9d4619be2 100644 --- a/tests/restv1_et.suite.dist.yml +++ b/tests/restv1_et.suite.dist.yml @@ -49,10 +49,10 @@ modules: - event-tickets/event-tickets.php - event-tickets-plus/event-tickets-plus.php - easy-digital-downloads/easy-digital-downloads.php + - woocommerce/woocommerce.php activatePlugins: - the-events-calendar/the-events-calendar.php - event-tickets/event-tickets.php - event-tickets-plus/event-tickets-plus.php - easy-digital-downloads/easy-digital-downloads.php - silentlyActivatePlugins: - woocommerce/woocommerce.php From 9665f2afcf69ff44cde143ff3109026b6e304a0f Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 21:22:27 +0200 Subject: [PATCH 070/112] include rest module --- composer.json | 3 +- composer.lock | 198 +++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 199 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 8155f49424..6fe3ac870d 100644 --- a/composer.json +++ b/composer.json @@ -53,7 +53,8 @@ "the-events-calendar/tec-testing-facilities": "dev-master", "wp-cli/checksum-command": "2.0.0", "wp-coding-standards/wpcs": "^3.0.0", - "automattic/jetpack-changelogger": "^4.2" + "automattic/jetpack-changelogger": "^4.2", + "codeception/module-rest": "^2.0" }, "autoload": { "psr-4": { diff --git a/composer.lock b/composer.lock index 9926d01c34..99d48b607b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "849ea2a573d4fd4b5107e0e2de341ac6", + "content-hash": "71f6076d80c172a21548ef033dc94834", "packages": [ { "name": "firebase/php-jwt", @@ -1607,6 +1607,63 @@ }, "time": "2022-05-21T13:50:41+00:00" }, + { + "name": "codeception/module-rest", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/Codeception/module-rest.git", + "reference": "ee4ea06cd8a5057f24f37f8bf25b6815ddc77840" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Codeception/module-rest/zipball/ee4ea06cd8a5057f24f37f8bf25b6815ddc77840", + "reference": "ee4ea06cd8a5057f24f37f8bf25b6815ddc77840", + "shasum": "" + }, + "require": { + "codeception/codeception": "^4.1", + "ext-dom": "*", + "ext-json": "*", + "justinrainbow/json-schema": "~5.2.9", + "php": "^7.4 | ^8.0", + "softcreatr/jsonpath": "^0.5 | ^0.7 | ^0.8" + }, + "require-dev": { + "codeception/lib-innerbrowser": "^2.0", + "codeception/stub": "^4.0", + "codeception/util-universalframework": "^1.0" + }, + "suggest": { + "aws/aws-sdk-php": "For using AWS Auth" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gintautas Miselis" + } + ], + "description": "REST module for Codeception", + "homepage": "https://codeception.com/", + "keywords": [ + "codeception", + "rest" + ], + "support": { + "issues": "https://github.com/Codeception/module-rest/issues", + "source": "https://github.com/Codeception/module-rest/tree/2.0.3" + }, + "time": "2023-03-10T19:23:22+00:00" + }, { "name": "codeception/module-webdriver", "version": "1.4.1", @@ -2454,6 +2511,76 @@ }, "time": "2023-04-12T07:43:14+00:00" }, + { + "name": "justinrainbow/json-schema", + "version": "v5.2.13", + "source": { + "type": "git", + "url": "https://github.com/jsonrainbow/json-schema.git", + "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793", + "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", + "json-schema/json-schema-test-suite": "1.2.0", + "phpunit/phpunit": "^4.8.35" + }, + "bin": [ + "bin/validate-json" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "JsonSchema\\": "src/JsonSchema/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bruno Prieto Reis", + "email": "bruno.p.reis@gmail.com" + }, + { + "name": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" + }, + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + }, + { + "name": "Robert Schönthal", + "email": "seroscho@googlemail.com" + } + ], + "description": "A library to validate a json schema.", + "homepage": "https://github.com/justinrainbow/json-schema", + "keywords": [ + "json", + "schema" + ], + "support": { + "issues": "https://github.com/jsonrainbow/json-schema/issues", + "source": "https://github.com/jsonrainbow/json-schema/tree/v5.2.13" + }, + "time": "2023-09-26T02:20:38+00:00" + }, { "name": "lucatume/codeception-snapshot-assertions", "version": "0.2.4", @@ -4778,6 +4905,75 @@ ], "time": "2024-03-09T15:20:58+00:00" }, + { + "name": "softcreatr/jsonpath", + "version": "0.7.6", + "source": { + "type": "git", + "url": "https://github.com/SoftCreatR/JSONPath.git", + "reference": "e04c02cb78bcc242c69d17dac5b29436bf3e1076" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/SoftCreatR/JSONPath/zipball/e04c02cb78bcc242c69d17dac5b29436bf3e1076", + "reference": "e04c02cb78bcc242c69d17dac5b29436bf3e1076", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": ">=7.1,<8.0" + }, + "replace": { + "flow/jsonpath": "*" + }, + "require-dev": { + "phpunit/phpunit": ">=7.0", + "roave/security-advisories": "dev-latest", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Flow\\JSONPath\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Stephen Frank", + "email": "stephen@flowsa.com", + "homepage": "https://prismaticbytes.com", + "role": "Developer" + }, + { + "name": "Sascha Greuel", + "email": "hello@1-2.dev", + "homepage": "https://1-2.dev", + "role": "Developer" + } + ], + "description": "JSONPath implementation for parsing, searching and flattening arrays", + "support": { + "email": "hello@1-2.dev", + "forum": "https://github.com/SoftCreatR/JSONPath/discussions", + "issues": "https://github.com/SoftCreatR/JSONPath/issues", + "source": "https://github.com/SoftCreatR/JSONPath" + }, + "funding": [ + { + "url": "https://ecologi.com/softcreatr?r=61212ab3fc69b8eb8a2014f4", + "type": "custom" + }, + { + "url": "https://github.com/softcreatr", + "type": "github" + } + ], + "time": "2022-09-27T09:27:12+00:00" + }, { "name": "squizlabs/php_codesniffer", "version": "3.11.1", From 8562c3635f87454e2e2631219227bb9acfb7fc93 Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 21:26:01 +0200 Subject: [PATCH 071/112] Fix wp core versions --- .github/workflows/tests-php-eva.yml | 4 ++-- .github/workflows/tests-php.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests-php-eva.yml b/.github/workflows/tests-php-eva.yml index 11f06aab7f..6aa1f5d53f 100644 --- a/.github/workflows/tests-php-eva.yml +++ b/.github/workflows/tests-php-eva.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - suite: [ eva_integration, restv1, restv1_et, end2end ] + suite: [ restv1, end2end ] runs-on: ubuntu-latest steps: # ------------------------------------------------------------------------------ @@ -350,7 +350,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.6 + ${SLIC_BIN} wp core update --force --version=6.5 ${SLIC_BIN} wp core version ${SLIC_BIN} wp theme install twentytwenty --activate - name: Run suite tests diff --git a/.github/workflows/tests-php.yml b/.github/workflows/tests-php.yml index db7454c9ec..6ee8a6a55d 100644 --- a/.github/workflows/tests-php.yml +++ b/.github/workflows/tests-php.yml @@ -178,7 +178,7 @@ jobs: run: | ${SLIC_BIN} up wordpress ${SLIC_BIN} wp core version - ${SLIC_BIN} wp core update --force --version=6.6 + ${SLIC_BIN} wp core update --force --version=6.5 ${SLIC_BIN} wp core version ${SLIC_BIN} wp theme install twentytwenty --activate - name: Run suite tests From b785ab0a2c9c66fcc61ca38e5eacc1944ae567bd Mon Sep 17 00:00:00 2001 From: Dimitrios Pantazis Date: Tue, 7 Jan 2025 21:47:00 +0200 Subject: [PATCH 072/112] Updating user names in snapshots --- ...erate_new_key_pair_fields__0.snapshot.html | 2 +- ...rrectly_get_user_dropdown__0.snapshot.json | 73 ++++++++++++------- ..._api_fields_initial_state__0.snapshot.json | 2 +- 3 files changed, 49 insertions(+), 28 deletions(-) diff --git a/tests/eva_integration/Zapier/__snapshots__/ApiAJAXTest__should_correctly_generate_new_key_pair_fields__0.snapshot.html b/tests/eva_integration/Zapier/__snapshots__/ApiAJAXTest__should_correctly_generate_new_key_pair_fields__0.snapshot.html index 1316337cee..73b97ffab5 100644 --- a/tests/eva_integration/Zapier/__snapshots__/ApiAJAXTest__should_correctly_generate_new_key_pair_fields__0.snapshot.html +++ b/tests/eva_integration/Zapier/__snapshots__/ApiAJAXTest__should_correctly_generate_new_key_pair_fields__0.snapshot.html @@ -27,7 +27,7 @@ id="tec-settings-zapier-users" name="tec_automator_zapier[]['users']" class="tribe-dropdown tec-settings-control__dropdown tec-settings-form__users-dropdown tec-settings-zapier-details-api-key__users-dropdown" value="0" - style="width: 100%;" placeholder="Select a User" data-prevent-clear data-force-search data-options="[{"text":"User 231","sort":"User 231","id":"2","value":"2","selected":false},{"text":"User 233","sort":"User 233","id":"3","value":"3","selected":false},{"text":"User 235","sort":"User 235","id":"4","value":"4","selected":false},{"text":"User 236","sort":"User 236","id":"5","value":"5","selected":false},{"text":"User 255","sort":"User 255","id":"6","value":"6","selected":false},{"text":"User 256","sort":"User 256","id":"7","value":"7","selected":false},{"text":"User 257","sort":"User 257","id":"8","value":"8","selected":false},{"text":"User 258","sort":"User 258","id":"9","value":"9","selected":false},{"text":"User 298","sort":"User 298","id":"13","value":"13","selected":false},{"text":"User 299","sort":"User 299","id":"14","value":"14","selected":false},{"text":"User 300","sort":"User 300","id":"15","value":"15","selected":false},{"text":"User 301","sort":"User 301","id":"16","value":"16","selected":false},{"text":"admin","sort":"admin","id":"1","value":"1","selected":false}]" > + style="width: 100%;" placeholder="Select a User" data-prevent-clear data-force-search data-options="[{"text":"User 0000025","sort":"User 0000025","id":"2","value":"2","selected":false},{"text":"User 0000027","sort":"User 0000027","id":"3","value":"3","selected":false},{"text":"User 0000029","sort":"User 0000029","id":"4","value":"4","selected":false},{"text":"User 0000030","sort":"User 0000030","id":"5","value":"5","selected":false},{"text":"User 0000031","sort":"User 0000031","id":"6","value":"6","selected":false},{"text":"User 0000032","sort":"User 0000032","id":"7","value":"7","selected":false},{"text":"User 0000033","sort":"User 0000033","id":"8","value":"8","selected":false},{"text":"User 0000034","sort":"User 0000034","id":"9","value":"9","selected":false},{"text":"User 0000035","sort":"User 0000035","id":"10","value":"10","selected":false},{"text":"User 0000036","sort":"User 0000036","id":"11","value":"11","selected":false},{"text":"User 0000037","sort":"User 0000037","id":"12","value":"12","selected":false},{"text":"User 0000038","sort":"User 0000038","id":"13","value":"13","selected":false},{"text":"User 0000039","sort":"User 0000039","id":"14","value":"14","selected":false},{"text":"User 0000040","sort":"User 0000040","id":"15","value":"15","selected":false},{"text":"User 0000041","sort":"User 0000041","id":"16","value":"16","selected":false},{"text":"admin","sort":"admin","id":"1","value":"1","selected":false}]" > diff --git a/tests/eva_integration/Zapier/__snapshots__/ApiTest__should_correctly_get_user_dropdown__0.snapshot.json b/tests/eva_integration/Zapier/__snapshots__/ApiTest__should_correctly_get_user_dropdown__0.snapshot.json index a82abbce31..4b5c9538b5 100644 --- a/tests/eva_integration/Zapier/__snapshots__/ApiTest__should_correctly_get_user_dropdown__0.snapshot.json +++ b/tests/eva_integration/Zapier/__snapshots__/ApiTest__should_correctly_get_user_dropdown__0.snapshot.json @@ -10,88 +10,109 @@ ], "name": "tec_automator_zapier[]['users']", "selected": 0, - "users_count": 13, + "users_count": 16, "users_arr": [ { - "text": "User 231", - "sort": "User 231", + "text": "User 0000025", + "sort": "User 0000025", "id": "2", "value": "2", "selected": false }, { - "text": "User 233", - "sort": "User 233", + "text": "User 0000027", + "sort": "User 0000027", "id": "3", "value": "3", "selected": false }, { - "text": "User 235", - "sort": "User 235", + "text": "User 0000029", + "sort": "User 0000029", "id": "4", "value": "4", "selected": false }, { - "text": "User 236", - "sort": "User 236", + "text": "User 0000030", + "sort": "User 0000030", "id": "5", "value": "5", "selected": false }, { - "text": "User 255", - "sort": "User 255", + "text": "User 0000031", + "sort": "User 0000031", "id": "6", "value": "6", "selected": false }, { - "text": "User 256", - "sort": "User 256", + "text": "User 0000032", + "sort": "User 0000032", "id": "7", "value": "7", "selected": false }, { - "text": "User 257", - "sort": "User 257", + "text": "User 0000033", + "sort": "User 0000033", "id": "8", "value": "8", "selected": false }, { - "text": "User 258", - "sort": "User 258", + "text": "User 0000034", + "sort": "User 0000034", "id": "9", "value": "9", "selected": false }, { - "text": "User 298", - "sort": "User 298", + "text": "User 0000035", + "sort": "User 0000035", + "id": "10", + "value": "10", + "selected": false + }, + { + "text": "User 0000036", + "sort": "User 0000036", + "id": "11", + "value": "11", + "selected": false + }, + { + "text": "User 0000037", + "sort": "User 0000037", + "id": "12", + "value": "12", + "selected": false + }, + { + "text": "User 0000038", + "sort": "User 0000038", "id": "13", "value": "13", "selected": false }, { - "text": "User 299", - "sort": "User 299", + "text": "User 0000039", + "sort": "User 0000039", "id": "14", "value": "14", "selected": false }, { - "text": "User 300", - "sort": "User 300", + "text": "User 0000040", + "sort": "User 0000040", "id": "15", "value": "15", "selected": false }, { - "text": "User 301", - "sort": "User 301", + "text": "User 0000041", + "sort": "User 0000041", "id": "16", "value": "16", "selected": false @@ -108,6 +129,6 @@ "placeholder": "Select a User", "data-prevent-clear": true, "data-force-search": true, - "data-options": "[{\"text\":\"User 231\",\"sort\":\"User 231\",\"id\":\"2\",\"value\":\"2\",\"selected\":false},{\"text\":\"User 233\",\"sort\":\"User 233\",\"id\":\"3\",\"value\":\"3\",\"selected\":false},{\"text\":\"User 235\",\"sort\":\"User 235\",\"id\":\"4\",\"value\":\"4\",\"selected\":false},{\"text\":\"User 236\",\"sort\":\"User 236\",\"id\":\"5\",\"value\":\"5\",\"selected\":false},{\"text\":\"User 255\",\"sort\":\"User 255\",\"id\":\"6\",\"value\":\"6\",\"selected\":false},{\"text\":\"User 256\",\"sort\":\"User 256\",\"id\":\"7\",\"value\":\"7\",\"selected\":false},{\"text\":\"User 257\",\"sort\":\"User 257\",\"id\":\"8\",\"value\":\"8\",\"selected\":false},{\"text\":\"User 258\",\"sort\":\"User 258\",\"id\":\"9\",\"value\":\"9\",\"selected\":false},{\"text\":\"User 298\",\"sort\":\"User 298\",\"id\":\"13\",\"value\":\"13\",\"selected\":false},{\"text\":\"User 299\",\"sort\":\"User 299\",\"id\":\"14\",\"value\":\"14\",\"selected\":false},{\"text\":\"User 300\",\"sort\":\"User 300\",\"id\":\"15\",\"value\":\"15\",\"selected\":false},{\"text\":\"User 301\",\"sort\":\"User 301\",\"id\":\"16\",\"value\":\"16\",\"selected\":false},{\"text\":\"admin\",\"sort\":\"admin\",\"id\":\"1\",\"value\":\"1\",\"selected\":false}]" + "data-options": "[{\"text\":\"User 0000025\",\"sort\":\"User 0000025\",\"id\":\"2\",\"value\":\"2\",\"selected\":false},{\"text\":\"User 0000027\",\"sort\":\"User 0000027\",\"id\":\"3\",\"value\":\"3\",\"selected\":false},{\"text\":\"User 0000029\",\"sort\":\"User 0000029\",\"id\":\"4\",\"value\":\"4\",\"selected\":false},{\"text\":\"User 0000030\",\"sort\":\"User 0000030\",\"id\":\"5\",\"value\":\"5\",\"selected\":false},{\"text\":\"User 0000031\",\"sort\":\"User 0000031\",\"id\":\"6\",\"value\":\"6\",\"selected\":false},{\"text\":\"User 0000032\",\"sort\":\"User 0000032\",\"id\":\"7\",\"value\":\"7\",\"selected\":false},{\"text\":\"User 0000033\",\"sort\":\"User 0000033\",\"id\":\"8\",\"value\":\"8\",\"selected\":false},{\"text\":\"User 0000034\",\"sort\":\"User 0000034\",\"id\":\"9\",\"value\":\"9\",\"selected\":false},{\"text\":\"User 0000035\",\"sort\":\"User 0000035\",\"id\":\"10\",\"value\":\"10\",\"selected\":false},{\"text\":\"User 0000036\",\"sort\":\"User 0000036\",\"id\":\"11\",\"value\":\"11\",\"selected\":false},{\"text\":\"User 0000037\",\"sort\":\"User 0000037\",\"id\":\"12\",\"value\":\"12\",\"selected\":false},{\"text\":\"User 0000038\",\"sort\":\"User 0000038\",\"id\":\"13\",\"value\":\"13\",\"selected\":false},{\"text\":\"User 0000039\",\"sort\":\"User 0000039\",\"id\":\"14\",\"value\":\"14\",\"selected\":false},{\"text\":\"User 0000040\",\"sort\":\"User 0000040\",\"id\":\"15\",\"value\":\"15\",\"selected\":false},{\"text\":\"User 0000041\",\"sort\":\"User 0000041\",\"id\":\"16\",\"value\":\"16\",\"selected\":false},{\"text\":\"admin\",\"sort\":\"admin\",\"id\":\"1\",\"value\":\"1\",\"selected\":false}]" } } \ No newline at end of file diff --git a/tests/eva_integration/Zapier/__snapshots__/SettingsTest__should_correctly_render_api_fields_initial_state__0.snapshot.json b/tests/eva_integration/Zapier/__snapshots__/SettingsTest__should_correctly_render_api_fields_initial_state__0.snapshot.json index 042b4c34e5..d675baa532 100644 --- a/tests/eva_integration/Zapier/__snapshots__/SettingsTest__should_correctly_render_api_fields_initial_state__0.snapshot.json +++ b/tests/eva_integration/Zapier/__snapshots__/SettingsTest__should_correctly_render_api_fields_initial_state__0.snapshot.json @@ -9,7 +9,7 @@ }, "tec_zapier_authorize": { "type": "html", - "html": "
\n\tAPI Keys<\/legend>\n\t
\n\t\t\t<\/div>\n\t
\n\t\t
\n\t
\n\t\tName\t<\/div>\n\t
\n\t\tUser\t<\/div>\n\t
\n\t\tPermissions\t<\/div>\n\t
\n\t\tLast Access\t<\/div>\n\t
\n\t\tActions\t<\/div>\n<\/div>\n\n\n\t
\n\t\n\t\tDescription\t<\/label>\n\t\n<\/div>\n\n\t\n\t\n\t\tUsers\t<\/label>\n\t\t\n\t<\/select>\n<\/div>\n\n\t
\n\t
\n\t\t\n\t\t\tPermissions\t\t<\/legend>\n\t\t
\n\t\t\tRead\t\t\t\n\t\t\t\t\t\t\t