From 6ce698854c17d539802fc08ad142520413d4b4b6 Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 14:37:05 +0200 Subject: [PATCH 01/17] Stub pressable:get-db-backup command --- src/commands/pressable-get-db-backup.php | 176 +++++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 src/commands/pressable-get-db-backup.php diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php new file mode 100644 index 00000000..d162cf54 --- /dev/null +++ b/src/commands/pressable-get-db-backup.php @@ -0,0 +1,176 @@ +setDescription( 'Downloads a database backup .' ) + ->setHelp( 'This command accepts a Pressable site as an input, then exports and downloads the database for that site.' ); + + $this->addArgument( 'site', InputArgument::REQUIRED, 'ID or URL of the site to connect to.' ) + ->addOption( 'user', 'u', InputOption::VALUE_REQUIRED, 'Email of the user to connect as. Defaults to your Team51 1Password email.' ); + } + + /** + * {@inheritDoc} + */ + protected function initialize( InputInterface $input, OutputInterface $output ): void { + maybe_define_console_verbosity( $output->getVerbosity() ); + + // Retrieve and validate the modifier options. + $this->shell_type = 'ssh'; + + // Retrieve and validate the site. + $this->pressable_site = get_pressable_site_from_input( $input, $output, fn() => $this->prompt_site_input( $input, $output ) ); + if ( \is_null( $this->pressable_site ) ) { + exit( 1 ); // Exit if the site does not exist. + } + + // Store the ID of the site in the argument field. + $input->setArgument( 'site', $this->pressable_site->id ); + + // Figure out the SFTP user to connect as. + $this->user_email = get_email_input( + $input, + $output, + static function() { + $team51_op_account = \array_filter( + list_1password_accounts(), + static fn( object $account ) => 'ZVYA3AB22BC37JPJZJNSGOPYEQ' === $account->account_uuid + ); + return empty( $team51_op_account ) ? null : \reset( $team51_op_account )->email; + }, + 'user' + ); + $input->setOption( 'user', $this->user_email ); // Store the user email in the input. + } + + /** + * {@inheritDoc} + */ + protected function execute( InputInterface $input, OutputInterface $output ): int { + $output->writeln( "Exporting {$this->pressable_site->displayName} (ID {$this->pressable_site->id}, URL {$this->pressable_site->url}) as $this->user_email." ); + + // Retrieve the SFTP user for the given email. + $sftp_user = get_pressable_site_sftp_user_by_email( $this->pressable_site->id, $this->user_email ); + if ( \is_null( $sftp_user ) ) { + $output->writeln( "Could not find a Pressable SFTP user with the email $this->user_email on {$this->pressable_site->displayName}. Creating...", OutputInterface::VERBOSITY_VERBOSE ); + + $sftp_user = create_pressable_site_collaborator( $this->user_email, $this->pressable_site->id ); + if ( \is_null( $sftp_user ) ) { + $output->writeln( "Could not create a Pressable SFTP user with the email $this->user_email on {$this->pressable_site->displayName}." ); + return 1; + } + + // SFTP users are different from collaborator users. We need to query the API again to get the SFTP user. + $sftp_user = get_pressable_site_sftp_user_by_email( $this->pressable_site->id, $this->user_email ); + } + + // Team51 users are logged-in through AutoProxxy, but for everyone else we must first reset their password and display it. + if ( ! \strpos( $this->user_email, '@automattic.com' ) ) { // Check both against 'false' and '0'. + $output->writeln( "Resetting the SFTP password of $sftp_user->email on {$this->pressable_site->displayName}...", OutputInterface::VERBOSITY_VERBOSE ); + + $result = reset_pressable_site_sftp_user_password( $this->pressable_site->id, $sftp_user->username ); + if ( \is_null( $result ) ) { + $output->writeln( "Could not reset the SFTP password of $sftp_user->email on {$this->pressable_site->displayName}." ); + return 1; + } + + $output->writeln( "New SFTP user password: $result" ); + } + + // Call the system SSH/SFTP application. + $ssh_host = $sftp_user->username . '@' . Pressable_Connection_Helper::SSH_HOST; + + // If verbose mode is set, show the SSH connect string. + if ( $output->isVerbose() ) { + $output->writeln( "Connecting to $ssh_host..." ); + } + if ( ! \is_null( \passthru( "$this->shell_type $ssh_host", $result_code ) ) ) { + $output->writeln( "Could not open a $this->shell_type shell. Error code: $result_code" ); + return 1; + } + + return 0; + } + + // endregion + + // region HELPERS + + /** + * Prompts the user for a site if in interactive mode. + * + * @param InputInterface $input The input object. + * @param OutputInterface $output The output object. + * + * @return string|null + */ + private function prompt_site_input( InputInterface $input, OutputInterface $output ): ?string { + if ( $input->isInteractive() ) { + $question = new Question( 'Enter the site ID or URL to connect to: ' ); + $question->setAutocompleterValues( \array_map( static fn( object $site ) => $site->url, get_pressable_sites() ?? array() ) ); + + $site = $this->getHelper( 'question' )->ask( $input, $output, $question ); + } + + return $site ?? null; + } + + // endregion +} From 080dcf0d28b09547ee6be5de9c61a546b79f1108 Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 14:48:37 +0200 Subject: [PATCH 02/17] Tweak help text --- src/commands/pressable-get-db-backup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index d162cf54..f4c68229 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -59,8 +59,8 @@ class Pressable_Get_Db_Backup extends Command { * {@inheritDoc} */ protected function configure(): void { - $this->setDescription( 'Downloads a database backup .' ) - ->setHelp( 'This command accepts a Pressable site as an input, then exports and downloads the database for that site.' ); + $this->setDescription( 'Downloads a Pressable database backup.' ) + ->setHelp( "This command accepts a Pressable site as an input, then exports and downloads the database for that site.\nThe downloaded file will be in the current directory with the name pressable--.sql" ); $this->addArgument( 'site', InputArgument::REQUIRED, 'ID or URL of the site to connect to.' ) ->addOption( 'user', 'u', InputOption::VALUE_REQUIRED, 'Email of the user to connect as. Defaults to your Team51 1Password email.' ); From 96bb0f178f477dec25bd062db802322cf38aefcd Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 15:56:30 +0200 Subject: [PATCH 03/17] Utility functions for db backups --- src/commands/pressable-get-db-backup.php | 74 ++++++++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index f4c68229..ed4dfe2c 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -30,6 +30,16 @@ class Pressable_Get_Db_Backup extends Command { */ protected static $defaultName = 'pressable:get-db-backup'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.PropertyNotSnakeCase + /** + * Safety Net data file URLs. + * + * @var string[] + */ + protected const SAFETY_NET_DATA_URLS = [ + 'scrublist' => 'https://github.com/a8cteam51/safety-net/blob/trunk/assets/data/option_scrublist.txt', + 'denylist' => 'https://github.com/a8cteam51/safety-net/blob/trunk/assets/data/plugin_denylist.txt', + ]; + /** * The Pressable site to connect to. * @@ -51,6 +61,27 @@ class Pressable_Get_Db_Backup extends Command { */ protected ?string $shell_type = null; + /** + * The exported SQL filename. + * + * @var string|null + */ + protected ?string $sql_filename = null; + + /** + * File handle for the exported SQL file. + * + * @var resource|null + */ + protected ?resource $sql_file = null; + + /** + * The current table we are processing. + * + * @var string|null + */ + protected ?string $current_table = null; + // endregion // region INHERITED METHODS @@ -172,5 +203,48 @@ private function prompt_site_input( InputInterface $input, OutputInterface $outp return $site ?? null; } + /** + * Processes the current line of the SQL file. Updates the data as necessary + * + * @param string $line The current line of the SQL file. + * + * @return string + */ + function process_line( string $line ) { + return $line; + } + + /** + * Opens the SQL file for processing. + * + * @return resource | false + */ + private function open_sql_file( ) : resource|false { + $this->sql_file = fopen( $this->sql_filename, 'r' ); + } + + /** + * Checks if we are currently in the specified table. + * + * @param string $table_name + * + * @return bool + */ + private function is_in_table( string $table_name ) : bool { + return $this->current_table === $table_name; + } + + /** + * Retrieves list from Safety Net repo + * + * @param $listname string + * + * @return array + */ + function get_safety_net_list( string $listname ) : array { + $list = file_get_contents( self::SAFETY_NET_DATA_URLS[$listname] ); + return explode( "\n", $list ); + } + // endregion } From e909c66226436c4cfe20730f3a565cf87c6972e1 Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 16:10:56 +0200 Subject: [PATCH 04/17] Add pressable:get-db-backup command --- load-application.php | 1 + 1 file changed, 1 insertion(+) diff --git a/load-application.php b/load-application.php index fc3c90c0..690776b4 100644 --- a/load-application.php +++ b/load-application.php @@ -51,6 +51,7 @@ new Team51\Command\WPCOM_Get_Stickers(), new Team51\Command\WPCOM_Add_Sticker(), new Team51\Command\WPCOM_Remove_Sticker(), + new Team51\Command\Pressable_Get_Db_Backup(), ) ); From 9cd4735ac5a50ef8b149d5292499271efaadc84a Mon Sep 17 00:00:00 2001 From: Nate Allen Date: Mon, 23 Oct 2023 16:22:50 +0200 Subject: [PATCH 05/17] Use wp cli to export the database without user data --- src/commands/pressable-get-db-backup.php | 52 +++++++----------------- 1 file changed, 15 insertions(+), 37 deletions(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index d162cf54..f796907e 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -104,47 +104,25 @@ static function() { * {@inheritDoc} */ protected function execute( InputInterface $input, OutputInterface $output ): int { - $output->writeln( "Exporting {$this->pressable_site->displayName} (ID {$this->pressable_site->id}, URL {$this->pressable_site->url}) as $this->user_email." ); + $output->writeln( "Downloading the database for {$this->pressable_site->url})." ); - // Retrieve the SFTP user for the given email. - $sftp_user = get_pressable_site_sftp_user_by_email( $this->pressable_site->id, $this->user_email ); - if ( \is_null( $sftp_user ) ) { - $output->writeln( "Could not find a Pressable SFTP user with the email $this->user_email on {$this->pressable_site->displayName}. Creating...", OutputInterface::VERBOSITY_VERBOSE ); - - $sftp_user = create_pressable_site_collaborator( $this->user_email, $this->pressable_site->id ); - if ( \is_null( $sftp_user ) ) { - $output->writeln( "Could not create a Pressable SFTP user with the email $this->user_email on {$this->pressable_site->displayName}." ); - return 1; - } - - // SFTP users are different from collaborator users. We need to query the API again to get the SFTP user. - $sftp_user = get_pressable_site_sftp_user_by_email( $this->pressable_site->id, $this->user_email ); + $ssh = Pressable_Connection_Helper::get_ssh_connection( $this->pressable_site->id ); + if ( \is_null( $ssh ) ) { + $output->writeln( 'Could not connect to the SSH server.' ); + return 1; } - // Team51 users are logged-in through AutoProxxy, but for everyone else we must first reset their password and display it. - if ( ! \strpos( $this->user_email, '@automattic.com' ) ) { // Check both against 'false' and '0'. - $output->writeln( "Resetting the SFTP password of $sftp_user->email on {$this->pressable_site->displayName}...", OutputInterface::VERBOSITY_VERBOSE ); + $date = new \DateTime(); + $formatted_date = $date->format('Y-m-d'); + $filename = "{$this->pressable_site->id}-{$formatted_date}.sql"; - $result = reset_pressable_site_sftp_user_password( $this->pressable_site->id, $sftp_user->username ); - if ( \is_null( $result ) ) { - $output->writeln( "Could not reset the SFTP password of $sftp_user->email on {$this->pressable_site->displayName}." ); - return 1; + $ssh->setTimeout( 0 ); // Disable timeout in case the command takes a long time. + $ssh->exec( + "wp db export $filename --exclude_tables=wp_users,woocommerce_order_itemmeta,woocommerce_order_items,wc_orders,wc_order_addresses,wc_order_operational_data,wc_orders_meta,wpml_mails", + static function( string $str ): void { + echo $str; } - - $output->writeln( "New SFTP user password: $result" ); - } - - // Call the system SSH/SFTP application. - $ssh_host = $sftp_user->username . '@' . Pressable_Connection_Helper::SSH_HOST; - - // If verbose mode is set, show the SSH connect string. - if ( $output->isVerbose() ) { - $output->writeln( "Connecting to $ssh_host..." ); - } - if ( ! \is_null( \passthru( "$this->shell_type $ssh_host", $result_code ) ) ) { - $output->writeln( "Could not open a $this->shell_type shell. Error code: $result_code" ); - return 1; - } + ); return 0; } @@ -161,7 +139,7 @@ protected function execute( InputInterface $input, OutputInterface $output ): in * * @return string|null */ - private function prompt_site_input( InputInterface $input, OutputInterface $output ): ?string { + private function prompt_site_input( InputInterface $input,OutputInterface $output ): ?string { if ( $input->isInteractive() ) { $question = new Question( 'Enter the site ID or URL to connect to: ' ); $question->setAutocompleterValues( \array_map( static fn( object $site ) => $site->url, get_pressable_sites() ?? array() ) ); From d90be7ffb334e4ae50d4479d8aace4b9e5625508 Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 16:35:17 +0200 Subject: [PATCH 06/17] Update so lists can pull --- src/commands/pressable-get-db-backup.php | 34 +++++++++++++++--------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index ed4dfe2c..2099701a 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -36,8 +36,8 @@ class Pressable_Get_Db_Backup extends Command { * @var string[] */ protected const SAFETY_NET_DATA_URLS = [ - 'scrublist' => 'https://github.com/a8cteam51/safety-net/blob/trunk/assets/data/option_scrublist.txt', - 'denylist' => 'https://github.com/a8cteam51/safety-net/blob/trunk/assets/data/plugin_denylist.txt', + 'scrublist' => 'https://github.com/a8cteam51/safety-net/raw/trunk/assets/data/option_scrublist.txt', + 'denylist' => 'https://github.com/a8cteam51/safety-net/raw/trunk/assets/data/plugin_denylist.txt', ]; /** @@ -69,18 +69,25 @@ class Pressable_Get_Db_Backup extends Command { protected ?string $sql_filename = null; /** - * File handle for the exported SQL file. + * The current table we are processing. * - * @var resource|null + * @var string|null */ - protected ?resource $sql_file = null; + protected ?string $current_table = null; /** - * The current table we are processing. + * List of options to scrub. * - * @var string|null + * @var array */ - protected ?string $current_table = null; + protected array $scrublist = []; + + /** + * List of plugins to deny. + * + * @var array + */ + protected array $denylist = []; // endregion @@ -215,12 +222,15 @@ function process_line( string $line ) { } /** - * Opens the SQL file for processing. + * Processes the downloaded SQL file. * - * @return resource | false + * @return void */ - private function open_sql_file( ) : resource|false { - $this->sql_file = fopen( $this->sql_filename, 'r' ); + function process_sql_file() { + $file = fopen( $this->sql_filename, 'r' ); + foreach ( $file as $line ) { + $this->process_line( $line ); + } } /** From 86644f3e0d8f0d3e1e809d09d2d99660bbfc7506 Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 16:38:21 +0200 Subject: [PATCH 07/17] Conflict resolution --- src/commands/pressable-get-db-backup.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index 0598656e..b69ae7ef 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -142,7 +142,24 @@ static function() { * {@inheritDoc} */ protected function execute( InputInterface $input, OutputInterface $output ): int { - $output->writeln( "Downloading the database for {$this->pressable_site->url})." ); + // TEST CODE + $this->sql_filename = '/Users/taco/Downloads/149844071-2023-10-23-b8f3f0f.sql'; + $this->process_sql_file(); + + $this->denylist = $this->get_safety_net_list( 'denylist' ); + $this->scrublist = $this->get_safety_net_list( 'scrublist' ); + $output->writeln('DENY LIST:'); + $output->writeln(print_r($this->denylist, true)); + $output->writeln('SCRUB LIST:'); + $output->writeln(print_r($this->scrublist, true)); + return 1; + // END TEST CODE + $output->writeln( "Exporting {$this->pressable_site->displayName} (ID {$this->pressable_site->id}, URL {$this->pressable_site->url}) as $this->user_email." ); + + // Retrieve the SFTP user for the given email. + $sftp_user = get_pressable_site_sftp_user_by_email( $this->pressable_site->id, $this->user_email ); + if ( \is_null( $sftp_user ) ) { + $output->writeln( "Could not find a Pressable SFTP user with the email $this->user_email on {$this->pressable_site->displayName}. Creating...", OutputInterface::VERBOSITY_VERBOSE ); $ssh = Pressable_Connection_Helper::get_ssh_connection( $this->pressable_site->id ); if ( \is_null( $ssh ) ) { From 1414973442570cab5ba4efa217afc4dad74083eb Mon Sep 17 00:00:00 2001 From: Nate Allen Date: Mon, 23 Oct 2023 16:41:02 +0200 Subject: [PATCH 08/17] Fix missing closing brace --- src/commands/pressable-get-db-backup.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index b69ae7ef..930ef516 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -160,6 +160,7 @@ protected function execute( InputInterface $input, OutputInterface $output ): in $sftp_user = get_pressable_site_sftp_user_by_email( $this->pressable_site->id, $this->user_email ); if ( \is_null( $sftp_user ) ) { $output->writeln( "Could not find a Pressable SFTP user with the email $this->user_email on {$this->pressable_site->displayName}. Creating...", OutputInterface::VERBOSITY_VERBOSE ); + } $ssh = Pressable_Connection_Helper::get_ssh_connection( $this->pressable_site->id ); if ( \is_null( $ssh ) ) { From f84352673ce3e256d4f9e9467b9700eaf5a71c02 Mon Sep 17 00:00:00 2001 From: Nate Allen Date: Mon, 23 Oct 2023 17:01:13 +0200 Subject: [PATCH 09/17] Use Pressable site name in filename, instead of id --- src/commands/pressable-get-db-backup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index 930ef516..a73b6a6b 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -170,7 +170,7 @@ protected function execute( InputInterface $input, OutputInterface $output ): in $date = new \DateTime(); $formatted_date = $date->format('Y-m-d'); - $filename = "{$this->pressable_site->id}-{$formatted_date}.sql"; + $filename = "{$this->pressable_site->displayName}-{$formatted_date}.sql"; $ssh->setTimeout( 0 ); // Disable timeout in case the command takes a long time. $ssh->exec( From 020a04ad94e6ddb79a279c95bbd75ab3b9e66030 Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 17:21:34 +0200 Subject: [PATCH 10/17] Remove test code. Read dump file --- src/commands/pressable-get-db-backup.php | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index a73b6a6b..e62a393f 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -142,18 +142,10 @@ static function() { * {@inheritDoc} */ protected function execute( InputInterface $input, OutputInterface $output ): int { - // TEST CODE - $this->sql_filename = '/Users/taco/Downloads/149844071-2023-10-23-b8f3f0f.sql'; - $this->process_sql_file(); - $this->denylist = $this->get_safety_net_list( 'denylist' ); $this->scrublist = $this->get_safety_net_list( 'scrublist' ); - $output->writeln('DENY LIST:'); - $output->writeln(print_r($this->denylist, true)); - $output->writeln('SCRUB LIST:'); - $output->writeln(print_r($this->scrublist, true)); - return 1; - // END TEST CODE + $this->process_sql_file(); + $output->writeln( "Exporting {$this->pressable_site->displayName} (ID {$this->pressable_site->id}, URL {$this->pressable_site->url}) as $this->user_email." ); // Retrieve the SFTP user for the given email. @@ -220,12 +212,15 @@ function process_line( string $line ) { /** * Processes the downloaded SQL file. * - * @return void + * @return bool */ function process_sql_file() { $file = fopen( $this->sql_filename, 'r' ); - foreach ( $file as $line ) { - $this->process_line( $line ); + if ( ! $file ) { + return false; + } + while (($line = fgets($file)) !== false) { + $line = $this->process_line( $line ); } } From 314c8c862c4d1b6cc7f65968956df0db645405cb Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 17:45:51 +0200 Subject: [PATCH 11/17] Scrub file stubs. Deletes INSERTS for scrubbed tables --- src/commands/pressable-get-db-backup.php | 48 ++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 4 deletions(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index e62a393f..132fbef7 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -205,7 +205,36 @@ private function prompt_site_input( InputInterface $input,OutputInterface $outpu * * @return string */ - function process_line( string $line ) { + private function process_line( string $line ) { + if ( $this->current_table === false ){ + // Check if we're on a new table + // Format in the SQL file: + // -- Dumping data for table `` + if ( preg_match( '/^-- Dumping data for table `(.*)`$/', $line, $matches ) ) { + $this->current_table = $matches[1]; + } + return $line; + } + + // Check if we're actually in the table's data + // We want INSERT lines. If the line is "UNLOCK TABLES;", then we've left + if ( $line === "UNLOCK TABLES;" ) { + $this->current_table = false; + return $line; + } + if ( ! preg_match( '/^INSERT INTO `(.*)`/', $line, $matches ) ) { + return $line; + } + + // If we're in wp_options, scrub the options + if ( $this->current_table === 'wp_options' ) { + return $this->scrub_options( $line ); + } + // Check if we're in a table we want to scrub + if ( $this->current_table === in_array( $this->current_table, $this->scrublist ) ) { + return ''; + } + return $line; } @@ -214,7 +243,7 @@ function process_line( string $line ) { * * @return bool */ - function process_sql_file() { + private function process_sql_file() { $file = fopen( $this->sql_filename, 'r' ); if ( ! $file ) { return false; @@ -238,14 +267,25 @@ private function is_in_table( string $table_name ) : bool { /** * Retrieves list from Safety Net repo * - * @param $listname string + * @param string $listname * * @return array */ - function get_safety_net_list( string $listname ) : array { + private function get_safety_net_list( string $listname ) : array { $list = file_get_contents( self::SAFETY_NET_DATA_URLS[$listname] ); return explode( "\n", $list ); } + /** + * Scrub the options table + * + * @param string $line + * + * @return string + */ + private function scrub_options( string $line ) : string { + return $line; + } + // endregion } From e2c53c8b82e06fa27063ae97d35eb08b002de653 Mon Sep 17 00:00:00 2001 From: Mike Straw Date: Mon, 23 Oct 2023 18:06:15 +0200 Subject: [PATCH 12/17] Scrubs tables properly. There is also test code so the results are dumped to STDOUT --- src/commands/pressable-get-db-backup.php | 33 +- test.sql | 410 +++++++++++++++++++++++ 2 files changed, 439 insertions(+), 4 deletions(-) create mode 100644 test.sql diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index 132fbef7..e888be98 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -40,6 +40,22 @@ class Pressable_Get_Db_Backup extends Command { 'denylist' => 'https://github.com/a8cteam51/safety-net/raw/trunk/assets/data/plugin_denylist.txt', ]; + /** + * Tables to scrub + * + * @var string[] + */ + protected const SCRUBBED_TABLES = [ + 'wp_users', + 'woocommerce_order_itemmeta', + 'woocommerce_order_items', + 'wc_orders', + 'wc_order_addresses', + 'wc_order_operational_data', + 'wc_orders_meta', + 'wpml_mails', + ]; + /** * The Pressable site to connect to. * @@ -69,11 +85,11 @@ class Pressable_Get_Db_Backup extends Command { protected ?string $sql_filename = null; /** - * The current table we are processing. + * The current table we are processing. (False if we're outside of actual table data) * - * @var string|null + * @var string|bool */ - protected ?string $current_table = null; + protected string|bool $current_table = false; /** * List of options to scrub. @@ -142,10 +158,17 @@ static function() { * {@inheritDoc} */ protected function execute( InputInterface $input, OutputInterface $output ): int { + // TEST CODE + $this->sql_filename = '/Users/taco/Downloads/149844071-2023-10-23-b8f3f0f.sql'; + // END TEST CODE + $this->denylist = $this->get_safety_net_list( 'denylist' ); $this->scrublist = $this->get_safety_net_list( 'scrublist' ); $this->process_sql_file(); + //TEST CODE + return 1; + // END TEST CODE $output->writeln( "Exporting {$this->pressable_site->displayName} (ID {$this->pressable_site->id}, URL {$this->pressable_site->url}) as $this->user_email." ); // Retrieve the SFTP user for the given email. @@ -231,7 +254,7 @@ private function process_line( string $line ) { return $this->scrub_options( $line ); } // Check if we're in a table we want to scrub - if ( $this->current_table === in_array( $this->current_table, $this->scrublist ) ) { + if ( $this->current_table === in_array( $this->current_table, self::SCRUBBED_TABLES ) ) { return ''; } @@ -250,6 +273,8 @@ private function process_sql_file() { } while (($line = fgets($file)) !== false) { $line = $this->process_line( $line ); + // TEST CODE + print($line); } } diff --git a/test.sql b/test.sql new file mode 100644 index 00000000..96ceba48 --- /dev/null +++ b/test.sql @@ -0,0 +1,410 @@ +-- MariaDB dump 10.19 Distrib 10.5.21-MariaDB, for debian-linux-gnu (x86_64) +-- +-- Host: 127.0.0.1 Database: 149844071 +-- ------------------------------------------------------ +-- Server version 10.4.26-MariaDB-log + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `wp_commentmeta` +-- + +DROP TABLE IF EXISTS `wp_commentmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_commentmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `comment_id` (`comment_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_commentmeta` +-- + +LOCK TABLES `wp_commentmeta` WRITE; +/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_comments` +-- + +DROP TABLE IF EXISTS `wp_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_comments` ( + `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, + `comment_author` tinytext NOT NULL, + `comment_author_email` varchar(100) NOT NULL DEFAULT '', + `comment_author_url` varchar(200) NOT NULL DEFAULT '', + `comment_author_IP` varchar(100) NOT NULL DEFAULT '', + `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `comment_content` text NOT NULL, + `comment_karma` int(11) NOT NULL DEFAULT 0, + `comment_approved` varchar(20) NOT NULL DEFAULT '1', + `comment_agent` varchar(255) NOT NULL DEFAULT '', + `comment_type` varchar(20) NOT NULL DEFAULT 'comment', + `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, + `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`comment_ID`), + KEY `comment_post_ID` (`comment_post_ID`), + KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), + KEY `comment_date_gmt` (`comment_date_gmt`), + KEY `comment_parent` (`comment_parent`), + KEY `comment_author_email` (`comment_author_email`(10)) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_comments` +-- + +LOCK TABLES `wp_comments` WRITE; +/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; +INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2022-10-03 14:09:27','2022-10-03 14:09:27','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar.',0,'1','','comment',0,0); +/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_links` +-- + +DROP TABLE IF EXISTS `wp_links`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_links` ( + `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `link_url` varchar(255) NOT NULL DEFAULT '', + `link_name` varchar(255) NOT NULL DEFAULT '', + `link_image` varchar(255) NOT NULL DEFAULT '', + `link_target` varchar(25) NOT NULL DEFAULT '', + `link_description` varchar(255) NOT NULL DEFAULT '', + `link_visible` varchar(20) NOT NULL DEFAULT 'Y', + `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, + `link_rating` int(11) NOT NULL DEFAULT 0, + `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `link_rel` varchar(255) NOT NULL DEFAULT '', + `link_notes` mediumtext NOT NULL, + `link_rss` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`link_id`), + KEY `link_visible` (`link_visible`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_links` +-- + +LOCK TABLES `wp_links` WRITE; +/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_options` +-- + +DROP TABLE IF EXISTS `wp_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_options` ( + `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `option_name` varchar(191) NOT NULL DEFAULT '', + `option_value` longtext NOT NULL, + `autoload` varchar(20) NOT NULL DEFAULT 'yes', + PRIMARY KEY (`option_id`), + UNIQUE KEY `option_name` (`option_name`), + KEY `autoload` (`autoload`) +) ENGINE=InnoDB AUTO_INCREMENT=5351 DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_options` +-- + +LOCK TABLES `wp_options` WRITE; +/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; +INSERT INTO `wp_options` VALUES (1,'siteurl','https://mikestraw-test-production.mystagingwebsite.com','yes'),(2,'home','https://mikestraw-test-production.mystagingwebsite.com','yes'),(3,'blogname','My WordPress Site','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','concierge@wordpress.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:96:{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: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'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:3:{i:0;s:19:\"akismet/akismet.php\";i:1;s:23:\"gutenberg/gutenberg.php\";i:2;s:19:\"jetpack/jetpack.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:3:{i:0;s:50:\"/srv/htdocs/wp-content/plugins/akismet/akismet.php\";i:1;s:85:\"/srv/htdocs/wp-content/plugins/t51-log-jetpack-xmlrpc.php_/t51-log-jetpack-xmlrpc.php\";i:3;s:0:\"\";}','no'),(40,'template','twentytwentytwo','yes'),(41,'stylesheet','twentytwentytwo','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','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:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1697565317','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','3','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:1691172722;a:2:{s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1691173907;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:1691175732;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:1691176167;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:1691201367;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1691202286;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:1691244567;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:1691244921;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:1691245486;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:1691245522;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1691503767;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'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'nonce_key','LRqX}:AY0?R?jfh,f8xS|.,eF(1$JvK<]l9z>Ii]~{uC7z$J?fGK,ODb/+6*Ih7X','no'),(116,'nonce_salt','Cl@0Y5y5@X},f}U>Cc*x2Lg)^u0}:^H#(HM~gG1Bg9v','no'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'jetpack_activated','4','yes'),(121,'jetpack_activation_source','a:2:{i:0;s:6:\"wp-cli\";i:1;N;}','yes'),(123,'jetpack_options','a:13:{s:7:\"version\";s:19:\"12.5-a.1:1691053261\";s:11:\"old_version\";s:20:\"12.4-beta:1690419778\";s:14:\"last_heartbeat\";i:1691141371;s:2:\"id\";i:209320505;s:6:\"public\";i:1;s:30:\"recommendations_banner_enabled\";b:1;s:16:\"first_admin_view\";b:1;s:27:\"recommendations_conditional\";a:0:{}s:21:\"publicize_connections\";a:1:{s:7:\"twitter\";a:1:{i:24576433;a:12:{s:13:\"refresh_token\";s:0:\"\";s:4:\"type\";s:6:\"access\";s:7:\"user_id\";s:1:\"1\";s:8:\"provider\";s:13:\"twitter:38869\";s:6:\"issued\";s:19:\"2022-10-17 20:35:24\";s:7:\"expires\";b:0;s:11:\"external_id\";s:19:\"1582097307218202626\";s:13:\"external_name\";s:10:\"TacosTests\";s:16:\"external_display\";s:11:\"@TacosTests\";s:15:\"connection_data\";a:5:{s:2:\"id\";s:8:\"24576433\";s:8:\"token_id\";s:8:\"28393253\";s:7:\"blog_id\";s:9:\"209320505\";s:7:\"user_id\";s:1:\"1\";s:4:\"meta\";a:3:{s:12:\"display_name\";s:11:\"@TacosTests\";s:4:\"link\";s:29:\"http://twitter.com/TacosTests\";s:16:\"external_user_id\";s:1:\"1\";}}s:15:\"profile_picture\";s:71:\"https://abs.twimg.com/sticky/default_profile_images/default_profile.png\";s:20:\"profile_display_name\";s:0:\"\";}}}s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:11:\"master_user\";i:1;s:15:\"licensing_error\";s:0:\"\";}','yes'),(124,'pressable_site_id','1252314','yes'),(125,'jetpack_licenses','a:1:{i:0;s:48:\"jetpack-security-daily_0y9mLwUTG5Uht66aCEPKjr6JR\";}','yes'),(126,'jetpack_available_modules','a:1:{s:8:\"12.5-a.1\";a:47:{s:10:\"action-bar\";s:4:\"11.4\";s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(127,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(128,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'recovery_keys','a:0:{}','yes'),(130,'theme_mods_twentytwentytwo','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(131,'https_detection_errors','a:0:{}','yes'),(135,'do_activate','0','yes'),(136,'dismiss_pressable_jetpack_banner','1','yes'),(138,'jetpack_log','a:1:{i:0;a:4:{s:4:\"time\";i:1664807097;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}}','no'),(139,'jetpack_tos_agreed','1','yes'),(144,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"4Tv81ZpgIQZ1gSB8@3S8q)EY0Jj9O8kK.8D!fJh865GRTZc*UqvH4ow$f*ayaj8Ir\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"v*su$TtwU7$JPdsy7TFiBCpy1kEfG)ou.HMB*14mmGe@HFBn0b6%hOMg7TqXI&Xc&.1\";}}','yes'),(145,'jetpack_active_modules','a:10:{i:0;s:12:\"contact-form\";i:1;s:21:\"enhanced-distribution\";i:2;s:8:\"json-api\";i:3;s:5:\"stats\";i:4;s:18:\"verification-tools\";i:5;s:21:\"woocommerce-analytics\";i:6;s:5:\"notes\";i:7;s:7:\"protect\";i:8;s:9:\"publicize\";i:9;s:5:\"blaze\";}','yes'),(146,'jetpack_unique_registrations','2','yes'),(180,'jetpack_plugin_api_action_links','a:0:{}','yes'),(181,'jetpack_search_plan_info','a:3:{s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;}','yes'),(182,'jetpack_testimonial','0','yes'),(184,'jp_sync_last_success_immediate-send','1691141370.7569','no'),(241,'jpsq_sync_checkout','0:0','no'),(242,'jp_sync_lock_full_sync','','no'),(243,'jp_sync_last_success_sync','1691141372.6906','no'),(247,'jp_sync_retry_after_immediate-send','','no'),(248,'jp_sync_error_log_immediate-send','a:4:{s:15:\"1664807100.0527\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";i:400;}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1664807100.2139\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";i:400;}s:18:\"\0*\0additional_data\";a:0:{}}s:14:\"1664807100.355\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";i:400;}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1664807100.5362\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";i:400;}s:18:\"\0*\0additional_data\";a:0:{}}}','yes'),(260,'verification_services_codes','0','yes'),(262,'stats_options','a:6:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:209320505;s:12:\"do_not_track\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(321,'jetpack_sync_health_status','a:2:{s:6:\"status\";s:7:\"in_sync\";s:9:\"timestamp\";d:1664807110.814559;}','yes'),(326,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:2;s:12:\"disconnected\";i:1;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(332,'jetpack_protect_key','dd211284795f69ffda16f8d71cae53b1a2460f4e','no'),(335,'jetpack_active_modules_initialized','1','yes'),(343,'auto_update_plugins','a:1:{i:0;s:19:\"akismet/akismet.php\";}','no'),(348,'wordpress_api_key','86ba7fd4775f','yes'),(352,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(353,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(357,'post_by_email_address1','NULL','yes'),(359,'monitor_receive_notifications','1','yes'),(379,'finished_updating_comment_type','1','yes'),(417,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2010;s:12:\"product_slug\";s:22:\"jetpack_security_daily\";s:12:\"product_name\";s:22:\"Jetpack Security Daily\";s:18:\"product_name_short\";s:14:\"Security Daily\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:6:\"Yearly\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:0;s:11:\"license_key\";s:48:\"jetpack-security-daily_0y9mLwUTG5Uht66aCEPKjr6JR\";s:8:\"features\";a:2:{s:6:\"active\";a:34:{i:0;s:12:\"advanced-seo\";i:1;s:7:\"akismet\";i:2;s:8:\"antispam\";i:3;s:7:\"backups\";i:4;s:13:\"backups-daily\";i:5;s:3:\"cdn\";i:6;s:20:\"cloudflare-analytics\";i:7;s:14:\"cloudflare-cdn\";i:8;s:10:\"core/audio\";i:9;s:9:\"donations\";i:10;s:17:\"full-activity-log\";i:11;s:16:\"google-analytics\";i:12;s:17:\"jetpack-dashboard\";i:13;s:16:\"priority_support\";i:14;s:18:\"recurring-payments\";i:15;s:11:\"republicize\";i:16;s:4:\"scan\";i:17;s:17:\"security-settings\";i:18;s:17:\"seo-preview-tools\";i:19;s:14:\"send-a-message\";i:20;s:15:\"simple-payments\";i:21;s:15:\"social-previews\";i:22;s:28:\"subscriber-unlimited-imports\";i:23;s:7:\"support\";i:24;s:18:\"upload-audio-files\";i:25;s:18:\"upload-video-files\";i:26;s:18:\"vaultpress-backups\";i:27;s:13:\"video-hosting\";i:28;s:15:\"whatsapp-button\";i:29;s:7:\"wordads\";i:30;s:15:\"wordads-jetpack\";i:31;s:26:\"social-mastodon-connection\";i:32;s:27:\"social-instagram-connection\";i:33;s:24:\"social-multi-connections\";}s:9:\"available\";a:39:{s:7:\"akismet\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:8:\"antispam\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:7:\"backups\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:13:\"backups-daily\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:20:\"cloudflare-analytics\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:14:\"cloudflare-cdn\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/audio\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:17:\"full-activity-log\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:16:\"google-analytics\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:16:\"priority_support\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:4:\"scan\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:15:\"simple-payments\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:18:\"social-shares-1000\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:28:\"subscriber-unlimited-imports\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:18:\"vaultpress-backups\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:13:\"video-hosting\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:10:\"videopress\";a:8:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:16:\"jetpack_complete\";i:7;s:24:\"jetpack_complete_monthly\";}s:16:\"videopress/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"wordads\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:6:\"search\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:18:\"google-my-business\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:17:\"real-time-backups\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:18:\"cloud-critical-css\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"image-size-analysis\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:14:\"instant-search\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:26:\"social-enhanced-publishing\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:22:\"videopress-1tb-storage\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}}}}','yes'),(441,'stats_cache','a:2:{s:32:\"cb2fd384e90d2b1169c130661654b1ae\";a:1:{i:1682013318;a:0:{}}s:32:\"9587668b38b26f1f4c92968c0d92b0bc\";a:1:{i:1682013319;a:0:{}}}','yes'),(452,'wp_calendar_block_has_published_posts','1','yes'),(486,'wpcom_publish_posts_with_markdown','1','yes'),(677,'open_graph_protocol_site_type','','yes'),(678,'facebook_admins','a:0:{}','yes'),(679,'jetpack-twitter-cards-site-tag','','yes'),(685,'jetpack_sync_settings_dedicated_sync_enabled','0','yes'),(686,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(687,'jetpack_constants_sync_checksum','a:21:{s:7:\"ABSPATH\";i:3110630925;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:3850596168;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:9:\"FS_METHOD\";i:3577458903;s:12:\"IS_PRESSABLE\";i:4261170317;s:16:\"JETPACK__VERSION\";i:110148026;s:11:\"PHP_VERSION\";i:1704765466;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:734881840;s:14:\"WP_CONTENT_DIR\";i:4025282661;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:8:\"WP_DEBUG\";i:4261170317;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;s:15:\"WP_MEMORY_LIMIT\";i:1839787262;s:17:\"WP_POST_REVISIONS\";i:4261170317;}','yes'),(688,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(689,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(690,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(691,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(692,'jetpack_sync_settings_disable','0','yes'),(693,'jetpack_secrets','a:0:{}','no'),(694,'jetpack_package_versions','a:5:{s:6:\"backup\";s:6:\"1.16.5\";s:10:\"connection\";s:6:\"1.56.0\";s:4:\"sync\";s:6:\"1.52.0\";s:6:\"search\";s:6:\"0.38.2\";s:10:\"videopress\";s:7:\"0.14.12\";}','yes'),(695,'jetpack_protect_activating','activating','no'),(696,'jetpack_sync_settings_max_queue_size','5000','yes'),(697,'jetpack_sync_settings_max_queue_lag','7200','yes'),(699,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(700,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(701,'jetpack_sync_settings_upload_max_rows','500','yes'),(702,'jetpack_sync_settings_sync_wait_time','10','yes'),(703,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(704,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(705,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(706,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(708,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(710,'jetpack_sync_settings_render_filtered_content','0','yes'),(711,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(713,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(715,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(716,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(717,'jetpack_sync_settings_sync_via_cron','1','yes'),(718,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(719,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(720,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(721,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(722,'jetpack_sync_settings_full_sync_limits','a:5:{s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}}','yes'),(723,'jetpack_sync_settings_checksum_disable','0','yes'),(763,'jetpack_callables_sync_checksum','a:39:{s:11:\"get_plugins\";i:4256075865;s:10:\"get_themes\";i:3194443613;s:24:\"get_plugins_action_links\";i:223132457;s:28:\"has_file_system_write_access\";i:4261170317;s:8:\"home_url\";i:3880686618;s:16:\"hosting_provider\";i:3960241920;s:12:\"is_fse_theme\";i:4261170317;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:21:\"is_version_controlled\";i:734881840;s:6:\"locale\";i:110763218;s:17:\"main_network_site\";i:3880686618;s:26:\"main_network_site_wpcom_id\";i:1552547049;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:18:\"post_type_features\";i:2449523770;s:10:\"post_types\";i:2528134474;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:3610467939;s:5:\"roles\";i:1426873501;s:10:\"shortcodes\";i:2845212450;s:13:\"site_icon_url\";i:734881840;s:8:\"site_url\";i:3880686618;s:10:\"taxonomies\";i:276712064;s:13:\"theme_support\";i:1267730987;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:3201742935;s:10:\"wp_version\";i:964545611;s:14:\"active_modules\";i:1325178674;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2252358820;s:24:\"available_jetpack_blocks\";i:2504120625;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:734881840;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:21:\"get_loaded_extensions\";i:1609864005;}','no'),(764,'jetpack_next_sync_time_sync','1688576127','yes'),(766,'jetpack_next_sync_time_full-sync-enqueue','1666119731','yes'),(776,'jetpack_updates_sync_checksum','a:2:{s:14:\"update_plugins\";i:1509047391;s:13:\"update_themes\";i:913369843;}','yes'),(788,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1666119731;s:8:\"finished\";i:1666119731;s:8:\"progress\";a:5:{s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:15:\"network_options\";a:1:{s:8:\"finished\";b:1;}}s:6:\"config\";a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}s:15:\"network_options\";b:1;}}','no'),(931,'recently_activated','a:0:{}','yes'),(1492,'gutenberg_version_migration','9.8.0','yes'),(1736,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1737,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5334,'jetpack_sync_settings_custom_queue_table_enabled','0','yes'),(5346,'jetpack_site_products','a:0:{}','yes'),(5348,'jetpack_nonce_1691172655_FSXBNQGQPT','1691172655','no'),(5350,'db_upgraded','1','yes'); +/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_postmeta` +-- + +DROP TABLE IF EXISTS `wp_postmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_postmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `post_id` (`post_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=401 DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_postmeta` +-- + +LOCK TABLES `wp_postmeta` WRITE; +/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; +INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,4,'_edit_lock','1664994560:3'),(4,4,'_last_editor_used_jetpack','block-editor'),(9,8,'_edit_lock','1664994657:2'),(10,8,'_last_editor_used_jetpack','block-editor'),(32,17,'_wpas_done_all','1'),(36,18,'_wpas_done_all','1'),(40,19,'_wpas_done_all','1'),(50,20,'_wpas_done_all','1'),(54,21,'_wpas_done_all','1'),(58,22,'_wpas_done_all','1'),(62,23,'_wpas_done_all','1'),(72,24,'_wpas_done_all','1'),(76,25,'_wpas_done_all','1'),(80,26,'_wpas_done_all','1'),(84,27,'_wpas_done_all','1'),(88,28,'_wpas_done_all','1'),(92,29,'_wpas_done_all','1'),(96,30,'_wpas_done_all','1'),(100,31,'_wpas_done_all','1'),(104,32,'_wpas_done_all','1'),(108,33,'_wpas_done_all','1'),(112,34,'_wpas_done_all','1'),(116,35,'_wpas_done_all','1'),(120,36,'_wpas_done_all','1'),(124,37,'_wpas_done_all','1'),(128,38,'_wpas_done_all','1'),(132,39,'_wpas_done_all','1'),(136,40,'_wpas_done_all','1'),(140,41,'_wpas_done_all','1'),(144,42,'_wpas_done_all','1'),(148,43,'_wpas_done_all','1'),(152,44,'_wpas_done_all','1'),(156,45,'_wpas_done_all','1'),(160,46,'_wpas_done_all','1'),(164,47,'_wpas_done_all','1'),(168,48,'_wpas_done_all','1'),(172,49,'_wpas_done_all','1'),(176,50,'_wpas_done_all','1'),(180,51,'_wpas_done_all','1'),(184,52,'_wpas_done_all','1'),(188,53,'_wpas_done_all','1'),(192,54,'_wpas_done_all','1'),(196,55,'_wpas_done_all','1'),(200,56,'_wpas_done_all','1'),(204,57,'_wpas_done_all','1'),(208,58,'_wpas_done_all','1'),(212,59,'_wpas_done_all','1'),(216,60,'_wpas_done_all','1'),(220,61,'_wpas_done_all','1'),(224,62,'_wpas_done_all','1'),(228,63,'_wpas_done_all','1'),(232,64,'_wpas_done_all','1'),(236,65,'_wpas_done_all','1'),(240,66,'_wpas_done_all','1'),(244,67,'_wpas_done_all','1'),(248,68,'_wpas_done_all','1'),(252,69,'_wpas_done_all','1'),(256,70,'_wpas_done_all','1'),(260,71,'_wpas_done_all','1'),(264,72,'_wpas_done_all','1'),(268,73,'_wpas_done_all','1'),(272,74,'_wpas_done_all','1'),(276,75,'_wpas_done_all','1'),(280,76,'_wpas_done_all','1'),(284,77,'_wpas_done_all','1'),(288,78,'_wpas_done_all','1'),(292,79,'_wpas_done_all','1'),(296,80,'_wpas_done_all','1'),(300,81,'_wpas_done_all','1'),(304,82,'_wpas_done_all','1'),(308,83,'_wpas_done_all','1'),(312,84,'_wpas_done_all','1'),(316,85,'_wpas_done_all','1'),(320,86,'_wpas_done_all','1'),(324,87,'_wpas_done_all','1'),(328,88,'_wpas_done_all','1'),(332,89,'_wpas_done_all','1'),(336,90,'_wpas_done_all','1'),(340,91,'_wpas_done_all','1'),(344,92,'_wpas_done_all','1'),(348,93,'_wpas_done_all','1'),(352,94,'_wpas_done_all','1'),(356,95,'_wpas_done_all','1'),(360,96,'_wpas_done_all','1'),(364,97,'_wpas_done_all','1'),(368,98,'_wpas_done_all','1'),(372,99,'_wpas_done_all','1'),(376,100,'_wpas_done_all','1'),(380,101,'_wpas_done_all','1'),(384,102,'_wpas_done_all','1'),(388,103,'_wpas_done_all','1'),(392,104,'_wpas_done_all','1'),(396,105,'_wpas_done_all','1'),(400,106,'_wpas_done_all','1'); +/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_posts` +-- + +DROP TABLE IF EXISTS `wp_posts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_posts` ( + `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, + `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_content` longtext NOT NULL, + `post_title` text NOT NULL, + `post_excerpt` text NOT NULL, + `post_status` varchar(20) NOT NULL DEFAULT 'publish', + `comment_status` varchar(20) NOT NULL DEFAULT 'open', + `ping_status` varchar(20) NOT NULL DEFAULT 'open', + `post_password` varchar(255) NOT NULL DEFAULT '', + `post_name` varchar(200) NOT NULL DEFAULT '', + `to_ping` text NOT NULL, + `pinged` text NOT NULL, + `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_content_filtered` longtext NOT NULL, + `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, + `guid` varchar(255) NOT NULL DEFAULT '', + `menu_order` int(11) NOT NULL DEFAULT 0, + `post_type` varchar(20) NOT NULL DEFAULT 'post', + `post_mime_type` varchar(100) NOT NULL DEFAULT '', + `comment_count` bigint(20) NOT NULL DEFAULT 0, + PRIMARY KEY (`ID`), + KEY `post_name` (`post_name`(191)), + KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), + KEY `post_parent` (`post_parent`), + KEY `post_author` (`post_author`) +) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_posts` +-- + +LOCK TABLES `wp_posts` WRITE; +/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; +INSERT INTO `wp_posts` VALUES (1,1,'2022-10-03 14:09:27','2022-10-03 14:09:27','\n

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

\n','Hello world!','','publish','open','open','','hello-world','','','2022-10-03 14:09:27','2022-10-03 14:09:27','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=1',0,'post','',1),(2,1,'2022-10-03 14:09:27','2022-10-03 14:09:27','\n

This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

\n\n\n\n

Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)

\n\n\n\n

...or something like this:

\n\n\n\n

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

\n\n\n\n

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

\n','Sample Page','','publish','closed','open','','sample-page','','','2022-10-03 14:09:27','2022-10-03 14:09:27','',0,'https://mikestraw-test-production.mystagingwebsite.com/?page_id=2',0,'page','',0),(3,1,'2022-10-03 14:09:27','2022-10-03 14:09:27','

Who we are

Suggested text: Our website address is: https://mikestraw-test-production.mystagingwebsite.com.

Comments

Suggested text: When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.

An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.

Media

Suggested text: If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.

Cookies

Suggested text: If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.

If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.

When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.

If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.

Embedded content from other websites

Suggested text: Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.

These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.

Who we share your data with

Suggested text: If you request a password reset, your IP address will be included in the reset email.

How long we retain your data

Suggested text: If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.

For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.

What rights you have over your data

Suggested text: If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.

Where your data is sent

Suggested text: Visitor comments may be checked through an automated spam detection service.

','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-10-03 14:09:27','2022-10-03 14:09:27','',0,'https://mikestraw-test-production.mystagingwebsite.com/?page_id=3',0,'page','',0),(4,3,'2022-10-05 18:31:27','2022-10-05 18:31:27','\n

Taco is posting this

\n','Test taco','','publish','open','open','','test-taco','','','2022-10-05 18:31:27','2022-10-05 18:31:27','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=4',0,'post','',0),(5,3,'2022-10-05 18:31:14','2022-10-05 18:31:14','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentytwo','','','2022-10-05 18:31:14','2022-10-05 18:31:14','',0,'https://mikestraw-test-production.mystagingwebsite.com/2022/10/05/wp-global-styles-twentytwentytwo/',0,'wp_global_styles','',0),(6,3,'2022-10-05 18:31:27','2022-10-05 18:31:27','\n

Taco is posting this

\n','Test taco','','inherit','closed','closed','','4-revision-v1','','','2022-10-05 18:31:27','2022-10-05 18:31:27','',4,'https://mikestraw-test-production.mystagingwebsite.com/?p=6',0,'revision','',0),(8,2,'2022-10-05 18:33:19','2022-10-05 18:33:19','\n

I don\'t have a WordPress.com account, but that\'s OK, right?

\n','My own post','','publish','open','open','','my-own-post','','','2022-10-05 18:33:19','2022-10-05 18:33:19','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=8',0,'post','',0),(9,2,'2022-10-05 18:33:19','2022-10-05 18:33:19','\n

I don\'t have a WordPress.com account, but that\'s OK, right?

\n','My own post','','inherit','closed','closed','','8-revision-v1','','','2022-10-05 18:33:19','2022-10-05 18:33:19','',8,'https://mikestraw-test-production.mystagingwebsite.com/?p=9',0,'revision','',0),(17,0,'2022-10-21 17:40:53','2022-10-21 17:40:53','','Post 9','','publish','open','open','','post-9','','','2022-10-20 17:43:26','2022-10-20 17:43:26','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=17',0,'post','',0),(18,0,'2022-10-22 17:40:55','2022-10-22 17:40:55','','Post 10','','publish','open','open','','post-10','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=18',0,'post','',0),(19,0,'2022-10-23 17:40:57','2022-10-23 17:40:57','','Post 11','','publish','open','open','','post-11','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=19',0,'post','',0),(20,0,'2022-10-24 17:40:59','2022-10-24 17:40:59','','Post 12','','publish','open','open','','post-12','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=20',0,'post','',0),(21,0,'2022-10-25 17:41:00','2022-10-25 17:41:00','','Post 13','','publish','open','open','','post-13','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=21',0,'post','',0),(22,0,'2022-10-26 17:41:02','2022-10-26 17:41:02','','Post 14','','publish','open','open','','post-14','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=22',0,'post','',0),(23,0,'2022-10-27 17:41:03','2022-10-27 17:41:03','','Post 15','','publish','open','open','','post-15','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=23',0,'post','',0),(24,0,'2022-10-28 17:41:05','2022-10-28 17:41:05','','Post 16','','publish','open','open','','post-16','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=24',0,'post','',0),(25,0,'2022-10-29 17:41:07','2022-10-29 17:41:07','','Post 17','','publish','open','open','','post-17','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=25',0,'post','',0),(26,0,'2022-10-30 17:41:08','2022-10-30 17:41:08','','Post 18','','publish','open','open','','post-18','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=26',0,'post','',0),(27,0,'2022-10-31 17:41:10','2022-10-31 17:41:10','','Post 19','','publish','open','open','','post-19','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=27',0,'post','',0),(28,0,'2022-11-01 17:41:11','2022-11-01 17:41:11','','Post 20','','publish','open','open','','post-20','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=28',0,'post','',0),(29,0,'2022-11-02 17:41:13','2022-11-02 17:41:13','','Post 21','','publish','open','open','','post-21','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=29',0,'post','',0),(30,0,'2022-11-03 17:41:15','2022-11-03 17:41:15','','Post 22','','publish','open','open','','post-22','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=30',0,'post','',0),(31,0,'2022-11-04 17:41:16','2022-11-04 17:41:16','','Post 23','','publish','open','open','','post-23','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=31',0,'post','',0),(32,0,'2022-11-05 17:41:18','2022-11-05 17:41:18','','Post 24','','publish','open','open','','post-24','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=32',0,'post','',0),(33,0,'2022-11-06 17:41:20','2022-11-06 17:41:20','','Post 25','','publish','open','open','','post-25','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=33',0,'post','',0),(34,0,'2022-11-07 17:41:21','2022-11-07 17:41:21','','Post 26','','publish','open','open','','post-26','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=34',0,'post','',0),(35,0,'2022-11-08 17:41:23','2022-11-08 17:41:23','','Post 27','','publish','open','open','','post-27','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=35',0,'post','',0),(36,0,'2022-11-09 17:41:25','2022-11-09 17:41:25','','Post 28','','publish','open','open','','post-28','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=36',0,'post','',0),(37,0,'2022-11-10 17:41:26','2022-11-10 17:41:26','','Post 29','','publish','open','open','','post-29','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=37',0,'post','',0),(38,0,'2022-11-11 17:41:28','2022-11-11 17:41:28','','Post 30','','publish','open','open','','post-30','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=38',0,'post','',0),(39,0,'2022-11-12 17:41:30','2022-11-12 17:41:30','','Post 31','','publish','open','open','','post-31','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=39',0,'post','',0),(40,0,'2022-11-13 17:41:32','2022-11-13 17:41:32','','Post 32','','publish','open','open','','post-32','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=40',0,'post','',0),(41,0,'2022-11-14 17:41:33','2022-11-14 17:41:33','','Post 33','','publish','open','open','','post-33','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=41',0,'post','',0),(42,0,'2022-11-15 17:41:35','2022-11-15 17:41:35','','Post 34','','publish','open','open','','post-34','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=42',0,'post','',0),(43,0,'2022-11-16 17:41:37','2022-11-16 17:41:37','','Post 35','','publish','open','open','','post-35','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=43',0,'post','',0),(44,0,'2022-11-17 17:41:38','2022-11-17 17:41:38','','Post 36','','publish','open','open','','post-36','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=44',0,'post','',0),(45,0,'2022-11-18 17:41:40','2022-11-18 17:41:40','','Post 37','','publish','open','open','','post-37','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=45',0,'post','',0),(46,0,'2022-11-19 17:41:42','2022-11-19 17:41:42','','Post 38','','publish','open','open','','post-38','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=46',0,'post','',0),(47,0,'2022-11-20 17:41:43','2022-11-20 17:41:43','','Post 39','','publish','open','open','','post-39','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=47',0,'post','',0),(48,0,'2022-11-21 17:41:45','2022-11-21 17:41:45','','Post 40','','publish','open','open','','post-40','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=48',0,'post','',0),(49,0,'2022-11-22 17:41:47','2022-11-22 17:41:47','','Post 41','','publish','open','open','','post-41','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=49',0,'post','',0),(50,0,'2022-11-23 17:41:48','2022-11-23 17:41:48','','Post 42','','publish','open','open','','post-42','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=50',0,'post','',0),(51,0,'2022-11-24 17:41:50','2022-11-24 17:41:50','','Post 43','','publish','open','open','','post-43','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=51',0,'post','',0),(52,0,'2022-11-25 17:41:52','2022-11-25 17:41:52','','Post 44','','publish','open','open','','post-44','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=52',0,'post','',0),(53,0,'2022-11-26 17:41:54','2022-11-26 17:41:54','','Post 45','','publish','open','open','','post-45','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=53',0,'post','',0),(54,0,'2022-11-27 17:41:55','2022-11-27 17:41:55','','Post 46','','publish','open','open','','post-46','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=54',0,'post','',0),(55,0,'2022-11-28 17:41:57','2022-11-28 17:41:57','','Post 47','','publish','open','open','','post-47','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=55',0,'post','',0),(56,0,'2022-11-29 17:41:59','2022-11-29 17:41:59','','Post 48','','publish','open','open','','post-48','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=56',0,'post','',0),(57,0,'2022-11-30 17:42:01','2022-11-30 17:42:01','','Post 49','','publish','open','open','','post-49','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=57',0,'post','',0),(58,0,'2022-12-01 17:42:02','2022-12-01 17:42:02','','Post 50','','publish','open','open','','post-50','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=58',0,'post','',0),(59,0,'2022-12-02 17:42:04','2022-12-02 17:42:04','','Post 51','','publish','open','open','','post-51','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=59',0,'post','',0),(60,0,'2022-12-03 17:42:06','2022-12-03 17:42:06','','Post 52','','publish','open','open','','post-52','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=60',0,'post','',0),(61,0,'2022-12-04 17:42:07','2022-12-04 17:42:07','','Post 53','','publish','open','open','','post-53','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=61',0,'post','',0),(62,0,'2022-12-05 17:42:09','2022-12-05 17:42:09','','Post 54','','publish','open','open','','post-54','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=62',0,'post','',0),(63,0,'2022-12-06 17:42:11','2022-12-06 17:42:11','','Post 55','','publish','open','open','','post-55','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=63',0,'post','',0),(64,0,'2022-12-07 17:42:13','2022-12-07 17:42:13','','Post 56','','publish','open','open','','post-56','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=64',0,'post','',0),(65,0,'2022-12-08 17:42:14','2022-12-08 17:42:14','','Post 57','','publish','open','open','','post-57','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=65',0,'post','',0),(66,0,'2022-12-09 17:42:16','2022-12-09 17:42:16','','Post 58','','publish','open','open','','post-58','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=66',0,'post','',0),(67,0,'2022-12-10 17:42:18','2022-12-10 17:42:18','','Post 59','','publish','open','open','','post-59','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=67',0,'post','',0),(68,0,'2022-12-11 17:42:19','2022-12-11 17:42:19','','Post 60','','publish','open','open','','post-60','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=68',0,'post','',0),(69,0,'2022-12-12 17:42:21','2022-12-12 17:42:21','','Post 61','','publish','open','open','','post-61','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=69',0,'post','',0),(70,0,'2022-12-13 17:42:23','2022-12-13 17:42:23','','Post 62','','publish','open','open','','post-62','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=70',0,'post','',0),(71,0,'2022-12-14 17:42:24','2022-12-14 17:42:24','','Post 63','','publish','open','open','','post-63','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=71',0,'post','',0),(72,0,'2022-12-15 17:42:26','2022-12-15 17:42:26','','Post 64','','publish','open','open','','post-64','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=72',0,'post','',0),(73,0,'2022-12-16 17:42:27','2022-12-16 17:42:27','','Post 65','','publish','open','open','','post-65','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=73',0,'post','',0),(74,0,'2022-12-17 17:42:29','2022-12-17 17:42:29','','Post 66','','publish','open','open','','post-66','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=74',0,'post','',0),(75,0,'2022-12-18 17:42:31','2022-12-18 17:42:31','','Post 67','','publish','open','open','','post-67','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=75',0,'post','',0),(76,0,'2022-12-19 17:42:32','2022-12-19 17:42:32','','Post 68','','publish','open','open','','post-68','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=76',0,'post','',0),(77,0,'2022-12-20 17:42:34','2022-12-20 17:42:34','','Post 69','','publish','open','open','','post-69','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=77',0,'post','',0),(78,0,'2022-12-21 17:42:36','2022-12-21 17:42:36','','Post 70','','publish','open','open','','post-70','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=78',0,'post','',0),(79,0,'2022-12-22 17:42:37','2022-12-22 17:42:37','','Post 71','','publish','open','open','','post-71','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=79',0,'post','',0),(80,0,'2022-12-23 17:42:39','2022-12-23 17:42:39','','Post 72','','publish','open','open','','post-72','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=80',0,'post','',0),(81,0,'2022-12-24 17:42:40','2022-12-24 17:42:40','','Post 73','','publish','open','open','','post-73','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=81',0,'post','',0),(82,0,'2022-12-25 17:42:42','2022-12-25 17:42:42','','Post 74','','publish','open','open','','post-74','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=82',0,'post','',0),(83,0,'2022-12-26 17:42:44','2022-12-26 17:42:44','','Post 75','','publish','open','open','','post-75','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=83',0,'post','',0),(84,0,'2022-12-27 17:42:45','2022-12-27 17:42:45','','Post 76','','publish','open','open','','post-76','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=84',0,'post','',0),(85,0,'2022-12-28 17:42:47','2022-12-28 17:42:47','','Post 77','','publish','open','open','','post-77','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=85',0,'post','',0),(86,0,'2022-12-29 17:42:49','2022-12-29 17:42:49','','Post 78','','publish','open','open','','post-78','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=86',0,'post','',0),(87,0,'2022-12-30 17:42:50','2022-12-30 17:42:50','','Post 79','','publish','open','open','','post-79','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=87',0,'post','',0),(88,0,'2022-12-31 17:42:52','2022-12-31 17:42:52','','Post 80','','publish','open','open','','post-80','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=88',0,'post','',0),(89,0,'2023-01-01 17:42:53','2023-01-01 17:42:53','','Post 81','','publish','open','open','','post-81','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=89',0,'post','',0),(90,0,'2023-01-02 17:42:55','2023-01-02 17:42:55','','Post 82','','publish','open','open','','post-82','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=90',0,'post','',0),(91,0,'2023-01-03 17:42:57','2023-01-03 17:42:57','','Post 83','','publish','open','open','','post-83','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=91',0,'post','',0),(92,0,'2023-01-04 17:42:58','2023-01-04 17:42:58','','Post 84','','publish','open','open','','post-84','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=92',0,'post','',0),(93,0,'2023-01-05 17:43:00','2023-01-05 17:43:00','','Post 85','','publish','open','open','','post-85','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=93',0,'post','',0),(94,0,'2023-01-06 17:43:01','2023-01-06 17:43:01','','Post 86','','publish','open','open','','post-86','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=94',0,'post','',0),(95,0,'2023-01-07 17:43:03','2023-01-07 17:43:03','','Post 87','','publish','open','open','','post-87','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=95',0,'post','',0),(96,0,'2023-01-08 17:43:05','2023-01-08 17:43:05','','Post 88','','publish','open','open','','post-88','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=96',0,'post','',0),(97,0,'2023-01-09 17:43:06','2023-01-09 17:43:06','','Post 89','','publish','open','open','','post-89','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=97',0,'post','',0),(98,0,'2023-01-10 17:43:08','2023-01-10 17:43:08','','Post 90','','publish','open','open','','post-90','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=98',0,'post','',0),(99,0,'2023-01-11 17:43:10','2023-01-11 17:43:10','','Post 91','','publish','open','open','','post-91','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=99',0,'post','',0),(100,0,'2023-01-12 17:43:11','2023-01-12 17:43:11','','Post 92','','publish','open','open','','post-92','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=100',0,'post','',0),(101,0,'2023-01-13 17:43:13','2023-01-13 17:43:13','','Post 93','','publish','open','open','','post-93','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=101',0,'post','',0),(102,0,'2023-01-14 17:43:14','2023-01-14 17:43:14','','Post 94','','publish','open','open','','post-94','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=102',0,'post','',0),(103,0,'2023-01-15 17:43:16','2023-01-15 17:43:16','','Post 95','','publish','open','open','','post-95','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=103',0,'post','',0),(104,0,'2023-01-16 17:43:18','2023-01-16 17:43:18','','Post 96','','publish','open','open','','post-96','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=104',0,'post','',0),(105,0,'2023-01-17 17:43:19','2023-01-17 17:43:19','','Post 97','','publish','open','open','','post-97','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=105',0,'post','',0),(106,0,'2023-01-18 17:43:21','2023-01-18 17:43:21','','Post 98','','publish','open','open','','post-98','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=106',0,'post','',0),(107,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 98','','inherit','closed','closed','','106-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',106,'https://mikestraw-test-production.mystagingwebsite.com/?p=107',0,'revision','',0),(108,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 97','','inherit','closed','closed','','105-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',105,'https://mikestraw-test-production.mystagingwebsite.com/?p=108',0,'revision','',0),(109,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 96','','inherit','closed','closed','','104-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',104,'https://mikestraw-test-production.mystagingwebsite.com/?p=109',0,'revision','',0),(110,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 95','','inherit','closed','closed','','103-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',103,'https://mikestraw-test-production.mystagingwebsite.com/?p=110',0,'revision','',0),(111,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 94','','inherit','closed','closed','','102-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',102,'https://mikestraw-test-production.mystagingwebsite.com/?p=111',0,'revision','',0),(112,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 93','','inherit','closed','closed','','101-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',101,'https://mikestraw-test-production.mystagingwebsite.com/?p=112',0,'revision','',0),(113,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 92','','inherit','closed','closed','','100-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',100,'https://mikestraw-test-production.mystagingwebsite.com/?p=113',0,'revision','',0),(114,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 91','','inherit','closed','closed','','99-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',99,'https://mikestraw-test-production.mystagingwebsite.com/?p=114',0,'revision','',0),(115,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 90','','inherit','closed','closed','','98-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',98,'https://mikestraw-test-production.mystagingwebsite.com/?p=115',0,'revision','',0),(116,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 89','','inherit','closed','closed','','97-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',97,'https://mikestraw-test-production.mystagingwebsite.com/?p=116',0,'revision','',0),(117,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 88','','inherit','closed','closed','','96-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',96,'https://mikestraw-test-production.mystagingwebsite.com/?p=117',0,'revision','',0),(118,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 87','','inherit','closed','closed','','95-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',95,'https://mikestraw-test-production.mystagingwebsite.com/?p=118',0,'revision','',0),(119,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 86','','inherit','closed','closed','','94-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',94,'https://mikestraw-test-production.mystagingwebsite.com/?p=119',0,'revision','',0),(120,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 85','','inherit','closed','closed','','93-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',93,'https://mikestraw-test-production.mystagingwebsite.com/?p=120',0,'revision','',0),(121,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 84','','inherit','closed','closed','','92-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',92,'https://mikestraw-test-production.mystagingwebsite.com/?p=121',0,'revision','',0),(122,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 83','','inherit','closed','closed','','91-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',91,'https://mikestraw-test-production.mystagingwebsite.com/?p=122',0,'revision','',0),(123,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 82','','inherit','closed','closed','','90-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',90,'https://mikestraw-test-production.mystagingwebsite.com/?p=123',0,'revision','',0),(124,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 81','','inherit','closed','closed','','89-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',89,'https://mikestraw-test-production.mystagingwebsite.com/?p=124',0,'revision','',0),(125,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 80','','inherit','closed','closed','','88-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',88,'https://mikestraw-test-production.mystagingwebsite.com/?p=125',0,'revision','',0),(126,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 79','','inherit','closed','closed','','87-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',87,'https://mikestraw-test-production.mystagingwebsite.com/?p=126',0,'revision','',0),(127,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 78','','inherit','closed','closed','','86-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',86,'https://mikestraw-test-production.mystagingwebsite.com/?p=127',0,'revision','',0),(128,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 77','','inherit','closed','closed','','85-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',85,'https://mikestraw-test-production.mystagingwebsite.com/?p=128',0,'revision','',0),(129,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 76','','inherit','closed','closed','','84-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',84,'https://mikestraw-test-production.mystagingwebsite.com/?p=129',0,'revision','',0),(130,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 75','','inherit','closed','closed','','83-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',83,'https://mikestraw-test-production.mystagingwebsite.com/?p=130',0,'revision','',0),(131,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 74','','inherit','closed','closed','','82-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',82,'https://mikestraw-test-production.mystagingwebsite.com/?p=131',0,'revision','',0),(132,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 73','','inherit','closed','closed','','81-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',81,'https://mikestraw-test-production.mystagingwebsite.com/?p=132',0,'revision','',0),(133,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 72','','inherit','closed','closed','','80-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',80,'https://mikestraw-test-production.mystagingwebsite.com/?p=133',0,'revision','',0),(134,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 71','','inherit','closed','closed','','79-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',79,'https://mikestraw-test-production.mystagingwebsite.com/?p=134',0,'revision','',0),(135,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 70','','inherit','closed','closed','','78-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',78,'https://mikestraw-test-production.mystagingwebsite.com/?p=135',0,'revision','',0),(136,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 69','','inherit','closed','closed','','77-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',77,'https://mikestraw-test-production.mystagingwebsite.com/?p=136',0,'revision','',0),(137,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 68','','inherit','closed','closed','','76-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',76,'https://mikestraw-test-production.mystagingwebsite.com/?p=137',0,'revision','',0),(138,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 67','','inherit','closed','closed','','75-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',75,'https://mikestraw-test-production.mystagingwebsite.com/?p=138',0,'revision','',0),(139,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 66','','inherit','closed','closed','','74-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',74,'https://mikestraw-test-production.mystagingwebsite.com/?p=139',0,'revision','',0),(140,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 65','','inherit','closed','closed','','73-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',73,'https://mikestraw-test-production.mystagingwebsite.com/?p=140',0,'revision','',0),(141,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 64','','inherit','closed','closed','','72-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',72,'https://mikestraw-test-production.mystagingwebsite.com/?p=141',0,'revision','',0),(142,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 63','','inherit','closed','closed','','71-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',71,'https://mikestraw-test-production.mystagingwebsite.com/?p=142',0,'revision','',0),(143,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 62','','inherit','closed','closed','','70-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',70,'https://mikestraw-test-production.mystagingwebsite.com/?p=143',0,'revision','',0),(144,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 61','','inherit','closed','closed','','69-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',69,'https://mikestraw-test-production.mystagingwebsite.com/?p=144',0,'revision','',0),(145,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 60','','inherit','closed','closed','','68-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',68,'https://mikestraw-test-production.mystagingwebsite.com/?p=145',0,'revision','',0),(146,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 59','','inherit','closed','closed','','67-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',67,'https://mikestraw-test-production.mystagingwebsite.com/?p=146',0,'revision','',0),(147,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 58','','inherit','closed','closed','','66-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',66,'https://mikestraw-test-production.mystagingwebsite.com/?p=147',0,'revision','',0),(148,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 57','','inherit','closed','closed','','65-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',65,'https://mikestraw-test-production.mystagingwebsite.com/?p=148',0,'revision','',0),(149,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 56','','inherit','closed','closed','','64-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',64,'https://mikestraw-test-production.mystagingwebsite.com/?p=149',0,'revision','',0),(150,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 55','','inherit','closed','closed','','63-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',63,'https://mikestraw-test-production.mystagingwebsite.com/?p=150',0,'revision','',0),(151,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 54','','inherit','closed','closed','','62-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',62,'https://mikestraw-test-production.mystagingwebsite.com/?p=151',0,'revision','',0),(152,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 53','','inherit','closed','closed','','61-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',61,'https://mikestraw-test-production.mystagingwebsite.com/?p=152',0,'revision','',0),(153,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 52','','inherit','closed','closed','','60-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',60,'https://mikestraw-test-production.mystagingwebsite.com/?p=153',0,'revision','',0),(154,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 51','','inherit','closed','closed','','59-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',59,'https://mikestraw-test-production.mystagingwebsite.com/?p=154',0,'revision','',0),(155,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 50','','inherit','closed','closed','','58-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',58,'https://mikestraw-test-production.mystagingwebsite.com/?p=155',0,'revision','',0),(156,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 49','','inherit','closed','closed','','57-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',57,'https://mikestraw-test-production.mystagingwebsite.com/?p=156',0,'revision','',0),(157,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 48','','inherit','closed','closed','','56-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',56,'https://mikestraw-test-production.mystagingwebsite.com/?p=157',0,'revision','',0),(158,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 47','','inherit','closed','closed','','55-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',55,'https://mikestraw-test-production.mystagingwebsite.com/?p=158',0,'revision','',0),(159,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 46','','inherit','closed','closed','','54-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',54,'https://mikestraw-test-production.mystagingwebsite.com/?p=159',0,'revision','',0),(160,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 45','','inherit','closed','closed','','53-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',53,'https://mikestraw-test-production.mystagingwebsite.com/?p=160',0,'revision','',0),(161,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 44','','inherit','closed','closed','','52-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',52,'https://mikestraw-test-production.mystagingwebsite.com/?p=161',0,'revision','',0),(162,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 43','','inherit','closed','closed','','51-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',51,'https://mikestraw-test-production.mystagingwebsite.com/?p=162',0,'revision','',0),(163,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 42','','inherit','closed','closed','','50-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',50,'https://mikestraw-test-production.mystagingwebsite.com/?p=163',0,'revision','',0),(164,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 41','','inherit','closed','closed','','49-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',49,'https://mikestraw-test-production.mystagingwebsite.com/?p=164',0,'revision','',0),(165,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 40','','inherit','closed','closed','','48-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',48,'https://mikestraw-test-production.mystagingwebsite.com/?p=165',0,'revision','',0),(166,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 39','','inherit','closed','closed','','47-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',47,'https://mikestraw-test-production.mystagingwebsite.com/?p=166',0,'revision','',0),(167,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 38','','inherit','closed','closed','','46-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',46,'https://mikestraw-test-production.mystagingwebsite.com/?p=167',0,'revision','',0),(168,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 37','','inherit','closed','closed','','45-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',45,'https://mikestraw-test-production.mystagingwebsite.com/?p=168',0,'revision','',0),(169,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 36','','inherit','closed','closed','','44-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',44,'https://mikestraw-test-production.mystagingwebsite.com/?p=169',0,'revision','',0),(170,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 35','','inherit','closed','closed','','43-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',43,'https://mikestraw-test-production.mystagingwebsite.com/?p=170',0,'revision','',0),(171,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 34','','inherit','closed','closed','','42-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',42,'https://mikestraw-test-production.mystagingwebsite.com/?p=171',0,'revision','',0),(172,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 33','','inherit','closed','closed','','41-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',41,'https://mikestraw-test-production.mystagingwebsite.com/?p=172',0,'revision','',0),(173,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 32','','inherit','closed','closed','','40-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',40,'https://mikestraw-test-production.mystagingwebsite.com/?p=173',0,'revision','',0),(174,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 31','','inherit','closed','closed','','39-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',39,'https://mikestraw-test-production.mystagingwebsite.com/?p=174',0,'revision','',0),(175,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 30','','inherit','closed','closed','','38-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',38,'https://mikestraw-test-production.mystagingwebsite.com/?p=175',0,'revision','',0),(176,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 29','','inherit','closed','closed','','37-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',37,'https://mikestraw-test-production.mystagingwebsite.com/?p=176',0,'revision','',0),(177,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 28','','inherit','closed','closed','','36-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',36,'https://mikestraw-test-production.mystagingwebsite.com/?p=177',0,'revision','',0),(178,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 27','','inherit','closed','closed','','35-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',35,'https://mikestraw-test-production.mystagingwebsite.com/?p=178',0,'revision','',0),(179,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 26','','inherit','closed','closed','','34-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',34,'https://mikestraw-test-production.mystagingwebsite.com/?p=179',0,'revision','',0),(180,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 25','','inherit','closed','closed','','33-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',33,'https://mikestraw-test-production.mystagingwebsite.com/?p=180',0,'revision','',0),(181,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 24','','inherit','closed','closed','','32-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',32,'https://mikestraw-test-production.mystagingwebsite.com/?p=181',0,'revision','',0),(182,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 23','','inherit','closed','closed','','31-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',31,'https://mikestraw-test-production.mystagingwebsite.com/?p=182',0,'revision','',0),(183,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 22','','inherit','closed','closed','','30-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',30,'https://mikestraw-test-production.mystagingwebsite.com/?p=183',0,'revision','',0),(184,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 21','','inherit','closed','closed','','29-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',29,'https://mikestraw-test-production.mystagingwebsite.com/?p=184',0,'revision','',0),(185,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 20','','inherit','closed','closed','','28-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',28,'https://mikestraw-test-production.mystagingwebsite.com/?p=185',0,'revision','',0),(186,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 19','','inherit','closed','closed','','27-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',27,'https://mikestraw-test-production.mystagingwebsite.com/?p=186',0,'revision','',0),(187,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 18','','inherit','closed','closed','','26-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',26,'https://mikestraw-test-production.mystagingwebsite.com/?p=187',0,'revision','',0),(188,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 17','','inherit','closed','closed','','25-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',25,'https://mikestraw-test-production.mystagingwebsite.com/?p=188',0,'revision','',0),(189,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 16','','inherit','closed','closed','','24-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',24,'https://mikestraw-test-production.mystagingwebsite.com/?p=189',0,'revision','',0),(190,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 15','','inherit','closed','closed','','23-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',23,'https://mikestraw-test-production.mystagingwebsite.com/?p=190',0,'revision','',0),(191,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 14','','inherit','closed','closed','','22-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',22,'https://mikestraw-test-production.mystagingwebsite.com/?p=191',0,'revision','',0),(192,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 13','','inherit','closed','closed','','21-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',21,'https://mikestraw-test-production.mystagingwebsite.com/?p=192',0,'revision','',0),(193,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 12','','inherit','closed','closed','','20-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',20,'https://mikestraw-test-production.mystagingwebsite.com/?p=193',0,'revision','',0),(194,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 11','','inherit','closed','closed','','19-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',19,'https://mikestraw-test-production.mystagingwebsite.com/?p=194',0,'revision','',0),(195,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 10','','inherit','closed','closed','','18-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',18,'https://mikestraw-test-production.mystagingwebsite.com/?p=195',0,'revision','',0),(196,0,'2022-10-20 17:43:26','2022-10-20 17:43:26','','Post 9','','inherit','closed','closed','','17-revision-v1','','','2022-10-20 17:43:26','2022-10-20 17:43:26','',17,'https://mikestraw-test-production.mystagingwebsite.com/?p=196',0,'revision','',0); +/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_term_relationships` +-- + +DROP TABLE IF EXISTS `wp_term_relationships`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_term_relationships` ( + `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `term_order` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`object_id`,`term_taxonomy_id`), + KEY `term_taxonomy_id` (`term_taxonomy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_term_relationships` +-- + +LOCK TABLES `wp_term_relationships` WRITE; +/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; +INSERT INTO `wp_term_relationships` VALUES (1,1,0),(4,1,0),(5,2,0),(8,1,0),(17,1,0),(18,1,0),(19,1,0),(20,1,0),(21,1,0),(22,1,0),(23,1,0),(24,1,0),(25,1,0),(26,1,0),(27,1,0),(28,1,0),(29,1,0),(30,1,0),(31,1,0),(32,1,0),(33,1,0),(34,1,0),(35,1,0),(36,1,0),(37,1,0),(38,1,0),(39,1,0),(40,1,0),(41,1,0),(42,1,0),(43,1,0),(44,1,0),(45,1,0),(46,1,0),(47,1,0),(48,1,0),(49,1,0),(50,1,0),(51,1,0),(52,1,0),(53,1,0),(54,1,0),(55,1,0),(56,1,0),(57,1,0),(58,1,0),(59,1,0),(60,1,0),(61,1,0),(62,1,0),(63,1,0),(64,1,0),(65,1,0),(66,1,0),(67,1,0),(68,1,0),(69,1,0),(70,1,0),(71,1,0),(72,1,0),(73,1,0),(74,1,0),(75,1,0),(76,1,0),(77,1,0),(78,1,0),(79,1,0),(80,1,0),(81,1,0),(82,1,0),(83,1,0),(84,1,0),(85,1,0),(86,1,0),(87,1,0),(88,1,0),(89,1,0),(90,1,0),(91,1,0),(92,1,0),(93,1,0),(94,1,0),(95,1,0),(96,1,0),(97,1,0),(98,1,0),(99,1,0),(100,1,0),(101,1,0),(102,1,0),(103,1,0),(104,1,0),(105,1,0),(106,1,0); +/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_term_taxonomy` +-- + +DROP TABLE IF EXISTS `wp_term_taxonomy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_term_taxonomy` ( + `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `taxonomy` varchar(32) NOT NULL DEFAULT '', + `description` longtext NOT NULL, + `parent` bigint(20) unsigned NOT NULL DEFAULT 0, + `count` bigint(20) NOT NULL DEFAULT 0, + PRIMARY KEY (`term_taxonomy_id`), + UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), + KEY `taxonomy` (`taxonomy`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_term_taxonomy` +-- + +LOCK TABLES `wp_term_taxonomy` WRITE; +/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; +INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,93),(2,2,'wp_theme','',0,1); +/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_termmeta` +-- + +DROP TABLE IF EXISTS `wp_termmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_termmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `term_id` (`term_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_termmeta` +-- + +LOCK TABLES `wp_termmeta` WRITE; +/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_terms` +-- + +DROP TABLE IF EXISTS `wp_terms`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_terms` ( + `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(200) NOT NULL DEFAULT '', + `slug` varchar(200) NOT NULL DEFAULT '', + `term_group` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`term_id`), + KEY `slug` (`slug`(191)), + KEY `name` (`name`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_terms` +-- + +LOCK TABLES `wp_terms` WRITE; +/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; +INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentytwo','twentytwentytwo',0); +/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_usermeta` +-- + +DROP TABLE IF EXISTS `wp_usermeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_usermeta` ( + `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`umeta_id`), + KEY `user_id` (`user_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_usermeta` +-- + +LOCK TABLES `wp_usermeta` WRITE; +/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; +INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','mikestraw-test-production'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','plugin_editor_notice'),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:1:{s:64:\"901f50500374040a1d1efbefa4ecc1d4064680907cc3852f9499ec6d982ddc3c\";a:4:{s:10:\"expiration\";i:1683222913;s:2:\"ip\";s:13:\"24.210.17.124\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36\";s:5:\"login\";i:1682013313;}}'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.210.17.0\";}'),(19,1,'jetpack_tracks_wpcom_id','6976977'),(20,2,'nickname','mike@thestraws.net'),(21,2,'first_name',''),(22,2,'last_name',''),(23,2,'description',''),(24,2,'rich_editing','true'),(25,2,'syntax_highlighting','true'),(26,2,'comment_shortcuts','false'),(27,2,'admin_color','fresh'),(28,2,'use_ssl','0'),(29,2,'show_admin_bar_front','true'),(30,2,'locale',''),(31,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(32,2,'wp_user_level','10'),(33,2,'dismissed_wp_pointers',''),(34,3,'nickname','taco@lonelytaco.com'),(35,3,'first_name',''),(36,3,'last_name',''),(37,3,'description',''),(38,3,'rich_editing','true'),(39,3,'syntax_highlighting','true'),(40,3,'comment_shortcuts','false'),(41,3,'admin_color','fresh'),(42,3,'use_ssl','0'),(43,3,'show_admin_bar_front','true'),(44,3,'locale',''),(45,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(46,3,'wp_user_level','10'),(47,3,'dismissed_wp_pointers',''),(48,2,'default_password_nag',''),(49,3,'default_password_nag',''),(51,3,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.210.17.0\";}'),(52,2,'session_tokens','a:1:{s:64:\"1bb2fba812d07d28ae92aa8272936b045a071bdcb85d3d1ddde55d7111a4a5a1\";a:4:{s:10:\"expiration\";i:1665167578;s:2:\"ip\";s:13:\"24.210.17.236\";s:2:\"ua\";s:84:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:105.0) Gecko/20100101 Firefox/105.0\";s:5:\"login\";i:1664994778;}}'),(53,2,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.210.17.0\";}'),(55,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:17:\"complementaryArea\";s:18:\"edit-post/document\";s:12:\"welcomeGuide\";b:0;s:26:\"isComplementaryAreaVisible\";b:1;}s:9:\"_modified\";s:24:\"2022-10-24T13:24:35.405Z\";}'); +/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wp_users` +-- + +DROP TABLE IF EXISTS `wp_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wp_users` ( + `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_login` varchar(60) NOT NULL DEFAULT '', + `user_pass` varchar(255) NOT NULL DEFAULT '', + `user_nicename` varchar(50) NOT NULL DEFAULT '', + `user_email` varchar(100) NOT NULL DEFAULT '', + `user_url` varchar(100) NOT NULL DEFAULT '', + `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `user_activation_key` varchar(255) NOT NULL DEFAULT '', + `user_status` int(11) NOT NULL DEFAULT 0, + `display_name` varchar(250) NOT NULL DEFAULT '', + PRIMARY KEY (`ID`), + KEY `user_login_key` (`user_login`), + KEY `user_nicename` (`user_nicename`), + KEY `user_email` (`user_email`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wp_users` +-- + +LOCK TABLES `wp_users` WRITE; +/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; +INSERT INTO `wp_users` VALUES (1,'mikestraw-test-production','$P$BQqxrwfelhYEWCsD/e8Ksra.XGcbo50','mikestraw-test-production','concierge@wordpress.com','https://mikestraw-test-production.mystagingwebsite.com','2022-10-03 14:09:27','',0,'mikestraw-test-production'),(2,'mike@thestraws.net','$P$BF.YJXytc80557Xve0ytP4gQ46Uw.Y.','mikethestraws-net','mike@thestraws.net','','0000-00-00 00:00:00','',0,'mike@thestraws.net'),(3,'taco@lonelytaco.com','$P$BWcHE41DgQ7ZrLFYaWz69g3ZzibpXS0','tacolonelytaco-com','taco@lonelytaco.com','','0000-00-00 00:00:00','',0,'taco@lonelytaco.com'); +/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2023-10-23 13:21:16 From 96fb4c87bd4b0ffa3a55ad1036c8f3f609b84f14 Mon Sep 17 00:00:00 2001 From: Nate Allen Date: Wed, 24 Jan 2024 17:21:35 -0500 Subject: [PATCH 13/17] Use mysqldump to get database backup without PII --- src/commands/pressable-get-db-backup.php | 279 +++++++++++------------ 1 file changed, 134 insertions(+), 145 deletions(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index e888be98..88b21c56 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -30,25 +30,19 @@ class Pressable_Get_Db_Backup extends Command { */ protected static $defaultName = 'pressable:get-db-backup'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.PropertyNotSnakeCase - /** - * Safety Net data file URLs. - * - * @var string[] - */ - protected const SAFETY_NET_DATA_URLS = [ - 'scrublist' => 'https://github.com/a8cteam51/safety-net/raw/trunk/assets/data/option_scrublist.txt', - 'denylist' => 'https://github.com/a8cteam51/safety-net/raw/trunk/assets/data/plugin_denylist.txt', - ]; - /** * Tables to scrub * * @var string[] */ - protected const SCRUBBED_TABLES = [ - 'wp_users', + protected ?array $ignore_tables = [ 'woocommerce_order_itemmeta', 'woocommerce_order_items', + 'woocommerce_api_keys', + 'woocommerce_payment_tokens', + 'woocommerce_payment_tokenmeta', + 'wp_woocommerce_log', + 'woocommerce_sessions', 'wc_orders', 'wc_order_addresses', 'wc_order_operational_data', @@ -56,6 +50,8 @@ class Pressable_Get_Db_Backup extends Command { 'wpml_mails', ]; + protected ?array $ignore_options = []; + /** * The Pressable site to connect to. * @@ -71,40 +67,12 @@ class Pressable_Get_Db_Backup extends Command { protected ?string $user_email = null; /** - * The interactive hell type to open. + * The interactive shell type to open. * * @var string|null */ protected ?string $shell_type = null; - /** - * The exported SQL filename. - * - * @var string|null - */ - protected ?string $sql_filename = null; - - /** - * The current table we are processing. (False if we're outside of actual table data) - * - * @var string|bool - */ - protected string|bool $current_table = false; - - /** - * List of options to scrub. - * - * @var array - */ - protected array $scrublist = []; - - /** - * List of plugins to deny. - * - * @var array - */ - protected array $denylist = []; - // endregion // region INHERITED METHODS @@ -114,10 +82,10 @@ class Pressable_Get_Db_Backup extends Command { */ protected function configure(): void { $this->setDescription( 'Downloads a Pressable database backup.' ) - ->setHelp( "This command accepts a Pressable site as an input, then exports and downloads the database for that site.\nThe downloaded file will be in the current directory with the name pressable--.sql" ); + ->setHelp( "This command accepts a Pressable site as an input, then exports and downloads the database for that site.\nThe downloaded file will be in the current directory with the name pressable--.sql" ); $this->addArgument( 'site', InputArgument::REQUIRED, 'ID or URL of the site to connect to.' ) - ->addOption( 'user', 'u', InputOption::VALUE_REQUIRED, 'Email of the user to connect as. Defaults to your Team51 1Password email.' ); + ->addOption( 'user', 'u', InputOption::VALUE_REQUIRED, 'Email of the user to connect as. Defaults to your Team51 1Password email.' ); } /** @@ -126,6 +94,8 @@ protected function configure(): void { protected function initialize( InputInterface $input, OutputInterface $output ): void { maybe_define_console_verbosity( $output->getVerbosity() ); + $this->ignore_options = $this->get_safety_net_list(); + // Retrieve and validate the modifier options. $this->shell_type = 'ssh'; @@ -152,23 +122,23 @@ static function() { 'user' ); $input->setOption( 'user', $this->user_email ); // Store the user email in the input. + + // Get the database prefix with wp cli command + $ssh = Pressable_Connection_Helper::get_ssh_connection( $this->pressable_site->id ); + if ( \is_null( $ssh ) ) { + $output->writeln( 'Could not connect to the SSH server.' ); + exit( 1 ); + } + + $dbPrefix = trim( $ssh->exec( 'wp db prefix --quiet --skip-plugins --skip-themes 2> /dev/null' ) ); + + $this->ignore_tables = array_map( fn( string $table ) => $dbPrefix . $table, $this->ignore_tables ); } /** * {@inheritDoc} */ protected function execute( InputInterface $input, OutputInterface $output ): int { - // TEST CODE - $this->sql_filename = '/Users/taco/Downloads/149844071-2023-10-23-b8f3f0f.sql'; - // END TEST CODE - - $this->denylist = $this->get_safety_net_list( 'denylist' ); - $this->scrublist = $this->get_safety_net_list( 'scrublist' ); - $this->process_sql_file(); - - //TEST CODE - return 1; - // END TEST CODE $output->writeln( "Exporting {$this->pressable_site->displayName} (ID {$this->pressable_site->id}, URL {$this->pressable_site->url}) as $this->user_email." ); // Retrieve the SFTP user for the given email. @@ -183,18 +153,79 @@ protected function execute( InputInterface $input, OutputInterface $output ): in return 1; } - $date = new \DateTime(); - $formatted_date = $date->format('Y-m-d'); - $filename = "{$this->pressable_site->displayName}-{$formatted_date}.sql"; + $database = trim( $ssh->exec( 'basename "$(pwd)"' ) ); + $date = new \DateTime(); + $formattedDate = $date->format( 'Y-m-d' ); + $filename = "{$this->pressable_site->displayName}-{$formattedDate}.sql"; $ssh->setTimeout( 0 ); // Disable timeout in case the command takes a long time. - $ssh->exec( - "wp db export $filename --exclude_tables=wp_users,woocommerce_order_itemmeta,woocommerce_order_items,wc_orders,wc_order_addresses,wc_order_operational_data,wc_orders_meta,wpml_mails", - static function( string $str ): void { - echo $str; - } + + $baseCommand = "mysqldump --single-transaction --skip-lock-tables $database"; + $excludedOptions = "'" . implode( "', '", $this->ignore_options ) . "'"; + + // Array of all commands + $commands = [ + "$baseCommand --no-data --ignore-table={$database}.wp_posts --ignore-table={$database}.wp_postmeta --ignore-table={$database}.wp_users --ignore-table={$database}.wp_usermeta > $filename", + "$baseCommand --tables wp_options --where=\"option_name NOT IN ($excludedOptions) AND option_name NOT LIKE '%key%'\" >> $filename", + "$baseCommand --tables wp_postmeta --where=\"post_id not in (select ID from wp_posts where post_type in ('shop_order', 'shop_order_refund', 'shop_subscription', 'subscription'))\" >> $filename", + "$baseCommand --tables wp_posts --where=\"post_type NOT IN ('shop_order', 'shop_order_refund', 'shop_subscription', 'subscription')\" >> $filename", + "$baseCommand --tables wp_users --where=\"ID not in (select user_id from wp_usermeta where meta_key = 'wp_user_level' and meta_value = 0)\" >> $filename", + "$baseCommand --tables wp_usermeta --where=\"user_id in (select user_id from wp_usermeta where meta_key = 'wp_user_level' and meta_value != 0)\" >> $filename", + "$baseCommand --tables wp_comments --where=\"comment_type != 'order_note'\" >> $filename", + ]; + + // Get list of all tables in the database + $all_tables = $ssh->exec("mysql -N -e 'SHOW TABLES' $database"); + + // Exclude ignored tables and tables that we're getting data for in other commands + $tables_to_dump = implode( + ' ', + array_diff( + explode( "\n", trim( $all_tables ) ), + $this->ignore_tables, + [ + 'wp_options', + 'wp_posts', + 'wp_postmeta', + 'wp_users', + 'wp_usermeta', + 'wp_comments', + ] + ) ); + $commands[] = "$baseCommand --tables $tables_to_dump >> $filename"; + + // Execute each command + foreach ($commands as $cmd) { + $output->writeln("Executing: $cmd"); + $ssh->exec( $cmd ); + } + + // Download the file. + $sftp = Pressable_Connection_Helper::get_sftp_connection( $this->pressable_site->id ); + if ( \is_null( $sftp ) ) { + $output->writeln( 'Could not connect to the SFTP server.' ); + return 1; + } + + $output->writeln( "Downloading $filename" ); + + $result = $sftp->get( "/home/$database/$filename", $filename); + + if ( ! $result ) { + $output->writeln( 'Could not download the file.' ); + $output->writeln( "{$sftp->getLastSFTPError()}" ); + return 1; + } + + $current_directory = getcwd(); + + $output->writeln( "File downloaded to $current_directory/$filename" ); + + // Delete the file from the server + $ssh->exec( "rm /home/$database/$filename" ); + return 0; } @@ -222,95 +253,53 @@ private function prompt_site_input( InputInterface $input,OutputInterface $outpu } /** - * Processes the current line of the SQL file. Updates the data as necessary - * - * @param string $line The current line of the SQL file. - * - * @return string - */ - private function process_line( string $line ) { - if ( $this->current_table === false ){ - // Check if we're on a new table - // Format in the SQL file: - // -- Dumping data for table `
` - if ( preg_match( '/^-- Dumping data for table `(.*)`$/', $line, $matches ) ) { - $this->current_table = $matches[1]; - } - return $line; - } - - // Check if we're actually in the table's data - // We want INSERT lines. If the line is "UNLOCK TABLES;", then we've left - if ( $line === "UNLOCK TABLES;" ) { - $this->current_table = false; - return $line; - } - if ( ! preg_match( '/^INSERT INTO `(.*)`/', $line, $matches ) ) { - return $line; - } - - // If we're in wp_options, scrub the options - if ( $this->current_table === 'wp_options' ) { - return $this->scrub_options( $line ); - } - // Check if we're in a table we want to scrub - if ( $this->current_table === in_array( $this->current_table, self::SCRUBBED_TABLES ) ) { - return ''; - } - - return $line; - } - - /** - * Processes the downloaded SQL file. + * Retrieves a list from Safety Net of options to ignore * - * @return bool + * @return array */ - private function process_sql_file() { - $file = fopen( $this->sql_filename, 'r' ); - if ( ! $file ) { - return false; - } - while (($line = fgets($file)) !== false) { - $line = $this->process_line( $line ); - // TEST CODE - print($line); + private function get_safety_net_list() : array { + $list = file_get_contents( 'https://github.com/a8cteam51/safety-net/raw/trunk/assets/data/option_scrublist.txt' ); + + // If the list can't be retrieved, use this as a fallback. + if ( ! $list ) { + return array( + 'jetpack_active_modules', + 'jetpack_private_options', + 'jetpack_secrets', + 'klaviyo_api_key', + 'klaviyo_edd_license_key', + 'klaviyo_settings', + 'leadin_access_token', + 'mailchimp-woocommerce', + 'mailchimp-woocommerce-cached-api-account-name', + 'mailster_options', + 'mc4wp', + 'novos_klaviyo_option_name', + 'shareasale_wc_tracker_options', + 'woocommerce-ppcp-settings', + 'woocommerce_afterpay_settings', + 'woocommerce_braintree_credit_card_settings', + 'woocommerce_braintree_paypal_settings', + 'woocommerce_paypal_settings', + 'woocommerce_ppcp-gateway_settings', + 'woocommerce_referralcandy_settings', + 'woocommerce_shipstation_auth_key', + 'woocommerce_stripe_account_settings', + 'woocommerce_stripe_api_settings', + 'woocommerce_stripe_settings', + 'woocommerce_woocommerce_payments_settings', + 'wpmandrill', + 'wprus', + 'yotpo_settings', + 'zmail_access_token', + 'zmail_auth_code', + 'zmail_integ_client_secret', + 'zmail_refresh_token', + ); } - } - - /** - * Checks if we are currently in the specified table. - * - * @param string $table_name - * - * @return bool - */ - private function is_in_table( string $table_name ) : bool { - return $this->current_table === $table_name; - } - /** - * Retrieves list from Safety Net repo - * - * @param string $listname - * - * @return array - */ - private function get_safety_net_list( string $listname ) : array { - $list = file_get_contents( self::SAFETY_NET_DATA_URLS[$listname] ); return explode( "\n", $list ); } - /** - * Scrub the options table - * - * @param string $line - * - * @return string - */ - private function scrub_options( string $line ) : string { - return $line; - } - // endregion } From 5a9ace59403e27049987b7acab19ed8e4265fd93 Mon Sep 17 00:00:00 2001 From: Nate Allen Date: Wed, 24 Jan 2024 17:24:13 -0500 Subject: [PATCH 14/17] Remove references to unused functions --- src/commands/pressable-get-db-backup.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index 88b21c56..77eb822d 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -9,15 +9,12 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Input\InputArgument; use Team51\Helper\Pressable_Connection_Helper; -use function Team51\Helper\create_pressable_site_collaborator; use function Team51\Helper\get_email_input; -use function Team51\Helper\get_enum_input; use function Team51\Helper\get_pressable_site_from_input; use function Team51\Helper\get_pressable_site_sftp_user_by_email; use function Team51\Helper\get_pressable_sites; use function Team51\Helper\list_1password_accounts; use function Team51\Helper\maybe_define_console_verbosity; -use function Team51\Helper\reset_pressable_site_sftp_user_password; /** * CLI command for connecting to a Pressable site via SSH/SFTP and continuing on the interactive shell. From 74355780ff6d27a759da07688ec258a5abe9cfc2 Mon Sep 17 00:00:00 2001 From: Nate Allen Date: Wed, 24 Jan 2024 17:28:04 -0500 Subject: [PATCH 15/17] Remove test sql --- test.sql | 410 ------------------------------------------------------- 1 file changed, 410 deletions(-) delete mode 100644 test.sql diff --git a/test.sql b/test.sql deleted file mode 100644 index 96ceba48..00000000 --- a/test.sql +++ /dev/null @@ -1,410 +0,0 @@ --- MariaDB dump 10.19 Distrib 10.5.21-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: 127.0.0.1 Database: 149844071 --- ------------------------------------------------------ --- Server version 10.4.26-MariaDB-log - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `wp_commentmeta` --- - -DROP TABLE IF EXISTS `wp_commentmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_commentmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `comment_id` (`comment_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_commentmeta` --- - -LOCK TABLES `wp_commentmeta` WRITE; -/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; -/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_comments` --- - -DROP TABLE IF EXISTS `wp_comments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_comments` ( - `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, - `comment_author` tinytext NOT NULL, - `comment_author_email` varchar(100) NOT NULL DEFAULT '', - `comment_author_url` varchar(200) NOT NULL DEFAULT '', - `comment_author_IP` varchar(100) NOT NULL DEFAULT '', - `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `comment_content` text NOT NULL, - `comment_karma` int(11) NOT NULL DEFAULT 0, - `comment_approved` varchar(20) NOT NULL DEFAULT '1', - `comment_agent` varchar(255) NOT NULL DEFAULT '', - `comment_type` varchar(20) NOT NULL DEFAULT 'comment', - `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - PRIMARY KEY (`comment_ID`), - KEY `comment_post_ID` (`comment_post_ID`), - KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), - KEY `comment_date_gmt` (`comment_date_gmt`), - KEY `comment_parent` (`comment_parent`), - KEY `comment_author_email` (`comment_author_email`(10)) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_comments` --- - -LOCK TABLES `wp_comments` WRITE; -/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; -INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2022-10-03 14:09:27','2022-10-03 14:09:27','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar.',0,'1','','comment',0,0); -/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_links` --- - -DROP TABLE IF EXISTS `wp_links`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_links` ( - `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `link_url` varchar(255) NOT NULL DEFAULT '', - `link_name` varchar(255) NOT NULL DEFAULT '', - `link_image` varchar(255) NOT NULL DEFAULT '', - `link_target` varchar(25) NOT NULL DEFAULT '', - `link_description` varchar(255) NOT NULL DEFAULT '', - `link_visible` varchar(20) NOT NULL DEFAULT 'Y', - `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, - `link_rating` int(11) NOT NULL DEFAULT 0, - `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `link_rel` varchar(255) NOT NULL DEFAULT '', - `link_notes` mediumtext NOT NULL, - `link_rss` varchar(255) NOT NULL DEFAULT '', - PRIMARY KEY (`link_id`), - KEY `link_visible` (`link_visible`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_links` --- - -LOCK TABLES `wp_links` WRITE; -/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; -/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_options` --- - -DROP TABLE IF EXISTS `wp_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_options` ( - `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `option_name` varchar(191) NOT NULL DEFAULT '', - `option_value` longtext NOT NULL, - `autoload` varchar(20) NOT NULL DEFAULT 'yes', - PRIMARY KEY (`option_id`), - UNIQUE KEY `option_name` (`option_name`), - KEY `autoload` (`autoload`) -) ENGINE=InnoDB AUTO_INCREMENT=5351 DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_options` --- - -LOCK TABLES `wp_options` WRITE; -/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; -INSERT INTO `wp_options` VALUES (1,'siteurl','https://mikestraw-test-production.mystagingwebsite.com','yes'),(2,'home','https://mikestraw-test-production.mystagingwebsite.com','yes'),(3,'blogname','My WordPress Site','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','concierge@wordpress.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:96:{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: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'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:3:{i:0;s:19:\"akismet/akismet.php\";i:1;s:23:\"gutenberg/gutenberg.php\";i:2;s:19:\"jetpack/jetpack.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:3:{i:0;s:50:\"/srv/htdocs/wp-content/plugins/akismet/akismet.php\";i:1;s:85:\"/srv/htdocs/wp-content/plugins/t51-log-jetpack-xmlrpc.php_/t51-log-jetpack-xmlrpc.php\";i:3;s:0:\"\";}','no'),(40,'template','twentytwentytwo','yes'),(41,'stylesheet','twentytwentytwo','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','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:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1697565317','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','3','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:1691172722;a:2:{s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1691173907;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:1691175732;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:1691176167;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:1691201367;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1691202286;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:1691244567;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:1691244921;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:1691245486;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:1691245522;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1691503767;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'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'nonce_key','LRqX}:AY0?R?jfh,f8xS|.,eF(1$JvK<]l9z>Ii]~{uC7z$J?fGK,ODb/+6*Ih7X','no'),(116,'nonce_salt','Cl@0Y5y5@X},f}U>Cc*x2Lg)^u0}:^H#(HM~gG1Bg9v','no'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'jetpack_activated','4','yes'),(121,'jetpack_activation_source','a:2:{i:0;s:6:\"wp-cli\";i:1;N;}','yes'),(123,'jetpack_options','a:13:{s:7:\"version\";s:19:\"12.5-a.1:1691053261\";s:11:\"old_version\";s:20:\"12.4-beta:1690419778\";s:14:\"last_heartbeat\";i:1691141371;s:2:\"id\";i:209320505;s:6:\"public\";i:1;s:30:\"recommendations_banner_enabled\";b:1;s:16:\"first_admin_view\";b:1;s:27:\"recommendations_conditional\";a:0:{}s:21:\"publicize_connections\";a:1:{s:7:\"twitter\";a:1:{i:24576433;a:12:{s:13:\"refresh_token\";s:0:\"\";s:4:\"type\";s:6:\"access\";s:7:\"user_id\";s:1:\"1\";s:8:\"provider\";s:13:\"twitter:38869\";s:6:\"issued\";s:19:\"2022-10-17 20:35:24\";s:7:\"expires\";b:0;s:11:\"external_id\";s:19:\"1582097307218202626\";s:13:\"external_name\";s:10:\"TacosTests\";s:16:\"external_display\";s:11:\"@TacosTests\";s:15:\"connection_data\";a:5:{s:2:\"id\";s:8:\"24576433\";s:8:\"token_id\";s:8:\"28393253\";s:7:\"blog_id\";s:9:\"209320505\";s:7:\"user_id\";s:1:\"1\";s:4:\"meta\";a:3:{s:12:\"display_name\";s:11:\"@TacosTests\";s:4:\"link\";s:29:\"http://twitter.com/TacosTests\";s:16:\"external_user_id\";s:1:\"1\";}}s:15:\"profile_picture\";s:71:\"https://abs.twimg.com/sticky/default_profile_images/default_profile.png\";s:20:\"profile_display_name\";s:0:\"\";}}}s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:11:\"master_user\";i:1;s:15:\"licensing_error\";s:0:\"\";}','yes'),(124,'pressable_site_id','1252314','yes'),(125,'jetpack_licenses','a:1:{i:0;s:48:\"jetpack-security-daily_0y9mLwUTG5Uht66aCEPKjr6JR\";}','yes'),(126,'jetpack_available_modules','a:1:{s:8:\"12.5-a.1\";a:47:{s:10:\"action-bar\";s:4:\"11.4\";s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(127,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(128,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'recovery_keys','a:0:{}','yes'),(130,'theme_mods_twentytwentytwo','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(131,'https_detection_errors','a:0:{}','yes'),(135,'do_activate','0','yes'),(136,'dismiss_pressable_jetpack_banner','1','yes'),(138,'jetpack_log','a:1:{i:0;a:4:{s:4:\"time\";i:1664807097;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}}','no'),(139,'jetpack_tos_agreed','1','yes'),(144,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"4Tv81ZpgIQZ1gSB8@3S8q)EY0Jj9O8kK.8D!fJh865GRTZc*UqvH4ow$f*ayaj8Ir\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"v*su$TtwU7$JPdsy7TFiBCpy1kEfG)ou.HMB*14mmGe@HFBn0b6%hOMg7TqXI&Xc&.1\";}}','yes'),(145,'jetpack_active_modules','a:10:{i:0;s:12:\"contact-form\";i:1;s:21:\"enhanced-distribution\";i:2;s:8:\"json-api\";i:3;s:5:\"stats\";i:4;s:18:\"verification-tools\";i:5;s:21:\"woocommerce-analytics\";i:6;s:5:\"notes\";i:7;s:7:\"protect\";i:8;s:9:\"publicize\";i:9;s:5:\"blaze\";}','yes'),(146,'jetpack_unique_registrations','2','yes'),(180,'jetpack_plugin_api_action_links','a:0:{}','yes'),(181,'jetpack_search_plan_info','a:3:{s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;}','yes'),(182,'jetpack_testimonial','0','yes'),(184,'jp_sync_last_success_immediate-send','1691141370.7569','no'),(241,'jpsq_sync_checkout','0:0','no'),(242,'jp_sync_lock_full_sync','','no'),(243,'jp_sync_last_success_sync','1691141372.6906','no'),(247,'jp_sync_retry_after_immediate-send','','no'),(248,'jp_sync_error_log_immediate-send','a:4:{s:15:\"1664807100.0527\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";i:400;}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1664807100.2139\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";i:400;}s:18:\"\0*\0additional_data\";a:0:{}}s:14:\"1664807100.355\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";i:400;}s:18:\"\0*\0additional_data\";a:0:{}}s:15:\"1664807100.5362\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";i:400;}s:18:\"\0*\0additional_data\";a:0:{}}}','yes'),(260,'verification_services_codes','0','yes'),(262,'stats_options','a:6:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:209320505;s:12:\"do_not_track\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(321,'jetpack_sync_health_status','a:2:{s:6:\"status\";s:7:\"in_sync\";s:9:\"timestamp\";d:1664807110.814559;}','yes'),(326,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:2;s:12:\"disconnected\";i:1;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(332,'jetpack_protect_key','dd211284795f69ffda16f8d71cae53b1a2460f4e','no'),(335,'jetpack_active_modules_initialized','1','yes'),(343,'auto_update_plugins','a:1:{i:0;s:19:\"akismet/akismet.php\";}','no'),(348,'wordpress_api_key','86ba7fd4775f','yes'),(352,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(353,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(357,'post_by_email_address1','NULL','yes'),(359,'monitor_receive_notifications','1','yes'),(379,'finished_updating_comment_type','1','yes'),(417,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2010;s:12:\"product_slug\";s:22:\"jetpack_security_daily\";s:12:\"product_name\";s:22:\"Jetpack Security Daily\";s:18:\"product_name_short\";s:14:\"Security Daily\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:6:\"Yearly\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:0;s:11:\"license_key\";s:48:\"jetpack-security-daily_0y9mLwUTG5Uht66aCEPKjr6JR\";s:8:\"features\";a:2:{s:6:\"active\";a:34:{i:0;s:12:\"advanced-seo\";i:1;s:7:\"akismet\";i:2;s:8:\"antispam\";i:3;s:7:\"backups\";i:4;s:13:\"backups-daily\";i:5;s:3:\"cdn\";i:6;s:20:\"cloudflare-analytics\";i:7;s:14:\"cloudflare-cdn\";i:8;s:10:\"core/audio\";i:9;s:9:\"donations\";i:10;s:17:\"full-activity-log\";i:11;s:16:\"google-analytics\";i:12;s:17:\"jetpack-dashboard\";i:13;s:16:\"priority_support\";i:14;s:18:\"recurring-payments\";i:15;s:11:\"republicize\";i:16;s:4:\"scan\";i:17;s:17:\"security-settings\";i:18;s:17:\"seo-preview-tools\";i:19;s:14:\"send-a-message\";i:20;s:15:\"simple-payments\";i:21;s:15:\"social-previews\";i:22;s:28:\"subscriber-unlimited-imports\";i:23;s:7:\"support\";i:24;s:18:\"upload-audio-files\";i:25;s:18:\"upload-video-files\";i:26;s:18:\"vaultpress-backups\";i:27;s:13:\"video-hosting\";i:28;s:15:\"whatsapp-button\";i:29;s:7:\"wordads\";i:30;s:15:\"wordads-jetpack\";i:31;s:26:\"social-mastodon-connection\";i:32;s:27:\"social-instagram-connection\";i:33;s:24:\"social-multi-connections\";}s:9:\"available\";a:39:{s:7:\"akismet\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:8:\"antispam\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:7:\"backups\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:13:\"backups-daily\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:20:\"cloudflare-analytics\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:14:\"cloudflare-cdn\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/audio\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:17:\"full-activity-log\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:16:\"google-analytics\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:16:\"priority_support\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:4:\"scan\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:15:\"simple-payments\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:18:\"social-shares-1000\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:28:\"subscriber-unlimited-imports\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:18:\"vaultpress-backups\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:30:\"jetpack_security_daily_monthly\";i:7;s:25:\"jetpack_security_realtime\";i:8;s:33:\"jetpack_security_realtime_monthly\";i:9;s:16:\"jetpack_complete\";i:10;s:24:\"jetpack_complete_monthly\";i:11;s:29:\"jetpack_security_t1_bi_yearly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:13:\"video-hosting\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:10:\"videopress\";a:8:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:16:\"jetpack_complete\";i:7;s:24:\"jetpack_complete_monthly\";}s:16:\"videopress/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"wordads\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:30:\"jetpack_security_daily_monthly\";i:5;s:25:\"jetpack_security_realtime\";i:6;s:33:\"jetpack_security_realtime_monthly\";i:7;s:16:\"jetpack_complete\";i:8;s:24:\"jetpack_complete_monthly\";i:9;s:29:\"jetpack_security_t1_bi_yearly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:6:\"search\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:18:\"google-my-business\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:17:\"real-time-backups\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:18:\"cloud-critical-css\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"image-size-analysis\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:14:\"instant-search\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:26:\"social-enhanced-publishing\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:22:\"videopress-1tb-storage\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}}}}','yes'),(441,'stats_cache','a:2:{s:32:\"cb2fd384e90d2b1169c130661654b1ae\";a:1:{i:1682013318;a:0:{}}s:32:\"9587668b38b26f1f4c92968c0d92b0bc\";a:1:{i:1682013319;a:0:{}}}','yes'),(452,'wp_calendar_block_has_published_posts','1','yes'),(486,'wpcom_publish_posts_with_markdown','1','yes'),(677,'open_graph_protocol_site_type','','yes'),(678,'facebook_admins','a:0:{}','yes'),(679,'jetpack-twitter-cards-site-tag','','yes'),(685,'jetpack_sync_settings_dedicated_sync_enabled','0','yes'),(686,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(687,'jetpack_constants_sync_checksum','a:21:{s:7:\"ABSPATH\";i:3110630925;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:3850596168;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:9:\"FS_METHOD\";i:3577458903;s:12:\"IS_PRESSABLE\";i:4261170317;s:16:\"JETPACK__VERSION\";i:110148026;s:11:\"PHP_VERSION\";i:1704765466;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:734881840;s:14:\"WP_CONTENT_DIR\";i:4025282661;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:8:\"WP_DEBUG\";i:4261170317;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;s:15:\"WP_MEMORY_LIMIT\";i:1839787262;s:17:\"WP_POST_REVISIONS\";i:4261170317;}','yes'),(688,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(689,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(690,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(691,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(692,'jetpack_sync_settings_disable','0','yes'),(693,'jetpack_secrets','a:0:{}','no'),(694,'jetpack_package_versions','a:5:{s:6:\"backup\";s:6:\"1.16.5\";s:10:\"connection\";s:6:\"1.56.0\";s:4:\"sync\";s:6:\"1.52.0\";s:6:\"search\";s:6:\"0.38.2\";s:10:\"videopress\";s:7:\"0.14.12\";}','yes'),(695,'jetpack_protect_activating','activating','no'),(696,'jetpack_sync_settings_max_queue_size','5000','yes'),(697,'jetpack_sync_settings_max_queue_lag','7200','yes'),(699,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(700,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(701,'jetpack_sync_settings_upload_max_rows','500','yes'),(702,'jetpack_sync_settings_sync_wait_time','10','yes'),(703,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(704,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(705,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(706,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(708,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(710,'jetpack_sync_settings_render_filtered_content','0','yes'),(711,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(713,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(715,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(716,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(717,'jetpack_sync_settings_sync_via_cron','1','yes'),(718,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(719,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(720,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(721,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(722,'jetpack_sync_settings_full_sync_limits','a:5:{s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}}','yes'),(723,'jetpack_sync_settings_checksum_disable','0','yes'),(763,'jetpack_callables_sync_checksum','a:39:{s:11:\"get_plugins\";i:4256075865;s:10:\"get_themes\";i:3194443613;s:24:\"get_plugins_action_links\";i:223132457;s:28:\"has_file_system_write_access\";i:4261170317;s:8:\"home_url\";i:3880686618;s:16:\"hosting_provider\";i:3960241920;s:12:\"is_fse_theme\";i:4261170317;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:21:\"is_version_controlled\";i:734881840;s:6:\"locale\";i:110763218;s:17:\"main_network_site\";i:3880686618;s:26:\"main_network_site_wpcom_id\";i:1552547049;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:18:\"post_type_features\";i:2449523770;s:10:\"post_types\";i:2528134474;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:3610467939;s:5:\"roles\";i:1426873501;s:10:\"shortcodes\";i:2845212450;s:13:\"site_icon_url\";i:734881840;s:8:\"site_url\";i:3880686618;s:10:\"taxonomies\";i:276712064;s:13:\"theme_support\";i:1267730987;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:3201742935;s:10:\"wp_version\";i:964545611;s:14:\"active_modules\";i:1325178674;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2252358820;s:24:\"available_jetpack_blocks\";i:2504120625;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:734881840;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:21:\"get_loaded_extensions\";i:1609864005;}','no'),(764,'jetpack_next_sync_time_sync','1688576127','yes'),(766,'jetpack_next_sync_time_full-sync-enqueue','1666119731','yes'),(776,'jetpack_updates_sync_checksum','a:2:{s:14:\"update_plugins\";i:1509047391;s:13:\"update_themes\";i:913369843;}','yes'),(788,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1666119731;s:8:\"finished\";i:1666119731;s:8:\"progress\";a:5:{s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:15:\"network_options\";a:1:{s:8:\"finished\";b:1;}}s:6:\"config\";a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}s:15:\"network_options\";b:1;}}','no'),(931,'recently_activated','a:0:{}','yes'),(1492,'gutenberg_version_migration','9.8.0','yes'),(1736,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1737,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5334,'jetpack_sync_settings_custom_queue_table_enabled','0','yes'),(5346,'jetpack_site_products','a:0:{}','yes'),(5348,'jetpack_nonce_1691172655_FSXBNQGQPT','1691172655','no'),(5350,'db_upgraded','1','yes'); -/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_postmeta` --- - -DROP TABLE IF EXISTS `wp_postmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_postmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `post_id` (`post_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=401 DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_postmeta` --- - -LOCK TABLES `wp_postmeta` WRITE; -/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; -INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,4,'_edit_lock','1664994560:3'),(4,4,'_last_editor_used_jetpack','block-editor'),(9,8,'_edit_lock','1664994657:2'),(10,8,'_last_editor_used_jetpack','block-editor'),(32,17,'_wpas_done_all','1'),(36,18,'_wpas_done_all','1'),(40,19,'_wpas_done_all','1'),(50,20,'_wpas_done_all','1'),(54,21,'_wpas_done_all','1'),(58,22,'_wpas_done_all','1'),(62,23,'_wpas_done_all','1'),(72,24,'_wpas_done_all','1'),(76,25,'_wpas_done_all','1'),(80,26,'_wpas_done_all','1'),(84,27,'_wpas_done_all','1'),(88,28,'_wpas_done_all','1'),(92,29,'_wpas_done_all','1'),(96,30,'_wpas_done_all','1'),(100,31,'_wpas_done_all','1'),(104,32,'_wpas_done_all','1'),(108,33,'_wpas_done_all','1'),(112,34,'_wpas_done_all','1'),(116,35,'_wpas_done_all','1'),(120,36,'_wpas_done_all','1'),(124,37,'_wpas_done_all','1'),(128,38,'_wpas_done_all','1'),(132,39,'_wpas_done_all','1'),(136,40,'_wpas_done_all','1'),(140,41,'_wpas_done_all','1'),(144,42,'_wpas_done_all','1'),(148,43,'_wpas_done_all','1'),(152,44,'_wpas_done_all','1'),(156,45,'_wpas_done_all','1'),(160,46,'_wpas_done_all','1'),(164,47,'_wpas_done_all','1'),(168,48,'_wpas_done_all','1'),(172,49,'_wpas_done_all','1'),(176,50,'_wpas_done_all','1'),(180,51,'_wpas_done_all','1'),(184,52,'_wpas_done_all','1'),(188,53,'_wpas_done_all','1'),(192,54,'_wpas_done_all','1'),(196,55,'_wpas_done_all','1'),(200,56,'_wpas_done_all','1'),(204,57,'_wpas_done_all','1'),(208,58,'_wpas_done_all','1'),(212,59,'_wpas_done_all','1'),(216,60,'_wpas_done_all','1'),(220,61,'_wpas_done_all','1'),(224,62,'_wpas_done_all','1'),(228,63,'_wpas_done_all','1'),(232,64,'_wpas_done_all','1'),(236,65,'_wpas_done_all','1'),(240,66,'_wpas_done_all','1'),(244,67,'_wpas_done_all','1'),(248,68,'_wpas_done_all','1'),(252,69,'_wpas_done_all','1'),(256,70,'_wpas_done_all','1'),(260,71,'_wpas_done_all','1'),(264,72,'_wpas_done_all','1'),(268,73,'_wpas_done_all','1'),(272,74,'_wpas_done_all','1'),(276,75,'_wpas_done_all','1'),(280,76,'_wpas_done_all','1'),(284,77,'_wpas_done_all','1'),(288,78,'_wpas_done_all','1'),(292,79,'_wpas_done_all','1'),(296,80,'_wpas_done_all','1'),(300,81,'_wpas_done_all','1'),(304,82,'_wpas_done_all','1'),(308,83,'_wpas_done_all','1'),(312,84,'_wpas_done_all','1'),(316,85,'_wpas_done_all','1'),(320,86,'_wpas_done_all','1'),(324,87,'_wpas_done_all','1'),(328,88,'_wpas_done_all','1'),(332,89,'_wpas_done_all','1'),(336,90,'_wpas_done_all','1'),(340,91,'_wpas_done_all','1'),(344,92,'_wpas_done_all','1'),(348,93,'_wpas_done_all','1'),(352,94,'_wpas_done_all','1'),(356,95,'_wpas_done_all','1'),(360,96,'_wpas_done_all','1'),(364,97,'_wpas_done_all','1'),(368,98,'_wpas_done_all','1'),(372,99,'_wpas_done_all','1'),(376,100,'_wpas_done_all','1'),(380,101,'_wpas_done_all','1'),(384,102,'_wpas_done_all','1'),(388,103,'_wpas_done_all','1'),(392,104,'_wpas_done_all','1'),(396,105,'_wpas_done_all','1'),(400,106,'_wpas_done_all','1'); -/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_posts` --- - -DROP TABLE IF EXISTS `wp_posts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_posts` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, - `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_content` longtext NOT NULL, - `post_title` text NOT NULL, - `post_excerpt` text NOT NULL, - `post_status` varchar(20) NOT NULL DEFAULT 'publish', - `comment_status` varchar(20) NOT NULL DEFAULT 'open', - `ping_status` varchar(20) NOT NULL DEFAULT 'open', - `post_password` varchar(255) NOT NULL DEFAULT '', - `post_name` varchar(200) NOT NULL DEFAULT '', - `to_ping` text NOT NULL, - `pinged` text NOT NULL, - `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `post_content_filtered` longtext NOT NULL, - `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `guid` varchar(255) NOT NULL DEFAULT '', - `menu_order` int(11) NOT NULL DEFAULT 0, - `post_type` varchar(20) NOT NULL DEFAULT 'post', - `post_mime_type` varchar(100) NOT NULL DEFAULT '', - `comment_count` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`ID`), - KEY `post_name` (`post_name`(191)), - KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), - KEY `post_parent` (`post_parent`), - KEY `post_author` (`post_author`) -) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_posts` --- - -LOCK TABLES `wp_posts` WRITE; -/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; -INSERT INTO `wp_posts` VALUES (1,1,'2022-10-03 14:09:27','2022-10-03 14:09:27','\n

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

\n','Hello world!','','publish','open','open','','hello-world','','','2022-10-03 14:09:27','2022-10-03 14:09:27','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=1',0,'post','',1),(2,1,'2022-10-03 14:09:27','2022-10-03 14:09:27','\n

This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

\n\n\n\n

Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)

\n\n\n\n

...or something like this:

\n\n\n\n

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

\n\n\n\n

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

\n','Sample Page','','publish','closed','open','','sample-page','','','2022-10-03 14:09:27','2022-10-03 14:09:27','',0,'https://mikestraw-test-production.mystagingwebsite.com/?page_id=2',0,'page','',0),(3,1,'2022-10-03 14:09:27','2022-10-03 14:09:27','

Who we are

Suggested text: Our website address is: https://mikestraw-test-production.mystagingwebsite.com.

Comments

Suggested text: When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.

An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.

Media

Suggested text: If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.

Cookies

Suggested text: If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.

If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.

When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.

If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.

Embedded content from other websites

Suggested text: Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.

These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.

Who we share your data with

Suggested text: If you request a password reset, your IP address will be included in the reset email.

How long we retain your data

Suggested text: If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.

For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.

What rights you have over your data

Suggested text: If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.

Where your data is sent

Suggested text: Visitor comments may be checked through an automated spam detection service.

','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-10-03 14:09:27','2022-10-03 14:09:27','',0,'https://mikestraw-test-production.mystagingwebsite.com/?page_id=3',0,'page','',0),(4,3,'2022-10-05 18:31:27','2022-10-05 18:31:27','\n

Taco is posting this

\n','Test taco','','publish','open','open','','test-taco','','','2022-10-05 18:31:27','2022-10-05 18:31:27','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=4',0,'post','',0),(5,3,'2022-10-05 18:31:14','2022-10-05 18:31:14','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentytwo','','','2022-10-05 18:31:14','2022-10-05 18:31:14','',0,'https://mikestraw-test-production.mystagingwebsite.com/2022/10/05/wp-global-styles-twentytwentytwo/',0,'wp_global_styles','',0),(6,3,'2022-10-05 18:31:27','2022-10-05 18:31:27','\n

Taco is posting this

\n','Test taco','','inherit','closed','closed','','4-revision-v1','','','2022-10-05 18:31:27','2022-10-05 18:31:27','',4,'https://mikestraw-test-production.mystagingwebsite.com/?p=6',0,'revision','',0),(8,2,'2022-10-05 18:33:19','2022-10-05 18:33:19','\n

I don\'t have a WordPress.com account, but that\'s OK, right?

\n','My own post','','publish','open','open','','my-own-post','','','2022-10-05 18:33:19','2022-10-05 18:33:19','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=8',0,'post','',0),(9,2,'2022-10-05 18:33:19','2022-10-05 18:33:19','\n

I don\'t have a WordPress.com account, but that\'s OK, right?

\n','My own post','','inherit','closed','closed','','8-revision-v1','','','2022-10-05 18:33:19','2022-10-05 18:33:19','',8,'https://mikestraw-test-production.mystagingwebsite.com/?p=9',0,'revision','',0),(17,0,'2022-10-21 17:40:53','2022-10-21 17:40:53','','Post 9','','publish','open','open','','post-9','','','2022-10-20 17:43:26','2022-10-20 17:43:26','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=17',0,'post','',0),(18,0,'2022-10-22 17:40:55','2022-10-22 17:40:55','','Post 10','','publish','open','open','','post-10','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=18',0,'post','',0),(19,0,'2022-10-23 17:40:57','2022-10-23 17:40:57','','Post 11','','publish','open','open','','post-11','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=19',0,'post','',0),(20,0,'2022-10-24 17:40:59','2022-10-24 17:40:59','','Post 12','','publish','open','open','','post-12','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=20',0,'post','',0),(21,0,'2022-10-25 17:41:00','2022-10-25 17:41:00','','Post 13','','publish','open','open','','post-13','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=21',0,'post','',0),(22,0,'2022-10-26 17:41:02','2022-10-26 17:41:02','','Post 14','','publish','open','open','','post-14','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=22',0,'post','',0),(23,0,'2022-10-27 17:41:03','2022-10-27 17:41:03','','Post 15','','publish','open','open','','post-15','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=23',0,'post','',0),(24,0,'2022-10-28 17:41:05','2022-10-28 17:41:05','','Post 16','','publish','open','open','','post-16','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=24',0,'post','',0),(25,0,'2022-10-29 17:41:07','2022-10-29 17:41:07','','Post 17','','publish','open','open','','post-17','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=25',0,'post','',0),(26,0,'2022-10-30 17:41:08','2022-10-30 17:41:08','','Post 18','','publish','open','open','','post-18','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=26',0,'post','',0),(27,0,'2022-10-31 17:41:10','2022-10-31 17:41:10','','Post 19','','publish','open','open','','post-19','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=27',0,'post','',0),(28,0,'2022-11-01 17:41:11','2022-11-01 17:41:11','','Post 20','','publish','open','open','','post-20','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=28',0,'post','',0),(29,0,'2022-11-02 17:41:13','2022-11-02 17:41:13','','Post 21','','publish','open','open','','post-21','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=29',0,'post','',0),(30,0,'2022-11-03 17:41:15','2022-11-03 17:41:15','','Post 22','','publish','open','open','','post-22','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=30',0,'post','',0),(31,0,'2022-11-04 17:41:16','2022-11-04 17:41:16','','Post 23','','publish','open','open','','post-23','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=31',0,'post','',0),(32,0,'2022-11-05 17:41:18','2022-11-05 17:41:18','','Post 24','','publish','open','open','','post-24','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=32',0,'post','',0),(33,0,'2022-11-06 17:41:20','2022-11-06 17:41:20','','Post 25','','publish','open','open','','post-25','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=33',0,'post','',0),(34,0,'2022-11-07 17:41:21','2022-11-07 17:41:21','','Post 26','','publish','open','open','','post-26','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=34',0,'post','',0),(35,0,'2022-11-08 17:41:23','2022-11-08 17:41:23','','Post 27','','publish','open','open','','post-27','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=35',0,'post','',0),(36,0,'2022-11-09 17:41:25','2022-11-09 17:41:25','','Post 28','','publish','open','open','','post-28','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=36',0,'post','',0),(37,0,'2022-11-10 17:41:26','2022-11-10 17:41:26','','Post 29','','publish','open','open','','post-29','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=37',0,'post','',0),(38,0,'2022-11-11 17:41:28','2022-11-11 17:41:28','','Post 30','','publish','open','open','','post-30','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=38',0,'post','',0),(39,0,'2022-11-12 17:41:30','2022-11-12 17:41:30','','Post 31','','publish','open','open','','post-31','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=39',0,'post','',0),(40,0,'2022-11-13 17:41:32','2022-11-13 17:41:32','','Post 32','','publish','open','open','','post-32','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=40',0,'post','',0),(41,0,'2022-11-14 17:41:33','2022-11-14 17:41:33','','Post 33','','publish','open','open','','post-33','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=41',0,'post','',0),(42,0,'2022-11-15 17:41:35','2022-11-15 17:41:35','','Post 34','','publish','open','open','','post-34','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=42',0,'post','',0),(43,0,'2022-11-16 17:41:37','2022-11-16 17:41:37','','Post 35','','publish','open','open','','post-35','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=43',0,'post','',0),(44,0,'2022-11-17 17:41:38','2022-11-17 17:41:38','','Post 36','','publish','open','open','','post-36','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=44',0,'post','',0),(45,0,'2022-11-18 17:41:40','2022-11-18 17:41:40','','Post 37','','publish','open','open','','post-37','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=45',0,'post','',0),(46,0,'2022-11-19 17:41:42','2022-11-19 17:41:42','','Post 38','','publish','open','open','','post-38','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=46',0,'post','',0),(47,0,'2022-11-20 17:41:43','2022-11-20 17:41:43','','Post 39','','publish','open','open','','post-39','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=47',0,'post','',0),(48,0,'2022-11-21 17:41:45','2022-11-21 17:41:45','','Post 40','','publish','open','open','','post-40','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=48',0,'post','',0),(49,0,'2022-11-22 17:41:47','2022-11-22 17:41:47','','Post 41','','publish','open','open','','post-41','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=49',0,'post','',0),(50,0,'2022-11-23 17:41:48','2022-11-23 17:41:48','','Post 42','','publish','open','open','','post-42','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=50',0,'post','',0),(51,0,'2022-11-24 17:41:50','2022-11-24 17:41:50','','Post 43','','publish','open','open','','post-43','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=51',0,'post','',0),(52,0,'2022-11-25 17:41:52','2022-11-25 17:41:52','','Post 44','','publish','open','open','','post-44','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=52',0,'post','',0),(53,0,'2022-11-26 17:41:54','2022-11-26 17:41:54','','Post 45','','publish','open','open','','post-45','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=53',0,'post','',0),(54,0,'2022-11-27 17:41:55','2022-11-27 17:41:55','','Post 46','','publish','open','open','','post-46','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=54',0,'post','',0),(55,0,'2022-11-28 17:41:57','2022-11-28 17:41:57','','Post 47','','publish','open','open','','post-47','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=55',0,'post','',0),(56,0,'2022-11-29 17:41:59','2022-11-29 17:41:59','','Post 48','','publish','open','open','','post-48','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=56',0,'post','',0),(57,0,'2022-11-30 17:42:01','2022-11-30 17:42:01','','Post 49','','publish','open','open','','post-49','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=57',0,'post','',0),(58,0,'2022-12-01 17:42:02','2022-12-01 17:42:02','','Post 50','','publish','open','open','','post-50','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=58',0,'post','',0),(59,0,'2022-12-02 17:42:04','2022-12-02 17:42:04','','Post 51','','publish','open','open','','post-51','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=59',0,'post','',0),(60,0,'2022-12-03 17:42:06','2022-12-03 17:42:06','','Post 52','','publish','open','open','','post-52','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=60',0,'post','',0),(61,0,'2022-12-04 17:42:07','2022-12-04 17:42:07','','Post 53','','publish','open','open','','post-53','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=61',0,'post','',0),(62,0,'2022-12-05 17:42:09','2022-12-05 17:42:09','','Post 54','','publish','open','open','','post-54','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=62',0,'post','',0),(63,0,'2022-12-06 17:42:11','2022-12-06 17:42:11','','Post 55','','publish','open','open','','post-55','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=63',0,'post','',0),(64,0,'2022-12-07 17:42:13','2022-12-07 17:42:13','','Post 56','','publish','open','open','','post-56','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=64',0,'post','',0),(65,0,'2022-12-08 17:42:14','2022-12-08 17:42:14','','Post 57','','publish','open','open','','post-57','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=65',0,'post','',0),(66,0,'2022-12-09 17:42:16','2022-12-09 17:42:16','','Post 58','','publish','open','open','','post-58','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=66',0,'post','',0),(67,0,'2022-12-10 17:42:18','2022-12-10 17:42:18','','Post 59','','publish','open','open','','post-59','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=67',0,'post','',0),(68,0,'2022-12-11 17:42:19','2022-12-11 17:42:19','','Post 60','','publish','open','open','','post-60','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=68',0,'post','',0),(69,0,'2022-12-12 17:42:21','2022-12-12 17:42:21','','Post 61','','publish','open','open','','post-61','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=69',0,'post','',0),(70,0,'2022-12-13 17:42:23','2022-12-13 17:42:23','','Post 62','','publish','open','open','','post-62','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=70',0,'post','',0),(71,0,'2022-12-14 17:42:24','2022-12-14 17:42:24','','Post 63','','publish','open','open','','post-63','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=71',0,'post','',0),(72,0,'2022-12-15 17:42:26','2022-12-15 17:42:26','','Post 64','','publish','open','open','','post-64','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=72',0,'post','',0),(73,0,'2022-12-16 17:42:27','2022-12-16 17:42:27','','Post 65','','publish','open','open','','post-65','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=73',0,'post','',0),(74,0,'2022-12-17 17:42:29','2022-12-17 17:42:29','','Post 66','','publish','open','open','','post-66','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=74',0,'post','',0),(75,0,'2022-12-18 17:42:31','2022-12-18 17:42:31','','Post 67','','publish','open','open','','post-67','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=75',0,'post','',0),(76,0,'2022-12-19 17:42:32','2022-12-19 17:42:32','','Post 68','','publish','open','open','','post-68','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=76',0,'post','',0),(77,0,'2022-12-20 17:42:34','2022-12-20 17:42:34','','Post 69','','publish','open','open','','post-69','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=77',0,'post','',0),(78,0,'2022-12-21 17:42:36','2022-12-21 17:42:36','','Post 70','','publish','open','open','','post-70','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=78',0,'post','',0),(79,0,'2022-12-22 17:42:37','2022-12-22 17:42:37','','Post 71','','publish','open','open','','post-71','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=79',0,'post','',0),(80,0,'2022-12-23 17:42:39','2022-12-23 17:42:39','','Post 72','','publish','open','open','','post-72','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=80',0,'post','',0),(81,0,'2022-12-24 17:42:40','2022-12-24 17:42:40','','Post 73','','publish','open','open','','post-73','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=81',0,'post','',0),(82,0,'2022-12-25 17:42:42','2022-12-25 17:42:42','','Post 74','','publish','open','open','','post-74','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=82',0,'post','',0),(83,0,'2022-12-26 17:42:44','2022-12-26 17:42:44','','Post 75','','publish','open','open','','post-75','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=83',0,'post','',0),(84,0,'2022-12-27 17:42:45','2022-12-27 17:42:45','','Post 76','','publish','open','open','','post-76','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=84',0,'post','',0),(85,0,'2022-12-28 17:42:47','2022-12-28 17:42:47','','Post 77','','publish','open','open','','post-77','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=85',0,'post','',0),(86,0,'2022-12-29 17:42:49','2022-12-29 17:42:49','','Post 78','','publish','open','open','','post-78','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=86',0,'post','',0),(87,0,'2022-12-30 17:42:50','2022-12-30 17:42:50','','Post 79','','publish','open','open','','post-79','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=87',0,'post','',0),(88,0,'2022-12-31 17:42:52','2022-12-31 17:42:52','','Post 80','','publish','open','open','','post-80','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=88',0,'post','',0),(89,0,'2023-01-01 17:42:53','2023-01-01 17:42:53','','Post 81','','publish','open','open','','post-81','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=89',0,'post','',0),(90,0,'2023-01-02 17:42:55','2023-01-02 17:42:55','','Post 82','','publish','open','open','','post-82','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=90',0,'post','',0),(91,0,'2023-01-03 17:42:57','2023-01-03 17:42:57','','Post 83','','publish','open','open','','post-83','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=91',0,'post','',0),(92,0,'2023-01-04 17:42:58','2023-01-04 17:42:58','','Post 84','','publish','open','open','','post-84','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=92',0,'post','',0),(93,0,'2023-01-05 17:43:00','2023-01-05 17:43:00','','Post 85','','publish','open','open','','post-85','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=93',0,'post','',0),(94,0,'2023-01-06 17:43:01','2023-01-06 17:43:01','','Post 86','','publish','open','open','','post-86','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=94',0,'post','',0),(95,0,'2023-01-07 17:43:03','2023-01-07 17:43:03','','Post 87','','publish','open','open','','post-87','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=95',0,'post','',0),(96,0,'2023-01-08 17:43:05','2023-01-08 17:43:05','','Post 88','','publish','open','open','','post-88','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=96',0,'post','',0),(97,0,'2023-01-09 17:43:06','2023-01-09 17:43:06','','Post 89','','publish','open','open','','post-89','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=97',0,'post','',0),(98,0,'2023-01-10 17:43:08','2023-01-10 17:43:08','','Post 90','','publish','open','open','','post-90','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=98',0,'post','',0),(99,0,'2023-01-11 17:43:10','2023-01-11 17:43:10','','Post 91','','publish','open','open','','post-91','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=99',0,'post','',0),(100,0,'2023-01-12 17:43:11','2023-01-12 17:43:11','','Post 92','','publish','open','open','','post-92','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=100',0,'post','',0),(101,0,'2023-01-13 17:43:13','2023-01-13 17:43:13','','Post 93','','publish','open','open','','post-93','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=101',0,'post','',0),(102,0,'2023-01-14 17:43:14','2023-01-14 17:43:14','','Post 94','','publish','open','open','','post-94','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=102',0,'post','',0),(103,0,'2023-01-15 17:43:16','2023-01-15 17:43:16','','Post 95','','publish','open','open','','post-95','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=103',0,'post','',0),(104,0,'2023-01-16 17:43:18','2023-01-16 17:43:18','','Post 96','','publish','open','open','','post-96','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=104',0,'post','',0),(105,0,'2023-01-17 17:43:19','2023-01-17 17:43:19','','Post 97','','publish','open','open','','post-97','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=105',0,'post','',0),(106,0,'2023-01-18 17:43:21','2023-01-18 17:43:21','','Post 98','','publish','open','open','','post-98','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',0,'https://mikestraw-test-production.mystagingwebsite.com/?p=106',0,'post','',0),(107,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 98','','inherit','closed','closed','','106-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',106,'https://mikestraw-test-production.mystagingwebsite.com/?p=107',0,'revision','',0),(108,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 97','','inherit','closed','closed','','105-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',105,'https://mikestraw-test-production.mystagingwebsite.com/?p=108',0,'revision','',0),(109,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 96','','inherit','closed','closed','','104-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',104,'https://mikestraw-test-production.mystagingwebsite.com/?p=109',0,'revision','',0),(110,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 95','','inherit','closed','closed','','103-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',103,'https://mikestraw-test-production.mystagingwebsite.com/?p=110',0,'revision','',0),(111,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 94','','inherit','closed','closed','','102-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',102,'https://mikestraw-test-production.mystagingwebsite.com/?p=111',0,'revision','',0),(112,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 93','','inherit','closed','closed','','101-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',101,'https://mikestraw-test-production.mystagingwebsite.com/?p=112',0,'revision','',0),(113,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 92','','inherit','closed','closed','','100-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',100,'https://mikestraw-test-production.mystagingwebsite.com/?p=113',0,'revision','',0),(114,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 91','','inherit','closed','closed','','99-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',99,'https://mikestraw-test-production.mystagingwebsite.com/?p=114',0,'revision','',0),(115,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 90','','inherit','closed','closed','','98-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',98,'https://mikestraw-test-production.mystagingwebsite.com/?p=115',0,'revision','',0),(116,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 89','','inherit','closed','closed','','97-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',97,'https://mikestraw-test-production.mystagingwebsite.com/?p=116',0,'revision','',0),(117,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 88','','inherit','closed','closed','','96-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',96,'https://mikestraw-test-production.mystagingwebsite.com/?p=117',0,'revision','',0),(118,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 87','','inherit','closed','closed','','95-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',95,'https://mikestraw-test-production.mystagingwebsite.com/?p=118',0,'revision','',0),(119,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 86','','inherit','closed','closed','','94-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',94,'https://mikestraw-test-production.mystagingwebsite.com/?p=119',0,'revision','',0),(120,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 85','','inherit','closed','closed','','93-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',93,'https://mikestraw-test-production.mystagingwebsite.com/?p=120',0,'revision','',0),(121,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 84','','inherit','closed','closed','','92-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',92,'https://mikestraw-test-production.mystagingwebsite.com/?p=121',0,'revision','',0),(122,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 83','','inherit','closed','closed','','91-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',91,'https://mikestraw-test-production.mystagingwebsite.com/?p=122',0,'revision','',0),(123,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 82','','inherit','closed','closed','','90-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',90,'https://mikestraw-test-production.mystagingwebsite.com/?p=123',0,'revision','',0),(124,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 81','','inherit','closed','closed','','89-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',89,'https://mikestraw-test-production.mystagingwebsite.com/?p=124',0,'revision','',0),(125,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 80','','inherit','closed','closed','','88-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',88,'https://mikestraw-test-production.mystagingwebsite.com/?p=125',0,'revision','',0),(126,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 79','','inherit','closed','closed','','87-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',87,'https://mikestraw-test-production.mystagingwebsite.com/?p=126',0,'revision','',0),(127,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 78','','inherit','closed','closed','','86-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',86,'https://mikestraw-test-production.mystagingwebsite.com/?p=127',0,'revision','',0),(128,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 77','','inherit','closed','closed','','85-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',85,'https://mikestraw-test-production.mystagingwebsite.com/?p=128',0,'revision','',0),(129,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 76','','inherit','closed','closed','','84-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',84,'https://mikestraw-test-production.mystagingwebsite.com/?p=129',0,'revision','',0),(130,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 75','','inherit','closed','closed','','83-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',83,'https://mikestraw-test-production.mystagingwebsite.com/?p=130',0,'revision','',0),(131,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 74','','inherit','closed','closed','','82-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',82,'https://mikestraw-test-production.mystagingwebsite.com/?p=131',0,'revision','',0),(132,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 73','','inherit','closed','closed','','81-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',81,'https://mikestraw-test-production.mystagingwebsite.com/?p=132',0,'revision','',0),(133,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 72','','inherit','closed','closed','','80-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',80,'https://mikestraw-test-production.mystagingwebsite.com/?p=133',0,'revision','',0),(134,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 71','','inherit','closed','closed','','79-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',79,'https://mikestraw-test-production.mystagingwebsite.com/?p=134',0,'revision','',0),(135,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 70','','inherit','closed','closed','','78-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',78,'https://mikestraw-test-production.mystagingwebsite.com/?p=135',0,'revision','',0),(136,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 69','','inherit','closed','closed','','77-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',77,'https://mikestraw-test-production.mystagingwebsite.com/?p=136',0,'revision','',0),(137,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 68','','inherit','closed','closed','','76-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',76,'https://mikestraw-test-production.mystagingwebsite.com/?p=137',0,'revision','',0),(138,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 67','','inherit','closed','closed','','75-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',75,'https://mikestraw-test-production.mystagingwebsite.com/?p=138',0,'revision','',0),(139,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 66','','inherit','closed','closed','','74-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',74,'https://mikestraw-test-production.mystagingwebsite.com/?p=139',0,'revision','',0),(140,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 65','','inherit','closed','closed','','73-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',73,'https://mikestraw-test-production.mystagingwebsite.com/?p=140',0,'revision','',0),(141,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 64','','inherit','closed','closed','','72-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',72,'https://mikestraw-test-production.mystagingwebsite.com/?p=141',0,'revision','',0),(142,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 63','','inherit','closed','closed','','71-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',71,'https://mikestraw-test-production.mystagingwebsite.com/?p=142',0,'revision','',0),(143,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 62','','inherit','closed','closed','','70-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',70,'https://mikestraw-test-production.mystagingwebsite.com/?p=143',0,'revision','',0),(144,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 61','','inherit','closed','closed','','69-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',69,'https://mikestraw-test-production.mystagingwebsite.com/?p=144',0,'revision','',0),(145,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 60','','inherit','closed','closed','','68-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',68,'https://mikestraw-test-production.mystagingwebsite.com/?p=145',0,'revision','',0),(146,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 59','','inherit','closed','closed','','67-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',67,'https://mikestraw-test-production.mystagingwebsite.com/?p=146',0,'revision','',0),(147,0,'2022-10-20 17:43:24','2022-10-20 17:43:24','','Post 58','','inherit','closed','closed','','66-revision-v1','','','2022-10-20 17:43:24','2022-10-20 17:43:24','',66,'https://mikestraw-test-production.mystagingwebsite.com/?p=147',0,'revision','',0),(148,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 57','','inherit','closed','closed','','65-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',65,'https://mikestraw-test-production.mystagingwebsite.com/?p=148',0,'revision','',0),(149,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 56','','inherit','closed','closed','','64-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',64,'https://mikestraw-test-production.mystagingwebsite.com/?p=149',0,'revision','',0),(150,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 55','','inherit','closed','closed','','63-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',63,'https://mikestraw-test-production.mystagingwebsite.com/?p=150',0,'revision','',0),(151,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 54','','inherit','closed','closed','','62-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',62,'https://mikestraw-test-production.mystagingwebsite.com/?p=151',0,'revision','',0),(152,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 53','','inherit','closed','closed','','61-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',61,'https://mikestraw-test-production.mystagingwebsite.com/?p=152',0,'revision','',0),(153,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 52','','inherit','closed','closed','','60-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',60,'https://mikestraw-test-production.mystagingwebsite.com/?p=153',0,'revision','',0),(154,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 51','','inherit','closed','closed','','59-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',59,'https://mikestraw-test-production.mystagingwebsite.com/?p=154',0,'revision','',0),(155,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 50','','inherit','closed','closed','','58-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',58,'https://mikestraw-test-production.mystagingwebsite.com/?p=155',0,'revision','',0),(156,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 49','','inherit','closed','closed','','57-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',57,'https://mikestraw-test-production.mystagingwebsite.com/?p=156',0,'revision','',0),(157,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 48','','inherit','closed','closed','','56-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',56,'https://mikestraw-test-production.mystagingwebsite.com/?p=157',0,'revision','',0),(158,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 47','','inherit','closed','closed','','55-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',55,'https://mikestraw-test-production.mystagingwebsite.com/?p=158',0,'revision','',0),(159,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 46','','inherit','closed','closed','','54-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',54,'https://mikestraw-test-production.mystagingwebsite.com/?p=159',0,'revision','',0),(160,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 45','','inherit','closed','closed','','53-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',53,'https://mikestraw-test-production.mystagingwebsite.com/?p=160',0,'revision','',0),(161,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 44','','inherit','closed','closed','','52-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',52,'https://mikestraw-test-production.mystagingwebsite.com/?p=161',0,'revision','',0),(162,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 43','','inherit','closed','closed','','51-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',51,'https://mikestraw-test-production.mystagingwebsite.com/?p=162',0,'revision','',0),(163,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 42','','inherit','closed','closed','','50-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',50,'https://mikestraw-test-production.mystagingwebsite.com/?p=163',0,'revision','',0),(164,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 41','','inherit','closed','closed','','49-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',49,'https://mikestraw-test-production.mystagingwebsite.com/?p=164',0,'revision','',0),(165,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 40','','inherit','closed','closed','','48-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',48,'https://mikestraw-test-production.mystagingwebsite.com/?p=165',0,'revision','',0),(166,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 39','','inherit','closed','closed','','47-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',47,'https://mikestraw-test-production.mystagingwebsite.com/?p=166',0,'revision','',0),(167,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 38','','inherit','closed','closed','','46-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',46,'https://mikestraw-test-production.mystagingwebsite.com/?p=167',0,'revision','',0),(168,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 37','','inherit','closed','closed','','45-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',45,'https://mikestraw-test-production.mystagingwebsite.com/?p=168',0,'revision','',0),(169,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 36','','inherit','closed','closed','','44-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',44,'https://mikestraw-test-production.mystagingwebsite.com/?p=169',0,'revision','',0),(170,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 35','','inherit','closed','closed','','43-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',43,'https://mikestraw-test-production.mystagingwebsite.com/?p=170',0,'revision','',0),(171,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 34','','inherit','closed','closed','','42-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',42,'https://mikestraw-test-production.mystagingwebsite.com/?p=171',0,'revision','',0),(172,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 33','','inherit','closed','closed','','41-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',41,'https://mikestraw-test-production.mystagingwebsite.com/?p=172',0,'revision','',0),(173,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 32','','inherit','closed','closed','','40-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',40,'https://mikestraw-test-production.mystagingwebsite.com/?p=173',0,'revision','',0),(174,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 31','','inherit','closed','closed','','39-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',39,'https://mikestraw-test-production.mystagingwebsite.com/?p=174',0,'revision','',0),(175,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 30','','inherit','closed','closed','','38-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',38,'https://mikestraw-test-production.mystagingwebsite.com/?p=175',0,'revision','',0),(176,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 29','','inherit','closed','closed','','37-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',37,'https://mikestraw-test-production.mystagingwebsite.com/?p=176',0,'revision','',0),(177,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 28','','inherit','closed','closed','','36-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',36,'https://mikestraw-test-production.mystagingwebsite.com/?p=177',0,'revision','',0),(178,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 27','','inherit','closed','closed','','35-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',35,'https://mikestraw-test-production.mystagingwebsite.com/?p=178',0,'revision','',0),(179,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 26','','inherit','closed','closed','','34-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',34,'https://mikestraw-test-production.mystagingwebsite.com/?p=179',0,'revision','',0),(180,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 25','','inherit','closed','closed','','33-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',33,'https://mikestraw-test-production.mystagingwebsite.com/?p=180',0,'revision','',0),(181,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 24','','inherit','closed','closed','','32-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',32,'https://mikestraw-test-production.mystagingwebsite.com/?p=181',0,'revision','',0),(182,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 23','','inherit','closed','closed','','31-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',31,'https://mikestraw-test-production.mystagingwebsite.com/?p=182',0,'revision','',0),(183,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 22','','inherit','closed','closed','','30-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',30,'https://mikestraw-test-production.mystagingwebsite.com/?p=183',0,'revision','',0),(184,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 21','','inherit','closed','closed','','29-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',29,'https://mikestraw-test-production.mystagingwebsite.com/?p=184',0,'revision','',0),(185,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 20','','inherit','closed','closed','','28-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',28,'https://mikestraw-test-production.mystagingwebsite.com/?p=185',0,'revision','',0),(186,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 19','','inherit','closed','closed','','27-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',27,'https://mikestraw-test-production.mystagingwebsite.com/?p=186',0,'revision','',0),(187,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 18','','inherit','closed','closed','','26-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',26,'https://mikestraw-test-production.mystagingwebsite.com/?p=187',0,'revision','',0),(188,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 17','','inherit','closed','closed','','25-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',25,'https://mikestraw-test-production.mystagingwebsite.com/?p=188',0,'revision','',0),(189,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 16','','inherit','closed','closed','','24-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',24,'https://mikestraw-test-production.mystagingwebsite.com/?p=189',0,'revision','',0),(190,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 15','','inherit','closed','closed','','23-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',23,'https://mikestraw-test-production.mystagingwebsite.com/?p=190',0,'revision','',0),(191,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 14','','inherit','closed','closed','','22-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',22,'https://mikestraw-test-production.mystagingwebsite.com/?p=191',0,'revision','',0),(192,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 13','','inherit','closed','closed','','21-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',21,'https://mikestraw-test-production.mystagingwebsite.com/?p=192',0,'revision','',0),(193,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 12','','inherit','closed','closed','','20-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',20,'https://mikestraw-test-production.mystagingwebsite.com/?p=193',0,'revision','',0),(194,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 11','','inherit','closed','closed','','19-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',19,'https://mikestraw-test-production.mystagingwebsite.com/?p=194',0,'revision','',0),(195,0,'2022-10-20 17:43:25','2022-10-20 17:43:25','','Post 10','','inherit','closed','closed','','18-revision-v1','','','2022-10-20 17:43:25','2022-10-20 17:43:25','',18,'https://mikestraw-test-production.mystagingwebsite.com/?p=195',0,'revision','',0),(196,0,'2022-10-20 17:43:26','2022-10-20 17:43:26','','Post 9','','inherit','closed','closed','','17-revision-v1','','','2022-10-20 17:43:26','2022-10-20 17:43:26','',17,'https://mikestraw-test-production.mystagingwebsite.com/?p=196',0,'revision','',0); -/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_term_relationships` --- - -DROP TABLE IF EXISTS `wp_term_relationships`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_term_relationships` ( - `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `term_order` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`object_id`,`term_taxonomy_id`), - KEY `term_taxonomy_id` (`term_taxonomy_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_term_relationships` --- - -LOCK TABLES `wp_term_relationships` WRITE; -/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; -INSERT INTO `wp_term_relationships` VALUES (1,1,0),(4,1,0),(5,2,0),(8,1,0),(17,1,0),(18,1,0),(19,1,0),(20,1,0),(21,1,0),(22,1,0),(23,1,0),(24,1,0),(25,1,0),(26,1,0),(27,1,0),(28,1,0),(29,1,0),(30,1,0),(31,1,0),(32,1,0),(33,1,0),(34,1,0),(35,1,0),(36,1,0),(37,1,0),(38,1,0),(39,1,0),(40,1,0),(41,1,0),(42,1,0),(43,1,0),(44,1,0),(45,1,0),(46,1,0),(47,1,0),(48,1,0),(49,1,0),(50,1,0),(51,1,0),(52,1,0),(53,1,0),(54,1,0),(55,1,0),(56,1,0),(57,1,0),(58,1,0),(59,1,0),(60,1,0),(61,1,0),(62,1,0),(63,1,0),(64,1,0),(65,1,0),(66,1,0),(67,1,0),(68,1,0),(69,1,0),(70,1,0),(71,1,0),(72,1,0),(73,1,0),(74,1,0),(75,1,0),(76,1,0),(77,1,0),(78,1,0),(79,1,0),(80,1,0),(81,1,0),(82,1,0),(83,1,0),(84,1,0),(85,1,0),(86,1,0),(87,1,0),(88,1,0),(89,1,0),(90,1,0),(91,1,0),(92,1,0),(93,1,0),(94,1,0),(95,1,0),(96,1,0),(97,1,0),(98,1,0),(99,1,0),(100,1,0),(101,1,0),(102,1,0),(103,1,0),(104,1,0),(105,1,0),(106,1,0); -/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_term_taxonomy` --- - -DROP TABLE IF EXISTS `wp_term_taxonomy`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_term_taxonomy` ( - `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `taxonomy` varchar(32) NOT NULL DEFAULT '', - `description` longtext NOT NULL, - `parent` bigint(20) unsigned NOT NULL DEFAULT 0, - `count` bigint(20) NOT NULL DEFAULT 0, - PRIMARY KEY (`term_taxonomy_id`), - UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), - KEY `taxonomy` (`taxonomy`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_term_taxonomy` --- - -LOCK TABLES `wp_term_taxonomy` WRITE; -/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; -INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,93),(2,2,'wp_theme','',0,1); -/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_termmeta` --- - -DROP TABLE IF EXISTS `wp_termmeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_termmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`meta_id`), - KEY `term_id` (`term_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_termmeta` --- - -LOCK TABLES `wp_termmeta` WRITE; -/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; -/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_terms` --- - -DROP TABLE IF EXISTS `wp_terms`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_terms` ( - `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(200) NOT NULL DEFAULT '', - `slug` varchar(200) NOT NULL DEFAULT '', - `term_group` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`term_id`), - KEY `slug` (`slug`(191)), - KEY `name` (`name`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_terms` --- - -LOCK TABLES `wp_terms` WRITE; -/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; -INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentytwo','twentytwentytwo',0); -/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_usermeta` --- - -DROP TABLE IF EXISTS `wp_usermeta`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_usermeta` ( - `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext DEFAULT NULL, - PRIMARY KEY (`umeta_id`), - KEY `user_id` (`user_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_usermeta` --- - -LOCK TABLES `wp_usermeta` WRITE; -/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; -INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','mikestraw-test-production'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','plugin_editor_notice'),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:1:{s:64:\"901f50500374040a1d1efbefa4ecc1d4064680907cc3852f9499ec6d982ddc3c\";a:4:{s:10:\"expiration\";i:1683222913;s:2:\"ip\";s:13:\"24.210.17.124\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36\";s:5:\"login\";i:1682013313;}}'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.210.17.0\";}'),(19,1,'jetpack_tracks_wpcom_id','6976977'),(20,2,'nickname','mike@thestraws.net'),(21,2,'first_name',''),(22,2,'last_name',''),(23,2,'description',''),(24,2,'rich_editing','true'),(25,2,'syntax_highlighting','true'),(26,2,'comment_shortcuts','false'),(27,2,'admin_color','fresh'),(28,2,'use_ssl','0'),(29,2,'show_admin_bar_front','true'),(30,2,'locale',''),(31,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(32,2,'wp_user_level','10'),(33,2,'dismissed_wp_pointers',''),(34,3,'nickname','taco@lonelytaco.com'),(35,3,'first_name',''),(36,3,'last_name',''),(37,3,'description',''),(38,3,'rich_editing','true'),(39,3,'syntax_highlighting','true'),(40,3,'comment_shortcuts','false'),(41,3,'admin_color','fresh'),(42,3,'use_ssl','0'),(43,3,'show_admin_bar_front','true'),(44,3,'locale',''),(45,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(46,3,'wp_user_level','10'),(47,3,'dismissed_wp_pointers',''),(48,2,'default_password_nag',''),(49,3,'default_password_nag',''),(51,3,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.210.17.0\";}'),(52,2,'session_tokens','a:1:{s:64:\"1bb2fba812d07d28ae92aa8272936b045a071bdcb85d3d1ddde55d7111a4a5a1\";a:4:{s:10:\"expiration\";i:1665167578;s:2:\"ip\";s:13:\"24.210.17.236\";s:2:\"ua\";s:84:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:105.0) Gecko/20100101 Firefox/105.0\";s:5:\"login\";i:1664994778;}}'),(53,2,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.210.17.0\";}'),(55,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:17:\"complementaryArea\";s:18:\"edit-post/document\";s:12:\"welcomeGuide\";b:0;s:26:\"isComplementaryAreaVisible\";b:1;}s:9:\"_modified\";s:24:\"2022-10-24T13:24:35.405Z\";}'); -/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `wp_users` --- - -DROP TABLE IF EXISTS `wp_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `wp_users` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_login` varchar(60) NOT NULL DEFAULT '', - `user_pass` varchar(255) NOT NULL DEFAULT '', - `user_nicename` varchar(50) NOT NULL DEFAULT '', - `user_email` varchar(100) NOT NULL DEFAULT '', - `user_url` varchar(100) NOT NULL DEFAULT '', - `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `user_activation_key` varchar(255) NOT NULL DEFAULT '', - `user_status` int(11) NOT NULL DEFAULT 0, - `display_name` varchar(250) NOT NULL DEFAULT '', - PRIMARY KEY (`ID`), - KEY `user_login_key` (`user_login`), - KEY `user_nicename` (`user_nicename`), - KEY `user_email` (`user_email`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `wp_users` --- - -LOCK TABLES `wp_users` WRITE; -/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; -INSERT INTO `wp_users` VALUES (1,'mikestraw-test-production','$P$BQqxrwfelhYEWCsD/e8Ksra.XGcbo50','mikestraw-test-production','concierge@wordpress.com','https://mikestraw-test-production.mystagingwebsite.com','2022-10-03 14:09:27','',0,'mikestraw-test-production'),(2,'mike@thestraws.net','$P$BF.YJXytc80557Xve0ytP4gQ46Uw.Y.','mikethestraws-net','mike@thestraws.net','','0000-00-00 00:00:00','',0,'mike@thestraws.net'),(3,'taco@lonelytaco.com','$P$BWcHE41DgQ7ZrLFYaWz69g3ZzibpXS0','tacolonelytaco-com','taco@lonelytaco.com','','0000-00-00 00:00:00','',0,'taco@lonelytaco.com'); -/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2023-10-23 13:21:16 From 1ba8a0672f3900880e04164b029036dc247b030e Mon Sep 17 00:00:00 2001 From: Nate Allen Date: Wed, 24 Jan 2024 17:38:54 -0500 Subject: [PATCH 16/17] PHPCS fixes --- src/commands/pressable-get-db-backup.php | 60 ++++++++++++------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index 77eb822d..6d5b8ba1 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -32,7 +32,7 @@ class Pressable_Get_Db_Backup extends Command { * * @var string[] */ - protected ?array $ignore_tables = [ + protected ?array $ignore_tables = array( 'woocommerce_order_itemmeta', 'woocommerce_order_items', 'woocommerce_api_keys', @@ -45,9 +45,9 @@ class Pressable_Get_Db_Backup extends Command { 'wc_order_operational_data', 'wc_orders_meta', 'wpml_mails', - ]; + ); - protected ?array $ignore_options = []; + protected ?array $ignore_options = array(); /** * The Pressable site to connect to. @@ -79,10 +79,10 @@ class Pressable_Get_Db_Backup extends Command { */ protected function configure(): void { $this->setDescription( 'Downloads a Pressable database backup.' ) - ->setHelp( "This command accepts a Pressable site as an input, then exports and downloads the database for that site.\nThe downloaded file will be in the current directory with the name pressable--.sql" ); + ->setHelp( "This command accepts a Pressable site as an input, then exports and downloads the database for that site.\nThe downloaded file will be in the current directory with the name pressable--.sql" ); $this->addArgument( 'site', InputArgument::REQUIRED, 'ID or URL of the site to connect to.' ) - ->addOption( 'user', 'u', InputOption::VALUE_REQUIRED, 'Email of the user to connect as. Defaults to your Team51 1Password email.' ); + ->addOption( 'user', 'u', InputOption::VALUE_REQUIRED, 'Email of the user to connect as. Defaults to your Team51 1Password email.' ); } /** @@ -127,9 +127,9 @@ static function() { exit( 1 ); } - $dbPrefix = trim( $ssh->exec( 'wp db prefix --quiet --skip-plugins --skip-themes 2> /dev/null' ) ); + $db_prefix = trim( $ssh->exec( 'wp db prefix --quiet --skip-plugins --skip-themes 2> /dev/null' ) ); - $this->ignore_tables = array_map( fn( string $table ) => $dbPrefix . $table, $this->ignore_tables ); + $this->ignore_tables = array_map( fn( string $table ) => $db_prefix . $table, $this->ignore_tables ); } /** @@ -150,29 +150,29 @@ protected function execute( InputInterface $input, OutputInterface $output ): in return 1; } - $database = trim( $ssh->exec( 'basename "$(pwd)"' ) ); - $date = new \DateTime(); - $formattedDate = $date->format( 'Y-m-d' ); - $filename = "{$this->pressable_site->displayName}-{$formattedDate}.sql"; + $database = trim( $ssh->exec( 'basename "$(pwd)"' ) ); + $date = new \DateTime(); + $formatted_date = $date->format( 'Y-m-d' ); + $filename = "{$this->pressable_site->displayName}-{$formatted_date}.sql"; $ssh->setTimeout( 0 ); // Disable timeout in case the command takes a long time. - $baseCommand = "mysqldump --single-transaction --skip-lock-tables $database"; - $excludedOptions = "'" . implode( "', '", $this->ignore_options ) . "'"; + $base_command = "mysqldump --single-transaction --skip-lock-tables $database"; + $excluded_options = "'" . implode( "', '", $this->ignore_options ) . "'"; // Array of all commands - $commands = [ - "$baseCommand --no-data --ignore-table={$database}.wp_posts --ignore-table={$database}.wp_postmeta --ignore-table={$database}.wp_users --ignore-table={$database}.wp_usermeta > $filename", - "$baseCommand --tables wp_options --where=\"option_name NOT IN ($excludedOptions) AND option_name NOT LIKE '%key%'\" >> $filename", - "$baseCommand --tables wp_postmeta --where=\"post_id not in (select ID from wp_posts where post_type in ('shop_order', 'shop_order_refund', 'shop_subscription', 'subscription'))\" >> $filename", - "$baseCommand --tables wp_posts --where=\"post_type NOT IN ('shop_order', 'shop_order_refund', 'shop_subscription', 'subscription')\" >> $filename", - "$baseCommand --tables wp_users --where=\"ID not in (select user_id from wp_usermeta where meta_key = 'wp_user_level' and meta_value = 0)\" >> $filename", - "$baseCommand --tables wp_usermeta --where=\"user_id in (select user_id from wp_usermeta where meta_key = 'wp_user_level' and meta_value != 0)\" >> $filename", - "$baseCommand --tables wp_comments --where=\"comment_type != 'order_note'\" >> $filename", - ]; + $commands = array( + "$base_command --no-data --ignore-table={$database}.wp_posts --ignore-table={$database}.wp_postmeta --ignore-table={$database}.wp_users --ignore-table={$database}.wp_usermeta > $filename", + "$base_command --tables wp_options --where=\"option_name NOT IN ($excluded_options) AND option_name NOT LIKE '%key%'\" >> $filename", + "$base_command --tables wp_postmeta --where=\"post_id not in (select ID from wp_posts where post_type in ('shop_order', 'shop_order_refund', 'shop_subscription', 'subscription'))\" >> $filename", + "$base_command --tables wp_posts --where=\"post_type NOT IN ('shop_order', 'shop_order_refund', 'shop_subscription', 'subscription')\" >> $filename", + "$base_command --tables wp_users --where=\"ID not in (select user_id from wp_usermeta where meta_key = 'wp_user_level' and meta_value = 0)\" >> $filename", + "$base_command --tables wp_usermeta --where=\"user_id in (select user_id from wp_usermeta where meta_key = 'wp_user_level' and meta_value != 0)\" >> $filename", + "$base_command --tables wp_comments --where=\"comment_type != 'order_note'\" >> $filename", + ); // Get list of all tables in the database - $all_tables = $ssh->exec("mysql -N -e 'SHOW TABLES' $database"); + $all_tables = $ssh->exec( "mysql -N -e 'SHOW TABLES' $database" ); // Exclude ignored tables and tables that we're getting data for in other commands $tables_to_dump = implode( @@ -180,22 +180,22 @@ protected function execute( InputInterface $input, OutputInterface $output ): in array_diff( explode( "\n", trim( $all_tables ) ), $this->ignore_tables, - [ + array( 'wp_options', 'wp_posts', 'wp_postmeta', 'wp_users', 'wp_usermeta', 'wp_comments', - ] + ) ) ); - $commands[] = "$baseCommand --tables $tables_to_dump >> $filename"; + $commands[] = "$base_command --tables $tables_to_dump >> $filename"; // Execute each command - foreach ($commands as $cmd) { - $output->writeln("Executing: $cmd"); + foreach ( $commands as $cmd ) { + $output->writeln( "Executing: $cmd" ); $ssh->exec( $cmd ); } @@ -208,7 +208,7 @@ protected function execute( InputInterface $input, OutputInterface $output ): in $output->writeln( "Downloading $filename" ); - $result = $sftp->get( "/home/$database/$filename", $filename); + $result = $sftp->get( "/home/$database/$filename", $filename ); if ( ! $result ) { $output->writeln( 'Could not download the file.' ); @@ -238,7 +238,7 @@ protected function execute( InputInterface $input, OutputInterface $output ): in * * @return string|null */ - private function prompt_site_input( InputInterface $input,OutputInterface $output ): ?string { + private function prompt_site_input( InputInterface $input, OutputInterface $output ): ?string { if ( $input->isInteractive() ) { $question = new Question( 'Enter the site ID or URL to connect to: ' ); $question->setAutocompleterValues( \array_map( static fn( object $site ) => $site->url, get_pressable_sites() ?? array() ) ); From 0bcdc49e00a0cf5c971450f17053fd85b231f633 Mon Sep 17 00:00:00 2001 From: Nate Allen Date: Thu, 25 Jan 2024 12:15:53 -0500 Subject: [PATCH 17/17] Include the time in the date format --- src/commands/pressable-get-db-backup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/pressable-get-db-backup.php b/src/commands/pressable-get-db-backup.php index 6d5b8ba1..266160a0 100644 --- a/src/commands/pressable-get-db-backup.php +++ b/src/commands/pressable-get-db-backup.php @@ -152,7 +152,7 @@ protected function execute( InputInterface $input, OutputInterface $output ): in $database = trim( $ssh->exec( 'basename "$(pwd)"' ) ); $date = new \DateTime(); - $formatted_date = $date->format( 'Y-m-d' ); + $formatted_date = $date->format('Y-m-d_H-i-s'); $filename = "{$this->pressable_site->displayName}-{$formatted_date}.sql"; $ssh->setTimeout( 0 ); // Disable timeout in case the command takes a long time.