Forum Replies Created

Viewing 15 replies - 1 through 15 (of 21 total)
  • Thread Starter acsafrica

    (@acsafrica)

    I have updated the plugin.
    Are there any plans for context awareness, the core objective is to evolve from free-form chat into a guided, conversion-focused shopping assistant.

    Key Clarification: Context-Aware Guided Conversations

    When a user is viewing a category, taxonomy, or product page, the assistant should be aware of that context and proactively guide the user with clickable suggested questions (pre-texts) relevant to what they are currently browsing.

    Example – Category Page: Rice Cookers

    Suggested questions could include:
    “Which rice cooker is suitable for a family of 4?”
    “What capacity rice cooker should I choose?”
    “Which models consume less power?”
    “Which brands are most reliable?”

    Users can either tap one of these or type their own question.

    Progressive / Stage-Aware Follow-Ups

    After each AI response, the assistant should return a new set of suggested follow-up questions, aware of the current stage of the conversation (discovery → comparison → decision).
    This creates a guided journey rather than a single-turn chatbot.

    Are there any plans for these especially in the plugin API responses.

    Thread Starter acsafrica

    (@acsafrica)

    1. Store Currency Handling
      The assistant should automatically detect and use the store’s active currency when responding. Currently, prices are displayed in USD, which appears to be hardcoded. Product prices in responses should respect the WooCommerce store currency and formatting.
    2. Context Awareness (Active Page / Taxonomy)
      It would be very useful if the assistant could be aware of the user’s current context, such as:
      • Product category pages (e.g. Blenders)
      • Taxonomy or filtered views
      For example, if a customer is viewing the Blenders category, responses like “New arrivals in blenders” or recommendations within that category would better match user intent and expectations.
    3. Offline Order Placement Support
      Does the plugin support creating orders using offline payment methods such as:
      • Cash on Delivery
      • manual/offline gateways
      If not currently supported, is this on the roadmap or possible via customization?

    I’d appreciate guidance on whether these features are already supported, or planned.

    Thread Starter acsafrica

    (@acsafrica)

    I have confirmed that my issue was being caused by bot traffic. just if anyone faces the same issue like me.

    You may want to check the traffic to your site there might be some bots hitting your site. Since you have a similar problem like me i had, crosscheck your traffic because for my case it was bot traffic hitting add to cart several times per second. and i used cloudflare to solve it. I hope it helps you as well

    Thread Starter acsafrica

    (@acsafrica)

    It turns out most of my problem was being caused by Bot traffic that was making hundreds of add to cart hits in every second. I used Cloudflare to challenge traffic especially from countries like Singapore and China and website seems to work normal. I will be monitoring for a few days before closing this ticket once I fully conclude on this finding. Thanks for support. I will be happy if there are any recommendations within WordPress or WooCommerce to handle such challenges now that the Ajax add to cart seems to load forever i think due to Cloudflare rate limit rules and custom rules I have added but at least the rest of the site seems to be functioning properly.

    Thread Starter acsafrica

    (@acsafrica)

    For some reason, after switching to main storefront theme from the storefront child, and activating woocommerce, i have not seen the error yet. i think i have to monitor this situation if problem is with the files under the storefront child theme or the functions php of the child theme.

    Thread Starter acsafrica

    (@acsafrica)

    The plugins are custom built for our website. but at the moment they are all inactive. The theme is a child of storefront theme. Below is the functions php of the theme

    <?php
    // Exit if accessed directly
    if ( !defined( 'ABSPATH' ) ) exit;

    // BEGIN ENQUEUE PARENT ACTION
    // AUTO GENERATED - Do not modify or remove comment markers above or below:

    if ( !function_exists( 'chld_thm_cfg_locale_css' ) ):
    function chld_thm_cfg_locale_css( $uri ){
    if ( empty( $uri ) && is_rtl() && file_exists( get_template_directory() . '/rtl.css' ) )
    $uri = get_template_directory_uri() . '/rtl.css';
    return $uri;
    }
    endif;
    add_filter( 'locale_stylesheet_uri', 'chld_thm_cfg_locale_css' );

    // END ENQUEUE PARENT ACTION

    // Dynamic Enqueue for CSS and JS
    function storefront_child_enqueue_assets() {
    // Enqueue all CSS files
    foreach ( glob( get_stylesheet_directory() . '/css/*.css' ) ?: [] as $css_file ) {
    wp_enqueue_style(
    'storefront-child-' . basename( $css_file, '.css' ), // Handle
    get_stylesheet_directory_uri() . '/css/' . basename( $css_file ), // URL
    array(), // Dependencies
    '1.4' // Version
    );
    }

    // Enqueue all JS files
    foreach ( glob( get_stylesheet_directory() . '/js/*.js' ) ?: [] as $js_file ) {
    wp_enqueue_script(
    'storefront-child-' . basename( $js_file, '.js' ), // Handle
    get_stylesheet_directory_uri() . '/js/' . basename( $js_file ), // URL
    array('jquery'), // Dependencies
    '1.4', // Version
    true // Load in footer
    );
    }
    }
    add_action('wp_enqueue_scripts', 'storefront_child_enqueue_assets');

    // Dynamic PHP Inclusion
    function storefront_child_include_php_files( $folder ) {
    foreach ( glob( $folder . '/*.php' ) ?: [] as $file ) {
    require_once $file;
    }

    // Include files from subfolders
    foreach ( glob( $folder . '/*', GLOB_ONLYDIR ) ?: [] as $subfolder ) {
    storefront_child_include_php_files( $subfolder );
    }
    }

    // Include all PHP files in the 'inc' folder and subfolders
    storefront_child_include_php_files( get_stylesheet_directory() . '/inc' );

    // Include all PHP files in the 'api' folder
    storefront_child_include_php_files( get_stylesheet_directory() . '/api' );


    /**
    * Creating a function for the List View template.
    */

    function product_list_view_template() {
    // Load the Product List View template from the inc/product-list folder
    include get_stylesheet_directory() . '/inc/product-list/product-list-view.php';
    }

    /**
    * Insert Google Ads conversion tracking script into footer.
    */

    function google_conversion_script() { ?>
    <script>
    window.addEventListener('load', function() {
    if (window.location.href.includes('/cart/')) {
    var checkoutprice = parseFloat(document.querySelector('.wc-block-components-totals-item__value').innerText.replace(/[^0-9.]/g, ''));
    document.addEventListener('mousedown', function(e) {
    if (e.target.closest('[href*="/checkout/"]')) {
    gtag('event', 'conversion', {
    'send_to': 'AW-710212156/txMhCN2xm6gZELz009IC',
    'value': checkoutprice,
    'currency': 'USD'
    });
    }
    });
    }
    if (window.location.href.includes('/product/')) {
    var productprice = jQuery('.entry-summary .price .woocommerce-Price-amount.amount')[jQuery('.entry-summary .price .woocommerce-Price-amount.amount').length - 1].innerText.replace(/[^0-9.]/g, '');
    document.addEventListener('mousedown', function(e) {
    if (e.target.closest('.single_add_to_cart_button')) {
    gtag('event', 'conversion', {
    'send_to': 'AW-710212156/Yz4gCNqxm6gZELz009IC',
    'value': productprice,
    'currency': 'USD'
    });
    }
    });
    }
    });
    </script>
    <?php }
    add_action('wp_footer', 'google_conversion_script');

    /**
    * Enqueue JavaScript for "Frequently Bought Together" functionality.
    */

    add_action('wp_enqueue_scripts', 'wp_enqueue_bought_together_scripts');
    function wp_enqueue_bought_together_scripts() {
    if ( function_exists('is_product') && is_product() ) {
    // Enqueue WooCommerce scripts to ensure variables like wc_add_to_cart_params are available
    wp_enqueue_script('wc-add-to-cart');

    // Enqueue the external JavaScript file
    wp_enqueue_script(
    'fbt-script',
    get_stylesheet_directory_uri() . '/js/frequently-bought-together.js',
    ['jquery', 'wc-add-to-cart'], // Dependencies
    filemtime(get_stylesheet_directory() . '/js/frequently-bought-together.js'), // Cache-busting
    true // Load in footer
    );

    // Localize WooCommerce currency settings
    $currency_settings = [
    'currency_symbol' => get_woocommerce_currency_symbol(),
    'decimal_separator' => wc_get_price_decimal_separator(),
    'thousand_separator' => wc_get_price_thousand_separator(),
    'decimals' => wc_get_price_decimals(),
    ];

    wp_localize_script('fbt-script', 'fbt_currency', $currency_settings);
    }
    }
    /*
    Theme Name: Abanista
    Theme URI: https://www.abanista.com/
    Template: storefront
    Author: Abanista
    Author URI: https://www.abanista.com/
    Description: Theme for the Abanista Storefront
    Tags: e-commerce,two-columns,left-sidebar,right-sidebar,custom-background,custom-colors,custom-header,custom-menu,featured-images,full-width-template,threaded-comments,accessibility-ready,rtl-language-support,footer-widgets,sticky-post,theme-options,editor-style
    Version: 1.0.1713589360
    Updated: 2024-04-20 08:02:40

    */

    and stylesheet above. so as you can see, its just a child theme of storefront WooCommerce theme. let me switch to storefront theme from the child to rule out any files under storefront-child and activate woocommerce again

    Thread Starter acsafrica

    (@acsafrica)

    I have managed to get the report. its here

    <br>### WordPress Environment ###<br><br>WordPress address (URL): https://www.abanista.com<br>Site address (URL): https://www.abanista.com<br>WC Version: 10.3.5<br>Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.<br>Action Scheduler Version: ✔ 3.9.3<br>Log Directory Writable: ✔<br>WP Version: 6.8.3<br>WP Multisite: –<br>WP Memory Limit: 1 GB<br>WP Debug Mode: ✔<br>WP Cron: ✔<br>Language: en_US<br>External object cache: ✔<br><br>### Server Environment ###<br><br>Server Info: LiteSpeed<br>Server Architecture: Linux 5.14.0-570.28.1.el9_6.x86_64 x86_64<br>PHP Version: 8.4.14<br>PHP Post Max Size: 8 MB<br>PHP Time Limit: 300<br>PHP Max Input Vars: 1000<br>cURL Version: 8.14.1<br>OpenSSL/3.5.1<br><br>SUHOSIN Installed: –<br>MySQL Version: 10.11.15-MariaDB<br>Max Upload Size: 2 MB<br>Default Timezone is UTC: ✔<br>fsockopen/cURL: ✔<br>SoapClient: ✔<br>DOMDocument: ✔<br>GZip: ✔<br>Multibyte String: ✔<br>Remote Post: ✔<br>Remote Get: ✔<br><br>### Database ###<br><br>WC Database Version: 10.3.5<br>WC Database Prefix: wp_<br>Total Database Size: 941.92MB<br>Database Data Size: 676.95MB<br>Database Index Size: 264.97MB<br>wp_woocommerce_sessions: Data: 275.30MB + Index: 6.25MB + Engine InnoDB<br>wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_woocommerce_order_items: Data: 1.52MB + Index: 0.50MB + Engine InnoDB<br>wp_woocommerce_order_itemmeta: Data: 11.52MB + Index: 10.03MB + Engine InnoDB<br>wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_abanista_loyalty_ledger: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_abanista_wishlist: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_abanista_wishlist_product: Data: 0.06MB + Index: 0.00MB + Engine InnoDB<br>wp_actionscheduler_actions: Data: 0.09MB + Index: 0.20MB + Engine InnoDB<br>wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_actionscheduler_logs: Data: 0.06MB + Index: 0.03MB + Engine InnoDB<br>wp_automatewoo_abandoned_carts: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wp_automatewoo_customers: Data: 1.52MB + Index: 1.00MB + Engine InnoDB<br>wp_automatewoo_customer_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_automatewoo_guests: Data: 0.09MB + Index: 0.17MB + Engine InnoDB<br>wp_automatewoo_guest_meta: Data: 0.27MB + Index: 0.25MB + Engine InnoDB<br>wp_automatewoo_logs: Data: 0.14MB + Index: 0.20MB + Engine InnoDB<br>wp_automatewoo_log_meta: Data: 1.52MB + Index: 0.45MB + Engine InnoDB<br>wp_automatewoo_queue: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_automatewoo_queue_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_commentmeta: Data: 0.33MB + Index: 0.31MB + Engine InnoDB<br>wp_comments: Data: 6.52MB + Index: 8.55MB + Engine InnoDB<br>wp_cr_local_forms: Data: 0.16MB + Index: 0.03MB + Engine InnoDB<br>wp_cr_reminders_log: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wp_dgwt_wcas_index: Data: 3.52MB + Index: 0.44MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_doclist: Data: 15.52MB + Index: 13.03MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_wordlist: Data: 2.52MB + Index: 2.34MB + Engine InnoDB<br>wp_dgwt_wcas_stats: Data: 3.52MB + Index: 0.00MB + Engine InnoDB<br>wp_dgwt_wcas_tax_index: Data: 0.17MB + Index: 0.11MB + Engine InnoDB<br>wp_erp_acct_bills: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_bill_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_cash_at_banks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_chart_of_accounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_currency_info: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expenses: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expense_checks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expense_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_financial_years: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoices: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_details: Data: 0.09MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_receipts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_receipts_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_journals: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_journal_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledgers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_opening_balances: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_payment_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_bill: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_trn: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_trn_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_products: Data: 0.08MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_synced_taxes: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_acct_taxes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_agencies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_agency_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_cat_agency: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_pay: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_transfer_voucher: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_trn_status_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_voucher_no: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_audit_log: Data: 0.34MB + Index: 0.19MB + Engine InnoDB<br>wp_erp_company_locations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_crm_activities_task: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_crm_contact_group: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_crm_contact_subscriber: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_crm_customer_activities: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_erp_crm_customer_companies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_crm_save_email_replies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_crm_save_search: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_holidays_indv: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_announcement: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_dependents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_depts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_designations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_education: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_employees: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_employee_history: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_employee_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_employee_performance: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_financial_years: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_holiday: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_leaves_unpaid: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_leave_approval_status: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_leave_encashment_requests: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_leave_entitlements: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_leave_policies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_leave_policies_segregation: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_leave_requests: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_leave_request_details: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_work_exp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_peoplemeta: Data: 0.30MB + Index: 0.27MB + Engine InnoDB<br>wp_erp_peoples: Data: 1.52MB + Index: 0.48MB + Engine InnoDB<br>wp_erp_people_types: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_people_type_relations: Data: 0.36MB + Index: 0.38MB + Engine InnoDB<br>wp_erp_user_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_expm_hiiden_content: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_expm_maker: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_expm_maker_pages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fibofilters_descriptors_main: Data: 1.52MB + Index: 0.08MB + Engine InnoDB<br>wp_fibofilters_doclist_main: Data: 3.52MB + Index: 0.00MB + Engine InnoDB<br>wp_fibofilters_sources_main: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_fibofilters_valuelist_main: Data: 0.16MB + Index: 0.14MB + Engine InnoDB<br>wp_find_and_replace: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_firebase_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_attribute_mapping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_budget_recommendations: Data: 0.19MB + Index: 0.11MB + Engine InnoDB<br>wp_gla_merchant_issues: Data: 0.19MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_merchant_price_benchmarks: Data: 0.08MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_rates: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_grp_google_place: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_grp_google_review: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_grp_google_stats: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_jetpack_sync_queue: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_jetpack_waf_blocklog: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_litespeed_avatar: Data: 0.22MB + Index: 0.13MB + Engine InnoDB<br>wp_litespeed_img_optm: Data: 2.33MB + Index: 0.50MB + Engine InnoDB<br>wp_litespeed_img_optming: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_litespeed_url: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_litespeed_url_file: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_options: Data: 148.50MB + Index: 59.39MB + Engine InnoDB<br>wp_postmeta: Data: 112.66MB + Index: 109.83MB + Engine InnoDB<br>wp_posts: Data: 17.52MB + Index: 6.06MB + Engine InnoDB<br>wp_rank_math_404_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_analytics_gsc: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_rank_math_analytics_inspections: Data: 2.52MB + Index: 0.61MB + Engine InnoDB<br>wp_rank_math_analytics_objects: Data: 1.52MB + Index: 0.19MB + Engine InnoDB<br>wp_rank_math_internal_links: Data: 0.14MB + Index: 0.09MB + Engine InnoDB<br>wp_rank_math_internal_meta: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_rank_math_redirections: Data: 0.11MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_redirections_cache: Data: 0.22MB + Index: 0.06MB + Engine InnoDB<br>wp_rewards_points: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_serial_numbers: Data: 0.02MB + Index: 0.11MB + Engine InnoDB<br>wp_sib_model_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_sib_model_users: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_snippets: Data: 0.30MB + Index: 0.03MB + Engine InnoDB<br>wp_termmeta: Data: 1.52MB + Index: 1.83MB + Engine InnoDB<br>wp_terms: Data: 0.17MB + Index: 0.17MB + Engine InnoDB<br>wp_term_relationships: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_term_taxonomy: Data: 3.52MB + Index: 0.19MB + Engine InnoDB<br>wp_usermeta: Data: 16.55MB + Index: 12.03MB + Engine InnoDB<br>wp_users: Data: 1.52MB + Index: 0.59MB + Engine InnoDB<br>wp_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2020: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2023: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2024: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpv_commissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpv_per_product_shipping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_activity: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_clicks: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_register: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_notes: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_note_actions: Data: 0.09MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_category_lookup: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_customer_lookup: Data: 1.52MB + Index: 0.52MB + Engine InnoDB<br>wp_wc_deposits_payment_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_deposits_payment_plans_schedule: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_orders: Data: 1.52MB + Index: 1.08MB + Engine InnoDB<br>wp_wc_orders_meta: Data: 14.52MB + Index: 16.11MB + Engine InnoDB<br>wp_wc_order_addresses: Data: 1.52MB + Index: 1.39MB + Engine InnoDB<br>wp_wc_order_bundle_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB<br>wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_order_operational_data: Data: 1.52MB + Index: 0.31MB + Engine InnoDB<br>wp_wc_order_product_lookup: Data: 1.52MB + Index: 0.94MB + Engine InnoDB<br>wp_wc_order_stats: Data: 1.52MB + Index: 0.38MB + Engine InnoDB<br>wp_wc_order_tax_lookup: Data: 0.16MB + Index: 0.14MB + Engine InnoDB<br>wp_wc_product_attributes_lookup: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_product_meta_lookup: Data: 0.50MB + Index: 0.80MB + Engine InnoDB<br>wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_reserved_stock: Data: 0.23MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_warranty_products: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wfpklist_template_data: Data: 0.11MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_bolt_checkout_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_bundled_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_bundled_items: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woo_wallet_transactions: Data: 1.52MB + Index: 0.13MB + Engine InnoDB<br>wp_woo_wallet_transaction_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br><br>### Post Type Counts ###<br><br>abanista_message: 1<br>abanista_ticket: 1<br>amn_wpforms-lite: 1<br>attachment: 7889<br>aw_workflow: 7<br>b2bking_custom_role: 2<br>b2bking_group: 1<br>custom_css: 2<br>custom-css-js: 1<br>feedback: 179<br>global_product_addon: 1<br>grw_feed: 1<br>jetpack_migration: 1<br>jp_img_sitemap: 2<br>jp_img_sitemap_index: 1<br>jp_sitemap: 1<br>jp_sitemap_master: 1<br>nav_menu_item: 29<br>oembed_cache: 6<br>page: 81<br>popup_theme: 6<br>post: 102<br>product: 2644<br>product_variation: 1658<br>productsliderwoo: 1<br>pwbf_event: 1<br>revision: 1<br>rm_content_editor: 1<br>shop_coupon: 60<br>shop_order: 4566<br>shop_order_refund: 27<br>shop_order_vendor: 1<br>shopmagic_automation: 7<br>stocktend_object: 7037<br>stocktend_tryst: 1<br>vi_wad_draft_product: 4<br>wa-order-numbers: 1<br>warranty_request: 1<br>woo_email: 15<br>wp_global_styles: 2<br>wp_navigation: 4<br>wpc_smart_message: 6<br>wpclv: 25<br><br>### Security ###<br><br>Secure connection (HTTPS): ✔<br>Hide errors from visitors: ✔<br><br>### Active Plugins (1) ###<br><br>WooCommerce: by Automattic – 10.3.5<br><br>### Inactive Plugins (56) ###<br><br>Abanista - Click to Order or Chat: by The Abanista Team – 1.0.8<br>Abanista - Order Status Manager & Notifications: by Abanista Dev Team – 1.1.0<br>Abanista Additional Gateways: by Abanista – 0.1<br>Abanista App Deals: by Abanista Dev Team – 1.2.0<br>Abanista Cart Tab: by The Abanista Team – 1.1.2<br>Abanista Coffee API Endpoint: by Abanista Dev Team – 0.4.0<br>Abanista Dynamic Deals Today: by Abanista Dev Team – 1.2.0<br>Abanista Loyalty: by Abanista Dev – 1.2.0<br>Abanista OTP Reset and Register: by Abanista – 1.4<br>Abanista Preferences: by Abanista Dev – 1.0.4<br>Abanista Prime: by Abanista Dev – 0.3.4<br>Abanista Product SKU Generator: by Abanista – 2.5.0<br>Abanista Product Tags Endpoint: by Abanista – 1.4.1<br>Abanista Push Notifications: by Abanista Dev Team – 1.10.0<br>Abanista Rest API: by The Abanista Dev Team – 1.12<br>Abanista Store API: by The Abanista Dev Team – 1.2<br>Abanista Support Ticket System: by Abanista Dev Team (Cristaves) – 1.3.0<br>Abanista User Attributes: by Abanista Dev – 1.3.5<br>Abanista WC Warranty - Client REST API: by The Abanista Team – 0.3.0<br>Abanista Widget Visibility: by Abanista / You – 1.2.0<br>Abanista Wishlist & Notifications: by Abanista Dev Team – 0.9.3<br>AutomateWoo: by WooCommerce – 6.1.15<br>Brevo - Email, SMS, Web Push, Chat, and more.: by Brevo – 3.2.9<br>Code Snippets: by Code Snippets Pro – 3.9.2<br>Coupon Affiliates for WooCommerce: by Elliot Sowersby<br>RelyWP – 7.2.1<br><br>Customer Reviews for WooCommerce: by CusRev – 5.90.0<br>Facebook for WooCommerce: by Facebook – 3.5.14<br>FiboFilters: by FiboFilters Team – 1.9.0<br>FiboSearch - AJAX Search for WooCommerce (Pro): by FiboSearch Team – 1.30.1<br>Google Analytics for WooCommerce: by WooCommerce – 2.1.19<br>Google for WooCommerce: by WooCommerce – 3.5.0<br>Heateor Social Login: by Team Heateor – 1.1.39<br>JWT Authentication for WP-API: by Enrique Chavez – 1.4.1<br>LiteSpeed Cache: by LiteSpeed Technologies – 7.6.2<br>PDF Invoices & Packing Slips for WooCommerce: by WP Overnight – 5.1.0<br>PWA: by PWA Plugin Contributors – 0.8.2<br>Rank Math SEO: by Rank Math SEO – 1.0.258<br>Rich Shortcodes for Google Reviews: by RichPlugins <[email protected]> – 6.7<br>Storefront Blog Customiser: by WooCommerce – 1.3.0<br>Storefront Footer Bar: by WooThemes – 1.0.4<br>Storefront Hamburger Menu: by WooCommerce – 1.2.2<br>Storefront Mega Menus: by WooCommerce – 1.6.2<br>Storefront Parallax Hero: by WooCommerce – 1.5.7<br>Storefront Powerpack: by WooCommerce – 1.6.3<br>Storefront Top Bar: by Wooassist – 1.2.0<br>TeraWallet: by StandaloneTech – 1.5.14<br>Variation Swatches for WooCommerce: by CartFlows – 1.0.13<br>WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes and Shipping Labels: by WebToffee – 4.8.8<br>WooCommerce Analytics: by WooCommerce – 0.9.12<br>WooCommerce Deposits: by WooCommerce – 2.3.9<br>WooCommerce Product Add-Ons: by Woo – 7.9.1<br>WooCommerce Product Bundles: by Woo – 8.4.2<br>WooCommerce Product Vendors: by WooCommerce – 2.4.7<br>WooCommerce Warranty Requests: by WooCommerce – 2.6.7<br>WPC Linked Variation for WooCommerce (Premium): by WPClever – 4.3.7<br>WP ERP: by weDevs – 1.16.7<br><br>### Dropin Plugins () ###<br><br>object-cache.php: LiteSpeed Cache - Object Cache (Drop-in)<br><br>### Settings ###<br><br>Legacy API Enabled: –<br>Force SSL: –<br>Currency: UGX (UGX)<br>Currency Position: left_space<br>Thousand Separator: ,<br>Decimal Separator: .<br>Number of Decimals: 0<br>Taxonomies: Product Types: bundle (bundle)<br>external (external)<br>grouped (grouped)<br>simple (simple)<br>variable (variable)<br>woosb (woosb)<br><br>Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)<br>exclude-from-search (exclude-from-search)<br>featured (featured)<br>outofstock (outofstock)<br>rated-1 (rated-1)<br>rated-2 (rated-2)<br>rated-3 (rated-3)<br>rated-4 (rated-4)<br>rated-5 (rated-5)<br><br>Connected to WooCommerce.com: ✔<br>Enforce Approved Product Download Directories: –<br>HPOS feature enabled: ✔<br>Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore<br>HPOS data sync enabled: ✔<br>Enabled Features: analytics<br>rate_limit_checkout<br>marketplace<br>order_attribution<br>site_visibility_badge<br>remote_logging<br>custom_order_tables<br>cost_of_goods_sold<br><br><br>### Logging ###<br><br>Enabled: ✔<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 days<br>Level threshold: –<br>Log directory size: 22 KB<br><br>### WC Pages ###<br><br>Shop base: #9 - /shop/<br>Cart: #10 - /cart/ -  Contains the woocommerce/cart block<br>Checkout: #11 - /checkout/ -  Contains the woocommerce/checkout block<br>My account: #12 - /my-account/ -  Contains the &#091;woocommerce_my_account] shortcode<br>Terms and conditions: #43 - /terms-conditions/terms-of-sale/<br><br>### Theme ###<br><br>Name: Abanista<br>Version: 1.0.1713589360<br>Author URL: https://www.abanista.com/<br>Child Theme: ✔<br>Parent Theme Name: Storefront<br>Parent Theme Version: 4.6.1<br>Parent Theme Author URL: https://woocommerce.com/<br>Theme type: Classic theme<br>WooCommerce Support: ✔<br><br>### Templates ###<br><br>Overrides: –<br><br>### Admin ###<br><br>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customize-store<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>onboarding<br>onboarding-tasks<br>pattern-toolkit-full-composability<br>product-custom-fields<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>printful<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page<br>launch-your-store<br><br>Disabled Features: product-data-views<br>experimental-blocks<br>experimental-iapi-mini-cart<br>experimental-iapi-runtime<br>coming-soon-newsletter-template<br>minified-js<br>product-pre-publish-modal<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br>use-wp-horizon<br>rest-api-v4<br><br>Daily Cron: ✔ Next scheduled: 2025-11-30 00:10:55 +03:00<br>Options: ✔<br>Notes: 234<br>Onboarding: completed<br><br>### Action Scheduler ###<br><br>Complete: 188<br>Oldest: 2025-11-28 01:34:49 +0300<br>Newest: 2025-11-29 11:06:50 +0300<br><br>Failed: 10<br>Oldest: 2025-11-28 06:00:50 +0300<br>Newest: 2025-11-29 06:57:14 +0300<br><br>Pending: 20<br>Oldest: 2025-11-29 13:18:49 +0300<br>Newest: 2025-12-27 03:00:09 +0300<br><br><br>### Status report information ###<br><br>Generated at: 2025-11-29 11:07:32 +03:00<br>
    Thread Starter acsafrica

    (@acsafrica)

    When i created a staging site, i had not yet produced the error there. Only WooCommerce was active on the staging. I was having the same condition on the main site, but for it the issue was happening. like is spikes for 1 or 2 seconds and then stops and then it takes like 4 hours it spikes again and stops. Then i was advised that my database was too big so I had to clear up things. this included removing the staging plugin but that did not reduce the size so i had to delete the staging. The site continued to run but with periodic error out of sync that happen for seconds and then stop. could happen like once every 3 to 4 hours. Now today I woke up when the errors are constant. I can share a status report but unfortunately I cant get one when woocommerce is active because i cant access dashboard. I have to first disable the woocommerce plugin and then share the wordpress status report.

    <br>### wp-core ###<br><br>version: 6.8.3<br>site_language: en_US<br>user_language: en_US<br>timezone: Africa/Kampala<br>permalink: /%postname%/<br>https_status: true<br>multisite: false<br>user_registration: 0<br>blog_public: 1<br>default_comment_status: undefined<br>environment_type: production<br>user_count: 5907<br>dotorg_communication: true<br><br>### wp-paths-sizes ###<br><br>wordpress_path: /home/abanista/public_html<br>wordpress_size: 144.33 MB (151339431 bytes)<br>uploads_path: /home/abanista/public_html/wp-content/uploads<br>uploads_size: 2.97 GB (3189886569 bytes)<br>themes_path: /home/abanista/public_html/wp-content/themes<br>themes_size: 13.74 MB (14410762 bytes)<br>plugins_path: /home/abanista/public_html/wp-content/plugins<br>plugins_size: 275.26 MB (288632612 bytes)<br>fonts_path: /home/abanista/public_html/wp-content/uploads/fonts<br>fonts_size: directory not found<br>database_size: 940.98 MB (986693632 bytes)<br>total_size: 4.31 GB (4630963006 bytes)<br><br>### wp-dropins (1) ###<br><br>object-cache.php: true<br><br>### wp-active-theme ###<br><br>name: Abanista (storefront-child)<br>version: 1.0.1713589360<br>author: Abanista<br>author_website: https://www.abanista.com/<br>parent_theme: Storefront (storefront)<br>theme_features: core-block-patterns, widgets-block-editor, automatic-feed-links, post-thumbnails, custom-logo, menus, html5, custom-background, custom-header, title-tag, customize-selective-refresh-widgets, wp-block-styles, align-wide, editor-styles, editor-font-sizes, editor-style, responsive-embeds, appearance-tools, amp, starter-content, widgets<br>theme_path: /home/abanista/public_html/wp-content/themes/storefront-child<br>auto_update: Disabled<br><br>### wp-parent-theme ###<br><br>name: Storefront (storefront)<br>version: 4.6.1<br>author: Automattic<br>author_website: https://woocommerce.com/<br>theme_path: /home/abanista/public_html/wp-content/themes/storefront<br>auto_update: Disabled<br><br>### wp-themes-inactive (1) ###<br><br>Twenty Twenty-Five: version: 1.3, author: the WordPress team, Auto-updates disabled<br><br>### wp-plugins-inactive (57) ###<br><br>Abanista - Click to Order or Chat: version: 1.0.8, author: The Abanista Team, Auto-updates disabled<br>Abanista - Order Status Manager & Notifications: version: 1.1.0, author: Abanista Dev Team, Auto-updates disabled<br>Abanista Additional Gateways: version: 0.1, author: Abanista, Auto-updates disabled<br>Abanista App Deals: version: 1.2.0, author: Abanista Dev Team, Auto-updates disabled<br>Abanista Cart Tab: version: 1.1.2, author: The Abanista Team, Auto-updates disabled<br>Abanista Coffee API Endpoint: version: 0.4.0, author: Abanista Dev Team, Auto-updates disabled<br>Abanista Dynamic Deals Today: version: 1.2.0, author: Abanista Dev Team, Auto-updates disabled<br>Abanista Loyalty: version: 1.2.0, author: Abanista Dev, Auto-updates disabled<br>Abanista OTP Reset and Register: version: 1.4, author: Abanista, Auto-updates disabled<br>Abanista Preferences: version: 1.0.4, author: Abanista Dev, Auto-updates disabled<br>Abanista Prime: version: 0.3.4, author: Abanista Dev, Auto-updates disabled<br>Abanista Product SKU Generator: version: 2.5.0, author: Abanista, Auto-updates disabled<br>Abanista Product Tags Endpoint: version: 1.4.1, author: Abanista, Auto-updates disabled<br>Abanista Push Notifications: version: 1.10.0, author: Abanista Dev Team, Auto-updates disabled<br>Abanista Rest API: version: 1.12, author: The Abanista Dev Team, Auto-updates disabled<br>Abanista Store API: version: 1.2, author: The Abanista Dev Team, Auto-updates disabled<br>Abanista Support Ticket System: version: 1.3.0, author: Abanista Dev Team (Cristaves), Auto-updates disabled<br>Abanista User Attributes: version: 1.3.5, author: Abanista Dev, Auto-updates disabled<br>Abanista WC Warranty - Client REST API: version: 0.3.0, author: The Abanista Team, Auto-updates disabled<br>Abanista Widget Visibility: version: 1.2.0, author: Abanista / You, Auto-updates disabled<br>Abanista Wishlist & Notifications: version: 0.9.3, author: Abanista Dev Team, Auto-updates disabled<br>AutomateWoo: version: 6.1.15, author: WooCommerce, Auto-updates disabled<br>Brevo - Email, SMS, Web Push, Chat, and more.: version: 3.2.9, author: Brevo, Auto-updates disabled<br>Code Snippets: version: 3.9.2, author: Code Snippets Pro, Auto-updates disabled<br>Coupon Affiliates for WooCommerce: version: 7.2.1, author: Elliot Sowersby, RelyWP, Auto-updates disabled<br>Customer Reviews for WooCommerce: version: 5.90.0, author: CusRev, Auto-updates disabled<br>Facebook for WooCommerce: version: 3.5.14, author: Facebook, Auto-updates disabled<br>FiboFilters: version: 1.9.0, author: FiboFilters Team, Auto-updates disabled<br>FiboSearch - AJAX Search for WooCommerce (Pro): version: 1.30.1, author: FiboSearch Team, Auto-updates disabled<br>Google Analytics for WooCommerce: version: 2.1.19, author: WooCommerce, Auto-updates disabled<br>Google for WooCommerce: version: 3.5.0, author: WooCommerce, Auto-updates disabled<br>Heateor Social Login: version: 1.1.39, author: Team Heateor, Auto-updates disabled<br>JWT Authentication for WP-API: version: 1.4.1, author: Enrique Chavez, Auto-updates disabled<br>LiteSpeed Cache: version: 7.6.2, author: LiteSpeed Technologies, Auto-updates disabled<br>PDF Invoices & Packing Slips for WooCommerce: version: 5.1.0, author: WP Overnight, Auto-updates disabled<br>PWA: version: 0.8.2, author: PWA Plugin Contributors, Auto-updates disabled<br>Rank Math SEO: version: 1.0.258, author: Rank Math SEO, Auto-updates disabled<br>Rich Shortcodes for Google Reviews: version: 6.7, author: RichPlugins <[email protected]>, Auto-updates disabled<br>Storefront Blog Customiser: version: 1.3.0, author: WooCommerce, Auto-updates disabled<br>Storefront Footer Bar: version: 1.0.4, author: WooThemes, Auto-updates disabled<br>Storefront Hamburger Menu: version: 1.2.2, author: WooCommerce, Auto-updates disabled<br>Storefront Mega Menus: version: 1.6.2, author: WooCommerce, Auto-updates disabled<br>Storefront Parallax Hero: version: 1.5.7, author: WooCommerce, Auto-updates disabled<br>Storefront Powerpack: version: 1.6.3, author: WooCommerce, Auto-updates disabled<br>Storefront Top Bar: version: 1.2.0, author: Wooassist, Auto-updates disabled<br>TeraWallet: version: 1.5.14, author: StandaloneTech, Auto-updates disabled<br>Variation Swatches for WooCommerce: version: 1.0.13, author: CartFlows, Auto-updates disabled<br>WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes and Shipping Labels: version: 4.8.8, author: WebToffee, Auto-updates disabled<br>WooCommerce: version: 10.3.5, author: Automattic, Auto-updates disabled<br>WooCommerce Analytics: version: 0.9.12, author: WooCommerce, Auto-updates disabled<br>WooCommerce Deposits: version: 2.3.9, author: WooCommerce, Auto-updates disabled<br>WooCommerce Product Add-Ons: version: 7.9.1, author: Woo, Auto-updates disabled<br>WooCommerce Product Bundles: version: 8.4.2, author: Woo, Auto-updates disabled<br>WooCommerce Product Vendors: version: 2.4.7, author: WooCommerce, Auto-updates disabled<br>WooCommerce Warranty Requests: version: 2.6.7, author: WooCommerce, Auto-updates disabled<br>WPC Linked Variation for WooCommerce (Premium): version: 4.3.7, author: WPClever, Auto-updates disabled<br>WP ERP: version: 1.16.7, author: weDevs, Auto-updates disabled<br><br>### wp-media ###<br><br>image_editor: WP_Image_Editor_Imagick<br>imagick_module_version: 1809<br>imagemagick_version: ImageMagick 7.1.1-47 Q16-HDRI x86_64 22763 https://imagemagick.org<br>imagick_version: 3.8.0<br>file_uploads: 1<br>post_max_size: 8M<br>upload_max_filesize: 2M<br>max_effective_size: 2 MB<br>max_file_uploads: 20<br>imagick_limits: <br>	imagick::RESOURCETYPE_AREA: 1 TB<br>	imagick::RESOURCETYPE_DISK: 9.2233720368548E+18<br>	imagick::RESOURCETYPE_FILE: 393216<br>	imagick::RESOURCETYPE_MAP: 754 GB<br>	imagick::RESOURCETYPE_MEMORY: 377 GB<br>	imagick::RESOURCETYPE_THREAD: 1<br>	imagick::RESOURCETYPE_TIME: 0<br>imagemagick_file_formats: 3FR, 3G2, 3GP, A, AAI, AI, APNG, ART, ARW, ASHLAR, AVCI, AVI, AVIF, AVS, B, BAYER, BAYERA, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, C, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUBE, CUR, CUT, DATA, DCM, DCR, DCRAW, DCX, DDS, DFONT, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FARBFELD, FAX, FF, FFF, FILE, FITS, FL32, FLV, FRACTAL, FTP, FTS, FTXT, G, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, HALD, HDR, HEIC, HEIF, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K, K25, KDC, LABEL, M, M2V, M4V, MAC, MAP, MASK, MAT, MATTE, MDC, MEF, MIFF, MKV, MNG, MONO, MOS, MOV, MP4, MPC, MPEG, MPG, MPO, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, O, ORA, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PHM, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PS, PS2, PS3, PSB, PSD, PTIF, PWP, QOI, R, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGB565, RGBA, RGBO, RGF, RLA, RLE, RMF, RSVG, RW2, RWL, SCR, SCREENSHOT, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, SRW, STEGANO, STI, STRIMG, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TM2, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, Y, YAML, YCBCR, YCBCRA, YUV<br>gd_version: 2.3.3<br>gd_formats: GIF, JPEG, PNG, WebP, BMP, AVIF, XPM<br>ghostscript_version: 9.54.0<br><br>### wp-server ###<br><br>server_architecture: Linux 5.14.0-570.28.1.el9_6.x86_64 x86_64<br>httpd_software: LiteSpeed<br>php_version: 8.4.14 64bit<br>php_sapi: litespeed<br>max_input_variables: 1000<br>time_limit: 300<br>memory_limit: 1024M<br>max_input_time: 300<br>upload_max_filesize: 2M<br>php_post_max_size: 8M<br>curl_version: 8.14.1 OpenSSL/3.5.1<br>suhosin: false<br>imagick_availability: true<br>pretty_permalinks: true<br>htaccess_extra_rules: true<br>static_robotstxt_file: false<br>current: 2025-11-29T08:00:41+00:00<br>utc-time: Saturday, 29-Nov-25 08:00:41 UTC<br>server-time: 2025-11-29T11:00:41+03:00<br><br>### wp-database ###<br><br>extension: mysqli<br>server_version: 10.11.15-MariaDB<br>client_version: mysqlnd 8.4.14<br>max_allowed_packet: 536870912<br>max_connections: 600<br><br>### wp-constants ###<br><br>WP_HOME: undefined<br>WP_SITEURL: undefined<br>WP_CONTENT_DIR: /home/abanista/public_html/wp-content<br>WP_PLUGIN_DIR: /home/abanista/public_html/wp-content/plugins<br>WP_MEMORY_LIMIT: 1024M<br>WP_MAX_MEMORY_LIMIT: 1024M<br>WP_DEBUG: true<br>WP_DEBUG_DISPLAY: false<br>WP_DEBUG_LOG: true<br>SCRIPT_DEBUG: false<br>WP_CACHE: true<br>CONCATENATE_SCRIPTS: undefined<br>COMPRESS_SCRIPTS: undefined<br>COMPRESS_CSS: undefined<br>WP_ENVIRONMENT_TYPE: undefined<br>WP_DEVELOPMENT_MODE: undefined<br>DB_CHARSET: utf8mb4<br>DB_COLLATE: undefined<br><br>### wp-filesystem ###<br><br>wordpress: writable<br>wp-content: writable<br>uploads: writable<br>plugins: writable<br>themes: writable<br>fonts: does not exist<br>mu-plugins: writable<br><br>
    Thread Starter acsafrica

    (@acsafrica)

    Hi @mosesmedh

    By the time of your checking, there was no plugin active on the site including WooCommerce. I did so to be able to access dashboard. Now i Have activated WooCommerce again. As you can see, the problem has returned.

    These are the new logs as soon as woocommerce is activated. there is no other plugin active.

    [29-Nov-2025 07:27:05 UTC] Cron reschedule event error for hook: action_scheduler_run_queue, Error code: invalid_schedule, Error message: Event schedule does not exist., Data: {"schedule":"every_minute","args":["WP Cron"],"interval":60}
    [29-Nov-2025 07:27:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:27:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM
    wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:28:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:28:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:28:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:28:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:28:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:28:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:28:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:28:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_effb4a7691a3099f357fb2184facc8', 'a:6:{s:22:\"shipping_for_package_0\";s:2367:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_21f4316567100706eee46217c160e74d\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:72:\"Toshiba 43-inch Full HD LED TV w/ Digital Free-to-Air Receiver &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:72:\"Toshiba 43-inch Full HD LED TV w/ Digital Free-to-Air Receiver &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:72:\"Toshiba 43-inch Full HD LED TV w/ Digital Free-to-Air Receiver &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:72:\"Toshiba 43-inch Full HD LED TV w/ Digital Free-to-Air Receiver &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"690000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"690000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"690000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"213334eb8d81fbc898ce3abcf98bcfa1\";a:11:{s:3:\"key\";s:32:\"213334eb8d81fbc898ce3abcf98bcfa1\";s:10:\"product_id\";i:42788;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:690000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:690000;s:8:\"line_tax\";d:0;}}\";}', 1764574131)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:28:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:28:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:29:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:29:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:29:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:29:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:29:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:29:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:29:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:29:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:29:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:29:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 07:30:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 07:30:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_1b05553f5b782cfc293130c8cc1c07', 'a:6:{s:22:\"shipping_for_package_0\";s:2434:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_b4aa374d7d253f30e58d76ab1a1f0413\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:83:\"Geepas 3-in-1 Stand Mixer, 5 Speed, 5 Litre Bowl, 800w, 5 Speed, GSM43013 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:83:\"Geepas 3-in-1 Stand Mixer, 5 Speed, 5 Litre Bowl, 800w, 5 Speed, GSM43013 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:83:\"Geepas 3-in-1 Stand Mixer, 5 Speed, 5 Litre Bowl, 800w, 5 Speed, GSM43013 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:83:\"Geepas 3-in-1 Stand Mixer, 5 Speed, 5 Litre Bowl, 800w, 5 Speed, GSM43013 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"385000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"385000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"385000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"cc5e82c68af96ec8554ac4ae9cea008d\";a:11:{s:3:\"key\";s:32:\"cc5e82c68af96ec8554ac4ae9cea008d\";s:10:\"product_id\";i:22062;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:385000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:385000;s:8:\"line_tax\";d:0;}}\";}', 1764574239)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), `session_
    Thread Starter acsafrica

    (@acsafrica)

    These images show how resource usage appears when no plugins are active and when the woocommerce plugin has been activated
    Thread Starter acsafrica

    (@acsafrica)

    I had not activated any other plugin. but i have been seeing the problematic Command out of sync error happening periodically like a second. but today i woke up when the site is totally inaccessible. I checked the logs and i saw the command out of sync error was this time constantly logging. I couldnt access the dashboard so I had to rename the plugins folder. after renaming the plugins folder i was able to access the dahboard with no plugins. I reverted the renaming of the plugins folder. And activated woocommerce only. the errors started again. Then I had to rename the plugins folder again so that i can access dashboard again. This time i waited for like 3 hours when no plugin is active on the site. So i activated woocommerce only and immediately the errors started again. Below is the pile of such errors. I currently cant access the dashboard. Only woocommerce is active on the site.

    [29-Nov-2025 05:58:41 UTC] Cron reschedule event error for hook: action_scheduler_run_queue, Error code: invalid_schedule, Error message: Event schedule does not exist., Data: {"schedule":"every_minute","args":["WP Cron"],"interval":60}
    [29-Nov-2025 05:59:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 05:59:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO
    wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_1a50fe52837a1f4c6672844e256e82', 'a:7:{s:22:\"shipping_for_package_0\";s:165023:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_0c3b0ee1a3e5fa977efe6c2bab233145\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:6:\"488500\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:54426:\"LG Microwave Oven with Grill, 42L, Smart Inverter, Even Heating and Easy Clean, Stainless Steel, MH8265CIS &times; 2, CHiQ 12,000 BTU Wall Split Air Conditioner &times; 2, De\'Longhi KG89 KG 89 Professional Coffee Grinder for up to 12 Cups, Plastic Housing, Silver, 110 watts &times; 1, Samsung 85-Inch, Q60D, QLED 4K UHD Quantum HDR Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 4, Aftron 150L Chest Freezer, White Color, AFF1550HST &times; 3, Samsung HW-B450 2.1ch Soundbar w/ Dolby &times; 3, Geepas GMS8585 2.1 Ch Multimedia System Portable 20000W PMPO, Dual Woofer| USB, Bluetooth &times; 5, Beko 90*60cm Freestanding Cooker, 5 Gas, Fan Assisted, GE 15120 DX &times; 1, Geepas GBK1149 Electric Insect Killer Bug Zapper 6W - Safe &amp; Portable, Non-Toxic Mosquito Ant Fly Bug Killer | Lightweight &amp; Efficient | Mosquito Eliminator with Camping Lantern &times; 1, Tefal Home Chef Smart Multicooker, 1000W, CY601D65 &times; 1, Geepas Professional Digital Hair Clipper- GTR57504/ with High-Capacity Battery and Fast USB Charging/ 4 Adjustable Cutting Blades| Perfect for Home and Saloon Styling &times; 3, Samsung 85-inch Q60C QLED 4K Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Phillips garment steamer, GC482 &times; 2, Beko FBE63320XDL 60cm Freestanding Dual-Fuel Cooker - Fan Oven, 3 Gas Burners &amp; 1 Electric Hotplate, Stainless Steel, A Energy Rating &times; 4, Moulinex Infinymix+ 1.7 Litre High Speed Blender, 6 Auto Programs, 1600 Watts, LM91HD27 &times; 1, Midea 60 cm 4-Burner Gas Cooktop – Stainless Steel with Triple Crown Burner, MG60SK005 &times; 3, TCL 65-inch QLED PRO 4K Ultra HD Smart Google TV, 65C655 &times; 1, Geepas Rechargeable Professional Speaker, 40000W PMPO, GMS11168,TWS Connection, BT/FM/USB/TF Card | LED Display,Wireless Microphone,7.4V/3000mAh Lithium Battery &times; 3, Panasonic 1.45L, 2 Dry Mill, Smooth Performance, Blender, MXCP3121 &times; 4, Hisense 40-inch Class A4 Series (40A4Q) Smart TV, VIDAA OS, Built-in Wi-Fi, HDR, Dolby Atmos &times; 3, Ariete Bon Cuisine 40L Mini Oven With 2 Hotplates (SFO0995) – Silver &times; 2, Braun CareStyle 1 Steam Generator Iron, 2200w, IS1014VI &times; 2, Beko 55\" 4K Ultra HD Smart LED TV with Google TV (BL55 UHD 9823 C) &times; 2, Panasonic Mixer Grinder with 3 Jars | MXAC300 &times; 1, CHiQ 195 Litre (Net 150L) Single Door Refrigerator CSR195DSK3 &times; 3, Samsung 76L Oven, Black Stainless Steel, Series 4, Smart Oven with Catalytic Cleaning, NV7B41207AB &times; 3, Geepas Electric Wet Grinder Rice Kneading Dough GWG-44063 &times; 1, LG 24000 BTU Ceiling Single Cassette Inverter Air Conditioner &times; 3, Geepas Electric Rice Cooker w/ Steamer, Glass Lid, 2.8L, 900W | GRC4327 &times; 1, Hisense 550 Litre (Net 420 Liter) Chest Freezer, FC-55DD4SA &times; 1, Geepas GLE86034 Stain Touch Epilator &times; 1, Decakila Citrus Juicer - 160 Watts, KEJC008B &times; 1, ADH 438 Litre Commercial Fridge &amp; Freezer Combination Upright Cabinet &times; 2, Decakila 3KG, Popcorn Maker Cart, KMTT037R &times; 2, Samsung RT6000 Top Freezer with Twin Cooling Plus™, Net 530 L, Black (RT53K6541BS/UT) &times; 3, BlueFlame 50x60cm 3 Gas + 1 Electric Cooker w/ Electric Oven, Inox, Stainless steel, NL6031E &times; 1, LG 43-inch 4K UHD Smart LED TV &times; 2, Beko BL50UHD 9823 C 50-inch 4K Ultra HD Smart TV, Google TV, Wi-Fi &times; 4, HP LaserJet Enterprise M612dn &times; 2, Hisense 58cm Built-in Gas Hob, 4 Burners, HHU60GAGR &times; 2, CHiQ 18,000 BTU Wall Split Air Conditioner &times; 2, Canon i-SENSYS MF3010 Digital Multifunction Laser Printer &times; 4, CHiQ 380 Liter Chest Freezer, CCF381DSK3 &times; 1, Decakila Hand Mixer, 120 Watts, 7 Speeds, KEMX016W &times; 1, Decakila 3 burner Table Gas Stove, KMGS014M &times; 2, Beko BGM 21225 EX Cooker 4 Gas 2 Electric 90 CM &times; 2, Panasonic 2000W Powerful Mixer Grinder with Double Safety Lock, 3 Multipurpose Jars - MX-AE365 &times; 1, LG GL-C252SLBB 234(L) Top Freezer Refrigerator, Inverter Linear Compressor, Multi Air Flow &times; 2, Smartec 43-Inch HD Android Smart LED TV with Free Wall Brackets | S43 &times; 2, Toshiba 43-inch 4K Ultra HD Smart LED TV; HDR, Dolby Atmos, Bluetooth, VIDAA &times; 1, Beko 7kg Front Load Washing Machine, BAW385 UK; A+++, 1200 RPM, Daily Express Program, ProSmart Inverter Motor, Manhattan Grey &times; 1, Beko 386L Chest Freezer HS455 – White, A Energy Rated, with 2 Baskets &amp; Chill-In Technology &times; 3, Bosch PRY6A6B70 Serie 8 60cm Ceramic 3 Gas + 1 Electric Built In Hob &times; 2, Beko FBM62320WDSL Freestanding Cooker, Multifunctional Oven with Gas, 72 L Cooking Volume 4 Cooking Zones, 8 Heat Modes, Side Grid, Multifunctional Display &times; 1, JBL PartyBox Club 120 &times; 3, Midea 90 cm 5‑Burner Built‑In Gas Hob – Sleek Black Glass, MG90GQ095AL1B &times; 2, Hisense 75-inch Ultra HD 4K Smart QLED TV (75Q6Q) &times; 4, Titan 18,000 BTU Ceiling Cassette R410a Air Conditioner &times; 3, Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024 &times; 2, IQRA 60cm Built-in Hob; 3 Gas Burners + 1 Hotplate, Pulse-Ignition, Glass Top, Cast Iron Pan Supports, IQ-KH4002EG &times; 1, Decakila 4 Litre 750w Electric Thermo Pot, KEKT029B &times; 1, Samsung 11KG Front load Washer with Ecobubble™ and SmartThings AI Energy Mode, WW11CGC04DAB &times; 3, ADH 200 Litres Solar Chest Freezer &times; 1, Decakila Mosquito Killing Lamp, KMMQ002W &times; 3, Beko 60cm Built-in Cassette Hood, CFB6433XH; Cooker Hood, Stainless Steel Finish, 3 Power Levels, 380 m³/h Extraction, Halogen Lighting &times; 2, Phillips Blender 3000 Series, HR2041/10 &times; 1, OLSENMARK OMBK1511 Fly And Insect Killer – Powerful Fly Zapper 2X8W Uv Light,Electric Bug Zapper, Insect Killer, Fly Killer, Wasp Killer – Insect Killing Mesh Grid, with Detachable Hang &times; 1, HP Smart Tank 720 All-in-One Printer &times; 2, Haier 211L Fridge Black, Inverter, No Frost, Energy Efficient, HRF-239FA(KE) &times; 1, Samsung RT6300C 465 Litre Top Freezer Refrigerator with Optimal Fresh+, Wi-Fi Embedded, Silver (RT47CG6631S9UT) &times; 3, BEKO BDIN36520Q Fully Integrated Standard Dishwasher - Black Control Panel - E Rated &times; 1, Black &amp; Decker 10-Cup Filter Coffee Maker, 1.25 Litre, 750w, DCM750S &times; 2, Beko 60cm Built-in Cassette Hood, CTB 6250 XH, Cooker Hood (Telescopic, 60 cm) &times; 1, ADH 625 Litre 2-Door Beverage Upright Cooler &times; 3, Bosch 260 Litre Freestanding 2-Door Top Freezer Refrigerator, KDN26N12N5 &times; 1, HP Laser MFP 135a, All-in-One Monochrome Laser Printer (Print, Scan, Copy) &times; 2, Hitachi 600Ltrs 2-Door Refrigerator w/ Inverter Compressor (Brilliant Silver) | RV800PUN7KBSL &times; 1, Bosch 616 Litres American Side By Side Fridge Freezer w/ Antifingerprint | KAN93VIFPG &times; 1, Bosch 242 Liters Free standing Freezer, 186*60cm, Inox | GSN36VL3PG &times; 1, BlueFlame 60*60cm Full Gas Cooker w/ Gas Oven, Grill, Rotisserie, S6040GRFP-I &times; 3, Venus 2400W Steam Iron with Vertical & Steam Burst VSI22GP- Black &times; 1, CHiQ 10kg Front Load Automatic Washing Machine &times; 1, Geepas Electric Glass Kettle, 1.7L, 360° Rotation Base, Cord Storage, Glass Body, Water Label Gauge, Perfect Pour Wide Opening, Safe &amp; Convenient, Auto Shut-Off, 1500w, GK38063 &times; 2, HP LaserJet Pro MFP 4103dw Multifunction Printer &times; 1, Samsung 12Kg/8Kg Washer Dryer with Eco Bubble™, AI Control, WD12BB944DGBNQ &times; 1, Geepas Ceramic Steam Iron, Temperature Control, GSI24025 Ceramic Sole Plate, Wet And Dry Self Cleaning Function Powerful Steam Burst 400ML Water Tank,3000W &times; 2, Electrolux 90*60cm 5 Burners Gas Cooker w/ Gas Oven, Fan Assisted, Stainless Steel, EKG9200A9X &times; 2, Tefal Compact Power XXL Bagless Vacuum Cleaner, TW4B25HA &times; 3, Black and Decker Blender, BX365-B5 &times; 1, Tefal Dry Iron, Classical Plus, 1200 W, FS3110M0 &times; 1, SPJ 1100L 3-Door Showcase Chiller &times; 1, Samsung Galaxy Tab S8 Ultra 5G &times; 3, Geepas 12K BTU Portable Air Conditioner, 1.0 Ton, 3 Mode & 3 Speed, Cool, Fan & Dry, Digital Display, Timer & Humidifier, GACP1216 &times; 3, JBL Bar 9.1 Ch Soundbar System - True Wireless Surround w/ Dolby Atmos &times; 3, Smartec 24-Inch HD Digital HDR LED TV | AC/DC &times; 3, Bosch Serie | 2 60cm (66 Litre) Built-in Oven with 3D Hotair, HBF011BR1M &times; 4, Tefal Pro Style Care Garment Steamer, 2000 Watt, Black - ‎IT8490M0 &times; 2, Samsung 578L Side-by-Side Refrigerator with Water Dispenser, SmartThings, AI Energy, Silver (RS57DG4100B4) &times; 3, Haier 138L Refrigerator, Fast Freezing, HRF-160BEX &times; 1, KENWOOD 42L Microwave Oven with Grill, MWM42.000BK, Black/Silver &times; 2, Braun Hand Blender, 450W, Stainless Steel Blades with Chopper &amp; Plastic Beaker, MQ10.201MWM &times; 2, Tefal Garment Steamer Pro Style, 42g, IT3480M0. &times; 4, LG 39L NeoChef Microwave Convection Oven, EasyClean™, Smart Inverter, MJ3965ACS &times; 1, Ariete Bagless Vacuum Cleaner, 700w, 3.0 Litre, ASPD2753 &times; 2, Hisense 9 kg Automatic Top Load Washing Machine, WTJD902T &times; 2, Toshiba 65-inch 4K Ultra HD Smart LED TV, 65C350KW; Built-in Wi-Fi, Bluetooth, HDR, Dolby Atmos, VIDAA, Free-to-Air Decoder &times; 1, Sony Bravia 65-inch 4K Ultra HD Smart LED Google TV, KD65X75K &times; 1, Geepas GPB58055 10,000mAh Portable Power Bank &times; 2, TEFAL Pressure Cooker, Secure 5 Neo 6 L, 5-security systems, Stainless Steel, P2580702 &times; 2, SPJ 429L 2-Door Bottom Freezer Refrigerator with Water Dispenser (Black Glass) &times; 2, CHiQ 340 Litre 2-Door Bottom Freezer Refrigerator, CBM340DSK3 &times; 1, Skyworth 32-inch HD Digital Frameless LED TV, 32W3E &times; 1, ADH 210 Litres 1-Door Refrigerator &times; 1, Samsung Sound Tower Party Audio ST50B, 240W, IPX5 Water Resistant, 18 Hours of Playtime &times; 2, LG 8kg | Front Load Washing Machine | Inverter DD | Steam™ | 6 Motion DD | FH4G7TDY5 &times; 1, Geepas GF9428 56\"Ceiling Fan | Double ball bearing | 290 rpm | 3Speed |3 Blade with Strong Air Breeze | Ideal for Living Room, Bed Room, and office &times; 1, Samsung Solo Microwave, 23Litres | MS23F301TAS/EU &times; 2, JBL PartyBox 300 - High Power Portable Wireless Bluetooth Party Speaker &times; 3, Nikon D7500 20.9MP DSLR Camera with AF-S DX NIKKOR 18-140mm f/3.5-5.6G ED VR Lens &times; 1, Skyworth QLED 75-inch 4K UHD Smart Android TV, 75G3EN; Google TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos, Free-to-Air Receiver &times; 1, Blueflame Cooker, 50x50cm, 3 Gas Burners &amp; 1 Electric Plate with Electric Oven, Black, C5031E–B &times; 3, Nikon Z6 II Mirrorless Camera &times; 2, Decakila 2 Burner Table Gas Stove, KMGS013M &times; 2, Geepas 0.65L Capsule Coffee Machine, Single Serve Coffee Brewer w/ Single-Cup, Quick Brew, Programmable, One Touch Function, GCM41509 &times; 1, Kenwood Oven, 2200W, 70L, Grill, Double Glass Door, Rotisserie Function, Convection Function, 60 Minutes Timer, 6 Adjustable Cooking Positions, Rotisserie Attachments, MOM70.000SS, Silver &times; 3, Samsung HW-Q600B 3.1ch Soundbar Dolby Atmos &times; 2, BlueFlame Diamond Cooker, 90x60cm, Inox, Stainless Steel, E9042ERF &times; 1, Blueflame Rustic Cooker, 60x60cm, 3 Gas &amp; 1 Hot Plate, T6031ERF – B &times; 1, Geepas 2-in-1 Blender, Powerful Motor With 2 Speed Setting and Pulse, Unbreakable Jars With Stainless Steel Blade, Grinder Attachment, 1.8 L 600 W GSB44027T &times; 2, LG 11Kg Washing Machine Washer, VIVACE with AI DD™ | ThinQ™ | Steam™, F4Y5EYGYPV &times; 1, Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SSK, Silver &times; 1, Samsung 583L Side-by-Side Refrigerator with SmartThings, AI Energy, Silver (RS57DG4000M9) &times; 1, JBL T205BT by Harman Wireless Bluetooth in Ear Neckband Headphones with Mic &times; 2, Panasonic 510L Premium Side-by-Side Refrigerator, Inverter Compressor, Touch Control NRBS703MSAS &times; 2, Sony Bravia 65-inch 4K Ultra HD Smart LED Google TV, KD65X80K &times; 2, Venus 39-inch HD Digital LED TV; USB, HDMI, VGA, RF, RCA, Free-to-Air Decoder &times; 2, Krypton 16-inch Stand Fan, KNF6559 &times; 1, JBL PartyBox Stage 320 &times; 2, Samsung 22kg/11kg Front Load Washer Dryer, Bespoke AI Wash, AI Ecobubble, WD90F22BCSNQ &times; 2, Tefal Origin Oval Wood Electronic Personal Scale / Bathroom Scale | PP1600V0 &times; 3, Geepas 10 L Mini Refrigerator- GRF63052 | Mini Fridge, Ideal for Home and Car | With Semiconductor Direct Cooling, AC/DC Working| Easy to Carry, Perfect for Camping, Picnic, Trips, Boating &times; 3, Geepas GGC31026: Sleek 2-in-1 Stainless Steel Built-in Gas Hob with Sabaf Burners &amp; Auto-Ignition &times; 1, Samsung 12kg Twin Washer with Air Turbo, WT12J4200MR/NQ &times; 1, Samsung 17 Kg Top loading Washer with Wobble Technology, Digital Inverter Technology, Gray, WA80F17S8CNQ &times; 2, JBL Wireless Two Microphone System with Dual-Channel Receiver, Black &times; 2, Hisense 419 Litre 2-Door Top Freezer Refrigerator, No Frost, Silver, Energy Class A+, RT419N4DGN &times; 1, Klass Free Standing Cooker 60x60cm, Full Gas, 4 Gas Burners, Gas Oven &amp; Grill, Oven Lamp &amp; Timer, 4TTE-6640 BLK &times; 2, Geepas 8 in 1 Hair Styler with 360 degree Swivel Cord &times; 3, Phillips steam iron 5000 series, DST5010 &times; 1, Braun Hand Blender 3 In 1, 700W, with Whisk + Chopper, MQ3035WH &times; 2, Panasonic Super Mixer Grinder with 4 Jars, 1000 Watts, MXAC400 &times; 1, LG QuadWash™ Dishwasher, 14 Place Settings, EasyRack™ Plus, Inverter Direct Drive, Platinum Silver color (DFC612FV) &times; 2, Hisense 750 Liter Side-by-Side Refrigerator with Water Dispenser, Black &times; 2, Kenwood Blender, 500W, 1.5L w/ Multi Mill Attachment, Ice Crush Function, BLP15.150BK &times; 1, LG GN-B372SQCB 332(L) Net 312(L) | Top Freezer Refrigerator | Smart Inverter Compressor | Smart Diagnosis® | Moist Balance Crisper™ &times; 1, Kenwood Personal Blender Smoothie Maker 600W w/ 700ml &amp; 600ml Tritan Smoothie2Go Bottle &amp; Lid, Ice Crush Function | BSP70 &times; 2, Haier 306L Chest Freezer, Fast Freezing, HCF-368G &times; 1, Hisense 680 Litre Smart Refrigerator, Multi Door Smart Fridge w/ Touch Screen, Water Dispenser and Ice Maker, Frost Free, RC-68WC &times; 1, Hisense 750 Liter Side-by-Side Refrigerator with Water Dispenser &times; 1, Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1, Kenwood 2 Slice Toaster w/ Removable Crumb Tray, Stainless Steel, 900W | TCM01.A0BK &times; 2, Geepas 8-inch Rechargeable Fan with Night Light, GF21157 &times; 3, LG GN-Y331SLBB 194(L) | Single Door Refrigerator | Inverter Compressor | Moist Balance Crisper™ | Large Capacity &times; 1, JBL Bar 500: 5.1-Channel soundbar with MultiBeam™ and Dolby Atmos® &times; 3, Decakila 5L, 220-240V, Electric Pressure Cooker, 900 Watts, KEER039M &times; 1, HP V22FHD 21.5 Inch Monitor &times; 2, SPJ 7 Kg Twin Tub Semi-Automatic Washing Machine &times; 2, GEEPAS Cordless Window Vacuum Cleaner | 3-in-1 Spray Wipe Vacuum for Streak-Free Cleaning Mirrors Tiles &amp; Shower Screens | 35min Runtime 140ml Removable Tank LED Indicator Quick Charge &times; 1, LG GC-J247SQRS 635(L) | Side by Side Refrigerator | Inverter Linear Compressor | DoorCooling™ | UVnano™ &times; 3, Nikon Z30 Mirrorless Camera with 16-50mm Lens &times; 1, Geepas Smart Body Fat Scale GBS46522 &times; 1, Geepas Hot, Cold And Normal Water Dispenser with cabnet GWD17039| 3 push up Tap options,fast cooling &times; 3, Geepas Portable Mini Air Cooler, 750 Ml, 3 Speed Options, LED Night Light, GAC16015 &times; 2, LG 86-inch 4K UHD Smart LED TV; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 3, Samsung 7/5kg Front Load Washer / Dryer Combo, with Eco Bubble | WD70TA046BX &times; 2, LG GL-F602HLHU 410(L) | Top Freezer Refrigerator | Inverter Linear Compressor | Smart ThinQ™ | LINEAR Cooling™ &times; 1, Beko 231L Refrigerator, Top Freezer, No Frost, RDNT231I50SUK &times; 2, LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 3, Geepas GeeBike 10\" Electric Scooter with Suspension- GEST63087/ Smart and Fast, Foldable, Digital LED Display, Brake Lights/ Adjustable Speed Control &times; 3, Hopestar Party One, 80 Watts &times; 5, WAHL Professional Super Taper Clipper Set &times; 2, Samsung 511L RF48A4000B4 Twin Cooling Plus™ Multi Door Refrigerator, Gentle Black Matt &times; 2, JBL PartyBox On-The-Go - Portable Karaoke Party Speaker w/ Wireless Microphone &amp; Wireless Two Microphone System, Dual-Channel Receiver &times; 1, Geepas 4-in-1 Food Processor, 650W, GSB6147 &times; 1, Geepas GTR56026 14 in1 Grooming Kit - Magnetic Suction Charging Mode| 60 Minutes Working | Lithium Battery| Indicator Life| Ideal for Short &amp; Long Hair &times; 2, Decakila Hot Air Styler, KEHS033R &times; 1, LG 50-inch (126cm) 4K UHD AI TV (UT80), α5 Gen7 AI Processor, 4K Upscaling, Dynamic Tone Mapping &times; 1, LG 43-Inch Full HD Smart LED TV w/ Digital Receiver &times; 1, Samsung CU8000 50-inch Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 2, Geepas Instant Water Heater, Vertical Design, 100 CVX (GSW61170) &times; 4, Midea 6KG Front Load Washing Machine, BLDC Inverter Motor, 1400 RPM, 15 Programs, Fully Automatic with Lunar Dial &amp; LED Display, MF100W60/T-IN &times; 1, TCL 270Liters Top Mount Refrigerator F270TM - Energy Efficient and Spacious Storage &times; 2, Moulinex Turbo Cuisine Maxi Fast Multicooker, 7.6 Litres, CE777827 &times; 1, Titan 60cm Built-in Gas Hob, 4 Burners, TN-BIHVC6400BA &times; 2, CHiQ 10kg Washer Dryer Combo &times; 1, Beko 60x60cm Cooker FDF63110DXSL; 3 Gas + 1 Electric Plate, Double Electric Oven + Grill, Fan Assisted, Cast Iron Pan Supports, Flame Failure Device, Pizza Tray, Inox Finish &times; 1, Geepas GMS11181N Portable Bluetooth Speaker – 10W, RGB Lights, FM Radio, USB/TF, TWS Pairing &times; 1, Geepas GK38013 Double Layer Electric Kettle 1.7L &times; 1, Hisense 270 Ltrs 2-Door Top Freezer Refrigerator with Water Dispenser, Defrost, Silver, RD-27DR &times; 3, Tefal Compact Power XXL Canister Vacuum Cleaner | TW4825HA &times; 2, IQRA 90cm Built-in Gas Hob, 5 Burners, Glass, Flame Failure Device, Auto-Ignition, Cast Iron, IQ-KH5096G &times; 1, Beko 206L Fridge Freezer, Freestanding with Top Freezer, BAD285KE &times; 2, Haier 366L Top Mount Refrigerator, Net 357L, Twin-Inverter, DEO Technology, HRF-385BS &times; 1, TCL 545 Liter Chest Freezer, Silver, F545CF &times; 2, Blueflame Cooker, 50x50cm, 2 Gas Burners and 2 Electric Plates, Electric Oven, Stainless Steel, C5022E–I &times; 2, Samsung DU7010 50-inch Crystal UHD 4K Smart TV with Bluetooth, Dolby Atmos, HDR &amp; Voice Assistant &times; 3, Geepas- 16\" Metal Stand Fan, Adjustable Height Fan, 50W, GF9611 | Horizontal Oscillation | 3 Speed Settings | 4pcs Aluminium Blades | Ideal for Home, Office, Etc &times; 1, Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 700 Watt | RCM45 &times; 4, Sony SRS-XP500 X-Series Wireless Portable Party Speaker w/ BLUETOOTH, Karaoke, USB, IPX4 Splash-resistant, 20 Hour-Battery &times; 1, Decakila 2-Slice, 700 Watts Toaster, KETS001W &times; 1, Samsung HW-S800B 3.1ch Soundbar Wireless Dolby Atmos, Ultra-slim &times; 4, Geepas 32″ LED Digital TV, Inbuilt Free To Air Decoder, GLED3201EHD, HDMI, USB Ports, AV Mode &times; 1, LG 75-inch (NanoCell 75 Series) 4K Smart UHD NanoCell TV | 75NANO75; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Aftron 40L Portable Air Cooler AFEAC4540B &times; 1, Samsung 11kg Front Load Washing Machine with Ecobubble and AI Control, WW11CG604DLB &times; 2, Hisense 9,000 BTU Portable Air Conditioner &times; 1, HP Color LaserJet Pro MFP M282nw Wireless Color Multifunction Printer &times; 1, 2-Way Splitter Adaptor &times; 1, Lenovo S22E 21.5 Inch Monitor. &times; 1, Samsung 65-Inch DU7010 Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1, Haier 333L Top Mount Refrigerator, Twin-Inverter, DEO Technology, HRF-355NS &times; 1, Decakila Mug Tumbler, KMTT024L &times; 1, Beko RDNT251I50S Top Mount Freezer, 251L - Silver &times; 1, SPJ 559L 4-Door Frost Free Refrigerator, Stainless Steel &times; 1, Kenwood Coffee Machine, 6 Cup Coffee Maker, 900W, CMM05.000BM &times; 1, CHiQ 40-inch Full HD LED TV with Digital Free-to-Air Receiver, USB, HDMI &times; 1, Tefal Easy Fry XXL 2in1 Digital Dual Air Fryer &amp; Grill, 6.5L or 3.25L x2 Drawer Capacity, 8 Programs, Black, 1830 W, EY801827 &times; 1, HP Smart Tank 581 All-in-One Printer &times; 1, Canon EOS 850D (Rebel T8i) DSLR Camera &times; 2, Hisense smart TV romote &times; 1, IQRA 60cm Kitchen Extractor Hood; Touch Panel, LED Lamp, Motion Sensor, IQ-KC600 &times; 4, Geepas GRC35011 1.5L Rice Cooker 500W, Steam Vent Lid &amp; One Touch Operation &times; 1, Bosch PRS9A6D70 Gas Hob, 90 CM, 5 Burners, Series 8, Ceramic Glass - Black &times; 1, Sony Alpha 7C II ILCE7CM2LBQAF1 Mirrorless Camera with FE 28-60mm F4-5.6 OSS &times; 1, Electrolux 90*60cm 5 Gas Cooker with Multifunction Electric Oven and Grill, Rotisserie, Digital Display, Steel, EKK925A0OX &times; 1, Samsung 55-inch Q60D QLED 4K UHD Quantum HDR Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos, Free-to-Air Decoder &times; 3, Beko 2 Slice Toaster, 900W, TAM8202T &times; 1, Samsung 20 Litre Solo Microwave Oven w/ Ceramic inside, ME731K-B/EU &times; 2, CHiQ 9,000 BTU Wall Split Air Conditioner &times; 3, ADH 190 Litres 1-Door Refrigerator &times; 1, Beko 60cm Wall-Mounted Chimney Hood, BHCB66641BBHS; Touch Control, Auto-Shutdown, Black Glass &times; 1, LG 530L French Door Refrigerator, Side by Side, GC-B22FTLVB &times; 2, HP 27″ FHD IPS LED Monitor, M27FW &times; 2, Decakila Cordless Hand Mixer, 90 Watts, 2000mAh, 7 Speeds, KMMX006B &times; 1, Samsung 18000 BTU 5.2KW 4 Way Ceiling Cassette Indoor AC | AC052 TN4DKC / TXADKC &times; 1, ADH 130 Litre Double Door Top Freezer Refrigerator, Black &times; 2, CHiQ 36,000 BTU Floor Standing AC &times; 2, MOULINEX Sandwich Maker, Ultracompact Cutting Plates, 700 Watt | SM154042 &times; 1, Krypton Stand Fan with Remote Black, 16 Inches, KNF6274 &times; 1, ADH 390 Litre Showcase Display Freezer &times; 1, Titan 90x60cm 4 Gas + 2 Electric Freestanding Cooker w/ Electric Oven, TN-FC9420XBS &times; 2, Decakila Potato Cutter, KMTT085W &times; 1, Samsung HW-H600 4.2Ch Sound Stand w/ Dual Built-In Subwoofers, NFC, Bluetooth, HDMI &times; 1, LG 32-inch HD LED Digital TV w/ Free-To-Air Decoder, 32LM550BPVA &times; 1, Geepas GVC2598 2300W 21L Drum Vacuum Cleaner - Portable ABS/Copper/Iron | Dust Full Indicator with Parking Position | Air Blower Function with Adjustable Suction Power &times; 1, Geepas 1200 W Wall Mounted Hair Dryer-GHD86073/ High Speed, Quiet Sound and Hot and Cold Function, 2 Speed Settings/for Quick Drying,Overheat Protection/Perfect for Home &amp; Hotels &times; 1, Canon Scanner, A4 Flatbed Scanner |LIDE300 &times; 3, SPJ 410 Litre Chest Freezer &times; 2, LG 24000 BTU Window Air Conditioner &times; 3, Hisense 1.5L Jar Blender , 500W, Stainless Steel Blades, 2-Speed Control with Pulse, White, H15TBWSES1A &times; 3, Geepas 2.1 CH Multimedia Speaker System with Remote Control- GMS8507N/ USB, SD, FM, Bluetooth and Karaoke Function/ 50000 W PMPO Audio Experience, Digital LED Display &times; 1, Canon iR2224 - A3 Monochrome Digital Laser, Auto Duplex Photocopier, Printer &amp; Color Scanner &times; 2, Geepas Digital Infrared Cooker, GIC33013 &times; 1, Decakila 20L Solo Microwave Oven, KEMC007W &times; 1, Geepas GSM43041 Kitchen Machine, 10L Capacity Stainless Steel Bowl Stand Mixer, 2000w, 6 Speed Control, 3 Mixing Tools; Whisk, Beater &amp; Dough Hook &times; 2, Canon imageRUNNER 2206N Multifunctional A3/A4 Printer (Print, Copy and Scan) &times; 1, LG 70-inch NanoCell Smart 4K Ultra HD TV; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Samsung 55-inch Neo QLED 4K Smart TV | QA55QN85D &times; 4, Panasonic 1800w Light & Easy Steam Iron (NI-M300TVTH) - Violet &times; 2, TEFAL Pressure Cooker, Secure 5 Neo 8 L Pressure Cooker, 5-security systems, Stainless Steel, P2584402 &times; 2, Panasonic 1000W Juicer with Full Metal spinner for Maximum Juice extraction; 2.0L Large capacity - MJ-CB600 &times; 2, Decakila Drinking Bottle Set, KMTT027B &times; 1, Skyworth 43-inch E3E Android Smart TV &times; 2, Hisense Cooker 2 Gas Burners, 2 Electric Plates 50x50cm HF522GEES, 68L Electric Oven & Grill &times; 1, Samsung U8000F 190.5 cm (75 inch) 4K Ultra HD LED Smart Tizen TV with Google Voice Assistant (2025 model) &times; 2, Bosch Built-in Serie 4, 90cm Island Chimney Hood, Stainless Steel | DIB97IM50M &times; 1, Sony Mirrorless Alpha 6700 ILCE6700LBQAF1 with E PZ 16-50mm F3.5-5.6 OSS &times; 1, Geepas Air Cooler, 45 Litre, Heavy Duty, GAC9603 &times; 1, LG 635L Side-by-Side Door Refrigerator, LinearCooling™, GC-J257SQRS &times; 3, Epson EcoTank, All-in-One Ink Tank Printer, L3250. &times; 1, Samsung 9Kg Series 5 Heat Pump Tumble Dryer with OptimalDry™, A++, Grey, DV90TA040AX/EU &times; 1, ADH 350Ltrs Chest Freezer &times; 1, ADH 130L Top Mount Freezer Fridge &times; 1, Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12\" DJ Speaker &times; 3, GEEPAS GLED4323/TSFHD 43\" LED / Smart TV DVBTS/S2/Eshare &times; 1, SPJ 700L 2-Door Beverage Upright Cooler &times; 1, Braun CareStyle Compact Pro Steam Generator Iron, IS 2561 &times; 1, Tefal X-Clean 4 GF5035M0 - Wet and Dry Cordless Vacuum Cleaner, Timesaving 2-in-1 Washing and Vacuuming, Smart Dirt Detection, Extra-Long Running Time &times; 2, ADH 358 Litre 2-Door Top Freezer Refrigerator &times; 2, CHiQ 150 Litre (Net 112L) 2-Door Top Freezer Refrigerator, Black CTM150DBIK3 &times; 2, HP Color LaserJet Pro MFP M182n &times; 1, Decakila Cordless Vacuum Cleaner, 140W, 0.8L, CUCV001W &times; 1, Venus 50cm Freestanding Cooking Range, VC5522 &times; 3, Hisense 34-inch G6H Curve Ultrawide Gaming Monitor, 165Hz &times; 1, JBL Live Free NC+ TWS True Wireless Noise Cancelling Earbuds &times; 1, SPJ 3-Taps Top Load Water Dispenser with Bottom Cabinet; Hot, Cold, and Normal, Grey &times; 1, Beko 60x60cm FSM63330DXDSL Cooker | 3 Gas + 1 Hotplate | Multifunction Electric Oven | Flame Safety &times; 2, Geepas Steam Iron, 2000w - 2400w, GSI7788 &times; 1, Hisense 65-inch 4K UHD Smart LED TV, VIDAA, 65A6N; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth &times; 1, Beko 100 Litres Chest Freezer, BCF 1111 UK KE &times; 1, Geepas Electric Barbecue Grill, 38*22CM, 2000W | GBG877 &times; 1, Samsung 850L Top Freezer Fridge with Twin Cooling™, Water Dispenser, Touch Control Panel, RT85K7110SL &times; 1, Samsung 75-Inch QN800D Neo QLED 8K Smart TV QA75QN800D &times; 2, Titan 18,000 BTU Wall Split Air Conditioner, R410a, In-Built Filter &times; 2, HP Laser 107w Printer &times; 1, Beko 65\" 4K Ultra HD Smart LED Google TV, Black, BL65 UHD 9823 C &times; 1, Bosch Built-in Wall Mounted Chimney Hood, 60 cm, Stainless Steel | DWP64CC50Z &times; 1, Bosch Serie 6 PCP6A5B90 58cm Gas Hob - Stainless Steel &times; 2, TEFAL Dual Easy Fry Air Fryer, 8.3L, EY901840 &times; 1, Sony Xplōd XS-GT6938 Car Speaker &times; 1, Decakila Kitchen Scale, KMTT012B &times; 2, Geepas Hair Dryer, 2 Speed Setting, 2000W, GHD86018 | Removable Filter | Hang-up Hook | Cool Shot Function | 3 Heat Settings | Travel Friendly Dryer &times; 1, Geepas GK38074-CR Electric Kettle, 1.8L Stainless Steel, 3000w Fast Boil, Water-Level Indicator, Auto Shut-Off, Cream &times; 4, JBL PartyBox 110 - Portable Party Speaker with Built-in Lights, Powerful Sound and deep bass &times; 1, Krypton KNK6062 Double Layer Stainless Steel Kettle, 1.8L | Stainless Steel Kettle | Boil Dry Protection &amp; Auto Shut Off Feature | Ideal for Hot Water, Tea &amp; Coffee Maker | 1500W &times; 1, TCL 153 L Top-Mount Refrigerator F153TM with Inverter Technology and 4-Star Energy Efficiency &times; 3, Hisense 500 Litres 1-Door Display Cooler, FL-50FC &times; 1, Tefal Compact Power XXL 2.5L Dust Cont Bagless Vacuum Cleaner | TW4853HA &times; 1, Geepas 4-Slice Sandwich Toaster (GST5391) &times; 1, Hisense 10KG Automatic Front Load Washing Machine, Allergy Steam, Pause and Add, Steam Wash, WFBJ1014VS &times; 1, Geepas 120 L Showcase Chiller- GSC1223, Quick Cooling with Low-E Glass Door, Low Noise and Low Voltage Consumption, Equipped with Wire Shelves &times; 4, Samsung Sound+ HW-MS651 Wireless Smart Soundbar &times; 2, Indesit Innex 9kg/6kg Washer Dryer, 1400RPM, 14 Wash Programs, Quick Wash, XWDE 961480X S GCC F101640 &times; 1, Geepas GK5454 1.8 Litre Electric Kettle, 1800 Watts &times; 1, Braun Hand Blender, 450w, Stainless Steel Blades with Plastic Beakers + Whisk &amp; Chopper, MQ10.202MWM &times; 1, CHiQ 55-inch QLED 4K UHD HDR Quantum Dot Android TV, Built-in Wi-Fi, Bluetooth, Chromecast, Dolby Atmos &times; 1, Samsung NV68A1140BK 60cm (68 Litre) Built-in Electric Oven, Catalytic Cleaning, Black Glass &times; 2, Decakila Stand Mixer, 250 Watts, 3.5 L, 5 Speeds, KEMX012B &times; 1, Geepas 4\" Duct Fan- GF21194/ 2200 RPM, Exhaust Ventilation Fans/ 13 w, Perfect for Residential and Commercial Use, for Bathrooms, Kitchens &times; 1, Smartec 32-Inch HD Android Smart LED TV | SS32 &times; 1, Panasonic 1.7 Litre Stainless Steel Kettle, NCK301, 2200 Watts &times; 1, Samsung 10KG Front Load Washing Machine WW10DG5U34ABNQ &times; 2, Hisense 11Kg (Net 10.5kg) Automatic Top Load Washing Machine, 10 Programs, Self-Programming, Extra Rinse, Time Delay, WTCS1102T &times; 2, ADH 175L Top Mount Freezer Double Door Refrigerator &times; 4, Roch 210 Litre 2-Door Toop Freezer Refrigerator &times; 2, Moulinex Blender BlendForce 2, 600 Watts with 4 blades - LM423127 &times; 1, Tefal Steam Iron, 1200 Watt, FV1953M0 &times; 1, Samsung 26 Kg Front Load Smart Washing Machine, Bespoke AI Wash, AI Ecobubble, Touchscreen, Dark Steel, WF90F26ADSNQ &times; 1, Toshiba 43-inch Full HD LED TV w/ Digital Free-to-Air Receiver &times; 1, ADH 700 Litres Double Door Chest Freezer &times; 1, Geepas Coffee Grinder, Stainless Steel, 250W | GCG5440 &times; 1, Decakila Pump Espresso Coffee Maker, 1.5L, 850w, KECF009B &times; 3, Decakila 400w Portable Spot Cleaner, 1.1L, 9kPa Suction Carpet Cleaner, CEVC006W &times; 2, Kenwood Deep Fryer, 3Litre, 2000 Watt, w/ View Window &amp; Stainless Steel Lid | DFM50 &times; 1, Krypton Electric Oven with Rotisserie &amp; Convection, 2800W, KNO6356 100L Capacity, Black &times; 3, Tefal Compact Power XXL Bagless Vacuum Cleaner, TW4B71HA &times; 1, Decakila KEFC012W Air Cooler: 130W Evaporative Air Cooler with Left &amp; Right Automatic Control &times; 1, Hisense 120 Litres (Net 90L) Single Door Fridge, Energy Class A+, 113KWH/YR, RR120DAGS (Silver) &times; 3, Panasonic Steam Iron, 1800w, (NI-M300TATH) - Blue &times; 1, Venus 25 Liters Microwave with Grill, Heavy Duty, 1200W, VMO25GS &times; 1, Hisense 266 Ltrs 2-Door Top Freezer Refrigerator, Frost Free, Silver, A+, RT266N4DGN &times; 1, Panasonic Garment Steamer, Quick Care with Powerful Steam Upto 40g/min, 2000W, 1.5X Wider Head, Large 1.5L Detachable Tank, Glove, NI-GSG060WTH &times; 1, Kenwood 2-in-1 Sandwich Maker with Grill, Non Stick Multifunctional Plates, SMP01.A0WH &times; 1, LG 635L Side-by-Side Fridge, UVnano® Water Dispenser, GC-X257CQES &times; 1, HP OfficeJet Pro 7720 Wide Format All-in-One A3 Printer &times; 1, Samsung 7Kg Front Load Washer w/ Eco Bubble | WW70J4260GS &times; 1, Panasonic 25L Solo Microwave Oven, NNST34NBKPQ &times; 1, Hisense 65-inch 4K QLED Smart TV with Quantum Dot, Dolby Vision &amp; Atmos (65Q6Q) &times; 1, Geepas GMS7493N 2.1 Channel Home Thaeater System (Black) &times; 1, BlueFlame Cooker, 50x55cm, 3 gas burners and 1 electric plate with Electric oven, S5031ER-I &times; 1, Beko Steam Iron, Ceramic Soleplate, SIM3126R &times; 1, TCL 32-inch Android Smart TV, 32S5400AF; Bazeless w/ Bluetooth, Dolby Audio, HDR, YouTube, Netflix &times; 1, Geepas 5 Liter Electric Thermo Pot- GEV27026,Stainless Steel Inner Pot, 8 Stage Temperature Selection,Automatic Stop,Purified Water Mode,Beige &times; 1, Epson EcoTank, All-in-One Ink Tank Printer, L3210 &times; 1, Tefal Non Electric 900Ml Manual Chopper, Transparent/Black/Green, K1320404 &times; 1, Hisense 7 Kg Twin Tub (Top Load Semi-Automatic) Washing Machine, WSBE701 &times; 1, LG 18K BTU Single Cassette, Inverter Air Conditioner (R410) &times; 1, GEEPAS GK38044 STAINLESS STEEL ELECTRIC KETTLE &times; 1, Skyworth 55-inch 4K UHD Android Smart LED TV, SUC9300; Android TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1, BlueFlame Cooker, 60x60cm, 2 Gas Burners and 2 Electric Plates with Electric Oven, S6022ER–IP &times; 1, Braun Juicer, 2.0 Litre Pulp Container, 900 Watt | J500 &times; 1, Hisense Party Rocker One Plus, 300W Portable Party Speaker with Subwoofer HP110 &times; 2, Braun 2 Slot Toaster, 900W, 8 Browning Settings with Bun Warmer, HT1010BK &times; 1, Bosch Serie | 4 60 cm, Built- in, Fully-Integrated Dishwasher, 5 programs, 12 Place settings | SMV50E00GC &times; 3, HP Envy X360 Convertible 15m-es1xxx, Intel Core i5-1155G7, 8GB RAM - 512GB SSD, 11th Generation, Touchscreen &times; 2, Cooker Installation Service &times; 1, Hisense 8 kg Automatic Top Load Washing Machine, WTJD802T &times; 2, Kenwood Hand Mixer (Electric Whisk) w/ 5 Speeds + Turbo Button, Twin Steel Kneader &amp; Beater, 300 Watt | HMP20 &times; 1, Braun Steam Iron, 2700W, SI5037VI &times; 1, Tefal Easy Steam Iron, 1200 Watts | FV1941M0 &times; 1, LG Commercial Washing Machine, Front Load, 10KG, Stackable, FH069FD2MS &times; 1, Geepas GMS11169 Professional Active Speaker System &times; 1, Samsung The Premiere LSP9T 4K Triple Laser Projector &times; 1, Panasonic 7.2Litre Rice Cooker, 2500Watt | SRGA721 &times; 1, Decakila 6.0 Litre Pressure Cooker, KMER017M &times; 2, Geepas 1580w Garment Steamer, 1.5L Tank, 35g/min Steam Output, Anti-drip system, Auto Off Adjustable Poles, 3 Steam Levels, Overheat & Thermostat Protection, GGS25022 &times; 1, HP E27 G5 FHD Monitor (27″) &times; 1, Beko Built-In Hob (Dual-Fuel, 60 cm), BHG901 &times; 2, Pocket Shaver GSR57518UK &times; 2, Geepas 1600W Powerful Travel Hair Dryer with Foldable Handle | Fast Drying Result | 2-Speed &amp; 2 Temperature Settings | Cool Shot Function For Frizz Free Shine &amp; Elegant Concentrator. &times; 1, Kenwood Blender with Multi Mill, 650W, 2 Litres, BLP41.COWH &times; 1, INGCO Industrial High Pressure Washer, 2500W &times; 3, Panasonic, Titanium Coated Sole Plate Steam Iron, 1550W, NI-M250TGTH &times; 1, Gree 30 Litre Dehumidifier &times; 1, Geepas 1400w Wet and Dry Vacuum Cleaner- GVC19032 | 30 L Dust Bag Capacity, 5 M Cord Length | 3-in-1 Function, Wet, Dry and Blow, Powerful Suction | Accessories Storage Function &times; 1, Decakila Portable 90w Vacuum Cleaner, CMPV003B &times; 1, Geepas 4-Slice Bread Toaster, GBT9895 &times; 2, Hisense 22-inch Monitor, 22N3HN, Full HD, 1080p, HDMI, VGA &times; 2, Geepas GLS86053 Rechargeable Ladies Grooming Set | 4-in-1 | Electric Hair Remover | Detachable Shaving Head| On/Off Switch| LED Indicator Light| Ideal to Remove Unwanted Hair &times; 1, Geepas 2-Slice Bread Toaster, White | GBT36515 &times; 1, Geepas Stainless Steel Meat Grinder, GMG1909 &times; 1, Dell S2721D 27 Inch Antiglare Monitor &times; 3, Geepas GRF5109SXHN 500L Double Door Refrigerator - Digital Temperature Control Quick Cooling &amp; Long-lasting Freshness, Recessed Handle, Low Noise, Low Energy Consumption, Defrost Refrigerator &times; 1, Hisense 720 Liters 2-Door Side-by-Side Refrigerator with Water Dispenser and Ice Maker, WiFi Connectivity, RC-72WS4SA &times; 1, IQRA 90x60cm Cooker 4 Gas+ 2 Electric Plates, Auto Ignition Stainless Steel, Electric Oven and Grill, Rotisserie IQ-FC9042-SS &times; 1, Samsung 7Kg Front Load Washer w/ Hygiene Steam | Series 4, WW70T4020CX &times; 1, Kenwood 2600 Watt Steam Iron w/ Ceramic Soleplate, White / Blue | STP75.000WB &times; 1, Aftron 250 Litre Chest Freezer, AFF250H &times; 2, Food Processors 2 in 1 by Geepas , GSB5456 , 240 Volt &times; 1, LG 30(L) “Solo” NeoChef Microwave Oven, Smart Diagnosis™, EasyClean™, Smart Inverter, Black, MS3032JAS &times; 2, Moulinex Deep Fryer, 3 Litre, 2100 Watts, Gray | AM480027 &times; 1, CHiQ 8 Kg Front Load Washing Machine &times; 2, Panasonic Hand Blender, 600 Watt | MXGS1WTZ &times; 1, Geepas Electric Kettle, Stainless Steel, 1.7 L, GK9902 &times; 1, Lenovo 27 G27C-10 (Curved Gaming) Monitor &times; 2, SPJ Free Standing Cooker 50x50cm, 3 Gas Burners + 1 Hotplate, Dual Fuel Oven &times; 2, IQRA Built-in Gas Hob, 4 Burners, Flame Failure Device, Auto-Ignition, Glass Top, IQ-KH4002GL &times; 3, Skyworth 75-Inch 4K UHD Android Smart LED TV | 75SUC9300; HDR, Dolby Atmos, Google TV, Chromecast, Bluetooth &times; 1, LG 5.1Ch DVD Bluetooth Multi Region Home Theatre System, 330 Watt, LHD427 &times; 1, Samsung 55-inch Class QLED Q60C Series 4K UHD Dual LED Quantum HDR Smart TV, QA55Q60C; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos, Free-to-Air Decoder &times; 1, Sony Xplōd XS-GT6937 car speaker &times; 1, TEFAL Handstick Vacuum Cleaner | X-PERT 7.60 | 140 W Cordless Vacuum Cleaner | Powerful | Ultra-Lightweight | Long-Lasting Battery | TY6A35HO &times; 2, Tefal Eco Master Steam Iron, 24g/min, 1800 Watts | FV1721M0 &times; 1, Tefal Ultragliss Anti-Calc Plus Steam Iron, 2800W, FV6872M0 &times; 1, Krypton Drum Vacuum Cleaner with Dry &amp; Blow Function/Large Dust Bag Capacity &amp; Dust Bag full indicator, Wider &amp; Flexible Hose, 21 L, 2300 W, KNVC6107 &times; 1, Hisense 75WR6BE 75-Inch Advanced Interactive Display - Conference LED Touch Screen &times; 1, Samsung 511L RF48A4000M9 Twin Cooling Plus™ Multi Door Refrigerator, Silver &times; 1, Decakila 1.5 L Rice Cooker, 500w, KEER033W &times; 2, Samsung The Premier LSP7T 120 inches 4K Smart Laser Projector &times; 1, Geepas Coffee Grinder - GCG41022, 150w Powerful Motor, Durable Jar, Plastic Housing and Stainless Steel Blade, Ergonomic Grip, Press Down Operation, Black &times; 2, Beko Built-In Vitroceramic Hob, BHD408 (30 cm) &times; 1, Royalford RF8427 Water Dispenser – Portable Drinks Beverage Serving Dispenser Tap Juice Water Carrier &times; 2, Decakila 300w Hand Blender, KEJB025W &times; 1, Beko Toaster, 2 Wide Slots, 5 Manual Browning Levels, 900 Watts, Black - TAM 8202 B &times; 2, TCL 675 Liter Chest Freezer, Silver, F675CF &times; 1, Moulinex EasyRice 10-Cup 1.8 Litre Rice Cooker, MK123D27 &times; 1, Dell 24 Inch FHD Computer Monitor &times; 2, Kenwood 9L Capacity Automatic Air Fryer with Grill HFP92.000BK Black &times; 1, IQRA 60x60cm Cooker, 3 Gas Burners + 1 Hotplate, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6011-BLK &times; 2, Geepas 3-In-1 Blender, Powerful Motor 600W, GSB44034N &times; 2, Samsung 13Kg Top loading Washer with Wobble Technology, Digital Inverter Technology, Gray, WA13CG5441BY &times; 2, Epson EcoTank L8050 Wireless Color Photo Printer &times; 1, Samsung 635 Ltrs Side by Side Refrigerator w/ Water Dispenser &amp; Ice Maker, SpaceMax Technology, Silver, RS64R5111M9 &times; 2, Beko 90cm Built-in Cassette Hood, CTB 9250 XH, Cooker Hood (Telescopic, 90 cm) &times; 1, Moulinex Sandwich Maker, 700 Watts, 3-in-1 Panini, Sandwich + Waffle Maker, SW612543 &times; 1, Panasonic 2-in-1 Bottom Loading Water Dispenser with Ice Maker, SDM-WD4534BG, Auto ice Making, Dual Touchless, Big Ice Capacity, UV LED Sterilization, Touch Pad Dispensing &times; 1, Geepas 1.5 Liter Rice Cooker With Steamer, 500W, GRC4334 &times; 1, ADH 1,035 Litres 3-Door Beverage Chiller &times; 1, Geepas GK-38073 BK Electric Kettle – 3000w Fast Boil, 1.7L Stainless Steel, Auto Shut-Off &amp; Boil-Dry Protection &times; 1, LG 8Kg Front Load Washing Machine | AI DD™ | Steam™ | ThinQ™ | F4V3TYPOWE VIVACE &times; 2, SPJ 3-Taps Top Load Water Dispenser with Refrigerator; Hot, Cold, and Normal, Black &times; 1, Decakila Kitchen Scale , KMTT014P &times; 1, Geepas 90\" UHD 4K QLED TV, Android, Youtube, Netflix, Prime Video, Chromecast Built-in, Free To Air Decoder, HDMI and USB Ports HQ Sound, AV Mode, GLED9017CQLED &times; 1, Geepas Stainless Steel Electric Kettle (2.5L, Silver, 1600W), GK38028 &times; 2, De\'Longhi BCO260CD.1 Combined Espresso Machine, 2-in-1 Coffee Pump and Coffee Maker, Black &times; 2, Tefal Turbo Cuisine Maxi Multicooker, 7.6 Litre, CY777865 &times; 1, PlayStation 5 Console &times; 1, Hisense HS3100 3.1Ch Soundbar with Wireless Subwoofer, 480w, Dolby Digital Plus, DTS Virtual:X, Bluetooth 5.3, Roku TV Ready, HDMI/USB/AUX (2024 Model) &times; 1, Geepas Slim Hood with Charcoal Filter- GHD611CS/ Sleek and Stylish Design, Powerful Suction, and Adjustable Speed Setting &times; 1, ADH 360 Litres Showcase Display Freezer &times; 1, Geepas Professional Speaker-GMS11161-Portable Handle with 3600 MAh Huge Battery | TWS Connection &amp; Compatible with BT/USB/AUX/FM/Micro SD | Ideal for Home, Hotels &amp; Outdoor Use &times; 1, Geepas GMP15015 Dual UHF Wireless Microphone System – 2 Mics, 100 Channels, Rechargeable &times; 1, Samsung 13-Place Freestanding 60 cm Dishwasher, Series 11, WiFi Enabled, DW60BG730FSLEU &times; 1, Beko Table Blender (800 W, 1.75 L) , TBN81808BX &times; 1, BlueFlame Cooker, 60x60cm, 2 Gas Burners + 2 Electric Plates w/ Electric Oven, S6022ERF – IP &times; 1, Venus 20 Liters Solo Microwave, Heavy Duty with 700W, VMO20SS &times; 1, Geepas 50 Litre Electric Water Heater, Horizontal, GSW61167 &times; 2, Bosch 25L Series 6 Built-in Microwave Oven, BEL554MS0B &times; 1, TV Installation Service &times; 1, CHiQ 8 Kg Washer Dryer Combo &times; 1, Geepas GRH28529 Ceramic Heater, Portable Electric Space Heater – Mini PTC Fan Heater for Desks &amp; Tables with 2 Heat Settings 1000/1500W - Automatic Oscillation, Thermostat &amp; Safety Cut-Off - 1500W, Silver &times; 1, Klass Single-Phase Automatic Voltage Regulator (KL-AVP30) &times; 1, Samsung 18kg Front Load Washer with Smart AI Control, Add Wash, Air Wash, WF18T8000GV &times; 1, LG 15 Kg Front Load Commercial Dryer with WiFi (RV1840CD7) &times; 2, SONY HT-S40R 600w 5.1ch Home Cinema w/ Subwoofer, Wireless Rear Speakers &times; 3, Braun Multimix 2 In 1 Hand and Stand Mixer, 400 Watts with Bowl | HM1070WH &times; 2, IQRA 60x60cm Cooker, 2 Gas Burners and 2 Hotplates, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6221-BLK &times; 1, Blueflame Cooker 50x50cm, 2 Electric Plates and 2 Gas Burners with Electric Oven, C5022E– B &times; 2, Hisense Party Rocker 160 Speaker &times; 1, Bosch 90 cm Under Cabinet Range Hood, Silver - DHU965CGB &times; 1, Royalford Cork And Can Opener 1 Piece, Multicolor. &times; 1, Geepas GK38074 BK Electric Kettle – 1.8L Stainless Steel, 3000W Fast Boil, Water-Level Indicator &amp; Auto Shut-Off &times; 1, LG GCFB507PQAM 519L Side by Side Refrigerator, Smart Inverter Compressor, Multi Air Flow, Total No Frost &times; 1, MOULINEX Juice Extractor Frutelia Plus, 350W | JU370127 &times; 1, IQRA 90cm Built-in Gas Hob, 5 Burners, Glass, Flame Failure Device, Auto-Ignition, Cast Iron, IQ-KH5068BG &times; 2, Geepas GGC-31018 2-IN-1 Built In Gas Hob-Double Burner Gas Stove with Sabaf Burners,| Auto Ignition System, LPG Gas Stove| Black &times; 1, Geepas 3-in-1 Waterproof Lady Shaver Set, GLS57521UK &times; 1, Tefal XXL Dual Easy Fry 11L, XXL Dual air fryer, +8 people, spacious baskets up to 3kg, 7 pre-sets programs, Black, EY9428G0 &times; 1, LG 8KG/5KG Washer Dryer | 8KG Washing Machine | 5KG Dryer | Front Load | Inverter DD | Steamer Washer | ThinQ™ | F4J3TMG5P &times; 1, Krypton Garment Steamer With Adjustable Poles, Overheat Protection, White, KNGS6224 &times; 1, Kenwood 8kg Front Load Washing Machine w/ Rapid Wash, 15 Wash Programs, Delay Timer, Energy Class A+++, WMM08 &times; 1, Skyworth QLED 65-inch SUE9500 4K UHD Smart Android TV, Google TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1, VENUS 2400W Power with Vertical &amp; Steam Burst, Self Clean, Anti Drip, Ceramic Soleplate Steam Iron VSI 24 SB- Black &times; 1, Hisense 43 Inch 4K QLED Smart TV 43Q6Q (2025 Model), AI Smooth Motion, Wi-Fi, HDMI &amp; USB, Filmmaker Mode, AI 4K Upscaler Dolby Vision &times; 2, Geepas Grinder &amp; Drip Coffee Maker, 0.6L, 600W | GCM41512 &times; 1, TV Tilting Wall Bracket (for Screen sizes 42\" to 86\") &times; 2, Geepas Centrifugal Juice Extractor, 800W | GJE 5437 &times; 1, HP LaserJet MFP M236sdn Multifunction Printer &times; 1, Bosch Serie 8 HBG634BS1B Multifunction Electric Built-in Single Oven in Stainless Steel &times; 1, Hisense 65WR6BE 65-Inch Advanced Interactive Display - Conference LED Touch Screen &times; 2, Samsung The Freestyle Smart Portable Projector, 30-100\" (SPLSP3BLA) &times; 1, Philips Shaver 3000 Series, All-in-1 Wet & Dry Electric Shaver with Pop-Up Precision Trimmer &times; 1, LG 1000W 5.1Ch DVD Home Theatre System, LHD627 &times; 1, Geepas GMS8522 3.1 Channel Multimedia Speaker System | 40000W PMPO | Bluetooth| USB/SD/AUX Support | FM Radio| RGB Lights| LED Display| EQ Function &times; 2, Decakila 3 in 1 Breakfast Station; Bake, Fry, Prepare Coffee, KEEV003R &times; 1, Skyworth 100-inch 100A5D Pro UHD 4K Smart Mini LED TV, 100A5D &times; 1, Braun MultiQuick Hand Blender, 450W, Stainless Steel Blades with Plastic Beakers, MQ10.001MWH &times; 1, Titan 90cm Built-in 5 Gas Burner Hob, TN-BIH9500BA &times; 1, Hisense 24-inch Monitor, 24N3G-PRO, Full HD, 1080p, IPS, 100Hz &times; 1, Geepas Rice Cooker w/ Steamer, Stainless Steel, 1.8L, 700W, Non Stick, GRC4330 &times; 1, Geepas 3-in-1 Blender, 1.5Litres, 500W, GSB44017 &times; 1, LG 48,000 BTU Floor Standing Air Conditioner &times; 1, Krypton KNB6074 400W Blender, 2 In 1 with 1.5L Unbreakable Jar – Crusher, Grinder, Juicer| Powerful Motor |Over Heat Protection &times; 1, Geepas Cordless/Corded Steam Iron- GSI24015| Wet and Dry Steam Iron Box Handy Design with Powerful Burst Steam, Anti-Drip Function &times; 1, LG GN-C262SLBN 209(L) | Gross 225(L) | Top Freezer Refrigerator | Inverter Linear Compressor | LINEAR Cooling™| DoorCooling+™ &times; 1, HP V221VB 21.5 Inch Monitor &times; 1, Beko 60x60cm Gas Cooker, FSM61330DXDSL; 3 Gas + 1 Wok Burner, Fan-assisted Electric Oven + Grill, Cast Iron Supports, Flame Failure Device, Inox Finish &times; 1, Venus 90/60cm 4 Gas + 2 Electric Cooker Range w/ Electric Oven &amp; Grill + Cylinder Compartment | VC9642 &times; 1, IQRA 16-inch Wall Fan with Remote, 50 watts, 3 Speeds (IQ-WF019R) &times; 1, Beko BM04531B 45L Midi Electric Oven with Grill – Compact Countertop Electric Oven for Baking, Roasting &amp; Grilling, Ideal for Small Kitchens &times; 1, Geepas Stainless Steel Electric Kettle (1.8 Litres, Copper Color), GK38053 &times; 1, Hisense 6.3 Litre Air Fryer, 1700 W, with LED Display and Touch Control (H06AFBS2S3) &times; 1, Decakila 1.7 L, 2200 Watts, Electric Plastic kettle, KEKT027W &times; 1, TCL C2110FLG Front Load Automatic Washing Machine with Inverter Motor, 10 kg Capacity, DD motor, Add garment, Spray Wash, Drum Clean, Sound off function &times; 1, Decakila Cordless Hand Blender, 60 Watts, Stainless Steel Blades, KMJB037G &times; 1, Bosch Tall Integrated Frost Free Freezer w/ Fixed Hinge, 177.2 x 55.8cm | GIN81AEF0G &times; 1, MOULINEX Stand Mixer, 4.8 L, 800 W, QA160127. &times; 1, Tefal Kitchen Scale / Weighing Scale Optiss, White, BC5000V2 &times; 1, Samsung 40-Inch Full HD Smart LED TV | UA40T5300 &times; 1, Geepas Fan Heater, GFH28547 &times; 1, WAHL 5 Star Balding Clipper &times; 1, SONY Mirrorless Vlogging Camera with E PZ 16-50mm, F3.5-5.6 OSS, ZVE10L &times; 1, Beko BMO7031B UK MIDI Oven, Black - 70L &times; 1, Geepas Digital Air Fryer- GAF37532|11L CapacFries, Steak, Chicken, Cake, Meat, Bread|5.5 L Dual Baskets with Separator| Digital Display, Multiple Function,Dehydrate, Broil, others, 1-60 Min Timer &times; 1, LG 65-inch 4K UHD Smart LED TV, 65UQ80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1, Hisense Gross 120 Ltrs Double Door Top Freezer Mini Refrigerator | RD-12DR &times; 1, Beko 12kg/8kg Freestanding Washer Dryer with ProSmart Inverter Motor – 1400 rpm, Manhattan Grey &times; 1, Sony Bravia 55-inch 4K UHD Smart LED TV, Google TV, KD55X75K; Built-in Wi-Fi, HDR, Bluetooth, Built-in Chromecast, Dolby Atmos &times; 1, Geepas 12 Litre Digital Multi Cooker, 1600w, GMC35030 &times; 1, Beko 9kg Front Load Washing Machine, BAW389 UK; A+++, 1200 RPM, SteamCure, ProSmart Inverter Motor, AquaFusion, Manhattan Grey &times; 2, Kenwood 8-in-1 Food Processor, 750w Multi-Functional w/ 3 Interchangeable Disks, Blender, Whisk, Dough Maker | FDP03 &times; 1, Panasonic 9L Double Glazed Glass Toaster Oven | NT-H900 &times; 1, ADH 168L Top Mount Freezer Double Door Refrigerator &times; 1, Geepas GSB9890 4-In-1 Food Processor - Blender Juicer, 2-Speed With Pulse Function &times; 2, Kenwood Steam Iron, 1100 Watt, 130ML, Non Stick Plate, Blue | STP01.000WB &times; 1, SPJ 699 Litre Side by Side Frost Free Refrigerator, Black Glass &times; 1, Klass 50x60 Freestanding Cooker, 3 Gas Burners + 1 Hotplate, Electric Oven (4TTE 5631 HI) &times; 1, Blueflame Cooker, 50x50cm, 3 Gas Burners + 1 Electric Plate, Stainless Steel, Inox), C5031E – I &times; 1, Dell E2220H 21.5 Inch Monitor &times; 1, Kenwood 2600 Watt Steam Iron w/ Ceramic Soleplate, White / Green | STP70.000WG &times; 1, Bosch 505Litres Freestanding Bottom Mount Freezer Fridge | KGN56VI30M &times; 1, Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 650 Watt | RCM44 &times; 1, Kenwood Steam Iron 2000W with Non Stick Soleplate, White/Purple | STP40.000WP &times; 1, Sony Bravia 55-inch X90L 4K UHD HDR LED Smart TV, XR55X90L &times; 1, LG 43-inch LED TV w/ Free-to-Air Decoder, 43LM550P &times; 1, MOULINEX Super Uno Access 2.2 L Deep Fryer, 1800 Watts | AM310028 &times; 1, JBL PartyBox 100 - High Power Portable Wireless Bluetooth Party Speaker &times; 1, HP Color Laser MFP 179fnw Multifunction Printer &times; 1, Electrolux 7kg/5kg Front Load Washer and Dryer, Inverter Motor, 1400RPM, 15 Programs, EWW7024M3SB &times; 1, Skyworth QLED 55-inch 4K UHD Smart Google TV, 55G3EN &times; 1, Hisense 1800w Steam Iron, SteamCare Lite, H18SIGRS1 &times; 1, SPJ 559L 4-Door Frost Free Refrigerator, Silver Glass &times; 1, Haier 50L Single Door Refrigerator, HR-6BLUK2 &times; 1, SPJ 130 Litre Upright Cooler &times; 1, Klass Free Standing Cooker 60x60cm, Full Gas, 4 Gas Burners, Gas Oven & Grill, Oven Lamp & Timer, 4TTE-6640 BKL &times; 1, Canon Pixma G4400 4-in-1 Wireless Ink Tank Printer | CIS, Print, Copy, Scan, Document Feeder &times; 1, Geepas 1200W Circular Saw (GCS1200) &times; 1, Samsung 65-inch CU7000 4K Crystal UHD LED Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1, HP Color LaserJet Pro MFP M283fdw – Multifunction Printer with Wi-Fi and Auto Duplex Printing &times; 1, BlueFlame Diamond Cooker, 60x60cm, 3 Gas Burners &amp; 1 Electric Plate w/ Electric Oven Inox – Stainless Steel, D6031ERF &times; 1, Samsung (Net 305L) RT5300C Top Mount Freezer Refrigerators with SpaceMax™, RT31CG5421S9UT &times; 1, Hisense 820 Litre (Net 635L) French Door Refrigerator with Water Dispenser and Wi-Fi Connectivity (RF-82W42WSR) &times; 1, Hisense 55-inch Q6N 4K UHD Smart QLED TV, 55Q6N; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth, Free-to-Air Decoder &times; 1, Hitachi 850L 2-Door Inverter Compressor Fridge, Brilliant Black | RV990PUN1KBBK &times; 1, Hisense 200L (Net 155 Liter) Top Freezer Refrigerator, RD-20DR4SA; Mechanical Defrost, Silver &times; 1, BlueFlame 60*60cm 4 Gas Freestanding Cooker w/ Electric Oven, D6040ERF &times; 1, TCL 410 Liter Chest Freezer, Silver, FG410CF &times; 1, ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1, SPJ 400L Beverage Upright Cooler &times; 1, CHiQ 43-inch Full HD LED TV; HDMI, USB, Free-to-Air Decoder, Frameless Design &times; 1, Tefal Easy Fry Precision+ 2-in-1 Digital Air Fryer and Grill, 4.2L Capacity, 8 Programs inc. Dehydrator, Stainless Steel, EY505D27, 1550W &times; 1, Tefal Classic Bathroom Scale, Automatic ON/OFF, Tempered Glass, Turquoise, PP1503V0 &times; 1, Haier 172L Double Door Refrigerator, Bottom Freezer, Efficient &amp; Stylish HRD-230TMPS &times; 1, SPJ 20L Digital Solo Microwave Oven, Mirror Door, Black &times; 1, SPJ 210 Litre Chest Freezer &times; 2, Hisense 5.1 Channel Soundbar, 540W with Wireless Subwoofer &amp; Rear Speakers, HS5100 &times; 1, Decakila Cordless 1.25L Food Processor, 200 Watts, 2000mAh, KMMG005B &times; 1, Geepas GGC31036 Stainless Steel Built-In Gas Electric Hot Plate Hob, Black/Silver &times; 1, IQRA 60cm Built-in Gas Hob, 4 Burners, Flame Failure Device, Auto-Ignition, Stainless Steel, IQ-BH640BLK &times; 1, Geepas Dry Iron, 1200W, GDI23016 &times; 1, LG Dryer, 9 Kg, Sensor Dry, Inverter Technology, NFC | RC9066C3F &times; 1, Beko Built-In Gas Hob, HQAW 64225 SX (60 cm) &times; 1, Beko BWD106 | Freestanding Washer Dryer (10kg/6kg, 1400 rpm) &times; 1, BlueFlame 50x60cm Full Gas Cooker with Gas Oven, Inox, Stainless steel &times; 1, Samsung 260Ltrs Top Freezer Fridge w/ Stabiliser, Coolpack, Inverter Compressor | RT26HAR2DWW &times; 1, Hisense 330 Liter (Net 251L: Fridge 171L + Freezer 80L) Bottom Freezer Refrigerator with Water Dispenser, Frost Free, A+, Silver, RD-33WC4SB1 &times; 1, LG 86-inch 4K UHD Smart LED TV, 86UT80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1, Kenwood Blender, 500w, 1.5L w/ Grinder Mill, Chopper Mill, Ice Crush Function, BLP15.360BK &times; 1, Bosch 90cm Serie 8 Induction Cooktop | PIV975DC1E &times; 1, Ariston 60/60cm Full Gas Cooker, Stainless-Steel, Cast-Iron Pan Support, AS67G1MCXT &times; 1, GEEPAS CERAMIC STEAM IRON GSI24026,3100W, CERAMIC SOLEPLATE, ANTI-CALC &amp; ANTI-DRIP, 350ML TANK, COMFORTABLE HANDLE, MULTI-FUNCTION &times; 1, Geepas GRVC19057 Robot Vacuum Cleaner &times; 1, ADH 60 Litres 1-Door Refrigerator &times; 1, Titan 90cm Built-In Oven,TN-BIE090BA &times; 1, Beko 60cm Built-In Multi-Function Oven with AeroPerfect™, BBXIM17300 &times; 1, Samsung ST40B Sound Tower High Power Audio, 160W, IPX5 Water Resistant, 12 Hours of Playtime &times; 1, Tefal Panini Grill, Inicio Multi-functional Grill, 2000 Watts, GC241D28 &times; 1, LG 8kg Vivace Front Load Washing Machine with AI DD technology, F4R3TYG6P &times; 1, Dr Volt 6A Fridge Protector | IQFP6UK &times; 1, Samsung NV68A1140BS 60cm (68 Litre) Built-in Electric Oven, Catalytic Cleaning, Stainless Steel &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:54426:\"LG Microwave Oven with Grill, 42L, Smart Inverter, Even Heating and Easy Clean, Stainless Steel, MH8265CIS &times; 2, CHiQ 12,000 BTU Wall Split Air Conditioner &times; 2, De\'Longhi KG89 KG 89 Professional Coffee Grinder for up to 12 Cups, Plastic Housing, Silver, 110 watts &times; 1, Samsung 85-Inch, Q60D, QLED 4K UHD Quantum HDR Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 4, Aftron 150L Chest Freezer, White Color, AFF1550HST &times; 3, Samsung HW-B450 2.1ch Soundbar w/ Dolby &times; 3, Geepas GMS8585 2.1 Ch Multimedia System Portable 20000W PMPO, Dual Woofer| USB, Bluetooth &times; 5, Beko 90*60cm Freestanding Cooker, 5 Gas, Fan Assisted, GE 15120 DX &times; 1, Geepas GBK1149 Electric Insect Killer Bug Zapper 6W - Safe &amp; Portable, Non-Toxic Mosquito Ant Fly Bug Killer | Lightweight &amp; Efficient | Mosquito Eliminator with Camping Lantern &times; 1, Tefal Home Chef Smart Multicooker, 1000W, CY601D65 &times; 1, Geepas Professional Digital Hair Clipper- GTR57504/ with High-Capacity Battery and Fast USB Charging/ 4 Adjustable Cutting Blades| Perfect for Home and Saloon Styling &times; 3, Samsung 85-inch Q60C QLED 4K Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Phillips garment steamer, GC482 &times; 2, Beko FBE63320XDL 60cm Freestanding Dual-Fuel Cooker - Fan Oven, 3 Gas Burners &amp; 1 Electric Hotplate, Stainless Steel, A Energy Rating &times; 4, Moulinex Infinymix+ 1.7 Litre High Speed Blender, 6 Auto Programs, 1600 Watts, LM91HD27 &times; 1, Midea 60 cm 4-Burner Gas Cooktop – Stainless Steel with Triple Crown Burner, MG60SK005 &times; 3, TCL 65-inch QLED PRO 4K Ultra HD Smart Google TV, 65C655 &times; 1, Geepas Rechargeable Professional Speaker, 40000W PMPO, GMS11168,TWS Connection, BT/FM/USB/TF Card | LED Display,Wireless Microphone,7.4V/3000mAh Lithium Battery &times; 3, Panasonic 1.45L, 2 Dry Mill, Smooth Performance, Blender, MXCP3121 &times; 4, Hisense 40-inch Class A4 Series (40A4Q) Smart TV, VIDAA OS, Built-in Wi-Fi, HDR, Dolby Atmos &times; 3, Ariete Bon Cuisine 40L Mini Oven With 2 Hotplates (SFO0995) – Silver &times; 2, Braun CareStyle 1 Steam Generator Iron, 2200w, IS1014VI &times; 2, Beko 55\" 4K Ultra HD Smart LED TV with Google TV (BL55 UHD 9823 C) &times; 2, Panasonic Mixer Grinder with 3 Jars | MXAC300 &times; 1, CHiQ 195 Litre (Net 150L) Single Door Refrigerator CSR195DSK3 &times; 3, Samsung 76L Oven, Black Stainless Steel, Series 4, Smart Oven with Catalytic Cleaning, NV7B41207AB &times; 3, Geepas Electric Wet Grinder Rice Kneading Dough GWG-44063 &times; 1, LG 24000 BTU Ceiling Single Cassette Inverter Air Conditioner &times; 3, Geepas Electric Rice Cooker w/ Steamer, Glass Lid, 2.8L, 900W | GRC4327 &times; 1, Hisense 550 Litre (Net 420 Liter) Chest Freezer, FC-55DD4SA &times; 1, Geepas GLE86034 Stain Touch Epilator &times; 1, Decakila Citrus Juicer - 160 Watts, KEJC008B &times; 1, ADH 438 Litre Commercial Fridge &amp; Freezer Combination Upright Cabinet &times; 2, Decakila 3KG, Popcorn Maker Cart, KMTT037R &times; 2, Samsung RT6000 Top Freezer with Twin Cooling Plus™, Net 530 L, Black (RT53K6541BS/UT) &times; 3, BlueFlame 50x60cm 3 Gas + 1 Electric Cooker w/ Electric Oven, Inox, Stainless steel, NL6031E &times; 1, LG 43-inch 4K UHD Smart LED TV &times; 2, Beko BL50UHD 9823 C 50-inch 4K Ultra HD Smart TV, Google TV, Wi-Fi &times; 4, HP LaserJet Enterprise M612dn &times; 2, Hisense 58cm Built-in Gas Hob, 4 Burners, HHU60GAGR &times; 2, CHiQ 18,000 BTU Wall Split Air Conditioner &times; 2, Canon i-SENSYS MF3010 Digital Multifunction Laser Printer &times; 4, CHiQ 380 Liter Chest Freezer, CCF381DSK3 &times; 1, Decakila Hand Mixer, 120 Watts, 7 Speeds, KEMX016W &times; 1, Decakila 3 burner Table Gas Stove, KMGS014M &times; 2, Beko BGM 21225 EX Cooker 4 Gas 2 Electric 90 CM &times; 2, Panasonic 2000W Powerful Mixer Grinder with Double Safety Lock, 3 Multipurpose Jars - MX-AE365 &times; 1, LG GL-C252SLBB 234(L) Top Freezer Refrigerator, Inverter Linear Compressor, Multi Air Flow &times; 2, Smartec 43-Inch HD Android Smart LED TV with Free Wall Brackets | S43 &times; 2, Toshiba 43-inch 4K Ultra HD Smart LED TV; HDR, Dolby Atmos, Bluetooth, VIDAA &times; 1, Beko 7kg Front Load Washing Machine, BAW385 UK; A+++, 1200 RPM, Daily Express Program, ProSmart Inverter Motor, Manhattan Grey &times; 1, Beko 386L Chest Freezer HS455 – White, A Energy Rated, with 2 Baskets &amp; Chill-In Technology &times; 3, Bosch PRY6A6B70 Serie 8 60cm Ceramic 3 Gas + 1 Electric Built In Hob &times; 2, Beko FBM62320WDSL Freestanding Cooker, Multifunctional Oven with Gas, 72 L Cooking Volume 4 Cooking Zones, 8 Heat Modes, Side Grid, Multifunctional Display &times; 1, JBL PartyBox Club 120 &times; 3, Midea 90 cm 5‑Burner Built‑In Gas Hob – Sleek Black Glass, MG90GQ095AL1B &times; 2, Hisense 75-inch Ultra HD 4K Smart QLED TV (75Q6Q) &times; 4, Titan 18,000 BTU Ceiling Cassette R410a Air Conditioner &times; 3, Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024 &times; 2, IQRA 60cm Built-in Hob; 3 Gas Burners + 1 Hotplate, Pulse-Ignition, Glass Top, Cast Iron Pan Supports, IQ-KH4002EG &times; 1, Decakila 4 Litre 750w Electric Thermo Pot, KEKT029B &times; 1, Samsung 11KG Front load Washer with Ecobubble™ and SmartThings AI Energy Mode, WW11CGC04DAB &times; 3, ADH 200 Litres Solar Chest Freezer &times; 1, Decakila Mosquito Killing Lamp, KMMQ002W &times; 3, Beko 60cm Built-in Cassette Hood, CFB6433XH; Cooker Hood, Stainless Steel Finish, 3 Power Levels, 380 m³/h Extraction, Halogen Lighting &times; 2, Phillips Blender 3000 Series, HR2041/10 &times; 1, OLSENMARK OMBK1511 Fly And Insect Killer – Powerful Fly Zapper 2X8W Uv Light,Electric Bug Zapper, Insect Killer, Fly Killer, Wasp Killer – Insect Killing Mesh Grid, with Detachable Hang &times; 1, HP Smart Tank 720 All-in-One Printer &times; 2, Haier 211L Fridge Black, Inverter, No Frost, Energy Efficient, HRF-239FA(KE) &times; 1, Samsung RT6300C 465 Litre Top Freezer Refrigerator with Optimal Fresh+, Wi-Fi Embedded, Silver (RT47CG6631S9UT) &times; 3, BEKO BDIN36520Q Fully Integrated Standard Dishwasher - Black Control Panel - E Rated &times; 1, Black &amp; Decker 10-Cup Filter Coffee Maker, 1.25 Litre, 750w, DCM750S &times; 2, Beko 60cm Built-in Cassette Hood, CTB 6250 XH, Cooker Hood (Telescopic, 60 cm) &times; 1, ADH 625 Litre 2-Door Beverage Upright Cooler &times; 3, Bosch 260 Litre Freestanding 2-Door Top Freezer Refrigerator, KDN26N12N5 &times; 1, HP Laser MFP 135a, All-in-One Monochrome Laser Printer (Print, Scan, Copy) &times; 2, Hitachi 600Ltrs 2-Door Refrigerator w/ Inverter Compressor (Brilliant Silver) | RV800PUN7KBSL &times; 1, Bosch 616 Litres American Side By Side Fridge Freezer w/ Antifingerprint | KAN93VIFPG &times; 1, Bosch 242 Liters Free standing Freezer, 186*60cm, Inox | GSN36VL3PG &times; 1, BlueFlame 60*60cm Full Gas Cooker w/ Gas Oven, Grill, Rotisserie, S6040GRFP-I &times; 3, Venus 2400W Steam Iron with Vertical & Steam Burst VSI22GP- Black &times; 1, CHiQ 10kg Front Load Automatic Washing Machine &times; 1, Geepas Electric Glass Kettle, 1.7L, 360° Rotation Base, Cord Storage, Glass Body, Water Label Gauge, Perfect Pour Wide Opening, Safe &amp; Convenient, Auto Shut-Off, 1500w, GK38063 &times; 2, HP LaserJet Pro MFP 4103dw Multifunction Printer &times; 1, Samsung 12Kg/8Kg Washer Dryer with Eco Bubble™, AI Control, WD12BB944DGBNQ &times; 1, Geepas Ceramic Steam Iron, Temperature Control, GSI24025 Ceramic Sole Plate, Wet And Dry Self Cleaning Function Powerful Steam Burst 400ML Water Tank,3000W &times; 2, Electrolux 90*60cm 5 Burners Gas Cooker w/ Gas Oven, Fan Assisted, Stainless Steel, EKG9200A9X &times; 2, Tefal Compact Power XXL Bagless Vacuum Cleaner, TW4B25HA &times; 3, Black and Decker Blender, BX365-B5 &times; 1, Tefal Dry Iron, Classical Plus, 1200 W, FS3110M0 &times; 1, SPJ 1100L 3-Door Showcase Chiller &times; 1, Samsung Galaxy Tab S8 Ultra 5G &times; 3, Geepas 12K BTU Portable Air Conditioner, 1.0 Ton, 3 Mode & 3 Speed, Cool, Fan & Dry, Digital Display, Timer & Humidifier, GACP1216 &times; 3, JBL Bar 9.1 Ch Soundbar System - True Wireless Surround w/ Dolby Atmos &times; 3, Smartec 24-Inch HD Digital HDR LED TV | AC/DC &times; 3, Bosch Serie | 2 60cm (66 Litre) Built-in Oven with 3D Hotair, HBF011BR1M &times; 4, Tefal Pro Style Care Garment Steamer, 2000 Watt, Black - ‎IT8490M0 &times; 2, Samsung 578L Side-by-Side Refrigerator with Water Dispenser, SmartThings, AI Energy, Silver (RS57DG4100B4) &times; 3, Haier 138L Refrigerator, Fast Freezing, HRF-160BEX &times; 1, KENWOOD 42L Microwave Oven with Grill, MWM42.000BK, Black/Silver &times; 2, Braun Hand Blender, 450W, Stainless Steel Blades with Chopper &amp; Plastic Beaker, MQ10.201MWM &times; 2, Tefal Garment Steamer Pro Style, 42g, IT3480M0. &times; 4, LG 39L NeoChef Microwave Convection Oven, EasyClean™, Smart Inverter, MJ3965ACS &times; 1, Ariete Bagless Vacuum Cleaner, 700w, 3.0 Litre, ASPD2753 &times; 2, Hisense 9 kg Automatic Top Load Washing Machine, WTJD902T &times; 2, Toshiba 65-inch 4K Ultra HD Smart LED TV, 65C350KW; Built-in Wi-Fi, Bluetooth, HDR, Dolby Atmos, VIDAA, Free-to-Air Decoder &times; 1, Sony Bravia 65-inch 4K Ultra HD Smart LED Google TV, KD65X75K &times; 1, Geepas GPB58055 10,000mAh Portable Power Bank &times; 2, TEFAL Pressure Cooker, Secure 5 Neo 6 L, 5-security systems, Stainless Steel, P2580702 &times; 2, SPJ 429L 2-Door Bottom Freezer Refrigerator with Water Dispenser (Black Glass) &times; 2, CHiQ 340 Litre 2-Door Bottom Freezer Refrigerator, CBM340DSK3 &times; 1, Skyworth 32-inch HD Digital Frameless LED TV, 32W3E &times; 1, ADH 210 Litres 1-Door Refrigerator &times; 1, Samsung Sound Tower Party Audio ST50B, 240W, IPX5 Water Resistant, 18 Hours of Playtime &times; 2, LG 8kg | Front Load Washing Machine | Inverter DD | Steam™ | 6 Motion DD | FH4G7TDY5 &times; 1, Geepas GF9428 56\"Ceiling Fan | Double ball bearing | 290 rpm | 3Speed |3 Blade with Strong Air Breeze | Ideal for Living Room, Bed Room, and office &times; 1, Samsung Solo Microwave, 23Litres | MS23F301TAS/EU &times; 2, JBL PartyBox 300 - High Power Portable Wireless Bluetooth Party Speaker &times; 3, Nikon D7500 20.9MP DSLR Camera with AF-S DX NIKKOR 18-140mm f/3.5-5.6G ED VR Lens &times; 1, Skyworth QLED 75-inch 4K UHD Smart Android TV, 75G3EN; Google TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos, Free-to-Air Receiver &times; 1, Blueflame Cooker, 50x50cm, 3 Gas Burners &amp; 1 Electric Plate with Electric Oven, Black, C5031E–B &times; 3, Nikon Z6 II Mirrorless Camera &times; 2, Decakila 2 Burner Table Gas Stove, KMGS013M &times; 2, Geepas 0.65L Capsule Coffee Machine, Single Serve Coffee Brewer w/ Single-Cup, Quick Brew, Programmable, One Touch Function, GCM41509 &times; 1, Kenwood Oven, 2200W, 70L, Grill, Double Glass Door, Rotisserie Function, Convection Function, 60 Minutes Timer, 6 Adjustable Cooking Positions, Rotisserie Attachments, MOM70.000SS, Silver &times; 3, Samsung HW-Q600B 3.1ch Soundbar Dolby Atmos &times; 2, BlueFlame Diamond Cooker, 90x60cm, Inox, Stainless Steel, E9042ERF &times; 1, Blueflame Rustic Cooker, 60x60cm, 3 Gas &amp; 1 Hot Plate, T6031ERF – B &times; 1, Geepas 2-in-1 Blender, Powerful Motor With 2 Speed Setting and Pulse, Unbreakable Jars With Stainless Steel Blade, Grinder Attachment, 1.8 L 600 W GSB44027T &times; 2, LG 11Kg Washing Machine Washer, VIVACE with AI DD™ | ThinQ™ | Steam™, F4Y5EYGYPV &times; 1, Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SSK, Silver &times; 1, Samsung 583L Side-by-Side Refrigerator with SmartThings, AI Energy, Silver (RS57DG4000M9) &times; 1, JBL T205BT by Harman Wireless Bluetooth in Ear Neckband Headphones with Mic &times; 2, Panasonic 510L Premium Side-by-Side Refrigerator, Inverter Compressor, Touch Control NRBS703MSAS &times; 2, Sony Bravia 65-inch 4K Ultra HD Smart LED Google TV, KD65X80K &times; 2, Venus 39-inch HD Digital LED TV; USB, HDMI, VGA, RF, RCA, Free-to-Air Decoder &times; 2, Krypton 16-inch Stand Fan, KNF6559 &times; 1, JBL PartyBox Stage 320 &times; 2, Samsung 22kg/11kg Front Load Washer Dryer, Bespoke AI Wash, AI Ecobubble, WD90F22BCSNQ &times; 2, Tefal Origin Oval Wood Electronic Personal Scale / Bathroom Scale | PP1600V0 &times; 3, Geepas 10 L Mini Refrigerator- GRF63052 | Mini Fridge, Ideal for Home and Car | With Semiconductor Direct Cooling, AC/DC Working| Easy to Carry, Perfect for Camping, Picnic, Trips, Boating &times; 3, Geepas GGC31026: Sleek 2-in-1 Stainless Steel Built-in Gas Hob with Sabaf Burners &amp; Auto-Ignition &times; 1, Samsung 12kg Twin Washer with Air Turbo, WT12J4200MR/NQ &times; 1, Samsung 17 Kg Top loading Washer with Wobble Technology, Digital Inverter Technology, Gray, WA80F17S8CNQ &times; 2, JBL Wireless Two Microphone System with Dual-Channel Receiver, Black &times; 2, Hisense 419 Litre 2-Door Top Freezer Refrigerator, No Frost, Silver, Energy Class A+, RT419N4DGN &times; 1, Klass Free Standing Cooker 60x60cm, Full Gas, 4 Gas Burners, Gas Oven &amp; Grill, Oven Lamp &amp; Timer, 4TTE-6640 BLK &times; 2, Geepas 8 in 1 Hair Styler with 360 degree Swivel Cord &times; 3, Phillips steam iron 5000 series, DST5010 &times; 1, Braun Hand Blender 3 In 1, 700W, with Whisk + Chopper, MQ3035WH &times; 2, Panasonic Super Mixer Grinder with 4 Jars, 1000 Watts, MXAC400 &times; 1, LG QuadWash™ Dishwasher, 14 Place Settings, EasyRack™ Plus, Inverter Direct Drive, Platinum Silver color (DFC612FV) &times; 2, Hisense 750 Liter Side-by-Side Refrigerator with Water Dispenser, Black &times; 2, Kenwood Blender, 500W, 1.5L w/ Multi Mill Attachment, Ice Crush Function, BLP15.150BK &times; 1, LG GN-B372SQCB 332(L) Net 312(L) | Top Freezer Refrigerator | Smart Inverter Compressor | Smart Diagnosis® | Moist Balance Crisper™ &times; 1, Kenwood Personal Blender Smoothie Maker 600W w/ 700ml &amp; 600ml Tritan Smoothie2Go Bottle &amp; Lid, Ice Crush Function | BSP70 &times; 2, Haier 306L Chest Freezer, Fast Freezing, HCF-368G &times; 1, Hisense 680 Litre Smart Refrigerator, Multi Door Smart Fridge w/ Touch Screen, Water Dispenser and Ice Maker, Frost Free, RC-68WC &times; 1, Hisense 750 Liter Side-by-Side Refrigerator with Water Dispenser &times; 1, Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1, Kenwood 2 Slice Toaster w/ Removable Crumb Tray, Stainless Steel, 900W | TCM01.A0BK &times; 2, Geepas 8-inch Rechargeable Fan with Night Light, GF21157 &times; 3, LG GN-Y331SLBB 194(L) | Single Door Refrigerator | Inverter Compressor | Moist Balance Crisper™ | Large Capacity &times; 1, JBL Bar 500: 5.1-Channel soundbar with MultiBeam™ and Dolby Atmos® &times; 3, Decakila 5L, 220-240V, Electric Pressure Cooker, 900 Watts, KEER039M &times; 1, HP V22FHD 21.5 Inch Monitor &times; 2, SPJ 7 Kg Twin Tub Semi-Automatic Washing Machine &times; 2, GEEPAS Cordless Window Vacuum Cleaner | 3-in-1 Spray Wipe Vacuum for Streak-Free Cleaning Mirrors Tiles &amp; Shower Screens | 35min Runtime 140ml Removable Tank LED Indicator Quick Charge &times; 1, LG GC-J247SQRS 635(L) | Side by Side Refrigerator | Inverter Linear Compressor | DoorCooling™ | UVnano™ &times; 3, Nikon Z30 Mirrorless Camera with 16-50mm Lens &times; 1, Geepas Smart Body Fat Scale GBS46522 &times; 1, Geepas Hot, Cold And Normal Water Dispenser with cabnet GWD17039| 3 push up Tap options,fast cooling &times; 3, Geepas Portable Mini Air Cooler, 750 Ml, 3 Speed Options, LED Night Light, GAC16015 &times; 2, LG 86-inch 4K UHD Smart LED TV; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 3, Samsung 7/5kg Front Load Washer / Dryer Combo, with Eco Bubble | WD70TA046BX &times; 2, LG GL-F602HLHU 410(L) | Top Freezer Refrigerator | Inverter Linear Compressor | Smart ThinQ™ | LINEAR Cooling™ &times; 1, Beko 231L Refrigerator, Top Freezer, No Frost, RDNT231I50SUK &times; 2, LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 3, Geepas GeeBike 10\" Electric Scooter with Suspension- GEST63087/ Smart and Fast, Foldable, Digital LED Display, Brake Lights/ Adjustable Speed Control &times; 3, Hopestar Party One, 80 Watts &times; 5, WAHL Professional Super Taper Clipper Set &times; 2, Samsung 511L RF48A4000B4 Twin Cooling Plus™ Multi Door Refrigerator, Gentle Black Matt &times; 2, JBL PartyBox On-The-Go - Portable Karaoke Party Speaker w/ Wireless Microphone &amp; Wireless Two Microphone System, Dual-Channel Receiver &times; 1, Geepas 4-in-1 Food Processor, 650W, GSB6147 &times; 1, Geepas GTR56026 14 in1 Grooming Kit - Magnetic Suction Charging Mode| 60 Minutes Working | Lithium Battery| Indicator Life| Ideal for Short &amp; Long Hair &times; 2, Decakila Hot Air Styler, KEHS033R &times; 1, LG 50-inch (126cm) 4K UHD AI TV (UT80), α5 Gen7 AI Processor, 4K Upscaling, Dynamic Tone Mapping &times; 1, LG 43-Inch Full HD Smart LED TV w/ Digital Receiver &times; 1, Samsung CU8000 50-inch Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 2, Geepas Instant Water Heater, Vertical Design, 100 CVX (GSW61170) &times; 4, Midea 6KG Front Load Washing Machine, BLDC Inverter Motor, 1400 RPM, 15 Programs, Fully Automatic with Lunar Dial &amp; LED Display, MF100W60/T-IN &times; 1, TCL 270Liters Top Mount Refrigerator F270TM - Energy Efficient and Spacious Storage &times; 2, Moulinex Turbo Cuisine Maxi Fast Multicooker, 7.6 Litres, CE777827 &times; 1, Titan 60cm Built-in Gas Hob, 4 Burners, TN-BIHVC6400BA &times; 2, CHiQ 10kg Washer Dryer Combo &times; 1, Beko 60x60cm Cooker FDF63110DXSL; 3 Gas + 1 Electric Plate, Double Electric Oven + Grill, Fan Assisted, Cast Iron Pan Supports, Flame Failure Device, Pizza Tray, Inox Finish &times; 1, Geepas GMS11181N Portable Bluetooth Speaker – 10W, RGB Lights, FM Radio, USB/TF, TWS Pairing &times; 1, Geepas GK38013 Double Layer Electric Kettle 1.7L &times; 1, Hisense 270 Ltrs 2-Door Top Freezer Refrigerator with Water Dispenser, Defrost, Silver, RD-27DR &times; 3, Tefal Compact Power XXL Canister Vacuum Cleaner | TW4825HA &times; 2, IQRA 90cm Built-in Gas Hob, 5 Burners, Glass, Flame Failure Device, Auto-Ignition, Cast Iron, IQ-KH5096G &times; 1, Beko 206L Fridge Freezer, Freestanding with Top Freezer, BAD285KE &times; 2, Haier 366L Top Mount Refrigerator, Net 357L, Twin-Inverter, DEO Technology, HRF-385BS &times; 1, TCL 545 Liter Chest Freezer, Silver, F545CF &times; 2, Blueflame Cooker, 50x50cm, 2 Gas Burners and 2 Electric Plates, Electric Oven, Stainless Steel, C5022E–I &times; 2, Samsung DU7010 50-inch Crystal UHD 4K Smart TV with Bluetooth, Dolby Atmos, HDR &amp; Voice Assistant &times; 3, Geepas- 16\" Metal Stand Fan, Adjustable Height Fan, 50W, GF9611 | Horizontal Oscillation | 3 Speed Settings | 4pcs Aluminium Blades | Ideal for Home, Office, Etc &times; 1, Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 700 Watt | RCM45 &times; 4, Sony SRS-XP500 X-Series Wireless Portable Party Speaker w/ BLUETOOTH, Karaoke, USB, IPX4 Splash-resistant, 20 Hour-Battery &times; 1, Decakila 2-Slice, 700 Watts Toaster, KETS001W &times; 1, Samsung HW-S800B 3.1ch Soundbar Wireless Dolby Atmos, Ultra-slim &times; 4, Geepas 32″ LED Digital TV, Inbuilt Free To Air Decoder, GLED3201EHD, HDMI, USB Ports, AV Mode &times; 1, LG 75-inch (NanoCell 75 Series) 4K Smart UHD NanoCell TV | 75NANO75; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Aftron 40L Portable Air Cooler AFEAC4540B &times; 1, Samsung 11kg Front Load Washing Machine with Ecobubble and AI Control, WW11CG604DLB &times; 2, Hisense 9,000 BTU Portable Air Conditioner &times; 1, HP Color LaserJet Pro MFP M282nw Wireless Color Multifunction Printer &times; 1, 2-Way Splitter Adaptor &times; 1, Lenovo S22E 21.5 Inch Monitor. &times; 1, Samsung 65-Inch DU7010 Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1, Haier 333L Top Mount Refrigerator, Twin-Inverter, DEO Technology, HRF-355NS &times; 1, Decakila Mug Tumbler, KMTT024L &times; 1, Beko RDNT251I50S Top Mount Freezer, 251L - Silver &times; 1, SPJ 559L 4-Door Frost Free Refrigerator, Stainless Steel &times; 1, Kenwood Coffee Machine, 6 Cup Coffee Maker, 900W, CMM05.000BM &times; 1, CHiQ 40-inch Full HD LED TV with Digital Free-to-Air Receiver, USB, HDMI &times; 1, Tefal Easy Fry XXL 2in1 Digital Dual Air Fryer &amp; Grill, 6.5L or 3.25L x2 Drawer Capacity, 8 Programs, Black, 1830 W, EY801827 &times; 1, HP Smart Tank 581 All-in-One Printer &times; 1, Canon EOS 850D (Rebel T8i) DSLR Camera &times; 2, Hisense smart TV romote &times; 1, IQRA 60cm Kitchen Extractor Hood; Touch Panel, LED Lamp, Motion Sensor, IQ-KC600 &times; 4, Geepas GRC35011 1.5L Rice Cooker 500W, Steam Vent Lid &amp; One Touch Operation &times; 1, Bosch PRS9A6D70 Gas Hob, 90 CM, 5 Burners, Series 8, Ceramic Glass - Black &times; 1, Sony Alpha 7C II ILCE7CM2LBQAF1 Mirrorless Camera with FE 28-60mm F4-5.6 OSS &times; 1, Electrolux 90*60cm 5 Gas Cooker with Multifunction Electric Oven and Grill, Rotisserie, Digital Display, Steel, EKK925A0OX &times; 1, Samsung 55-inch Q60D QLED 4K UHD Quantum HDR Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos, Free-to-Air Decoder &times; 3, Beko 2 Slice Toaster, 900W, TAM8202T &times; 1, Samsung 20 Litre Solo Microwave Oven w/ Ceramic inside, ME731K-B/EU &times; 2, CHiQ 9,000 BTU Wall Split Air Conditioner &times; 3, ADH 190 Litres 1-Door Refrigerator &times; 1, Beko 60cm Wall-Mounted Chimney Hood, BHCB66641BBHS; Touch Control, Auto-Shutdown, Black Glass &times; 1, LG 530L French Door Refrigerator, Side by Side, GC-B22FTLVB &times; 2, HP 27″ FHD IPS LED Monitor, M27FW &times; 2, Decakila Cordless Hand Mixer, 90 Watts, 2000mAh, 7 Speeds, KMMX006B &times; 1, Samsung 18000 BTU 5.2KW 4 Way Ceiling Cassette Indoor AC | AC052 TN4DKC / TXADKC &times; 1, ADH 130 Litre Double Door Top Freezer Refrigerator, Black &times; 2, CHiQ 36,000 BTU Floor Standing AC &times; 2, MOULINEX Sandwich Maker, Ultracompact Cutting Plates, 700 Watt | SM154042 &times; 1, Krypton Stand Fan with Remote Black, 16 Inches, KNF6274 &times; 1, ADH 390 Litre Showcase Display Freezer &times; 1, Titan 90x60cm 4 Gas + 2 Electric Freestanding Cooker w/ Electric Oven, TN-FC9420XBS &times; 2, Decakila Potato Cutter, KMTT085W &times; 1, Samsung HW-H600 4.2Ch Sound Stand w/ Dual Built-In Subwoofers, NFC, Bluetooth, HDMI &times; 1, LG 32-inch HD LED Digital TV w/ Free-To-Air Decoder, 32LM550BPVA &times; 1, Geepas GVC2598 2300W 21L Drum Vacuum Cleaner - Portable ABS/Copper/Iron | Dust Full Indicator with Parking Position | Air Blower Function with Adjustable Suction Power &times; 1, Geepas 1200 W Wall Mounted Hair Dryer-GHD86073/ High Speed, Quiet Sound and Hot and Cold Function, 2 Speed Settings/for Quick Drying,Overheat Protection/Perfect for Home &amp; Hotels &times; 1, Canon Scanner, A4 Flatbed Scanner |LIDE300 &times; 3, SPJ 410 Litre Chest Freezer &times; 2, LG 24000 BTU Window Air Conditioner &times; 3, Hisense 1.5L Jar Blender , 500W, Stainless Steel Blades, 2-Speed Control with Pulse, White, H15TBWSES1A &times; 3, Geepas 2.1 CH Multimedia Speaker System with Remote Control- GMS8507N/ USB, SD, FM, Bluetooth and Karaoke Function/ 50000 W PMPO Audio Experience, Digital LED Display &times; 1, Canon iR2224 - A3 Monochrome Digital Laser, Auto Duplex Photocopier, Printer &amp; Color Scanner &times; 2, Geepas Digital Infrared Cooker, GIC33013 &times; 1, Decakila 20L Solo Microwave Oven, KEMC007W &times; 1, Geepas GSM43041 Kitchen Machine, 10L Capacity Stainless Steel Bowl Stand Mixer, 2000w, 6 Speed Control, 3 Mixing Tools; Whisk, Beater &amp; Dough Hook &times; 2, Canon imageRUNNER 2206N Multifunctional A3/A4 Printer (Print, Copy and Scan) &times; 1, LG 70-inch NanoCell Smart 4K Ultra HD TV; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Samsung 55-inch Neo QLED 4K Smart TV | QA55QN85D &times; 4, Panasonic 1800w Light & Easy Steam Iron (NI-M300TVTH) - Violet &times; 2, TEFAL Pressure Cooker, Secure 5 Neo 8 L Pressure Cooker, 5-security systems, Stainless Steel, P2584402 &times; 2, Panasonic 1000W Juicer with Full Metal spinner for Maximum Juice extraction; 2.0L Large capacity - MJ-CB600 &times; 2, Decakila Drinking Bottle Set, KMTT027B &times; 1, Skyworth 43-inch E3E Android Smart TV &times; 2, Hisense Cooker 2 Gas Burners, 2 Electric Plates 50x50cm HF522GEES, 68L Electric Oven & Grill &times; 1, Samsung U8000F 190.5 cm (75 inch) 4K Ultra HD LED Smart Tizen TV with Google Voice Assistant (2025 model) &times; 2, Bosch Built-in Serie 4, 90cm Island Chimney Hood, Stainless Steel | DIB97IM50M &times; 1, Sony Mirrorless Alpha 6700 ILCE6700LBQAF1 with E PZ 16-50mm F3.5-5.6 OSS &times; 1, Geepas Air Cooler, 45 Litre, Heavy Duty, GAC9603 &times; 1, LG 635L Side-by-Side Door Refrigerator, LinearCooling™, GC-J257SQRS &times; 3, Epson EcoTank, All-in-One Ink Tank Printer, L3250. &times; 1, Samsung 9Kg Series 5 Heat Pump Tumble Dryer with OptimalDry™, A++, Grey, DV90TA040AX/EU &times; 1, ADH 350Ltrs Chest Freezer &times; 1, ADH 130L Top Mount Freezer Fridge &times; 1, Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12\" DJ Speaker &times; 3, GEEPAS GLED4323/TSFHD 43\" LED / Smart TV DVBTS/S2/Eshare &times; 1, SPJ 700L 2-Door Beverage Upright Cooler &times; 1, Braun CareStyle Compact Pro Steam Generator Iron, IS 2561 &times; 1, Tefal X-Clean 4 GF5035M0 - Wet and Dry Cordless Vacuum Cleaner, Timesaving 2-in-1 Washing and Vacuuming, Smart Dirt Detection, Extra-Long Running Time &times; 2, ADH 358 Litre 2-Door Top Freezer Refrigerator &times; 2, CHiQ 150 Litre (Net 112L) 2-Door Top Freezer Refrigerator, Black CTM150DBIK3 &times; 2, HP Color LaserJet Pro MFP M182n &times; 1, Decakila Cordless Vacuum Cleaner, 140W, 0.8L, CUCV001W &times; 1, Venus 50cm Freestanding Cooking Range, VC5522 &times; 3, Hisense 34-inch G6H Curve Ultrawide Gaming Monitor, 165Hz &times; 1, JBL Live Free NC+ TWS True Wireless Noise Cancelling Earbuds &times; 1, SPJ 3-Taps Top Load Water Dispenser with Bottom Cabinet; Hot, Cold, and Normal, Grey &times; 1, Beko 60x60cm FSM63330DXDSL Cooker | 3 Gas + 1 Hotplate | Multifunction Electric Oven | Flame Safety &times; 2, Geepas Steam Iron, 2000w - 2400w, GSI7788 &times; 1, Hisense 65-inch 4K UHD Smart LED TV, VIDAA, 65A6N; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth &times; 1, Beko 100 Litres Chest Freezer, BCF 1111 UK KE &times; 1, Geepas Electric Barbecue Grill, 38*22CM, 2000W | GBG877 &times; 1, Samsung 850L Top Freezer Fridge with Twin Cooling™, Water Dispenser, Touch Control Panel, RT85K7110SL &times; 1, Samsung 75-Inch QN800D Neo QLED 8K Smart TV QA75QN800D &times; 2, Titan 18,000 BTU Wall Split Air Conditioner, R410a, In-Built Filter &times; 2, HP Laser 107w Printer &times; 1, Beko 65\" 4K Ultra HD Smart LED Google TV, Black, BL65 UHD 9823 C &times; 1, Bosch Built-in Wall Mounted Chimney Hood, 60 cm, Stainless Steel | DWP64CC50Z &times; 1, Bosch Serie 6 PCP6A5B90 58cm Gas Hob - Stainless Steel &times; 2, TEFAL Dual Easy Fry Air Fryer, 8.3L, EY901840 &times; 1, Sony Xplōd XS-GT6938 Car Speaker &times; 1, Decakila Kitchen Scale, KMTT012B &times; 2, Geepas Hair Dryer, 2 Speed Setting, 2000W, GHD86018 | Removable Filter | Hang-up Hook | Cool Shot Function | 3 Heat Settings | Travel Friendly Dryer &times; 1, Geepas GK38074-CR Electric Kettle, 1.8L Stainless Steel, 3000w Fast Boil, Water-Level Indicator, Auto Shut-Off, Cream &times; 4, JBL PartyBox 110 - Portable Party Speaker with Built-in Lights, Powerful Sound and deep bass &times; 1, Krypton KNK6062 Double Layer Stainless Steel Kettle, 1.8L | Stainless Steel Kettle | Boil Dry Protection &amp; Auto Shut Off Feature | Ideal for Hot Water, Tea &amp; Coffee Maker | 1500W &times; 1, TCL 153 L Top-Mount Refrigerator F153TM with Inverter Technology and 4-Star Energy Efficiency &times; 3, Hisense 500 Litres 1-Door Display Cooler, FL-50FC &times; 1, Tefal Compact Power XXL 2.5L Dust Cont Bagless Vacuum Cleaner | TW4853HA &times; 1, Geepas 4-Slice Sandwich Toaster (GST5391) &times; 1, Hisense 10KG Automatic Front Load Washing Machine, Allergy Steam, Pause and Add, Steam Wash, WFBJ1014VS &times; 1, Geepas 120 L Showcase Chiller- GSC1223, Quick Cooling with Low-E Glass Door, Low Noise and Low Voltage Consumption, Equipped with Wire Shelves &times; 4, Samsung Sound+ HW-MS651 Wireless Smart Soundbar &times; 2, Indesit Innex 9kg/6kg Washer Dryer, 1400RPM, 14 Wash Programs, Quick Wash, XWDE 961480X S GCC F101640 &times; 1, Geepas GK5454 1.8 Litre Electric Kettle, 1800 Watts &times; 1, Braun Hand Blender, 450w, Stainless Steel Blades with Plastic Beakers + Whisk &amp; Chopper, MQ10.202MWM &times; 1, CHiQ 55-inch QLED 4K UHD HDR Quantum Dot Android TV, Built-in Wi-Fi, Bluetooth, Chromecast, Dolby Atmos &times; 1, Samsung NV68A1140BK 60cm (68 Litre) Built-in Electric Oven, Catalytic Cleaning, Black Glass &times; 2, Decakila Stand Mixer, 250 Watts, 3.5 L, 5 Speeds, KEMX012B &times; 1, Geepas 4\" Duct Fan- GF21194/ 2200 RPM, Exhaust Ventilation Fans/ 13 w, Perfect for Residential and Commercial Use, for Bathrooms, Kitchens &times; 1, Smartec 32-Inch HD Android Smart LED TV | SS32 &times; 1, Panasonic 1.7 Litre Stainless Steel Kettle, NCK301, 2200 Watts &times; 1, Samsung 10KG Front Load Washing Machine WW10DG5U34ABNQ &times; 2, Hisense 11Kg (Net 10.5kg) Automatic Top Load Washing Machine, 10 Programs, Self-Programming, Extra Rinse, Time Delay, WTCS1102T &times; 2, ADH 175L Top Mount Freezer Double Door Refrigerator &times; 4, Roch 210 Litre 2-Door Toop Freezer Refrigerator &times; 2, Moulinex Blender BlendForce 2, 600 Watts with 4 blades - LM423127 &times; 1, Tefal Steam Iron, 1200 Watt, FV1953M0 &times; 1, Samsung 26 Kg Front Load Smart Washing Machine, Bespoke AI Wash, AI Ecobubble, Touchscreen, Dark Steel, WF90F26ADSNQ &times; 1, Toshiba 43-inch Full HD LED TV w/ Digital Free-to-Air Receiver &times; 1, ADH 700 Litres Double Door Chest Freezer &times; 1, Geepas Coffee Grinder, Stainless Steel, 250W | GCG5440 &times; 1, Decakila Pump Espresso Coffee Maker, 1.5L, 850w, KECF009B &times; 3, Decakila 400w Portable Spot Cleaner, 1.1L, 9kPa Suction Carpet Cleaner, CEVC006W &times; 2, Kenwood Deep Fryer, 3Litre, 2000 Watt, w/ View Window &amp; Stainless Steel Lid | DFM50 &times; 1, Krypton Electric Oven with Rotisserie &amp; Convection, 2800W, KNO6356 100L Capacity, Black &times; 3, Tefal Compact Power XXL Bagless Vacuum Cleaner, TW4B71HA &times; 1, Decakila KEFC012W Air Cooler: 130W Evaporative Air Cooler with Left &amp; Right Automatic Control &times; 1, Hisense 120 Litres (Net 90L) Single Door Fridge, Energy Class A+, 113KWH/YR, RR120DAGS (Silver) &times; 3, Panasonic Steam Iron, 1800w, (NI-M300TATH) - Blue &times; 1, Venus 25 Liters Microwave with Grill, Heavy Duty, 1200W, VMO25GS &times; 1, Hisense 266 Ltrs 2-Door Top Freezer Refrigerator, Frost Free, Silver, A+, RT266N4DGN &times; 1, Panasonic Garment Steamer, Quick Care with Powerful Steam Upto 40g/min, 2000W, 1.5X Wider Head, Large 1.5L Detachable Tank, Glove, NI-GSG060WTH &times; 1, Kenwood 2-in-1 Sandwich Maker with Grill, Non Stick Multifunctional Plates, SMP01.A0WH &times; 1, LG 635L Side-by-Side Fridge, UVnano® Water Dispenser, GC-X257CQES &times; 1, HP OfficeJet Pro 7720 Wide Format All-in-One A3 Printer &times; 1, Samsung 7Kg Front Load Washer w/ Eco Bubble | WW70J4260GS &times; 1, Panasonic 25L Solo Microwave Oven, NNST34NBKPQ &times; 1, Hisense 65-inch 4K QLED Smart TV with Quantum Dot, Dolby Vision &amp; Atmos (65Q6Q) &times; 1, Geepas GMS7493N 2.1 Channel Home Thaeater System (Black) &times; 1, BlueFlame Cooker, 50x55cm, 3 gas burners and 1 electric plate with Electric oven, S5031ER-I &times; 1, Beko Steam Iron, Ceramic Soleplate, SIM3126R &times; 1, TCL 32-inch Android Smart TV, 32S5400AF; Bazeless w/ Bluetooth, Dolby Audio, HDR, YouTube, Netflix &times; 1, Geepas 5 Liter Electric Thermo Pot- GEV27026,Stainless Steel Inner Pot, 8 Stage Temperature Selection,Automatic Stop,Purified Water Mode,Beige &times; 1, Epson EcoTank, All-in-One Ink Tank Printer, L3210 &times; 1, Tefal Non Electric 900Ml Manual Chopper, Transparent/Black/Green, K1320404 &times; 1, Hisense 7 Kg Twin Tub (Top Load Semi-Automatic) Washing Machine, WSBE701 &times; 1, LG 18K BTU Single Cassette, Inverter Air Conditioner (R410) &times; 1, GEEPAS GK38044 STAINLESS STEEL ELECTRIC KETTLE &times; 1, Skyworth 55-inch 4K UHD Android Smart LED TV, SUC9300; Android TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1, BlueFlame Cooker, 60x60cm, 2 Gas Burners and 2 Electric Plates with Electric Oven, S6022ER–IP &times; 1, Braun Juicer, 2.0 Litre Pulp Container, 900 Watt | J500 &times; 1, Hisense Party Rocker One Plus, 300W Portable Party Speaker with Subwoofer HP110 &times; 2, Braun 2 Slot Toaster, 900W, 8 Browning Settings with Bun Warmer, HT1010BK &times; 1, Bosch Serie | 4 60 cm, Built- in, Fully-Integrated Dishwasher, 5 programs, 12 Place settings | SMV50E00GC &times; 3, HP Envy X360 Convertible 15m-es1xxx, Intel Core i5-1155G7, 8GB RAM - 512GB SSD, 11th Generation, Touchscreen &times; 2, Cooker Installation Service &times; 1, Hisense 8 kg Automatic Top Load Washing Machine, WTJD802T &times; 2, Kenwood Hand Mixer (Electric Whisk) w/ 5 Speeds + Turbo Button, Twin Steel Kneader &amp; Beater, 300 Watt | HMP20 &times; 1, Braun Steam Iron, 2700W, SI5037VI &times; 1, Tefal Easy Steam Iron, 1200 Watts | FV1941M0 &times; 1, LG Commercial Washing Machine, Front Load, 10KG, Stackable, FH069FD2MS &times; 1, Geepas GMS11169 Professional Active Speaker System &times; 1, Samsung The Premiere LSP9T 4K Triple Laser Projector &times; 1, Panasonic 7.2Litre Rice Cooker, 2500Watt | SRGA721 &times; 1, Decakila 6.0 Litre Pressure Cooker, KMER017M &times; 2, Geepas 1580w Garment Steamer, 1.5L Tank, 35g/min Steam Output, Anti-drip system, Auto Off Adjustable Poles, 3 Steam Levels, Overheat & Thermostat Protection, GGS25022 &times; 1, HP E27 G5 FHD Monitor (27″) &times; 1, Beko Built-In Hob (Dual-Fuel, 60 cm), BHG901 &times; 2, Pocket Shaver GSR57518UK &times; 2, Geepas 1600W Powerful Travel Hair Dryer with Foldable Handle | Fast Drying Result | 2-Speed &amp; 2 Temperature Settings | Cool Shot Function For Frizz Free Shine &amp; Elegant Concentrator. &times; 1, Kenwood Blender with Multi Mill, 650W, 2 Litres, BLP41.COWH &times; 1, INGCO Industrial High Pressure Washer, 2500W &times; 3, Panasonic, Titanium Coated Sole Plate Steam Iron, 1550W, NI-M250TGTH &times; 1, Gree 30 Litre Dehumidifier &times; 1, Geepas 1400w Wet and Dry Vacuum Cleaner- GVC19032 | 30 L Dust Bag Capacity, 5 M Cord Length | 3-in-1 Function, Wet, Dry and Blow, Powerful Suction | Accessories Storage Function &times; 1, Decakila Portable 90w Vacuum Cleaner, CMPV003B &times; 1, Geepas 4-Slice Bread Toaster, GBT9895 &times; 2, Hisense 22-inch Monitor, 22N3HN, Full HD, 1080p, HDMI, VGA &times; 2, Geepas GLS86053 Rechargeable Ladies Grooming Set | 4-in-1 | Electric Hair Remover | Detachable Shaving Head| On/Off Switch| LED Indicator Light| Ideal to Remove Unwanted Hair &times; 1, Geepas 2-Slice Bread Toaster, White | GBT36515 &times; 1, Geepas Stainless Steel Meat Grinder, GMG1909 &times; 1, Dell S2721D 27 Inch Antiglare Monitor &times; 3, Geepas GRF5109SXHN 500L Double Door Refrigerator - Digital Temperature Control Quick Cooling &amp; Long-lasting Freshness, Recessed Handle, Low Noise, Low Energy Consumption, Defrost Refrigerator &times; 1, Hisense 720 Liters 2-Door Side-by-Side Refrigerator with Water Dispenser and Ice Maker, WiFi Connectivity, RC-72WS4SA &times; 1, IQRA 90x60cm Cooker 4 Gas+ 2 Electric Plates, Auto Ignition Stainless Steel, Electric Oven and Grill, Rotisserie IQ-FC9042-SS &times; 1, Samsung 7Kg Front Load Washer w/ Hygiene Steam | Series 4, WW70T4020CX &times; 1, Kenwood 2600 Watt Steam Iron w/ Ceramic Soleplate, White / Blue | STP75.000WB &times; 1, Aftron 250 Litre Chest Freezer, AFF250H &times; 2, Food Processors 2 in 1 by Geepas , GSB5456 , 240 Volt &times; 1, LG 30(L) “Solo” NeoChef Microwave Oven, Smart Diagnosis™, EasyClean™, Smart Inverter, Black, MS3032JAS &times; 2, Moulinex Deep Fryer, 3 Litre, 2100 Watts, Gray | AM480027 &times; 1, CHiQ 8 Kg Front Load Washing Machine &times; 2, Panasonic Hand Blender, 600 Watt | MXGS1WTZ &times; 1, Geepas Electric Kettle, Stainless Steel, 1.7 L, GK9902 &times; 1, Lenovo 27 G27C-10 (Curved Gaming) Monitor &times; 2, SPJ Free Standing Cooker 50x50cm, 3 Gas Burners + 1 Hotplate, Dual Fuel Oven &times; 2, IQRA Built-in Gas Hob, 4 Burners, Flame Failure Device, Auto-Ignition, Glass Top, IQ-KH4002GL &times; 3, Skyworth 75-Inch 4K UHD Android Smart LED TV | 75SUC9300; HDR, Dolby Atmos, Google TV, Chromecast, Bluetooth &times; 1, LG 5.1Ch DVD Bluetooth Multi Region Home Theatre System, 330 Watt, LHD427 &times; 1, Samsung 55-inch Class QLED Q60C Series 4K UHD Dual LED Quantum HDR Smart TV, QA55Q60C; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos, Free-to-Air Decoder &times; 1, Sony Xplōd XS-GT6937 car speaker &times; 1, TEFAL Handstick Vacuum Cleaner | X-PERT 7.60 | 140 W Cordless Vacuum Cleaner | Powerful | Ultra-Lightweight | Long-Lasting Battery | TY6A35HO &times; 2, Tefal Eco Master Steam Iron, 24g/min, 1800 Watts | FV1721M0 &times; 1, Tefal Ultragliss Anti-Calc Plus Steam Iron, 2800W, FV6872M0 &times; 1, Krypton Drum Vacuum Cleaner with Dry &amp; Blow Function/Large Dust Bag Capacity &amp; Dust Bag full indicator, Wider &amp; Flexible Hose, 21 L, 2300 W, KNVC6107 &times; 1, Hisense 75WR6BE 75-Inch Advanced Interactive Display - Conference LED Touch Screen &times; 1, Samsung 511L RF48A4000M9 Twin Cooling Plus™ Multi Door Refrigerator, Silver &times; 1, Decakila 1.5 L Rice Cooker, 500w, KEER033W &times; 2, Samsung The Premier LSP7T 120 inches 4K Smart Laser Projector &times; 1, Geepas Coffee Grinder - GCG41022, 150w Powerful Motor, Durable Jar, Plastic Housing and Stainless Steel Blade, Ergonomic Grip, Press Down Operation, Black &times; 2, Beko Built-In Vitroceramic Hob, BHD408 (30 cm) &times; 1, Royalford RF8427 Water Dispenser – Portable Drinks Beverage Serving Dispenser Tap Juice Water Carrier &times; 2, Decakila 300w Hand Blender, KEJB025W &times; 1, Beko Toaster, 2 Wide Slots, 5 Manual Browning Levels, 900 Watts, Black - TAM 8202 B &times; 2, TCL 675 Liter Chest Freezer, Silver, F675CF &times; 1, Moulinex EasyRice 10-Cup 1.8 Litre Rice Cooker, MK123D27 &times; 1, Dell 24 Inch FHD Computer Monitor &times; 2, Kenwood 9L Capacity Automatic Air Fryer with Grill HFP92.000BK Black &times; 1, IQRA 60x60cm Cooker, 3 Gas Burners + 1 Hotplate, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6011-BLK &times; 2, Geepas 3-In-1 Blender, Powerful Motor 600W, GSB44034N &times; 2, Samsung 13Kg Top loading Washer with Wobble Technology, Digital Inverter Technology, Gray, WA13CG5441BY &times; 2, Epson EcoTank L8050 Wireless Color Photo Printer &times; 1, Samsung 635 Ltrs Side by Side Refrigerator w/ Water Dispenser &amp; Ice Maker, SpaceMax Technology, Silver, RS64R5111M9 &times; 2, Beko 90cm Built-in Cassette Hood, CTB 9250 XH, Cooker Hood (Telescopic, 90 cm) &times; 1, Moulinex Sandwich Maker, 700 Watts, 3-in-1 Panini, Sandwich + Waffle Maker, SW612543 &times; 1, Panasonic 2-in-1 Bottom Loading Water Dispenser with Ice Maker, SDM-WD4534BG, Auto ice Making, Dual Touchless, Big Ice Capacity, UV LED Sterilization, Touch Pad Dispensing &times; 1, Geepas 1.5 Liter Rice Cooker With Steamer, 500W, GRC4334 &times; 1, ADH 1,035 Litres 3-Door Beverage Chiller &times; 1, Geepas GK-38073 BK Electric Kettle – 3000w Fast Boil, 1.7L Stainless Steel, Auto Shut-Off &amp; Boil-Dry Protection &times; 1, LG 8Kg Front Load Washing Machine | AI DD™ | Steam™ | ThinQ™ | F4V3TYPOWE VIVACE &times; 2, SPJ 3-Taps Top Load Water Dispenser with Refrigerator; Hot, Cold, and Normal, Black &times; 1, Decakila Kitchen Scale , KMTT014P &times; 1, Geepas 90\" UHD 4K QLED TV, Android, Youtube, Netflix, Prime Video, Chromecast Built-in, Free To Air Decoder, HDMI and USB Ports HQ Sound, AV Mode, GLED9017CQLED &times; 1, Geepas Stainless Steel Electric Kettle (2.5L, Silver, 1600W), GK38028 &times; 2, De\'Longhi BCO260CD.1 Combined Espresso Machine, 2-in-1 Coffee Pump and Coffee Maker, Black &times; 2, Tefal Turbo Cuisine Maxi Multicooker, 7.6 Litre, CY777865 &times; 1, PlayStation 5 Console &times; 1, Hisense HS3100 3.1Ch Soundbar with Wireless Subwoofer, 480w, Dolby Digital Plus, DTS Virtual:X, Bluetooth 5.3, Roku TV Ready, HDMI/USB/AUX (2024 Model) &times; 1, Geepas Slim Hood with Charcoal Filter- GHD611CS/ Sleek and Stylish Design, Powerful Suction, and Adjustable Speed Setting &times; 1, ADH 360 Litres Showcase Display Freezer &times; 1, Geepas Professional Speaker-GMS11161-Portable Handle with 3600 MAh Huge Battery | TWS Connection &amp; Compatible with BT/USB/AUX/FM/Micro SD | Ideal for Home, Hotels &amp; Outdoor Use &times; 1, Geepas GMP15015 Dual UHF Wireless Microphone System – 2 Mics, 100 Channels, Rechargeable &times; 1, Samsung 13-Place Freestanding 60 cm Dishwasher, Series 11, WiFi Enabled, DW60BG730FSLEU &times; 1, Beko Table Blender (800 W, 1.75 L) , TBN81808BX &times; 1, BlueFlame Cooker, 60x60cm, 2 Gas Burners + 2 Electric Plates w/ Electric Oven, S6022ERF – IP &times; 1, Venus 20 Liters Solo Microwave, Heavy Duty with 700W, VMO20SS &times; 1, Geepas 50 Litre Electric Water Heater, Horizontal, GSW61167 &times; 2, Bosch 25L Series 6 Built-in Microwave Oven, BEL554MS0B &times; 1, TV Installation Service &times; 1, CHiQ 8 Kg Washer Dryer Combo &times; 1, Geepas GRH28529 Ceramic Heater, Portable Electric Space Heater – Mini PTC Fan Heater for Desks &amp; Tables with 2 Heat Settings 1000/1500W - Automatic Oscillation, Thermostat &amp; Safety Cut-Off - 1500W, Silver &times; 1, Klass Single-Phase Automatic Voltage Regulator (KL-AVP30) &times; 1, Samsung 18kg Front Load Washer with Smart AI Control, Add Wash, Air Wash, WF18T8000GV &times; 1, LG 15 Kg Front Load Commercial Dryer with WiFi (RV1840CD7) &times; 2, SONY HT-S40R 600w 5.1ch Home Cinema w/ Subwoofer, Wireless Rear Speakers &times; 3, Braun Multimix 2 In 1 Hand and Stand Mixer, 400 Watts with Bowl | HM1070WH &times; 2, IQRA 60x60cm Cooker, 2 Gas Burners and 2 Hotplates, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6221-BLK &times; 1, Blueflame Cooker 50x50cm, 2 Electric Plates and 2 Gas Burners with Electric Oven, C5022E– B &times; 2, Hisense Party Rocker 160 Speaker &times; 1, Bosch 90 cm Under Cabinet Range Hood, Silver - DHU965CGB &times; 1, Royalford Cork And Can Opener 1 Piece, Multicolor. &times; 1, Geepas GK38074 BK Electric Kettle – 1.8L Stainless Steel, 3000W Fast Boil, Water-Level Indicator &amp; Auto Shut-Off &times; 1, LG GCFB507PQAM 519L Side by Side Refrigerator, Smart Inverter Compressor, Multi Air Flow, Total No Frost &times; 1, MOULINEX Juice Extractor Frutelia Plus, 350W | JU370127 &times; 1, IQRA 90cm Built-in Gas Hob, 5 Burners, Glass, Flame Failure Device, Auto-Ignition, Cast Iron, IQ-KH5068BG &times; 2, Geepas GGC-31018 2-IN-1 Built In Gas Hob-Double Burner Gas Stove with Sabaf Burners,| Auto Ignition System, LPG Gas Stove| Black &times; 1, Geepas 3-in-1 Waterproof Lady Shaver Set, GLS57521UK &times; 1, Tefal XXL Dual Easy Fry 11L, XXL Dual air fryer, +8 people, spacious baskets up to 3kg, 7 pre-sets programs, Black, EY9428G0 &times; 1, LG 8KG/5KG Washer Dryer | 8KG Washing Machine | 5KG Dryer | Front Load | Inverter DD | Steamer Washer | ThinQ™ | F4J3TMG5P &times; 1, Krypton Garment Steamer With Adjustable Poles, Overheat Protection, White, KNGS6224 &times; 1, Kenwood 8kg Front Load Washing Machine w/ Rapid Wash, 15 Wash Programs, Delay Timer, Energy Class A+++, WMM08 &times; 1, Skyworth QLED 65-inch SUE9500 4K UHD Smart Android TV, Google TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1, VENUS 2400W Power with Vertical &amp; Steam Burst, Self Clean, Anti Drip, Ceramic Soleplate Steam Iron VSI 24 SB- Black &times; 1, Hisense 43 Inch 4K QLED Smart TV 43Q6Q (2025 Model), AI Smooth Motion, Wi-Fi, HDMI &amp; USB, Filmmaker Mode, AI 4K Upscaler Dolby Vision &times; 2, Geepas Grinder &amp; Drip Coffee Maker, 0.6L, 600W | GCM41512 &times; 1, TV Tilting Wall Bracket (for Screen sizes 42\" to 86\") &times; 2, Geepas Centrifugal Juice Extractor, 800W | GJE 5437 &times; 1, HP LaserJet MFP M236sdn Multifunction Printer &times; 1, Bosch Serie 8 HBG634BS1B Multifunction Electric Built-in Single Oven in Stainless Steel &times; 1, Hisense 65WR6BE 65-Inch Advanced Interactive Display - Conference LED Touch Screen &times; 2, Samsung The Freestyle Smart Portable Projector, 30-100\" (SPLSP3BLA) &times; 1, Philips Shaver 3000 Series, All-in-1 Wet & Dry Electric Shaver with Pop-Up Precision Trimmer &times; 1, LG 1000W 5.1Ch DVD Home Theatre System, LHD627 &times; 1, Geepas GMS8522 3.1 Channel Multimedia Speaker System | 40000W PMPO | Bluetooth| USB/SD/AUX Support | FM Radio| RGB Lights| LED Display| EQ Function &times; 2, Decakila 3 in 1 Breakfast Station; Bake, Fry, Prepare Coffee, KEEV003R &times; 1, Skyworth 100-inch 100A5D Pro UHD 4K Smart Mini LED TV, 100A5D &times; 1, Braun MultiQuick Hand Blender, 450W, Stainless Steel Blades with Plastic Beakers, MQ10.001MWH &times; 1, Titan 90cm Built-in 5 Gas Burner Hob, TN-BIH9500BA &times; 1, Hisense 24-inch Monitor, 24N3G-PRO, Full HD, 1080p, IPS, 100Hz &times; 1, Geepas Rice Cooker w/ Steamer, Stainless Steel, 1.8L, 700W, Non Stick, GRC4330 &times; 1, Geepas 3-in-1 Blender, 1.5Litres, 500W, GSB44017 &times; 1, LG 48,000 BTU Floor Standing Air Conditioner &times; 1, Krypton KNB6074 400W Blender, 2 In 1 with 1.5L Unbreakable Jar – Crusher, Grinder, Juicer| Powerful Motor |Over Heat Protection &times; 1, Geepas Cordless/Corded Steam Iron- GSI24015| Wet and Dry Steam Iron Box Handy Design with Powerful Burst Steam, Anti-Drip Function &times; 1, LG GN-C262SLBN 209(L) | Gross 225(L) | Top Freezer Refrigerator | Inverter Linear Compressor | LINEAR Cooling™| DoorCooling+™ &times; 1, HP V221VB 21.5 Inch Monitor &times; 1, Beko 60x60cm Gas Cooker, FSM61330DXDSL; 3 Gas + 1 Wok Burner, Fan-assisted Electric Oven + Grill, Cast Iron Supports, Flame Failure Device, Inox Finish &times; 1, Venus 90/60cm 4 Gas + 2 Electric Cooker Range w/ Electric Oven &amp; Grill + Cylinder Compartment | VC9642 &times; 1, IQRA 16-inch Wall Fan with Remote, 50 watts, 3 Speeds (IQ-WF019R) &times; 1, Beko BM04531B 45L Midi Electric Oven with Grill – Compact Countertop Electric Oven for Baking, Roasting &amp; Grilling, Ideal for Small Kitchens &times; 1, Geepas Stainless Steel Electric Kettle (1.8 Litres, Copper Color), GK38053 &times; 1, Hisense 6.3 Litre Air Fryer, 1700 W, with LED Display and Touch Control (H06AFBS2S3) &times; 1, Decakila 1.7 L, 2200 Watts, Electric Plastic kettle, KEKT027W &times; 1, TCL C2110FLG Front Load Automatic Washing Machine with Inverter Motor, 10 kg Capacity, DD motor, Add garment, Spray Wash, Drum Clean, Sound off function &times; 1, Decakila Cordless Hand Blender, 60 Watts, Stainless Steel Blades, KMJB037G &times; 1, Bosch Tall Integrated Frost Free Freezer w/ Fixed Hinge, 177.2 x 55.8cm | GIN81AEF0G &times; 1, MOULINEX Stand Mixer, 4.8 L, 800 W, QA160127. &times; 1, Tefal Kitchen Scale / Weighing Scale Optiss, White, BC5000V2 &times; 1, Samsung 40-Inch Full HD Smart LED TV | UA40T5300 &times; 1, Geepas Fan Heater, GFH28547 &times; 1, WAHL 5 Star Balding Clipper &times; 1, SONY Mirrorless Vlogging Camera with E PZ 16-50mm, F3.5-5.6 OSS, ZVE10L &times; 1, Beko BMO7031B UK MIDI Oven, Black - 70L &times; 1, Geepas Digital Air Fryer- GAF37532|11L CapacFries, Steak, Chicken, Cake, Meat, Bread|5.5 L Dual Baskets with Separator| Digital Display, Multiple Function,Dehydrate, Broil, others, 1-60 Min Timer &times; 1, LG 65-inch 4K UHD Smart LED TV, 65UQ80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1, Hisense Gross 120 Ltrs Double Door Top Freezer Mini Refrigerator | RD-12DR &times; 1, Beko 12kg/8kg Freestanding Washer Dryer with ProSmart Inverter Motor – 1400 rpm, Manhattan Grey &times; 1, Sony Bravia 55-inch 4K UHD Smart LED TV, Google TV, KD55X75K; Built-in Wi-Fi, HDR, Bluetooth, Built-in Chromecast, Dolby Atmos &times; 1, Geepas 12 Litre Digital Multi Cooker, 1600w, GMC35030 &times; 1, Beko 9kg Front Load Washing Machine, BAW389 UK; A+++, 1200 RPM, SteamCure, ProSmart Inverter Motor, AquaFusion, Manhattan Grey &times; 2, Kenwood 8-in-1 Food Processor, 750w Multi-Functional w/ 3 Interchangeable Disks, Blender, Whisk, Dough Maker | FDP03 &times; 1, Panasonic 9L Double Glazed Glass Toaster Oven | NT-H900 &times; 1, ADH 168L Top Mount Freezer Double Door Refrigerator &times; 1, Geepas GSB9890 4-In-1 Food Processor - Blender Juicer, 2-Speed With Pulse Function &times; 2, Kenwood Steam Iron, 1100 Watt, 130ML, Non Stick Plate, Blue | STP01.000WB &times; 1, SPJ 699 Litre Side by Side Frost Free Refrigerator, Black Glass &times; 1, Klass 50x60 Freestanding Cooker, 3 Gas Burners + 1 Hotplate, Electric Oven (4TTE 5631 HI) &times; 1, Blueflame Cooker, 50x50cm, 3 Gas Burners + 1 Electric Plate, Stainless Steel, Inox), C5031E – I &times; 1, Dell E2220H 21.5 Inch Monitor &times; 1, Kenwood 2600 Watt Steam Iron w/ Ceramic Soleplate, White / Green | STP70.000WG &times; 1, Bosch 505Litres Freestanding Bottom Mount Freezer Fridge | KGN56VI30M &times; 1, Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 650 Watt | RCM44 &times; 1, Kenwood Steam Iron 2000W with Non Stick Soleplate, White/Purple | STP40.000WP &times; 1, Sony Bravia 55-inch X90L 4K UHD HDR LED Smart TV, XR55X90L &times; 1, LG 43-inch LED TV w/ Free-to-Air Decoder, 43LM550P &times; 1, MOULINEX Super Uno Access 2.2 L Deep Fryer, 1800 Watts | AM310028 &times; 1, JBL PartyBox 100 - High Power Portable Wireless Bluetooth Party Speaker &times; 1, HP Color Laser MFP 179fnw Multifunction Printer &times; 1, Electrolux 7kg/5kg Front Load Washer and Dryer, Inverter Motor, 1400RPM, 15 Programs, EWW7024M3SB &times; 1, Skyworth QLED 55-inch 4K UHD Smart Google TV, 55G3EN &times; 1, Hisense 1800w Steam Iron, SteamCare Lite, H18SIGRS1 &times; 1, SPJ 559L 4-Door Frost Free Refrigerator, Silver Glass &times; 1, Haier 50L Single Door Refrigerator, HR-6BLUK2 &times; 1, SPJ 130 Litre Upright Cooler &times; 1, Klass Free Standing Cooker 60x60cm, Full Gas, 4 Gas Burners, Gas Oven & Grill, Oven Lamp & Timer, 4TTE-6640 BKL &times; 1, Canon Pixma G4400 4-in-1 Wireless Ink Tank Printer | CIS, Print, Copy, Scan, Document Feeder &times; 1, Geepas 1200W Circular Saw (GCS1200) &times; 1, Samsung 65-inch CU7000 4K Crystal UHD LED Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1, HP Color LaserJet Pro MFP M283fdw – Multifunction Printer with Wi-Fi and Auto Duplex Printing &times; 1, BlueFlame Diamond Cooker, 60x60cm, 3 Gas Burners &amp; 1 Electric Plate w/ Electric Oven Inox – Stainless Steel, D6031ERF &times; 1, Samsung (Net 305L) RT5300C Top Mount Freezer Refrigerators with SpaceMax™, RT31CG5421S9UT &times; 1, Hisense 820 Litre (Net 635L) French Door Refrigerator with Water Dispenser and Wi-Fi Connectivity (RF-82W42WSR) &times; 1, Hisense 55-inch Q6N 4K UHD Smart QLED TV, 55Q6N; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth, Free-to-Air Decoder &times; 1, Hitachi 850L 2-Door Inverter Compressor Fridge, Brilliant Black | RV990PUN1KBBK &times; 1, Hisense 200L (Net 155 Liter) Top Freezer Refrigerator, RD-20DR4SA; Mechanical Defrost, Silver &times; 1, BlueFlame 60*60cm 4 Gas Freestanding Cooker w/ Electric Oven, D6040ERF &times; 1, TCL 410 Liter Chest Freezer, Silver, FG410CF &times; 1, ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1, SPJ 400L Beverage Upright Cooler &times; 1, CHiQ 43-inch Full HD LED TV; HDMI, USB, Free-to-Air Decoder, Frameless Design &times; 1, Tefal Easy Fry Precision+ 2-in-1 Digital Air Fryer and Grill, 4.2L Capacity, 8 Programs inc. Dehydrator, Stainless Steel, EY505D27, 1550W &times; 1, Tefal Classic Bathroom Scale, Automatic ON/OFF, Tempered Glass, Turquoise, PP1503V0 &times; 1, Haier 172L Double Door Refrigerator, Bottom Freezer, Efficient &amp; Stylish HRD-230TMPS &times; 1, SPJ 20L Digital Solo Microwave Oven, Mirror Door, Black &times; 1, SPJ 210 Litre Chest Freezer &times; 2, Hisense 5.1 Channel Soundbar, 540W with Wireless Subwoofer &amp; Rear Speakers, HS5100 &times; 1, Decakila Cordless 1.25L Food Processor, 200 Watts, 2000mAh, KMMG005B &times; 1, Geepas GGC31036 Stainless Steel Built-In Gas Electric Hot Plate Hob, Black/Silver &times; 1, IQRA 60cm Built-in Gas Hob, 4 Burners, Flame Failure Device, Auto-Ignition, Stainless Steel, IQ-BH640BLK &times; 1, Geepas Dry Iron, 1200W, GDI23016 &times; 1, LG Dryer, 9 Kg, Sensor Dry, Inverter Technology, NFC | RC9066C3F &times; 1, Beko Built-In Gas Hob, HQAW 64225 SX (60 cm) &times; 1, Beko BWD106 | Freestanding Washer Dryer (10kg/6kg, 1400 rpm) &times; 1, BlueFlame 50x60cm Full Gas Cooker with Gas Oven, Inox, Stainless steel &times; 1, Samsung 260Ltrs Top Freezer Fridge w/ Stabiliser, Coolpack, Inverter Compressor | RT26HAR2DWW &times; 1, Hisense 330 Liter (Net 251L: Fridge 171L + Freezer 80L) Bottom Freezer Refrigerator with Water Dispenser, Frost Free, A+, Silver, RD-33WC4SB1 &times; 1, LG 86-inch 4K UHD Smart LED TV, 86UT80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1, Kenwood Blender, 500w, 1.5L w/ Grinder Mill, Chopper Mill, Ice Crush Function, BLP15.360BK &times; 1, Bosch 90cm Serie 8 Induction Cooktop | PIV975DC1E &times; 1, Ariston 60/60cm Full Gas Cooker, Stainless-Steel, Cast-Iron Pan Support, AS67G1MCXT &times; 1, GEEPAS CERAMIC STEAM IRON GSI24026,3100W, CERAMIC SOLEPLATE, ANTI-CALC &amp; ANTI-DRIP, 350ML TANK, COMFORTABLE HANDLE, MULTI-FUNCTION &times; 1, Geepas GRVC19057 Robot Vacuum Cleaner &times; 1, ADH 60 Litres 1-Door Refrigerator &times; 1, Titan 90cm Built-In Oven,TN-BIE090BA &times; 1, Beko 60cm Built-In Multi-Function Oven with AeroPerfect™, BBXIM17300 &times; 1, Samsung ST40B Sound Tower High Power Audio, 160W, IPX5 Water Resistant, 12 Hours of Playtime &times; 1, Tefal Panini Grill, Inicio Multi-functional Grill, 2000 Watts, GC241D28 &times; 1, LG 8kg Vivace Front Load Washing Machine with AI DD technology, F4R3TYG6P &times; 1, Dr Volt 6A Fridge Protector | IQFP6UK &times; 1, Samsung NV68A1140BS 60cm (68 Litre) Built-in Electric Oven, Catalytic Cleaning, Stainless Steel &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:54426:\"LG Microwave Oven with Grill, 42L, Smart Inverter, Even Heating and Easy Clean, Stainless Steel, MH8265CIS &times; 2, CHiQ 12,000 BTU Wall Split Air Conditioner &times; 2, De\'Longhi KG89 KG 89 Professional Coffee Grinder for up to 12 Cups, Plastic Housing, Silver, 110 watts &times; 1, Samsung 85-Inch, Q60D, QLED 4K UHD Quantum HDR Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 4, Aftron 150L Chest Freezer, White Color, AFF1550HST &times; 3, Samsung HW-B450 2.1ch Soundbar w/ Dolby &times; 3, Geepas GMS8585 2.1 Ch Multimedia System Portable 20000W PMPO, Dual Woofer| USB, Bluetooth &times; 5, Beko 90*60cm Freestanding Cooker, 5 Gas, Fan Assisted, GE 15120 DX &times; 1, Geepas GBK1149 Electric Insect Killer Bug Zapper 6W - Safe &amp; Portable, Non-Toxic Mosquito Ant Fly Bug Killer | Lightweight &amp; Efficient | Mosquito Eliminator with Camping Lantern &times; 1, Tefal Home Chef Smart Multicooker, 1000W, CY601D65 &times; 1, Geepas Professional Digital Hair Clipper- GTR57504/ with High-Capacity Battery and Fast USB Charging/ 4 Adjustable Cutting Blades| Perfect for Home and Saloon Styling &times; 3, Samsung 85-inch Q60C QLED 4K Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Phillips garment steamer, GC482 &times; 2, Beko FBE63320XDL 60cm Freestanding Dual-Fuel Cooker - Fan Oven, 3 Gas Burners &amp; 1 Electric Hotplate, Stainless Steel, A Energy Rating &times; 4, Moulinex Infinymix+ 1.7 Litre High Speed Blender, 6 Auto Programs, 1600 Watts, LM91HD27 &times; 1, Midea 60 cm 4-Burner Gas Cooktop – Stainless Steel with Triple Crown Burner, MG60SK005 &times; 3, TCL 65-inch QLED PRO 4K Ultra HD Smart Google TV, 65C655 &times; 1, Geepas Rechargeable Professional Speaker, 40000W PMPO, GMS11168,TWS Connection, BT/FM/USB/TF Card | LED Display,Wireless Microphone,7.4V/3000mAh Lithium Battery &times; 3, Panasonic 1.45L, 2 Dry Mill, Smooth Performance, Blender, MXCP3121 &times; 4, Hisense 40-inch Class A4 Series (40A4Q) Smart TV, VIDAA OS, Built-in Wi-Fi, HDR, Dolby Atmos &times; 3, Ariete Bon Cuisine 40L Mini Oven With 2 Hotplates (SFO0995) – Silver &times; 2, Braun CareStyle 1 Steam Generator Iron, 2200w, IS1014VI &times; 2, Beko 55\" 4K Ultra HD Smart LED TV with Google TV (BL55 UHD 9823 C) &times; 2, Panasonic Mixer Grinder with 3 Jars | MXAC300 &times; 1, CHiQ 195 Litre (Net 150L) Single Door Refrigerator CSR195DSK3 &times; 3, Samsung 76L Oven, Black Stainless Steel, Series 4, Smart Oven with Catalytic Cleaning, NV7B41207AB &times; 3, Geepas Electric Wet Grinder Rice Kneading Dough GWG-44063 &times; 1, LG 24000 BTU Ceiling Single Cassette Inverter Air Conditioner &times; 3, Geepas Electric Rice Cooker w/ Steamer, Glass Lid, 2.8L, 900W | GRC4327 &times; 1, Hisense 550 Litre (Net 420 Liter) Chest Freezer, FC-55DD4SA &times; 1, Geepas GLE86034 Stain Touch Epilator &times; 1, Decakila Citrus Juicer - 160 Watts, KEJC008B &times; 1, ADH 438 Litre Commercial Fridge &amp; Freezer Combination Upright Cabinet &times; 2, Decakila 3KG, Popcorn Maker Cart, KMTT037R &times; 2, Samsung RT6000 Top Freezer with Twin Cooling Plus™, Net 530 L, Black (RT53K6541BS/UT) &times; 3, BlueFlame 50x60cm 3 Gas + 1 Electric Cooker w/ Electric Oven, Inox, Stainless steel, NL6031E &times; 1, LG 43-inch 4K UHD Smart LED TV &times; 2, Beko BL50UHD 9823 C 50-inch 4K Ultra HD Smart TV, Google TV, Wi-Fi &times; 4, HP LaserJet Enterprise M612dn &times; 2, Hisense 58cm Built-in Gas Hob, 4 Burners, HHU60GAGR &times; 2, CHiQ 18,000 BTU Wall Split Air Conditioner &times; 2, Canon i-SENSYS MF3010 Digital Multifunction Laser Printer &times; 4, CHiQ 380 Liter Chest Freezer, CCF381DSK3 &times; 1, Decakila Hand Mixer, 120 Watts, 7 Speeds, KEMX016W &times; 1, Decakila 3 burner Table Gas Stove, KMGS014M &times; 2, Beko BGM 21225 EX Cooker 4 Gas 2 Electric 90 CM &times; 2, Panasonic 2000W Powerful Mixer Grinder with Double Safety Lock, 3 Multipurpose Jars - MX-AE365 &times; 1, LG GL-C252SLBB 234(L) Top Freezer Refrigerator, Inverter Linear Compressor, Multi Air Flow &times; 2, Smartec 43-Inch HD Android Smart LED TV with Free Wall Brackets | S43 &times; 2, Toshiba 43-inch 4K Ultra HD Smart LED TV; HDR, Dolby Atmos, Bluetooth, VIDAA &times; 1, Beko 7kg Front Load Washing Machine, BAW385 UK; A+++, 1200 RPM, Daily Express Program, ProSmart Inverter Motor, Manhattan Grey &times; 1, Beko 386L Chest Freezer HS455 – White, A Energy Rated, with 2 Baskets &amp; Chill-In Technology &times; 3, Bosch PRY6A6B70 Serie 8 60cm Ceramic 3 Gas + 1 Electric Built In Hob &times; 2, Beko FBM62320WDSL Freestanding Cooker, Multifunctional Oven with Gas, 72 L Cooking Volume 4 Cooking Zones, 8 Heat Modes, Side Grid, Multifunctional Display &times; 1, JBL PartyBox Club 120 &times; 3, Midea 90 cm 5‑Burner Built‑In Gas Hob – Sleek Black Glass, MG90GQ095AL1B &times; 2, Hisense 75-inch Ultra HD 4K Smart QLED TV (75Q6Q) &times; 4, Titan 18,000 BTU Ceiling Cassette R410a Air Conditioner &times; 3, Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024 &times; 2, IQRA 60cm Built-in Hob; 3 Gas Burners + 1 Hotplate, Pulse-Ignition, Glass Top, Cast Iron Pan Supports, IQ-KH4002EG &times; 1, Decakila 4 Litre 750w Electric Thermo Pot, KEKT029B &times; 1, Samsung 11KG Front load Washer with Ecobubble™ and SmartThings AI Energy Mode, WW11CGC04DAB &times; 3, ADH 200 Litres Solar Chest Freezer &times; 1, Decakila Mosquito Killing Lamp, KMMQ002W &times; 3, Beko 60cm Built-in Cassette Hood, CFB6433XH; Cooker Hood, Stainless Steel Finish, 3 Power Levels, 380 m³/h Extraction, Halogen Lighting &times; 2, Phillips Blender 3000 Series, HR2041/10 &times; 1, OLSENMARK OMBK1511 Fly And Insect Killer – Powerful Fly Zapper 2X8W Uv Light,Electric Bug Zapper, Insect Killer, Fly Killer, Wasp Killer – Insect Killing Mesh Grid, with Detachable Hang &times; 1, HP Smart Tank 720 All-in-One Printer &times; 2, Haier 211L Fridge Black, Inverter, No Frost, Energy Efficient, HRF-239FA(KE) &times; 1, Samsung RT6300C 465 Litre Top Freezer Refrigerator with Optimal Fresh+, Wi-Fi Embedded, Silver (RT47CG6631S9UT) &times; 3, BEKO BDIN36520Q Fully Integrated Standard Dishwasher - Black Control Panel - E Rated &times; 1, Black &amp; Decker 10-Cup Filter Coffee Maker, 1.25 Litre, 750w, DCM750S &times; 2, Beko 60cm Built-in Cassette Hood, CTB 6250 XH, Cooker Hood (Telescopic, 60 cm) &times; 1, ADH 625 Litre 2-Door Beverage Upright Cooler &times; 3, Bosch 260 Litre Freestanding 2-Door Top Freezer Refrigerator, KDN26N12N5 &times; 1, HP Laser MFP 135a, All-in-One Monochrome Laser Printer (Print, Scan, Copy) &times; 2, Hitachi 600Ltrs 2-Door Refrigerator w/ Inverter Compressor (Brilliant Silver) | RV800PUN7KBSL &times; 1, Bosch 616 Litres American Side By Side Fridge Freezer w/ Antifingerprint | KAN93VIFPG &times; 1, Bosch 242 Liters Free standing Freezer, 186*60cm, Inox | GSN36VL3PG &times; 1, BlueFlame 60*60cm Full Gas Cooker w/ Gas Oven, Grill, Rotisserie, S6040GRFP-I &times; 3, Venus 2400W Steam Iron with Vertical & Steam Burst VSI22GP- Black &times; 1, CHiQ 10kg Front Load Automatic Washing Machine &times; 1, Geepas Electric Glass Kettle, 1.7L, 360° Rotation Base, Cord Storage, Glass Body, Water Label Gauge, Perfect Pour Wide Opening, Safe &amp; Convenient, Auto Shut-Off, 1500w, GK38063 &times; 2, HP LaserJet Pro MFP 4103dw Multifunction Printer &times; 1, Samsung 12Kg/8Kg Washer Dryer with Eco Bubble™, AI Control, WD12BB944DGBNQ &times; 1, Geepas Ceramic Steam Iron, Temperature Control, GSI24025 Ceramic Sole Plate, Wet And Dry Self Cleaning Function Powerful Steam Burst 400ML Water Tank,3000W &times; 2, Electrolux 90*60cm 5 Burners Gas Cooker w/ Gas Oven, Fan Assisted, Stainless Steel, EKG9200A9X &times; 2, Tefal Compact Power XXL Bagless Vacuum Cleaner, TW4B25HA &times; 3, Black and Decker Blender, BX365-B5 &times; 1, Tefal Dry Iron, Classical Plus, 1200 W, FS3110M0 &times; 1, SPJ 1100L 3-Door Showcase Chiller &times; 1, Samsung Galaxy Tab S8 Ultra 5G &times; 3, Geepas 12K BTU Portable Air Conditioner, 1.0 Ton, 3 Mode & 3 Speed, Cool, Fan & Dry, Digital Display, Timer & Humidifier, GACP1216 &times; 3, JBL Bar 9.1 Ch Soundbar System - True Wireless Surround w/ Dolby Atmos &times; 3, Smartec 24-Inch HD Digital HDR LED TV | AC/DC &times; 3, Bosch Serie | 2 60cm (66 Litre) Built-in Oven with 3D Hotair, HBF011BR1M &times; 4, Tefal Pro Style Care Garment Steamer, 2000 Watt, Black - ‎IT8490M0 &times; 2, Samsung 578L Side-by-Side Refrigerator with Water Dispenser, SmartThings, AI Energy, Silver (RS57DG4100B4) &times; 3, Haier 138L Refrigerator, Fast Freezing, HRF-160BEX &times; 1, KENWOOD 42L Microwave Oven with Grill, MWM42.000BK, Black/Silver &times; 2, Braun Hand Blender, 450W, Stainless Steel Blades with Chopper &amp; Plastic Beaker, MQ10.201MWM &times; 2, Tefal Garment Steamer Pro Style, 42g, IT3480M0. &times; 4, LG 39L NeoChef Microwave Convection Oven, EasyClean™, Smart Inverter, MJ3965ACS &times; 1, Ariete Bagless Vacuum Cleaner, 700w, 3.0 Litre, ASPD2753 &times; 2, Hisense 9 kg Automatic Top Load Washing Machine, WTJD902T &times; 2, Toshiba 65-inch 4K Ultra HD Smart LED TV, 65C350KW; Built-in Wi-Fi, Bluetooth, HDR, Dolby Atmos, VIDAA, Free-to-Air Decoder &times; 1, Sony Bravia 65-inch 4K Ultra HD Smart LED Google TV, KD65X75K &times; 1, Geepas GPB58055 10,000mAh Portable Power Bank &times; 2, TEFAL Pressure Cooker, Secure 5 Neo 6 L, 5-security systems, Stainless Steel, P2580702 &times; 2, SPJ 429L 2-Door Bottom Freezer Refrigerator with Water Dispenser (Black Glass) &times; 2, CHiQ 340 Litre 2-Door Bottom Freezer Refrigerator, CBM340DSK3 &times; 1, Skyworth 32-inch HD Digital Frameless LED TV, 32W3E &times; 1, ADH 210 Litres 1-Door Refrigerator &times; 1, Samsung Sound Tower Party Audio ST50B, 240W, IPX5 Water Resistant, 18 Hours of Playtime &times; 2, LG 8kg | Front Load Washing Machine | Inverter DD | Steam™ | 6 Motion DD | FH4G7TDY5 &times; 1, Geepas GF9428 56\"Ceiling Fan | Double ball bearing | 290 rpm | 3Speed |3 Blade with Strong Air Breeze | Ideal for Living Room, Bed Room, and office &times; 1, Samsung Solo Microwave, 23Litres | MS23F301TAS/EU &times; 2, JBL PartyBox 300 - High Power Portable Wireless Bluetooth Party Speaker &times; 3, Nikon D7500 20.9MP DSLR Camera with AF-S DX NIKKOR 18-140mm f/3.5-5.6G ED VR Lens &times; 1, Skyworth QLED 75-inch 4K UHD Smart Android TV, 75G3EN; Google TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos, Free-to-Air Receiver &times; 1, Blueflame Cooker, 50x50cm, 3 Gas Burners &amp; 1 Electric Plate with Electric Oven, Black, C5031E–B &times; 3, Nikon Z6 II Mirrorless Camera &times; 2, Decakila 2 Burner Table Gas Stove, KMGS013M &times; 2, Geepas 0.65L Capsule Coffee Machine, Single Serve Coffee Brewer w/ Single-Cup, Quick Brew, Programmable, One Touch Function, GCM41509 &times; 1, Kenwood Oven, 2200W, 70L, Grill, Double Glass Door, Rotisserie Function, Convection Function, 60 Minutes Timer, 6 Adjustable Cooking Positions, Rotisserie Attachments, MOM70.000SS, Silver &times; 3, Samsung HW-Q600B 3.1ch Soundbar Dolby Atmos &times; 2, BlueFlame Diamond Cooker, 90x60cm, Inox, Stainless Steel, E9042ERF &times; 1, Blueflame Rustic Cooker, 60x60cm, 3 Gas &amp; 1 Hot Plate, T6031ERF – B &times; 1, Geepas 2-in-1 Blender, Powerful Motor With 2 Speed Setting and Pulse, Unbreakable Jars With Stainless Steel Blade, Grinder Attachment, 1.8 L 600 W GSB44027T &times; 2, LG 11Kg Washing Machine Washer, VIVACE with AI DD™ | ThinQ™ | Steam™, F4Y5EYGYPV &times; 1, Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SSK, Silver &times; 1, Samsung 583L Side-by-Side Refrigerator with SmartThings, AI Energy, Silver (RS57DG4000M9) &times; 1, JBL T205BT by Harman Wireless Bluetooth in Ear Neckband Headphones with Mic &times; 2, Panasonic 510L Premium Side-by-Side Refrigerator, Inverter Compressor, Touch Control NRBS703MSAS &times; 2, Sony Bravia 65-inch 4K Ultra HD Smart LED Google TV, KD65X80K &times; 2, Venus 39-inch HD Digital LED TV; USB, HDMI, VGA, RF, RCA, Free-to-Air Decoder &times; 2, Krypton 16-inch Stand Fan, KNF6559 &times; 1, JBL PartyBox Stage 320 &times; 2, Samsung 22kg/11kg Front Load Washer Dryer, Bespoke AI Wash, AI Ecobubble, WD90F22BCSNQ &times; 2, Tefal Origin Oval Wood Electronic Personal Scale / Bathroom Scale | PP1600V0 &times; 3, Geepas 10 L Mini Refrigerator- GRF63052 | Mini Fridge, Ideal for Home and Car | With Semiconductor Direct Cooling, AC/DC Working| Easy to Carry, Perfect for Camping, Picnic, Trips, Boating &times; 3, Geepas GGC31026: Sleek 2-in-1 Stainless Steel Built-in Gas Hob with Sabaf Burners &amp; Auto-Ignition &times; 1, Samsung 12kg Twin Washer with Air Turbo, WT12J4200MR/NQ &times; 1, Samsung 17 Kg Top loading Washer with Wobble Technology, Digital Inverter Technology, Gray, WA80F17S8CNQ &times; 2, JBL Wireless Two Microphone System with Dual-Channel Receiver, Black &times; 2, Hisense 419 Litre 2-Door Top Freezer Refrigerator, No Frost, Silver, Energy Class A+, RT419N4DGN &times; 1, Klass Free Standing Cooker 60x60cm, Full Gas, 4 Gas Burners, Gas Oven &amp; Grill, Oven Lamp &amp; Timer, 4TTE-6640 BLK &times; 2, Geepas 8 in 1 Hair Styler with 360 degree Swivel Cord &times; 3, Phillips steam iron 5000 series, DST5010 &times; 1, Braun Hand Blender 3 In 1, 700W, with Whisk + Chopper, MQ3035WH &times; 2, Panasonic Super Mixer Grinder with 4 Jars, 1000 Watts, MXAC400 &times; 1, LG QuadWash™ Dishwasher, 14 Place Settings, EasyRack™ Plus, Inverter Direct Drive, Platinum Silver color (DFC612FV) &times; 2, Hisense 750 Liter Side-by-Side Refrigerator with Water Dispenser, Black &times; 2, Kenwood Blender, 500W, 1.5L w/ Multi Mill Attachment, Ice Crush Function, BLP15.150BK &times; 1, LG GN-B372SQCB 332(L) Net 312(L) | Top Freezer Refrigerator | Smart Inverter Compressor | Smart Diagnosis® | Moist Balance Crisper™ &times; 1, Kenwood Personal Blender Smoothie Maker 600W w/ 700ml &amp; 600ml Tritan Smoothie2Go Bottle &amp; Lid, Ice Crush Function | BSP70 &times; 2, Haier 306L Chest Freezer, Fast Freezing, HCF-368G &times; 1, Hisense 680 Litre Smart Refrigerator, Multi Door Smart Fridge w/ Touch Screen, Water Dispenser and Ice Maker, Frost Free, RC-68WC &times; 1, Hisense 750 Liter Side-by-Side Refrigerator with Water Dispenser &times; 1, Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1, Kenwood 2 Slice Toaster w/ Removable Crumb Tray, Stainless Steel, 900W | TCM01.A0BK &times; 2, Geepas 8-inch Rechargeable Fan with Night Light, GF21157 &times; 3, LG GN-Y331SLBB 194(L) | Single Door Refrigerator | Inverter Compressor | Moist Balance Crisper™ | Large Capacity &times; 1, JBL Bar 500: 5.1-Channel soundbar with MultiBeam™ and Dolby Atmos® &times; 3, Decakila 5L, 220-240V, Electric Pressure Cooker, 900 Watts, KEER039M &times; 1, HP V22FHD 21.5 Inch Monitor &times; 2, SPJ 7 Kg Twin Tub Semi-Automatic Washing Machine &times; 2, GEEPAS Cordless Window Vacuum Cleaner | 3-in-1 Spray Wipe Vacuum for Streak-Free Cleaning Mirrors Tiles &amp; Shower Screens | 35min Runtime 140ml Removable Tank LED Indicator Quick Charge &times; 1, LG GC-J247SQRS 635(L) | Side by Side Refrigerator | Inverter Linear Compressor | DoorCooling™ | UVnano™ &times; 3, Nikon Z30 Mirrorless Camera with 16-50mm Lens &times; 1, Geepas Smart Body Fat Scale GBS46522 &times; 1, Geepas Hot, Cold And Normal Water Dispenser with cabnet GWD17039| 3 push up Tap options,fast cooling &times; 3, Geepas Portable Mini Air Cooler, 750 Ml, 3 Speed Options, LED Night Light, GAC16015 &times; 2, LG 86-inch 4K UHD Smart LED TV; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 3, Samsung 7/5kg Front Load Washer / Dryer Combo, with Eco Bubble | WD70TA046BX &times; 2, LG GL-F602HLHU 410(L) | Top Freezer Refrigerator | Inverter Linear Compressor | Smart ThinQ™ | LINEAR Cooling™ &times; 1, Beko 231L Refrigerator, Top Freezer, No Frost, RDNT231I50SUK &times; 2, LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 3, Geepas GeeBike 10\" Electric Scooter with Suspension- GEST63087/ Smart and Fast, Foldable, Digital LED Display, Brake Lights/ Adjustable Speed Control &times; 3, Hopestar Party One, 80 Watts &times; 5, WAHL Professional Super Taper Clipper Set &times; 2, Samsung 511L RF48A4000B4 Twin Cooling Plus™ Multi Door Refrigerator, Gentle Black Matt &times; 2, JBL PartyBox On-The-Go - Portable Karaoke Party Speaker w/ Wireless Microphone &amp; Wireless Two Microphone System, Dual-Channel Receiver &times; 1, Geepas 4-in-1 Food Processor, 650W, GSB6147 &times; 1, Geepas GTR56026 14 in1 Grooming Kit - Magnetic Suction Charging Mode| 60 Minutes Working | Lithium Battery| Indicator Life| Ideal for Short &amp; Long Hair &times; 2, Decakila Hot Air Styler, KEHS033R &times; 1, LG 50-inch (126cm) 4K UHD AI TV (UT80), α5 Gen7 AI Processor, 4K Upscaling, Dynamic Tone Mapping &times; 1, LG 43-Inch Full HD Smart LED TV w/ Digital Receiver &times; 1, Samsung CU8000 50-inch Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 2, Geepas Instant Water Heater, Vertical Design, 100 CVX (GSW61170) &times; 4, Midea 6KG Front Load Washing Machine, BLDC Inverter Motor, 1400 RPM, 15 Programs, Fully Automatic with Lunar Dial &amp; LED Display, MF100W60/T-IN &times; 1, TCL 270Liters Top Mount Refrigerator F270TM - Energy Efficient and Spacious Storage &times; 2, Moulinex Turbo Cuisine Maxi Fast Multicooker, 7.6 Litres, CE777827 &times; 1, Titan 60cm Built-in Gas Hob, 4 Burners, TN-BIHVC6400BA &times; 2, CHiQ 10kg Washer Dryer Combo &times; 1, Beko 60x60cm Cooker FDF63110DXSL; 3 Gas + 1 Electric Plate, Double Electric Oven + Grill, Fan Assisted, Cast Iron Pan Supports, Flame Failure Device, Pizza Tray, Inox Finish &times; 1, Geepas GMS11181N Portable Bluetooth Speaker – 10W, RGB Lights, FM Radio, USB/TF, TWS Pairing &times; 1, Geepas GK38013 Double Layer Electric Kettle 1.7L &times; 1, Hisense 270 Ltrs 2-Door Top Freezer Refrigerator with Water Dispenser, Defrost, Silver, RD-27DR &times; 3, Tefal Compact Power XXL Canister Vacuum Cleaner | TW4825HA &times; 2, IQRA 90cm Built-in Gas Hob, 5 Burners, Glass, Flame Failure Device, Auto-Ignition, Cast Iron, IQ-KH5096G &times; 1, Beko 206L Fridge Freezer, Freestanding with Top Freezer, BAD285KE &times; 2, Haier 366L Top Mount Refrigerator, Net 357L, Twin-Inverter, DEO Technology, HRF-385BS &times; 1, TCL 545 Liter Chest Freezer, Silver, F545CF &times; 2, Blueflame Cooker, 50x50cm, 2 Gas Burners and 2 Electric Plates, Electric Oven, Stainless Steel, C5022E–I &times; 2, Samsung DU7010 50-inch Crystal UHD 4K Smart TV with Bluetooth, Dolby Atmos, HDR &amp; Voice Assistant &times; 3, Geepas- 16\" Metal Stand Fan, Adjustable Height Fan, 50W, GF9611 | Horizontal Oscillation | 3 Speed Settings | 4pcs Aluminium Blades | Ideal for Home, Office, Etc &times; 1, Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 700 Watt | RCM45 &times; 4, Sony SRS-XP500 X-Series Wireless Portable Party Speaker w/ BLUETOOTH, Karaoke, USB, IPX4 Splash-resistant, 20 Hour-Battery &times; 1, Decakila 2-Slice, 700 Watts Toaster, KETS001W &times; 1, Samsung HW-S800B 3.1ch Soundbar Wireless Dolby Atmos, Ultra-slim &times; 4, Geepas 32″ LED Digital TV, Inbuilt Free To Air Decoder, GLED3201EHD, HDMI, USB Ports, AV Mode &times; 1, LG 75-inch (NanoCell 75 Series) 4K Smart UHD NanoCell TV | 75NANO75; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Aftron 40L Portable Air Cooler AFEAC4540B &times; 1, Samsung 11kg Front Load Washing Machine with Ecobubble and AI Control, WW11CG604DLB &times; 2, Hisense 9,000 BTU Portable Air Conditioner &times; 1, HP Color LaserJet Pro MFP M282nw Wireless Color Multifunction Printer &times; 1, 2-Way Splitter Adaptor &times; 1, Lenovo S22E 21.5 Inch Monitor. &times; 1, Samsung 65-Inch DU7010 Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1, Haier 333L Top Mount Refrigerator, Twin-Inverter, DEO Technology, HRF-355NS &times; 1, Decakila Mug Tumbler, KMTT024L &times; 1, Beko RDNT251I50S Top Mount Freezer, 251L - Silver &times; 1, SPJ 559L 4-Door Frost Free Refrigerator, Stainless Steel &times; 1, Kenwood Coffee Machine, 6 Cup Coffee Maker, 900W, CMM05.000BM &times; 1, CHiQ 40-inch Full HD LED TV with Digital Free-to-Air Receiver, USB, HDMI &times; 1, Tefal Easy Fry XXL 2in1 Digital Dual Air Fryer &amp; Grill, 6.5L or 3.25L x2 Drawer Capacity, 8 Programs, Black, 1830 W, EY801827 &times; 1, HP Smart Tank 581 All-in-One Printer &times; 1, Canon EOS 850D (Rebel T8i) DSLR Camera &times; 2, Hisense smart TV romote &times; 1, IQRA 60cm Kitchen Extractor Hood; Touch Panel, LED Lamp, Motion Sensor, IQ-KC600 &times; 4, Geepas GRC35011 1.5L Rice Cooker 500W, Steam Vent Lid &amp; One Touch Operation &times; 1, Bosch PRS9A6D70 Gas Hob, 90 CM, 5 Burners, Series 8, Ceramic Glass - Black &times; 1, Sony Alpha 7C II ILCE7CM2LBQAF1 Mirrorless Camera with FE 28-60mm F4-5.6 OSS &times; 1, Electrolux 90*60cm 5 Gas Cooker with Multifunction Electric Oven and Grill, Rotisserie, Digital Display, Steel, EKK925A0OX &times; 1, Samsung 55-inch Q60D QLED 4K UHD Quantum HDR Smart TV; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos, Free-to-Air Decoder &times; 3, Beko 2 Slice Toaster, 900W, TAM8202T &times; 1, Samsung 20 Litre Solo Microwave Oven w/ Ceramic inside, ME731K-B/EU &times; 2, CHiQ 9,000 BTU Wall Split Air Conditioner &times; 3, ADH 190 Litres 1-Door Refrigerator &times; 1, Beko 60cm Wall-Mounted Chimney Hood, BHCB66641BBHS; Touch Control, Auto-Shutdown, Black Glass &times; 1, LG 530L French Door Refrigerator, Side by Side, GC-B22FTLVB &times; 2, HP 27″ FHD IPS LED Monitor, M27FW &times; 2, Decakila Cordless Hand Mixer, 90 Watts, 2000mAh, 7 Speeds, KMMX006B &times; 1, Samsung 18000 BTU 5.2KW 4 Way Ceiling Cassette Indoor AC | AC052 TN4DKC / TXADKC &times; 1, ADH 130 Litre Double Door Top Freezer Refrigerator, Black &times; 2, CHiQ 36,000 BTU Floor Standing AC &times; 2, MOULINEX Sandwich Maker, Ultracompact Cutting Plates, 700 Watt | SM154042 &times; 1, Krypton Stand Fan with Remote Black, 16 Inches, KNF6274 &times; 1, ADH 390 Litre Showcase Display Freezer &times; 1, Titan 90x60cm 4 Gas + 2 Electric Freestanding Cooker w/ Electric Oven, TN-FC9420XBS &times; 2, Decakila Potato Cutter, KMTT085W &times; 1, Samsung HW-H600 4.2Ch Sound Stand w/ Dual Built-In Subwoofers, NFC, Bluetooth, HDMI &times; 1, LG 32-inch HD LED Digital TV w/ Free-To-Air Decoder, 32LM550BPVA &times; 1, Geepas GVC2598 2300W 21L Drum Vacuum Cleaner - Portable ABS/Copper/Iron | Dust Full Indicator with Parking Position | Air Blower Function with Adjustable Suction Power &times; 1, Geepas 1200 W Wall Mounted Hair Dryer-GHD86073/ High Speed, Quiet Sound and Hot and Cold Function, 2 Speed Settings/for Quick Drying,Overheat Protection/Perfect for Home &amp; Hotels &times; 1, Canon Scanner, A4 Flatbed Scanner |LIDE300 &times; 3, SPJ 410 Litre Chest Freezer &times; 2, LG 24000 BTU Window Air Conditioner &times; 3, Hisense 1.5L Jar Blender , 500W, Stainless Steel Blades, 2-Speed Control with Pulse, White, H15TBWSES1A &times; 3, Geepas 2.1 CH Multimedia Speaker System with Remote Control- GMS8507N/ USB, SD, FM, Bluetooth and Karaoke Function/ 50000 W PMPO Audio Experience, Digital LED Display &times; 1, Canon iR2224 - A3 Monochrome Digital Laser, Auto Duplex Photocopier, Printer &amp; Color Scanner &times; 2, Geepas Digital Infrared Cooker, GIC33013 &times; 1, Decakila 20L Solo Microwave Oven, KEMC007W &times; 1, Geepas GSM43041 Kitchen Machine, 10L Capacity Stainless Steel Bowl Stand Mixer, 2000w, 6 Speed Control, 3 Mixing Tools; Whisk, Beater &amp; Dough Hook &times; 2, Canon imageRUNNER 2206N Multifunctional A3/A4 Printer (Print, Copy and Scan) &times; 1, LG 70-inch NanoCell Smart 4K Ultra HD TV; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 2, Samsung 55-inch Neo QLED 4K Smart TV | QA55QN85D &times; 4, Panasonic 1800w Light & Easy Steam Iron (NI-M300TVTH) - Violet &times; 2, TEFAL Pressure Cooker, Secure 5 Neo 8 L Pressure Cooker, 5-security systems, Stainless Steel, P2584402 &times; 2, Panasonic 1000W Juicer with Full Metal spinner for Maximum Juice extraction; 2.0L Large capacity - MJ-CB600 &times; 2, Decakila Drinking Bottle Set, KMTT027B &times; 1, Skyworth 43-inch E3E Android Smart TV &times; 2, Hisense Cooker 2 Gas Burners, 2 Electric Plates 50x50cm HF522GEES, 68L Electric Oven & Grill &times; 1, Samsung U8000F 190.5 cm (75 inch) 4K Ultra HD LED Smart Tizen TV with Google Voice Assistant (2025 model) &times; 2, Bosch Built-in Serie 4, 90cm Island Chimney Hood, Stainless Steel | DIB97IM50M &times; 1, Sony Mirrorless Alpha 6700 ILCE6700LBQAF1 with E PZ 16-50mm F3.5-5.6 OSS &times; 1, Geepas Air Cooler, 45 Litre, Heavy Duty, GAC9603 &times; 1, LG 635L Side-by-Side Door Refrigerator, LinearCooling™, GC-J257SQRS &times; 3, Epson EcoTank, All-in-One Ink Tank Printer, L3250. &times; 1, Samsung 9Kg Series 5 Heat Pump Tumble Dryer with OptimalDry™, A++, Grey, DV90TA040AX/EU &times; 1, ADH 350Ltrs Chest Freezer &times; 1, ADH 130L Top Mount Freezer Fridge &times; 1, Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12\" DJ Speaker &times; 3, GEEPAS GLED4323/TSFHD 43\" LED / Smart TV DVBTS/S2/Eshare &times; 1, SPJ 700L 2-Door Beverage Upright Cooler &times; 1, Braun CareStyle Compact Pro Steam Generator Iron, IS 2561 &times; 1, Tefal X-Clean 4 GF5035M0 - Wet and Dry Cordless Vacuum Cleaner, Timesaving 2-in-1 Washing and Vacuuming, Smart Dirt Detection, Extra-Long Running Time &times; 2, ADH 358 Litre 2-Door Top Freezer Refrigerator &times; 2, CHiQ 150 Litre (Net 112L) 2-Door Top Freezer Refrigerator, Black CTM150DBIK3 &times; 2, HP Color LaserJet Pro MFP M182n &times; 1, Decakila Cordless Vacuum Cleaner, 140W, 0.8L, CUCV001W &times; 1, Venus 50cm Freestanding Cooking Range, VC5522 &times; 3, Hisense 34-inch G6H Curve Ultrawide Gaming Monitor, 165Hz &times; 1, JBL Live Free NC+ TWS True Wireless Noise Cancelling Earbuds &times; 1, SPJ 3-Taps Top Load Water Dispenser with Bottom Cabinet; Hot, Cold, and Normal, Grey &times; 1, Beko 60x60cm FSM63330DXDSL Cooker | 3 Gas + 1 Hotplate | Multifunction Electric Oven | Flame Safety &times; 2, Geepas Steam Iron, 2000w - 2400w, GSI7788 &times; 1, Hisense 65-inch 4K UHD Smart LED TV, VIDAA, 65A6N; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth &times; 1, Beko 100 Litres Chest Freezer, BCF 1111 UK KE &times; 1, Geepas Electric Barbecue Grill, 38*22CM, 2000W | GBG877 &times; 1, Samsung 850L Top Freezer Fridge with Twin Cooling™, Water Dispenser, Touch Control Panel, RT85K7110SL &times; 1, Samsung 75-Inch QN800D Neo QLED 8K Smart TV QA75QN800D &times; 2, Titan 18,000 BTU Wall Split Air Conditioner, R410a, In-Built Filter &times; 2, HP Laser 107w Printer &times; 1, Beko 65\" 4K Ultra HD Smart LED Google TV, Black, BL65 UHD 9823 C &times; 1, Bosch Built-in Wall Mounted Chimney Hood, 60 cm, Stainless Steel | DWP64CC50Z &times; 1, Bosch Serie 6 PCP6A5B90 58cm Gas Hob - Stainless Steel &times; 2, TEFAL Dual Easy Fry Air Fryer, 8.3L, EY901840 &times; 1, Sony Xplōd XS-GT6938 Car Speaker &times; 1, Decakila Kitchen Scale, KMTT012B &times; 2, Geepas Hair Dryer, 2 Speed Setting, 2000W, GHD86018 | Removable Filter | Hang-up Hook | Cool Shot Function | 3 Heat Settings | Travel Friendly Dryer &times; 1, Geepas GK38074-CR Electric Kettle, 1.8L Stainless Steel, 3000w Fast Boil, Water-Level Indicator, Auto Shut-Off, Cream &times; 4, JBL PartyBox 110 - Portable Party Speaker with Built-in Lights, Powerful Sound and deep bass &times; 1, Krypton KNK6062 Double Layer Stainless Steel Kettle, 1.8L | Stainless Steel Kettle | Boil Dry Protection &amp; Auto Shut Off Feature | Ideal for Hot Water, Tea &amp; Coffee Maker | 1500W &times; 1, TCL 153 L Top-Mount Refrigerator F153TM with Inverter Technology and 4-Star Energy Efficiency &times; 3, Hisense 500 Litres 1-Door Display Cooler, FL-50FC &times; 1, Tefal Compact Power XXL 2.5L Dust Cont Bagless Vacuum Cleaner | TW4853HA &times; 1, Geepas 4-Slice Sandwich Toaster (GST5391) &times; 1, Hisense 10KG Automatic Front Load Washing Machine, Allergy Steam, Pause and Add, Steam Wash, WFBJ1014VS &times; 1, Geepas 120 L Showcase Chiller- GSC1223, Quick Cooling with Low-E Glass Door, Low Noise and Low Voltage Consumption, Equipped with Wire Shelves &times; 4, Samsung Sound+ HW-MS651 Wireless Smart Soundbar &times; 2, Indesit Innex 9kg/6kg Washer Dryer, 1400RPM, 14 Wash Programs, Quick Wash, XWDE 961480X S GCC F101640 &times; 1, Geepas GK5454 1.8 Litre Electric Kettle, 1800 Watts &times; 1, Braun Hand Blender, 450w, Stainless Steel Blades with Plastic Beakers + Whisk &amp; Chopper, MQ10.202MWM &times; 1, CHiQ 55-inch QLED 4K UHD HDR Quantum Dot Android TV, Built-in Wi-Fi, Bluetooth, Chromecast, Dolby Atmos &times; 1, Samsung NV68A1140BK 60cm (68 Litre) Built-in Electric Oven, Catalytic Cleaning, Black Glass &times; 2, Decakila Stand Mixer, 250 Watts, 3.5 L, 5 Speeds, KEMX012B &times; 1, Geepas 4\" Duct Fan- GF21194/ 2200 RPM, Exhaust Ventilation Fans/ 13 w, Perfect for Residential and Commercial Use, for Bathrooms, Kitchens &times; 1, Smartec 32-Inch HD Android Smart LED TV | SS32 &times; 1, Panasonic 1.7 Litre Stainless Steel Kettle, NCK301, 2200 Watts &times; 1, Samsung 10KG Front Load Washing Machine WW10DG5U34ABNQ &times; 2, Hisense 11Kg (Net 10.5kg) Automatic Top Load Washing Machine, 10 Programs, Self-Programming, Extra Rinse, Time Delay, WTCS1102T &times; 2, ADH 175L Top Mount Freezer Double Door Refrigerator &times; 4, Roch 210 Litre 2-Door Toop Freezer Refrigerator &times; 2, Moulinex Blender BlendForce 2, 600 Watts with 4 blades - LM423127 &times; 1, Tefal Steam Iron, 1200 Watt, FV1953M0 &times; 1, Samsung 26 Kg Front Load Smart Washing Machine, Bespoke AI Wash, AI Ecobubble, Touchscreen, Dark Steel, WF90F26ADSNQ &times; 1, Toshiba 43-inch Full HD LED TV w/ Digital Free-to-Air Receiver &times; 1, ADH 700 Litres Double Door Chest Freezer &times; 1, Geepas Coffee Grinder, Stainless Steel, 250W | GCG5440 &times; 1, Decakila Pump Espresso Coffee Maker, 1.5L, 850w, KECF009B &times; 3, Decakila 400w Portable Spot Cleaner, 1.1L, 9kPa Suction Carpet Cleaner, CEVC006W &times; 2, Kenwood Deep Fryer, 3Litre, 2000 Watt, w/ View Window &amp; Stainless Steel Lid | DFM50 &times; 1, Krypton Electric Oven with Rotisserie &amp; Convection, 2800W, KNO6356 100L Capacity, Black &times; 3, Tefal Compact Power XXL Bagless Vacuum Cleaner, TW4B71HA &times; 1, Decakila KEFC012W Air Cooler: 130W Evaporative Air Cooler with Left &amp; Right Automatic Control &times; 1, Hisense 120 Litres (Net 90L) Single Door Fridge, Energy Class A+, 113KWH/YR, RR120DAGS (Silver) &times; 3, Panasonic Steam Iron, 1800w, (NI-M300TATH) - Blue &times; 1, Venus 25 Liters Microwave with Grill, Heavy Duty, 1200W, VMO25GS &times; 1, Hisense 266 Ltrs 2-Door Top Freezer Refrigerator, Frost Free, Silver, A+, RT266N4DGN &times; 1, Panasonic Garment Steamer, Quick Care with Powerful Steam Upto 40g/min, 2000W, 1.5X Wider Head, Large 1.5L Detachable Tank, Glove, NI-GSG060WTH &times; 1, Kenwood 2-in-1 Sandwich Maker with Grill, Non Stick Multifunctional Plates, SMP01.A0WH &times; 1, LG 635L Side-by-Side Fridge, UVnano® Water Dispenser, GC-X257CQES &times; 1, HP OfficeJet Pro 7720 Wide Format All-in-One A3 Printer &times; 1, Samsung 7Kg Front Load Washer w/ Eco Bubble | WW70J4260GS &times; 1, Panasonic 25L Solo Microwave Oven, NNST34NBKPQ &times; 1, Hisense 65-inch 4K QLED Smart TV with Quantum Dot, Dolby Vision &amp; Atmos (65Q6Q) &times; 1, Geepas GMS7493N 2.1 Channel Home Thaeater System (Black) &times; 1, BlueFlame Cooker, 50x55cm, 3 gas burners and 1 electric plate with Electric oven, S5031ER-I &times; 1, Beko Steam Iron, Ceramic Soleplate, SIM3126R &times; 1, TCL 32-inch Android Smart TV, 32S5400AF; Bazeless w/ Bluetooth, Dolby Audio, HDR, YouTube, Netflix &times; 1, Geepas 5 Liter Electric Thermo Pot- GEV27026,Stainless Steel Inner Pot, 8 Stage Temperature Selection,Automatic Stop,Purified Water Mode,Beige &times; 1, Epson EcoTank, All-in-One Ink Tank Printer, L3210 &times; 1, Tefal Non Electric 900Ml Manual Chopper, Transparent/Black/Green, K1320404 &times; 1, Hisense 7 Kg Twin Tub (Top Load Semi-Automatic) Washing Machine, WSBE701 &times; 1, LG 18K BTU Single Cassette, Inverter Air Conditioner (R410) &times; 1, GEEPAS GK38044 STAINLESS STEEL ELECTRIC KETTLE &times; 1, Skyworth 55-inch 4K UHD Android Smart LED TV, SUC9300; Android TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1, BlueFlame Cooker, 60x60cm, 2 Gas Burners and 2 Electric Plates with Electric Oven, S6022ER–IP &times; 1, Braun Juicer, 2.0 Litre Pulp Container, 900 Watt | J500 &times; 1, Hisense Party Rocker One Plus, 300W Portable Party Speaker with Subwoofer HP110 &times; 2, Braun 2 Slot Toaster, 900W, 8 Browning Settings with Bun Warmer, HT1010BK &times; 1, Bosch Serie | 4 60 cm, Built- in, Fully-Integrated Dishwasher, 5 programs, 12 Place settings | SMV50E00GC &times; 3, HP Envy X360 Convertible 15m-es1xxx, Intel Core i5-1155G7, 8GB RAM - 512GB SSD, 11th Generation, Touchscreen &times; 2, Cooker Installation Service &times; 1, Hisense 8 kg Automatic Top Load Washing Machine, WTJD802T &times; 2, Kenwood Hand Mixer (Electric Whisk) w/ 5 Speeds + Turbo Button, Twin Steel Kneader &amp; Beater, 300 Watt | HMP20 &times; 1, Braun Steam Iron, 2700W, SI5037VI &times; 1, Tefal Easy Steam Iron, 1200 Watts | FV1941M0 &times; 1, LG Commercial Washing Machine, Front Load, 10KG, Stackable, FH069FD2MS &times; 1, Geepas GMS11169 Professional Active Speaker System &times; 1, Samsung The Premiere LSP9T 4K Triple Laser Projector &times; 1, Panasonic 7.2Litre Rice Cooker, 2500Watt | SRGA721 &times; 1, Decakila 6.0 Litre Pressure Cooker, KMER017M &times; 2, Geepas 1580w Garment Steamer, 1.5L Tank, 35g/min Steam Output, Anti-drip system, Auto Off Adjustable Poles, 3 Steam Levels, Overheat & Thermostat Protection, GGS25022 &times; 1, HP E27 G5 FHD Monitor (27″) &times; 1, Beko Built-In Hob (Dual-Fuel, 60 cm), BHG901 &times; 2, Pocket Shaver GSR57518UK &times; 2, Geepas 1600W Powerful Travel Hair Dryer with Foldable Handle | Fast Drying Result | 2-Speed &amp; 2 Temperature Settings | Cool Shot Function For Frizz Free Shine &amp; Elegant Concentrator. &times; 1, Kenwood Blender with Multi Mill, 650W, 2 Litres, BLP41.COWH &times; 1, INGCO Industrial High Pressure Washer, 2500W &times; 3, Panasonic, Titanium Coated Sole Plate Steam Iron, 1550W, NI-M250TGTH &times; 1, Gree 30 Litre Dehumidifier &times; 1, Geepas 1400w Wet and Dry Vacuum Cleaner- GVC19032 | 30 L Dust Bag Capacity, 5 M Cord Length | 3-in-1 Function, Wet, Dry and Blow, Powerful Suction | Accessories Storage Function &times; 1, Decakila Portable 90w Vacuum Cleaner, CMPV003B &times; 1, Geepas 4-Slice Bread Toaster, GBT9895 &times; 2, Hisense 22-inch Monitor, 22N3HN, Full HD, 1080p, HDMI, VGA &times; 2, Geepas GLS86053 Rechargeable Ladies Grooming Set | 4-in-1 | Electric Hair Remover | Detachable Shaving Head| On/Off Switch| LED Indicator Light| Ideal to Remove Unwanted Hair &times; 1, Geepas 2-Slice Bread Toaster, White | GBT36515 &times; 1, Geepas Stainless Steel Meat Grinder, GMG1909 &times; 1, Dell S2721D 27 Inch Antiglare Monitor &times; 3, Geepas GRF5109SXHN 500L Double Door Refrigerator - Digital Temperature Control Quick Cooling &amp; Long-lasting Freshness, Recessed Handle, Low Noise, Low Energy Consumption, Defrost Refrigerator &times; 1, Hisense 720 Liters 2-Door Side-by-Side Refrigerator with Water Dispenser and Ice Maker, WiFi Connectivity, RC-72WS4SA &times; 1, IQRA 90x60cm Cooker 4 Gas+ 2 Electric Plates, Auto Ignition Stainless Steel, Electric Oven and Grill, Rotisserie IQ-FC9042-SS &times; 1, Samsung 7Kg Front Load Washer w/ Hygiene Steam | Series 4, WW70T4020CX &times; 1, Kenwood 2600 Watt Steam Iron w/ Ceramic Soleplate, White / Blue | STP75.000WB &times; 1, Aftron 250 Litre Chest Freezer, AFF250H &times; 2, Food Processors 2 in 1 by Geepas , GSB5456 , 240 Volt &times; 1, LG 30(L) “Solo” NeoChef Microwave Oven, Smart Diagnosis™, EasyClean™, Smart Inverter, Black, MS3032JAS &times; 2, Moulinex Deep Fryer, 3 Litre, 2100 Watts, Gray | AM480027 &times; 1, CHiQ 8 Kg Front Load Washing Machine &times; 2, Panasonic Hand Blender, 600 Watt | MXGS1WTZ &times; 1, Geepas Electric Kettle, Stainless Steel, 1.7 L, GK9902 &times; 1, Lenovo 27 G27C-10 (Curved Gaming) Monitor &times; 2, SPJ Free Standing Cooker 50x50cm, 3 Gas Burners + 1 Hotplate, Dual Fuel Oven &times; 2, IQRA Built-in Gas Hob, 4 Burners, Flame Failure Device, Auto-Ignition, Glass Top, IQ-KH4002GL &times; 3, Skyworth 75-Inch 4K UHD Android Smart LED TV | 75SUC9300; HDR, Dolby Atmos, Google TV, Chromecast, Bluetooth &times; 1, LG 5.1Ch DVD Bluetooth Multi Region Home Theatre System, 330 Watt, LHD427 &times; 1, Samsung 55-inch Class QLED Q60C Series 4K UHD Dual LED Quantum HDR Smart TV, QA55Q60C; Tizen, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos, Free-to-Air Decoder &times; 1, Sony Xplōd XS-GT6937 car speaker &times; 1, TEFAL Handstick Vacuum Cleaner | X-PERT 7.60 | 140 W Cordless Vacuum Cleaner | Powerful | Ultra-Lightweight | Long-Lasting Battery | TY6A35HO &times; 2, Tefal Eco Master Steam Iron, 24g/min, 1800 Watts | FV1721M0 &times; 1, Tefal Ultragliss Anti-Calc Plus Steam Iron, 2800W, FV6872M0 &times; 1, Krypton Drum Vacuum Cleaner with Dry &amp; Blow Function/Large Dust Bag Capacity &amp; Dust Bag full indicator, Wider &amp; Flexible Hose, 21 L, 2300 W, KNVC6107 &times; 1, Hisense 75WR6BE 75-Inch Advanced Interactive Display - Conference LED Touch Screen &times; 1, Samsung 511L RF48A4000M9 Twin Cooling Plus™ Multi Door Refrigerator, Silver &times; 1, Decakila 1.5 L Rice Cooker, 500w, KEER033W &times; 2, Samsung The Premier LSP7T 120 inches 4K Smart Laser Projector &times; 1, Geepas Coffee Grinder - GCG41022, 150w Powerful Motor, Durable Jar, Plastic Housing and Stainless Steel Blade, Ergonomic Grip, Press Down Operation, Black &times; 2, Beko Built-In Vitroceramic Hob, BHD408 (30 cm) &times; 1, Royalford RF8427 Water Dispenser – Portable Drinks Beverage Serving Dispenser Tap Juice Water Carrier &times; 2, Decakila 300w Hand Blender, KEJB025W &times; 1, Beko Toaster, 2 Wide Slots, 5 Manual Browning Levels, 900 Watts, Black - TAM 8202 B &times; 2, TCL 675 Liter Chest Freezer, Silver, F675CF &times; 1, Moulinex EasyRice 10-Cup 1.8 Litre Rice Cooker, MK123D27 &times; 1, Dell 24 Inch FHD Computer Monitor &times; 2, Kenwood 9L Capacity Automatic Air Fryer with Grill HFP92.000BK Black &times; 1, IQRA 60x60cm Cooker, 3 Gas Burners + 1 Hotplate, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6011-BLK &times; 2, Geepas 3-In-1 Blender, Powerful Motor 600W, GSB44034N &times; 2, Samsung 13Kg Top loading Washer with Wobble Technology, Digital Inverter Technology, Gray, WA13CG5441BY &times; 2, Epson EcoTank L8050 Wireless Color Photo Printer &times; 1, Samsung 635 Ltrs Side by Side Refrigerator w/ Water Dispenser &amp; Ice Maker, SpaceMax Technology, Silver, RS64R5111M9 &times; 2, Beko 90cm Built-in Cassette Hood, CTB 9250 XH, Cooker Hood (Telescopic, 90 cm) &times; 1, Moulinex Sandwich Maker, 700 Watts, 3-in-1 Panini, Sandwich + Waffle Maker, SW612543 &times; 1, Panasonic 2-in-1 Bottom Loading Water Dispenser with Ice Maker, SDM-WD4534BG, Auto ice Making, Dual Touchless, Big Ice Capacity, UV LED Sterilization, Touch Pad Dispensing &times; 1, Geepas 1.5 Liter Rice Cooker With Steamer, 500W, GRC4334 &times; 1, ADH 1,035 Litres 3-Door Beverage Chiller &times; 1, Geepas GK-38073 BK Electric Kettle – 3000w Fast Boil, 1.7L Stainless Steel, Auto Shut-Off &amp; Boil-Dry Protection &times; 1, LG 8Kg Front Load Washing Machine | AI DD™ | Steam™ | ThinQ™ | F4V3TYPOWE VIVACE &times; 2, SPJ 3-Taps Top Load Water Dispenser with Refrigerator; Hot, Cold, and Normal, Black &times; 1, Decakila Kitchen Scale , KMTT014P &times; 1, Geepas 90\" UHD 4K QLED TV, Android, Youtube, Netflix, Prime Video, Chromecast Built-in, Free To Air Decoder, HDMI and USB Ports HQ Sound, AV Mode, GLED9017CQLED &times; 1, Geepas Stainless Steel Electric Kettle (2.5L, Silver, 1600W), GK38028 &times; 2, De\'Longhi BCO260CD.1 Combined Espresso Machine, 2-in-1 Coffee Pump and Coffee Maker, Black &times; 2, Tefal Turbo Cuisine Maxi Multicooker, 7.6 Litre, CY777865 &times; 1, PlayStation 5 Console &times; 1, Hisense HS3100 3.1Ch Soundbar with Wireless Subwoofer, 480w, Dolby Digital Plus, DTS Virtual:X, Bluetooth 5.3, Roku TV Ready, HDMI/USB/AUX (2024 Model) &times; 1, Geepas Slim Hood with Charcoal Filter- GHD611CS/ Sleek and Stylish Design, Powerful Suction, and Adjustable Speed Setting &times; 1, ADH 360 Litres Showcase Display Freezer &times; 1, Geepas Professional Speaker-GMS11161-Portable Handle with 3600 MAh Huge Battery | TWS Connection &amp; Compatible with BT/USB/AUX/FM/Micro SD | Ideal for Home, Hotels &amp; Outdoor Use &times; 1, Geepas GMP15015 Dual UHF Wireless Microphone System – 2 Mics, 100 Channels, Rechargeable &times; 1, Samsung 13-Place Freestanding 60 cm Dishwasher, Series 11, WiFi Enabled, DW60BG730FSLEU &times; 1, Beko Table Blender (800 W, 1.75 L) , TBN81808BX &times; 1, BlueFlame Cooker, 60x60cm, 2 Gas Burners + 2 Electric Plates w/ Electric Oven, S6022ERF – IP &times; 1, Venus 20 Liters Solo Microwave, Heavy Duty with 700W, VMO20SS &times; 1, Geepas 50 Litre Electric Water Heater, Horizontal, GSW61167 &times; 2, Bosch 25L Series 6 Built-in Microwave Oven, BEL554MS0B &times; 1, TV Installation Service &times; 1, CHiQ 8 Kg Washer Dryer Combo &times; 1, Geepas GRH28529 Ceramic Heater, Portable Electric Space Heater – Mini PTC Fan Heater for Desks &amp; Tables with 2 Heat Settings 1000/1500W - Automatic Oscillation, Thermostat &amp; Safety Cut-Off - 1500W, Silver &times; 1, Klass Single-Phase Automatic Voltage Regulator (KL-AVP30) &times; 1, Samsung 18kg Front Load Washer with Smart AI Control, Add Wash, Air Wash, WF18T8000GV &times; 1, LG 15 Kg Front Load Commercial Dryer with WiFi (RV1840CD7) &times; 2, SONY HT-S40R 600w 5.1ch Home Cinema w/ Subwoofer, Wireless Rear Speakers &times; 3, Braun Multimix 2 In 1 Hand and Stand Mixer, 400 Watts with Bowl | HM1070WH &times; 2, IQRA 60x60cm Cooker, 2 Gas Burners and 2 Hotplates, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6221-BLK &times; 1, Blueflame Cooker 50x50cm, 2 Electric Plates and 2 Gas Burners with Electric Oven, C5022E– B &times; 2, Hisense Party Rocker 160 Speaker &times; 1, Bosch 90 cm Under Cabinet Range Hood, Silver - DHU965CGB &times; 1, Royalford Cork And Can Opener 1 Piece, Multicolor. &times; 1, Geepas GK38074 BK Electric Kettle – 1.8L Stainless Steel, 3000W Fast Boil, Water-Level Indicator &amp; Auto Shut-Off &times; 1, LG GCFB507PQAM 519L Side by Side Refrigerator, Smart Inverter Compressor, Multi Air Flow, Total No Frost &times; 1, MOULINEX Juice Extractor Frutelia Plus, 350W | JU370127 &times; 1, IQRA 90cm Built-in Gas Hob, 5 Burners, Glass, Flame Failure Device, Auto-Ignition, Cast Iron, IQ-KH5068BG &times; 2, Geepas GGC-31018 2-IN-1 Built In Gas Hob-Double Burner Gas Stove with Sabaf Burners,| Auto Ignition System, LPG Gas Stove| Black &times; 1, Geepas 3-in-1 Waterproof Lady Shaver Set, GLS57521UK &times; 1, Tefal XXL Dual Easy Fry 11L, XXL Dual air fryer, +8 people, spacious baskets up to 3kg, 7 pre-sets programs, Black, EY9428G0 &times; 1, LG 8KG/5KG Washer Dryer | 8KG Washing Machine | 5KG Dryer | Front Load | Inverter DD | Steamer Washer | ThinQ™ | F4J3TMG5P &times; 1, Krypton Garment Steamer With Adjustable Poles, Overheat Protection, White, KNGS6224 &times; 1, Kenwood 8kg Front Load Washing Machine w/ Rapid Wash, 15 Wash Programs, Delay Timer, Energy Class A+++, WMM08 &times; 1, Skyworth QLED 65-inch SUE9500 4K UHD Smart Android TV, Google TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1, VENUS 2400W Power with Vertical &amp; Steam Burst, Self Clean, Anti Drip, Ceramic Soleplate Steam Iron VSI 24 SB- Black &times; 1, Hisense 43 Inch 4K QLED Smart TV 43Q6Q (2025 Model), AI Smooth Motion, Wi-Fi, HDMI &amp; USB, Filmmaker Mode, AI 4K Upscaler Dolby Vision &times; 2, Geepas Grinder &amp; Drip Coffee Maker, 0.6L, 600W | GCM41512 &times; 1, TV Tilting Wall Bracket (for Screen sizes 42\" to 86\") &times; 2, Geepas Centrifugal Juice Extractor, 800W | GJE 5437 &times; 1, HP LaserJet MFP M236sdn Multifunction Printer &times; 1, Bosch Serie 8 HBG634BS1B Multifunction Electric Built-in Single Oven in Stainless Steel &times; 1, Hisense 65WR6BE 65-Inch Advanced Interactive Display - Conference LED Touch Screen &times; 2, Samsung The Freestyle Smart Portable Projector, 30-100\" (SPLSP3BLA) &times; 1, Philips Shaver 3000 Series, All-in-1 Wet & Dry Electric Shaver with Pop-Up Precision Trimmer &times; 1, LG 1000W 5.1Ch DVD Home Theatre System, LHD627 &times; 1, Geepas GMS8522 3.1 Channel Multimedia Speaker System | 40000W PMPO | Bluetooth| USB/SD/AUX Support | FM Radio| RGB Lights| LED Display| EQ Function &times; 2, Decakila 3 in 1 Breakfast Station; Bake, Fry, Prepare Coffee, KEEV003R &times; 1, Skyworth 100-inch 100A5D Pro UHD 4K Smart Mini LED TV, 100A5D &times; 1, Braun MultiQuick Hand Blender, 450W, Stainless Steel Blades with Plastic Beakers, MQ10.001MWH &times; 1, Titan 90cm Built-in 5 Gas Burner Hob, TN-BIH9500BA &times; 1, Hisense 24-inch Monitor, 24N3G-PRO, Full HD, 1080p, IPS, 100Hz &times; 1, Geepas Rice Cooker w/ Steamer, Stainless Steel, 1.8L, 700W, Non Stick, GRC4330 &times; 1, Geepas 3-in-1 Blender, 1.5Litres, 500W, GSB44017 &times; 1, LG 48,000 BTU Floor Standing Air Conditioner &times; 1, Krypton KNB6074 400W Blender, 2 In 1 with 1.5L Unbreakable Jar – Crusher, Grinder, Juicer| Powerful Motor |Over Heat Protection &times; 1, Geepas Cordless/Corded Steam Iron- GSI24015| Wet and Dry Steam Iron Box Handy Design with Powerful Burst Steam, Anti-Drip Function &times; 1, LG GN-C262SLBN 209(L) | Gross 225(L) | Top Freezer Refrigerator | Inverter Linear Compressor | LINEAR Cooling™| DoorCooling+™ &times; 1, HP V221VB 21.5 Inch Monitor &times; 1, Beko 60x60cm Gas Cooker, FSM61330DXDSL; 3 Gas + 1 Wok Burner, Fan-assisted Electric Oven + Grill, Cast Iron Supports, Flame Failure Device, Inox Finish &times; 1, Venus 90/60cm 4 Gas + 2 Electric Cooker Range w/ Electric Oven &amp; Grill + Cylinder Compartment | VC9642 &times; 1, IQRA 16-inch Wall Fan with Remote, 50 watts, 3 Speeds (IQ-WF019R) &times; 1, Beko BM04531B 45L Midi Electric Oven with Grill – Compact Countertop Electric Oven for Baking, Roasting &amp; Grilling, Ideal for Small Kitchens &times; 1, Geepas Stainless Steel Electric Kettle (1.8 Litres, Copper Color), GK38053 &times; 1, Hisense 6.3 Litre Air Fryer, 1700 W, with LED Display and Touch Control (H06AFBS2S3) &times; 1, Decakila 1.7 L, 2200 Watts, Electric Plastic kettle, KEKT027W &times; 1, TCL C2110FLG Front Load Automatic Washing Machine with Inverter Motor, 10 kg Capacity, DD motor, Add garment, Spray Wash, Drum Clean, Sound off function &times; 1, Decakila Cordless Hand Blender, 60 Watts, Stainless Steel Blades, KMJB037G &times; 1, Bosch Tall Integrated Frost Free Freezer w/ Fixed Hinge, 177.2 x 55.8cm | GIN81AEF0G &times; 1, MOULINEX Stand Mixer, 4.8 L, 800 W, QA160127. &times; 1, Tefal Kitchen Scale / Weighing Scale Optiss, White, BC5000V2 &times; 1, Samsung 40-Inch Full HD Smart LED TV | UA40T5300 &times; 1, Geepas Fan Heater, GFH28547 &times; 1, WAHL 5 Star Balding Clipper &times; 1, SONY Mirrorless Vlogging Camera with E PZ 16-50mm, F3.5-5.6 OSS, ZVE10L &times; 1, Beko BMO7031B UK MIDI Oven, Black - 70L &times; 1, Geepas Digital Air Fryer- GAF37532|11L CapacFries, Steak, Chicken, Cake, Meat, Bread|5.5 L Dual Baskets with Separator| Digital Display, Multiple Function,Dehydrate, Broil, others, 1-60 Min Timer &times; 1, LG 65-inch 4K UHD Smart LED TV, 65UQ80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1, Hisense Gross 120 Ltrs Double Door Top Freezer Mini Refrigerator | RD-12DR &times; 1, Beko 12kg/8kg Freestanding Washer Dryer with ProSmart Inverter Motor – 1400 rpm, Manhattan Grey &times; 1, Sony Bravia 55-inch 4K UHD Smart LED TV, Google TV, KD55X75K; Built-in Wi-Fi, HDR, Bluetooth, Built-in Chromecast, Dolby Atmos &times; 1, Geepas 12 Litre Digital Multi Cooker, 1600w, GMC35030 &times; 1, Beko 9kg Front Load Washing Machine, BAW389 UK; A+++, 1200 RPM, SteamCure, ProSmart Inverter Motor, AquaFusion, Manhattan Grey &times; 2, Kenwood 8-in-1 Food Processor, 750w Multi-Functional w/ 3 Interchangeable Disks, Blender, Whisk, Dough Maker | FDP03 &times; 1, Panasonic 9L Double Glazed Glass Toaster Oven | NT-H900 &times; 1, ADH 168L Top Mount Freezer Double Door Refrigerator &times; 1, Geepas GSB9890 4-In-1 Food Processor - Blender Juicer, 2-Speed With Pulse Function &times; 2, Kenwood Steam Iron, 1100 Watt, 130ML, Non Stick Plate, Blue | STP01.000WB &times; 1, SPJ 699 Litre Side by Side Frost Free Refrigerator, Black Glass &times; 1, Klass 50x60 Freestanding Cooker, 3 Gas Burners + 1 Hotplate, Electric Oven (4TTE 5631 HI) &times; 1, Blueflame Cooker, 50x50cm, 3 Gas Burners + 1 Electric Plate, Stainless Steel, Inox), C5031E – I &times; 1, Dell E2220H 21.5 Inch Monitor &times; 1, Kenwood 2600 Watt Steam Iron w/ Ceramic Soleplate, White / Green | STP70.000WG &times; 1, Bosch 505Litres Freestanding Bottom Mount Freezer Fridge | KGN56VI30M &times; 1, Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 650 Watt | RCM44 &times; 1, Kenwood Steam Iron 2000W with Non Stick Soleplate, White/Purple | STP40.000WP &times; 1, Sony Bravia 55-inch X90L 4K UHD HDR LED Smart TV, XR55X90L &times; 1, LG 43-inch LED TV w/ Free-to-Air Decoder, 43LM550P &times; 1, MOULINEX Super Uno Access 2.2 L Deep Fryer, 1800 Watts | AM310028 &times; 1, JBL PartyBox 100 - High Power Portable Wireless Bluetooth Party Speaker &times; 1, HP Color Laser MFP 179fnw Multifunction Printer &times; 1, Electrolux 7kg/5kg Front Load Washer and Dryer, Inverter Motor, 1400RPM, 15 Programs, EWW7024M3SB &times; 1, Skyworth QLED 55-inch 4K UHD Smart Google TV, 55G3EN &times; 1, Hisense 1800w Steam Iron, SteamCare Lite, H18SIGRS1 &times; 1, SPJ 559L 4-Door Frost Free Refrigerator, Silver Glass &times; 1, Haier 50L Single Door Refrigerator, HR-6BLUK2 &times; 1, SPJ 130 Litre Upright Cooler &times; 1, Klass Free Standing Cooker 60x60cm, Full Gas, 4 Gas Burners, Gas Oven & Grill, Oven Lamp & Timer, 4TTE-6640 BKL &times; 1, Canon Pixma G4400 4-in-1 Wireless Ink Tank Printer | CIS, Print, Copy, Scan, Document Feeder &times; 1, Geepas 1200W Circular Saw (GCS1200) &times; 1, Samsung 65-inch CU7000 4K Crystal UHD LED Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1, HP Color LaserJet Pro MFP M283fdw – Multifunction Printer with Wi-Fi and Auto Duplex Printing &times; 1, BlueFlame Diamond Cooker, 60x60cm, 3 Gas Burners &amp; 1 Electric Plate w/ Electric Oven Inox – Stainless Steel, D6031ERF &times; 1, Samsung (Net 305L) RT5300C Top Mount Freezer Refrigerators with SpaceMax™, RT31CG5421S9UT &times; 1, Hisense 820 Litre (Net 635L) French Door Refrigerator with Water Dispenser and Wi-Fi Connectivity (RF-82W42WSR) &times; 1, Hisense 55-inch Q6N 4K UHD Smart QLED TV, 55Q6N; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth, Free-to-Air Decoder &times; 1, Hitachi 850L 2-Door Inverter Compressor Fridge, Brilliant Black | RV990PUN1KBBK &times; 1, Hisense 200L (Net 155 Liter) Top Freezer Refrigerator, RD-20DR4SA; Mechanical Defrost, Silver &times; 1, BlueFlame 60*60cm 4 Gas Freestanding Cooker w/ Electric Oven, D6040ERF &times; 1, TCL 410 Liter Chest Freezer, Silver, FG410CF &times; 1, ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1, SPJ 400L Beverage Upright Cooler &times; 1, CHiQ 43-inch Full HD LED TV; HDMI, USB, Free-to-Air Decoder, Frameless Design &times; 1, Tefal Easy Fry Precision+ 2-in-1 Digital Air Fryer and Grill, 4.2L Capacity, 8 Programs inc. Dehydrator, Stainless Steel, EY505D27, 1550W &times; 1, Tefal Classic Bathroom Scale, Automatic ON/OFF, Tempered Glass, Turquoise, PP1503V0 &times; 1, Haier 172L Double Door Refrigerator, Bottom Freezer, Efficient &amp; Stylish HRD-230TMPS &times; 1, SPJ 20L Digital Solo Microwave Oven, Mirror Door, Black &times; 1, SPJ 210 Litre Chest Freezer &times; 2, Hisense 5.1 Channel Soundbar, 540W with Wireless Subwoofer &amp; Rear Speakers, HS5100 &times; 1, Decakila Cordless 1.25L Food Processor, 200 Watts, 2000mAh, KMMG005B &times; 1, Geepas GGC31036 Stainless Steel Built-In Gas Electric Hot Plate Hob, Black/Silver &times; 1, IQRA 60cm Built-in Gas Hob, 4 Burners, Flame Failure Device, Auto-Ignition, Stainless Steel, IQ-BH640BLK &times; 1, Geepas Dry Iron, 1200W, GDI23016 &times; 1, LG Dryer, 9 Kg, Sensor Dry, Inverter Technology, NFC | RC9066C3F &times; 1, Beko Built-In Gas Hob, HQAW 64225 SX (60 cm) &times; 1, Beko BWD106 | Freestanding Washer Dryer (10kg/6kg, 1400 rpm) &times; 1, BlueFlame 50x60cm Full Gas Cooker with Gas Oven, Inox, Stainless steel &times; 1, Samsung 260Ltrs Top Freezer Fridge w/ Stabiliser, Coolpack, Inverter Compressor | RT26HAR2DWW &times; 1, Hisense 330 Liter (Net 251L: Fridge 171L + Freezer 80L) Bottom Freezer Refrigerator with Water Dispenser, Frost Free, A+, Silver, RD-33WC4SB1 &times; 1, LG 86-inch 4K UHD Smart LED TV, 86UT80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1, Kenwood Blender, 500w, 1.5L w/ Grinder Mill, Chopper Mill, Ice Crush Function, BLP15.360BK &times; 1, Bosch 90cm Serie 8 Induction Cooktop | PIV975DC1E &times; 1, Ariston 60/60cm Full Gas Cooker, Stainless-Steel, Cast-Iron Pan Support, AS67G1MCXT &times; 1, GEEPAS CERAMIC STEAM IRON GSI24026,3100W, CERAMIC SOLEPLATE, ANTI-CALC &amp; ANTI-DRIP, 350ML TANK, COMFORTABLE HANDLE, MULTI-FUNCTION &times; 1, Geepas GRVC19057 Robot Vacuum Cleaner &times; 1, ADH 60 Litres 1-Door Refrigerator &times; 1, Titan 90cm Built-In Oven,TN-BIE090BA &times; 1, Beko 60cm Built-In Multi-Function Oven with AeroPerfect™, BBXIM17300 &times; 1, Samsung ST40B Sound Tower High Power Audio, 160W, IPX5 Water Resistant, 12 Hours of Playtime &times; 1, Tefal Panini Grill, Inicio Multi-functional Grill, 2000 Watts, GC241D28 &times; 1, LG 8kg Vivace Front Load Washing Machine with AI DD technology, F4R3TYG6P &times; 1, Dr Volt 6A Fridge Protector | IQFP6UK &times; 1, Samsung NV68A1140BS 60cm (68 Litre) Built-in Electric Oven, Catalytic Cleaning, Stainless Steel &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:438:\"a:15:{s:8:\"subtotal\";s:10:\"1794172000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:6:\"488500\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:10:\"1794172000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:10:\"1794660500\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:267298:\"a:623:{s:32:\"cc2079f1f86ce2f9765a8659f9d07c8b\";a:11:{s:3:\"key\";s:32:\"cc2079f1f86ce2f9765a8659f9d07c8b\";s:10:\"product_id\";i:49567;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1990000;s:8:\"line_tax\";d:0;}s:32:\"e5b2b969f92ce208b531c252d9ccacc5\";a:11:{s:3:\"key\";s:32:\"e5b2b969f92ce208b531c252d9ccacc5\";s:10:\"product_id\";i:52219;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2400000;s:8:\"line_tax\";d:0;}s:32:\"c7a5de3b6e92a05697373906039a7e8c\";a:11:{s:3:\"key\";s:32:\"c7a5de3b6e92a05697373906039a7e8c\";s:10:\"product_id\";i:76715;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:680000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:680000;s:8:\"line_tax\";d:0;}s:32:\"df799efd470820bf3df8d4b9c29730ce\";a:11:{s:3:\"key\";s:32:\"df799efd470820bf3df8d4b9c29730ce\";s:10:\"product_id\";i:35981;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:34000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:34000000;s:8:\"line_tax\";d:0;}s:32:\"9425e203541ee1a33229f6d1d72904de\";a:11:{s:3:\"key\";s:32:\"9425e203541ee1a33229f6d1d72904de\";s:10:\"product_id\";i:80266;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2700000;s:8:\"line_tax\";d:0;}s:32:\"53c70a41cc7388ee0d1d7a9bbc788018\";a:11:{s:3:\"key\";s:32:\"53c70a41cc7388ee0d1d7a9bbc788018\";s:10:\"product_id\";i:63546;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2250000;s:8:\"line_tax\";d:0;}s:32:\"25894b83153c3368d9cda6acb153434e\";a:11:{s:3:\"key\";s:32:\"25894b83153c3368d9cda6acb153434e\";s:10:\"product_id\";i:79995;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:5;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1050000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1050000;s:8:\"line_tax\";d:0;}s:32:\"eb97bcf536d290413936db395115cc75\";a:11:{s:3:\"key\";s:32:\"eb97bcf536d290413936db395115cc75\";s:10:\"product_id\";i:25310;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3850000;s:8:\"line_tax\";d:0;}s:32:\"49ebb9cc9e4930ee1181a431eca55451\";a:11:{s:3:\"key\";s:32:\"49ebb9cc9e4930ee1181a431eca55451\";s:10:\"product_id\";i:67189;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:110000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:110000;s:8:\"line_tax\";d:0;}s:32:\"6d950777961fbf7d55a6848c93a069c4\";a:11:{s:3:\"key\";s:32:\"6d950777961fbf7d55a6848c93a069c4\";s:10:\"product_id\";i:67287;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:530000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:530000;s:8:\"line_tax\";d:0;}s:32:\"fcda6786a0b7fd1c0536a70dd3c3523d\";a:11:{s:3:\"key\";s:32:\"fcda6786a0b7fd1c0536a70dd3c3523d\";s:10:\"product_id\";i:77609;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:480000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:480000;s:8:\"line_tax\";d:0;}s:32:\"71fce7d439aed4baf4ce200749a13213\";a:11:{s:3:\"key\";s:32:\"71fce7d439aed4baf4ce200749a13213\";s:10:\"product_id\";i:23131;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:17000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:17000000;s:8:\"line_tax\";d:0;}s:32:\"8345bf2512c333359af1ae757f1a131e\";a:11:{s:3:\"key\";s:32:\"8345bf2512c333359af1ae757f1a131e\";s:10:\"product_id\";i:74339;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1000000;s:8:\"line_tax\";d:0;}s:32:\"ce2944483d9e618b7558baa93e53a799\";a:11:{s:3:\"key\";s:32:\"ce2944483d9e618b7558baa93e53a799\";s:10:\"product_id\";i:80504;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:10000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:10000000;s:8:\"line_tax\";d:0;}s:32:\"e40d1c91705e98a59715fd4bb89d5e39\";a:11:{s:3:\"key\";s:32:\"e40d1c91705e98a59715fd4bb89d5e39\";s:10:\"product_id\";i:33099;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:950000;s:8:\"line_tax\";d:0;}s:32:\"143e68900faa8349fa6e6564ca95fbbf\";a:11:{s:3:\"key\";s:32:\"143e68900faa8349fa6e6564ca95fbbf\";s:10:\"product_id\";i:74615;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1770000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1770000;s:8:\"line_tax\";d:0;}s:32:\"b8e4befbb79fa488a203763d887edb18\";a:11:{s:3:\"key\";s:32:\"b8e4befbb79fa488a203763d887edb18\";s:10:\"product_id\";i:18748;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2690000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2690000;s:8:\"line_tax\";d:0;}s:32:\"51f072c443c5650d9e41d2dfb945c83d\";a:11:{s:3:\"key\";s:32:\"51f072c443c5650d9e41d2dfb945c83d\";s:10:\"product_id\";i:80006;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1350000;s:8:\"line_tax\";d:0;}s:32:\"fd114054619302fb21c74ff18ba1f08e\";a:11:{s:3:\"key\";s:32:\"fd114054619302fb21c74ff18ba1f08e\";s:10:\"product_id\";i:73224;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:960000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:960000;s:8:\"line_tax\";d:0;}s:32:\"687d34c71322907f452e5e26a72e32b5\";a:11:{s:3:\"key\";s:32:\"687d34c71322907f452e5e26a72e32b5\";s:10:\"product_id\";i:74896;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2010000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2010000;s:8:\"line_tax\";d:0;}s:32:\"f3173935ed8ac4bf073c1bcd63171f8a\";a:11:{s:3:\"key\";s:32:\"f3173935ed8ac4bf073c1bcd63171f8a\";s:10:\"product_id\";i:1603;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1700000;s:8:\"line_tax\";d:0;}s:32:\"96671501524948bc3937b4b30d0e57b9\";a:11:{s:3:\"key\";s:32:\"96671501524948bc3937b4b30d0e57b9\";s:10:\"product_id\";i:2279;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1160000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1160000;s:8:\"line_tax\";d:0;}s:32:\"29a260ce7517fd4db71c8d4d0e50f7d4\";a:11:{s:3:\"key\";s:32:\"29a260ce7517fd4db71c8d4d0e50f7d4\";s:10:\"product_id\";i:80478;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:5600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5600000;s:8:\"line_tax\";d:0;}s:32:\"6bcbf359dd1fca3e6b281096abb24303\";a:11:{s:3:\"key\";s:32:\"6bcbf359dd1fca3e6b281096abb24303\";s:10:\"product_id\";i:33754;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:395000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:395000;s:8:\"line_tax\";d:0;}s:32:\"da097d29e55be0a9ecf20142d14f9509\";a:11:{s:3:\"key\";s:32:\"da097d29e55be0a9ecf20142d14f9509\";s:10:\"product_id\";i:52153;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2100000;s:8:\"line_tax\";d:0;}s:32:\"e7754899df9ffd588b84479d5c978e36\";a:11:{s:3:\"key\";s:32:\"e7754899df9ffd588b84479d5c978e36\";s:10:\"product_id\";i:70467;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6300000;s:8:\"line_tax\";d:0;}s:32:\"d406725383640f22e89944b42f59c0e0\";a:11:{s:3:\"key\";s:32:\"d406725383640f22e89944b42f59c0e0\";s:10:\"product_id\";i:76969;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:580000;s:8:\"line_tax\";d:0;}s:32:\"f4431fbd60ca4a4e72238472ebb7c421\";a:11:{s:3:\"key\";s:32:\"f4431fbd60ca4a4e72238472ebb7c421\";s:10:\"product_id\";i:28993;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:325000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:325000;s:8:\"line_tax\";d:0;}s:32:\"bd988b0e7b1fdfeb2f7f883fd067887b\";a:11:{s:3:\"key\";s:32:\"bd988b0e7b1fdfeb2f7f883fd067887b\";s:10:\"product_id\";i:32753;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:26700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:26700000;s:8:\"line_tax\";d:0;}s:32:\"1747d1fa8599d2bd102ce1e8b8ee2399\";a:11:{s:3:\"key\";s:32:\"1747d1fa8599d2bd102ce1e8b8ee2399\";s:10:\"product_id\";i:19939;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:160000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:160000;s:8:\"line_tax\";d:0;}s:32:\"0a8e127a7b5717b3aee6c1f0f508d1b0\";a:11:{s:3:\"key\";s:32:\"0a8e127a7b5717b3aee6c1f0f508d1b0\";s:10:\"product_id\";i:19150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1760000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1760000;s:8:\"line_tax\";d:0;}s:32:\"3be159f17a0b38b5a424e492a99ea5d0\";a:11:{s:3:\"key\";s:32:\"3be159f17a0b38b5a424e492a99ea5d0\";s:10:\"product_id\";i:77562;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:160000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:160000;s:8:\"line_tax\";d:0;}s:32:\"f80fab2d6a2f65c2181731623ee0993b\";a:11:{s:3:\"key\";s:32:\"f80fab2d6a2f65c2181731623ee0993b\";s:10:\"product_id\";i:58669;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:230000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:230000;s:8:\"line_tax\";d:0;}s:32:\"03884408ebb583e1d5970576190177e0\";a:11:{s:3:\"key\";s:32:\"03884408ebb583e1d5970576190177e0\";s:10:\"product_id\";i:63180;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3100000;s:8:\"line_tax\";d:0;}s:32:\"8d918b861f4dd418b150ed28a3d41ffb\";a:11:{s:3:\"key\";s:32:\"8d918b861f4dd418b150ed28a3d41ffb\";s:10:\"product_id\";i:62418;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:460000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:460000;s:8:\"line_tax\";d:0;}s:32:\"76b9419064e61d1a0a82607b0cbd7fc4\";a:11:{s:3:\"key\";s:32:\"76b9419064e61d1a0a82607b0cbd7fc4\";s:10:\"product_id\";i:17601;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:11220000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:11220000;s:8:\"line_tax\";d:0;}s:32:\"513d6bdbaed51319e9aa9f84a7f7518e\";a:11:{s:3:\"key\";s:32:\"513d6bdbaed51319e9aa9f84a7f7518e\";s:10:\"product_id\";i:42444;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:980000;s:8:\"line_tax\";d:0;}s:32:\"ececf8310d5c47ae7dbdf1cda6163c72\";a:11:{s:3:\"key\";s:32:\"ececf8310d5c47ae7dbdf1cda6163c72\";s:10:\"product_id\";i:28671;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4500000;s:8:\"line_tax\";d:0;}s:32:\"b40d775ea0bf7a197795713eaca047e4\";a:11:{s:3:\"key\";s:32:\"b40d775ea0bf7a197795713eaca047e4\";s:10:\"product_id\";i:80471;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:10360000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:10360000;s:8:\"line_tax\";d:0;}s:32:\"f99739096bbbf3c31a52e0a33f8a1943\";a:11:{s:3:\"key\";s:32:\"f99739096bbbf3c31a52e0a33f8a1943\";s:10:\"product_id\";i:64876;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:13160000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:13160000;s:8:\"line_tax\";d:0;}s:32:\"6da9d8180238504e64591d05d9c950bc\";a:11:{s:3:\"key\";s:32:\"6da9d8180238504e64591d05d9c950bc\";s:10:\"product_id\";i:51999;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1140000;s:8:\"line_tax\";d:0;}s:32:\"686097f2a317b132189254c8efc7ade4\";a:11:{s:3:\"key\";s:32:\"686097f2a317b132189254c8efc7ade4\";s:10:\"product_id\";i:52220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3160000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3160000;s:8:\"line_tax\";d:0;}s:32:\"d23a5efe0c79a92ea18ee9145fabd92c\";a:11:{s:3:\"key\";s:32:\"d23a5efe0c79a92ea18ee9145fabd92c\";s:10:\"product_id\";i:52052;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3960000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3960000;s:8:\"line_tax\";d:0;}s:32:\"4aa235219753273941bab0a2b1b3adff\";a:11:{s:3:\"key\";s:32:\"4aa235219753273941bab0a2b1b3adff\";s:10:\"product_id\";i:52193;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1070000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1070000;s:8:\"line_tax\";d:0;}s:32:\"68d1764561c1b041f7c37b41abb5f8dd\";a:11:{s:3:\"key\";s:32:\"68d1764561c1b041f7c37b41abb5f8dd\";s:10:\"product_id\";i:59069;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:85000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:85000;s:8:\"line_tax\";d:0;}s:32:\"ee935469799a9e68ed930c5edcede795\";a:11:{s:3:\"key\";s:32:\"ee935469799a9e68ed930c5edcede795\";s:10:\"product_id\";i:59431;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:380000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:380000;s:8:\"line_tax\";d:0;}s:32:\"f7d2f1c7f87342cc8c0733b31a374281\";a:11:{s:3:\"key\";s:32:\"f7d2f1c7f87342cc8c0733b31a374281\";s:10:\"product_id\";i:80555;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:7760000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7760000;s:8:\"line_tax\";d:0;}s:32:\"1d9ce2fb7c04358477486d0b06a38299\";a:11:{s:3:\"key\";s:32:\"1d9ce2fb7c04358477486d0b06a38299\";s:10:\"product_id\";i:79943;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:750000;s:8:\"line_tax\";d:0;}s:32:\"2f10158c59d8ce7d40687769eb8e0424\";a:11:{s:3:\"key\";s:32:\"2f10158c59d8ce7d40687769eb8e0424\";s:10:\"product_id\";i:19683;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3680000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3680000;s:8:\"line_tax\";d:0;}s:32:\"80975550806eb4c9abaf7bb3d6cd4868\";a:11:{s:3:\"key\";s:32:\"80975550806eb4c9abaf7bb3d6cd4868\";s:10:\"product_id\";i:27329;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1580000;s:8:\"line_tax\";d:0;}s:32:\"15f6c805ba51da28a6350de6a2720f12\";a:11:{s:3:\"key\";s:32:\"15f6c805ba51da28a6350de6a2720f12\";s:10:\"product_id\";i:42478;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990000;s:8:\"line_tax\";d:0;}s:32:\"299e150c404f7fcf2e4a83e2ea70d42b\";a:11:{s:3:\"key\";s:32:\"299e150c404f7fcf2e4a83e2ea70d42b\";s:10:\"product_id\";i:22885;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1890000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1890000;s:8:\"line_tax\";d:0;}s:32:\"bce97ec6ae370b537a76d47dbba0461e\";a:11:{s:3:\"key\";s:32:\"bce97ec6ae370b537a76d47dbba0461e\";s:10:\"product_id\";i:80381;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5910000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5910000;s:8:\"line_tax\";d:0;}s:32:\"3c6d4f6a20e08ad47557b4fc5e67dbc8\";a:11:{s:3:\"key\";s:32:\"3c6d4f6a20e08ad47557b4fc5e67dbc8\";s:10:\"product_id\";i:23588;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6300000;s:8:\"line_tax\";d:0;}s:32:\"3eab0bd4c54d1a89c45154cbc76ba2ec\";a:11:{s:3:\"key\";s:32:\"3eab0bd4c54d1a89c45154cbc76ba2ec\";s:10:\"product_id\";i:80564;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2250000;s:8:\"line_tax\";d:0;}s:32:\"c3121fa95cd6bc24f771b66449a2142c\";a:11:{s:3:\"key\";s:32:\"c3121fa95cd6bc24f771b66449a2142c\";s:10:\"product_id\";i:70077;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:4770000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4770000;s:8:\"line_tax\";d:0;}s:32:\"5b2f8a091242b95c9c29a63ab86a837a\";a:11:{s:3:\"key\";s:32:\"5b2f8a091242b95c9c29a63ab86a837a\";s:10:\"product_id\";i:74604;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1780000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1780000;s:8:\"line_tax\";d:0;}s:32:\"2da22496e4afdf5c24de98c404030188\";a:11:{s:3:\"key\";s:32:\"2da22496e4afdf5c24de98c404030188\";s:10:\"product_id\";i:19418;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:14000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:14000000;s:8:\"line_tax\";d:0;}s:32:\"57dd3b27ac1f94261bb338d61b3df823\";a:11:{s:3:\"key\";s:32:\"57dd3b27ac1f94261bb338d61b3df823\";s:10:\"product_id\";i:51818;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:11850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:11850000;s:8:\"line_tax\";d:0;}s:32:\"80c3759420eee7aad4f3b6e9f1d9779b\";a:11:{s:3:\"key\";s:32:\"80c3759420eee7aad4f3b6e9f1d9779b\";s:10:\"product_id\";i:17459;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:47000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:47000000;s:8:\"line_tax\";d:0;}s:32:\"97e9882d23181feae2e14566db2e63aa\";a:11:{s:3:\"key\";s:32:\"97e9882d23181feae2e14566db2e63aa\";s:10:\"product_id\";i:15832;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:750000;s:8:\"line_tax\";d:0;}s:32:\"72657bf771010ea1fdb5e89f33a05b51\";a:11:{s:3:\"key\";s:32:\"72657bf771010ea1fdb5e89f33a05b51\";s:10:\"product_id\";i:59056;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:300000;s:8:\"line_tax\";d:0;}s:32:\"d536bab6f797c3028f36a0320e94e9f5\";a:11:{s:3:\"key\";s:32:\"d536bab6f797c3028f36a0320e94e9f5\";s:10:\"product_id\";i:71966;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:8370000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:8370000;s:8:\"line_tax\";d:0;}s:32:\"223cbeea72ad6d8bdc7413036415830b\";a:11:{s:3:\"key\";s:32:\"223cbeea72ad6d8bdc7413036415830b\";s:10:\"product_id\";i:62653;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1500000;s:8:\"line_tax\";d:0;}s:32:\"6a824de835fa5cd8cbd7b4c24f89db79\";a:11:{s:3:\"key\";s:32:\"6a824de835fa5cd8cbd7b4c24f89db79\";s:10:\"product_id\";i:59503;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:285000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:285000;s:8:\"line_tax\";d:0;}s:32:\"d216826c3fee86b9640471adcac0efd9\";a:11:{s:3:\"key\";s:32:\"d216826c3fee86b9640471adcac0efd9\";s:10:\"product_id\";i:68290;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2360000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2360000;s:8:\"line_tax\";d:0;}s:32:\"4c07579c4a05e24e2a2d98142a8abf42\";a:11:{s:3:\"key\";s:32:\"4c07579c4a05e24e2a2d98142a8abf42\";s:10:\"product_id\";i:74247;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:220000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:220000;s:8:\"line_tax\";d:0;}s:32:\"22d9d2c66c6c79252642a0d25f9a7947\";a:11:{s:3:\"key\";s:32:\"22d9d2c66c6c79252642a0d25f9a7947\";s:10:\"product_id\";i:77280;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:140000;s:8:\"line_tax\";d:0;}s:32:\"0996138d24bcb03046522564a36fee2b\";a:11:{s:3:\"key\";s:32:\"0996138d24bcb03046522564a36fee2b\";s:10:\"product_id\";i:64829;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2878000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2878000;s:8:\"line_tax\";d:0;}s:32:\"6f93a6d1842f4e8e49a681f6ac5a9433\";a:11:{s:3:\"key\";s:32:\"6f93a6d1842f4e8e49a681f6ac5a9433\";s:10:\"product_id\";i:72529;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1650000;s:8:\"line_tax\";d:0;}s:32:\"c4e21b9d9df296ee17ddab3dbbc851f5\";a:11:{s:3:\"key\";s:32:\"c4e21b9d9df296ee17ddab3dbbc851f5\";s:10:\"product_id\";i:17593;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:9570000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:9570000;s:8:\"line_tax\";d:0;}s:32:\"39cf77d8989671cca659b8b5b8c7d7cc\";a:11:{s:3:\"key\";s:32:\"39cf77d8989671cca659b8b5b8c7d7cc\";s:10:\"product_id\";i:80494;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2830000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2830000;s:8:\"line_tax\";d:0;}s:32:\"ebea0e6d85a68f7b6cd90e4aa34229e3\";a:11:{s:3:\"key\";s:32:\"ebea0e6d85a68f7b6cd90e4aa34229e3\";s:10:\"product_id\";i:61971;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:570000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:570000;s:8:\"line_tax\";d:0;}s:32:\"8d2d29677de79211195e3dcb6df68339\";a:11:{s:3:\"key\";s:32:\"8d2d29677de79211195e3dcb6df68339\";s:10:\"product_id\";i:62085;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:210000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:210000;s:8:\"line_tax\";d:0;}s:32:\"97d6bd84cf0946eb84f594823b07abed\";a:11:{s:3:\"key\";s:32:\"97d6bd84cf0946eb84f594823b07abed\";s:10:\"product_id\";i:71212;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:980000;s:8:\"line_tax\";d:0;}s:32:\"c81c40732da8d5014c62e4e977af6d94\";a:11:{s:3:\"key\";s:32:\"c81c40732da8d5014c62e4e977af6d94\";s:10:\"product_id\";i:63178;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:10650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:10650000;s:8:\"line_tax\";d:0;}s:32:\"2ed2083bf1107ac5e794d2845c1f7bf7\";a:11:{s:3:\"key\";s:32:\"2ed2083bf1107ac5e794d2845c1f7bf7\";s:10:\"product_id\";i:51691;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1790000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1790000;s:8:\"line_tax\";d:0;}s:32:\"f2d20b66366a6d66253fc0824604e3ad\";a:11:{s:3:\"key\";s:32:\"f2d20b66366a6d66253fc0824604e3ad\";s:10:\"product_id\";i:72061;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1900000;s:8:\"line_tax\";d:0;}s:32:\"cb38763404fb5d36d5f4759acc5ec84a\";a:11:{s:3:\"key\";s:32:\"cb38763404fb5d36d5f4759acc5ec84a\";s:10:\"product_id\";i:24350;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4800000;s:8:\"line_tax\";d:0;}s:32:\"fb0ffdcee679b597fd010bdfbaca55bf\";a:11:{s:3:\"key\";s:32:\"fb0ffdcee679b597fd010bdfbaca55bf\";s:10:\"product_id\";i:23388;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4990000;s:8:\"line_tax\";d:0;}s:32:\"8d661ad44b835f29a6494c184c21a463\";a:11:{s:3:\"key\";s:32:\"8d661ad44b835f29a6494c184c21a463\";s:10:\"product_id\";i:40456;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4300000;s:8:\"line_tax\";d:0;}s:32:\"16d40a3be745187190a9683cc8a9e1c0\";a:11:{s:3:\"key\";s:32:\"16d40a3be745187190a9683cc8a9e1c0\";s:10:\"product_id\";i:46689;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3600000;s:8:\"line_tax\";d:0;}s:32:\"abbb1bd2e7a845085e964f4b386c7157\";a:11:{s:3:\"key\";s:32:\"abbb1bd2e7a845085e964f4b386c7157\";s:10:\"product_id\";i:76845;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100000;s:8:\"line_tax\";d:0;}s:32:\"b8ec5aa9dfe3f8c836cf09d2d34b6a6f\";a:11:{s:3:\"key\";s:32:\"b8ec5aa9dfe3f8c836cf09d2d34b6a6f\";s:10:\"product_id\";i:52213;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1370000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1370000;s:8:\"line_tax\";d:0;}s:32:\"1ecc77ebf7796e403518386306941f85\";a:11:{s:3:\"key\";s:32:\"1ecc77ebf7796e403518386306941f85\";s:10:\"product_id\";i:79643;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:200000;s:8:\"line_tax\";d:0;}s:32:\"49061f3af2311767c7911ad67d013b14\";a:11:{s:3:\"key\";s:32:\"49061f3af2311767c7911ad67d013b14\";s:10:\"product_id\";i:64859;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2200000;s:8:\"line_tax\";d:0;}s:32:\"a5d907a3e238f889674960d89abcfce7\";a:11:{s:3:\"key\";s:32:\"a5d907a3e238f889674960d89abcfce7\";s:10:\"product_id\";i:59248;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4390000;s:8:\"line_tax\";d:0;}s:32:\"aecd371fb8eff488c4573b08b78754eb\";a:11:{s:3:\"key\";s:32:\"aecd371fb8eff488c4573b08b78754eb\";s:10:\"product_id\";i:79749;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:320000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:320000;s:8:\"line_tax\";d:0;}s:32:\"a06dfaedc1e4413666a940fb0e84fbd6\";a:11:{s:3:\"key\";s:32:\"a06dfaedc1e4413666a940fb0e84fbd6\";s:10:\"product_id\";i:25892;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5780000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5780000;s:8:\"line_tax\";d:0;}s:32:\"500873af92dc01aba82a2f631e18009e\";a:11:{s:3:\"key\";s:32:\"500873af92dc01aba82a2f631e18009e\";s:10:\"product_id\";i:73283;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2145000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2145000;s:8:\"line_tax\";d:0;}s:32:\"6307a12d5c9e2fb5f23518a9a0ee8dd1\";a:11:{s:3:\"key\";s:32:\"6307a12d5c9e2fb5f23518a9a0ee8dd1\";s:10:\"product_id\";i:74227;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:200000;s:8:\"line_tax\";d:0;}s:32:\"1174f208d68d6eb4a438388caa97ef1b\";a:11:{s:3:\"key\";s:32:\"1174f208d68d6eb4a438388caa97ef1b\";s:10:\"product_id\";i:67264;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100000;s:8:\"line_tax\";d:0;}s:32:\"888f3acf10e90e8b16022e86afbab83c\";a:11:{s:3:\"key\";s:32:\"888f3acf10e90e8b16022e86afbab83c\";s:10:\"product_id\";i:68198;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4990000;s:8:\"line_tax\";d:0;}s:32:\"27750161b72331d1b1cad81cf19f315b\";a:11:{s:3:\"key\";s:32:\"27750161b72331d1b1cad81cf19f315b\";s:10:\"product_id\";i:41442;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:15000000;s:8:\"line_tax\";d:0;}s:32:\"0cf4d4691fe56e8bcdfc386df95c78d8\";a:11:{s:3:\"key\";s:32:\"0cf4d4691fe56e8bcdfc386df95c78d8\";s:10:\"product_id\";i:24687;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4770000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4770000;s:8:\"line_tax\";d:0;}s:32:\"4d3fe5462355a07bb3cb257a2146dacc\";a:11:{s:3:\"key\";s:32:\"4d3fe5462355a07bb3cb257a2146dacc\";s:10:\"product_id\";i:35561;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:11940000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:11940000;s:8:\"line_tax\";d:0;}s:32:\"6d94f9a8ea3ab919370c4bbd22ce9956\";a:11:{s:3:\"key\";s:32:\"6d94f9a8ea3ab919370c4bbd22ce9956\";s:10:\"product_id\";i:19695;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1050000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1050000;s:8:\"line_tax\";d:0;}s:32:\"cc6a03346a8c24eacf57bdf97c1f9c9e\";a:11:{s:3:\"key\";s:32:\"cc6a03346a8c24eacf57bdf97c1f9c9e\";s:10:\"product_id\";i:31162;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5600000;s:8:\"line_tax\";d:0;}s:32:\"4f3657345249a942f890a66b5278ea90\";a:11:{s:3:\"key\";s:32:\"4f3657345249a942f890a66b5278ea90\";s:10:\"product_id\";i:76812;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1590000;s:8:\"line_tax\";d:0;}s:32:\"207437c32819716d0ecb62c7ffcee978\";a:11:{s:3:\"key\";s:32:\"207437c32819716d0ecb62c7ffcee978\";s:10:\"product_id\";i:62269;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:435000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:435000;s:8:\"line_tax\";d:0;}s:32:\"1e0cca56c43d29332ea93159c5a239a2\";a:11:{s:3:\"key\";s:32:\"1e0cca56c43d29332ea93159c5a239a2\";s:10:\"product_id\";i:79197;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:12870000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:12870000;s:8:\"line_tax\";d:0;}s:32:\"d237300c51703c724af3c76474828fb2\";a:11:{s:3:\"key\";s:32:\"d237300c51703c724af3c76474828fb2\";s:10:\"product_id\";i:72343;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:890000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:890000;s:8:\"line_tax\";d:0;}s:32:\"264ec29337b3f21223e2731333d4d954\";a:11:{s:3:\"key\";s:32:\"264ec29337b3f21223e2731333d4d954\";s:10:\"product_id\";i:72944;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1900000;s:8:\"line_tax\";d:0;}s:32:\"9789a1193c164c21b4b0dadc12b07d5a\";a:11:{s:3:\"key\";s:32:\"9789a1193c164c21b4b0dadc12b07d5a\";s:10:\"product_id\";i:61367;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:590000;s:8:\"line_tax\";d:0;}s:32:\"033ca0ebb43762c7a658167b5f97a2d0\";a:11:{s:3:\"key\";s:32:\"033ca0ebb43762c7a658167b5f97a2d0\";s:10:\"product_id\";i:67217;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3180000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3180000;s:8:\"line_tax\";d:0;}s:32:\"6a83281271574c5862e937abe66b2e23\";a:11:{s:3:\"key\";s:32:\"6a83281271574c5862e937abe66b2e23\";s:10:\"product_id\";i:49587;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2250000;s:8:\"line_tax\";d:0;}s:32:\"bb729a240f58ad88d4e91fad8a78226c\";a:11:{s:3:\"key\";s:32:\"bb729a240f58ad88d4e91fad8a78226c\";s:10:\"product_id\";i:59923;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:970000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:970000;s:8:\"line_tax\";d:0;}s:32:\"358e8cc035306741104feef98957ac4f\";a:11:{s:3:\"key\";s:32:\"358e8cc035306741104feef98957ac4f\";s:10:\"product_id\";i:78472;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1900000;s:8:\"line_tax\";d:0;}s:32:\"9a48bb6f434ea2cdb7c907ec71313405\";a:11:{s:3:\"key\";s:32:\"9a48bb6f434ea2cdb7c907ec71313405\";s:10:\"product_id\";i:42473;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2490000;s:8:\"line_tax\";d:0;}s:32:\"c8d1ba696fa7aa8adb31df2c37fd99f2\";a:11:{s:3:\"key\";s:32:\"c8d1ba696fa7aa8adb31df2c37fd99f2\";s:10:\"product_id\";i:50844;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4490000;s:8:\"line_tax\";d:0;}s:32:\"83cb882a063385f1ee813887a7dfe87e\";a:11:{s:3:\"key\";s:32:\"83cb882a063385f1ee813887a7dfe87e\";s:10:\"product_id\";i:77341;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:240000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:240000;s:8:\"line_tax\";d:0;}s:32:\"8bd85bd47a645b5e604aeb3ee604861f\";a:11:{s:3:\"key\";s:32:\"8bd85bd47a645b5e604aeb3ee604861f\";s:10:\"product_id\";i:67293;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1040000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1040000;s:8:\"line_tax\";d:0;}s:32:\"e840409b86e4767d2d07cff90a1eef11\";a:11:{s:3:\"key\";s:32:\"e840409b86e4767d2d07cff90a1eef11\";s:10:\"product_id\";i:68148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3760000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3760000;s:8:\"line_tax\";d:0;}s:32:\"6b0ad80b6b1ab210e9d8c0a355c416f2\";a:11:{s:3:\"key\";s:32:\"6b0ad80b6b1ab210e9d8c0a355c416f2\";s:10:\"product_id\";i:65172;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1140000;s:8:\"line_tax\";d:0;}s:32:\"73715c097259c228af0648823d754407\";a:11:{s:3:\"key\";s:32:\"73715c097259c228af0648823d754407\";s:10:\"product_id\";i:24892;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:450000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:450000;s:8:\"line_tax\";d:0;}s:32:\"9454893cb17d76e127a4e30d168cb720\";a:11:{s:3:\"key\";s:32:\"9454893cb17d76e127a4e30d168cb720\";s:10:\"product_id\";i:63087;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:800000;s:8:\"line_tax\";d:0;}s:32:\"ac614ac034424f16edb918cf9c524e95\";a:11:{s:3:\"key\";s:32:\"ac614ac034424f16edb918cf9c524e95\";s:10:\"product_id\";i:34709;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3600000;s:8:\"line_tax\";d:0;}s:32:\"50ac4b2d6257c591a057a922533f77d5\";a:11:{s:3:\"key\";s:32:\"50ac4b2d6257c591a057a922533f77d5\";s:10:\"product_id\";i:17441;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2250000;s:8:\"line_tax\";d:0;}s:32:\"a43eb528e6b4a4fb6e2e2235116c56a7\";a:11:{s:3:\"key\";s:32:\"a43eb528e6b4a4fb6e2e2235116c56a7\";s:10:\"product_id\";i:77086;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:195000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:195000;s:8:\"line_tax\";d:0;}s:32:\"41f3df50f91a705c3b3adbcd96afa2cc\";a:11:{s:3:\"key\";s:32:\"41f3df50f91a705c3b3adbcd96afa2cc\";s:10:\"product_id\";i:23303;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1060000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1060000;s:8:\"line_tax\";d:0;}s:32:\"138339028c63d873c9964cb16cab3569\";a:11:{s:3:\"key\";s:32:\"138339028c63d873c9964cb16cab3569\";s:10:\"product_id\";i:53299;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:5970000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5970000;s:8:\"line_tax\";d:0;}s:32:\"4100a0586c1f755aa468aeb5f28df335\";a:11:{s:3:\"key\";s:32:\"4100a0586c1f755aa468aeb5f28df335\";s:10:\"product_id\";i:33422;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6110000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6110000;s:8:\"line_tax\";d:0;}s:32:\"0ccd8448df3ef40e98bd5b998d443947\";a:11:{s:3:\"key\";s:32:\"0ccd8448df3ef40e98bd5b998d443947\";s:10:\"product_id\";i:51474;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3720000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3720000;s:8:\"line_tax\";d:0;}s:32:\"1a9e4a2a5149d5c09d7cc71d943fd0d4\";a:11:{s:3:\"key\";s:32:\"1a9e4a2a5149d5c09d7cc71d943fd0d4\";s:10:\"product_id\";i:62691;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2250000;s:8:\"line_tax\";d:0;}s:32:\"c3c7377014553b7643f4f43a6f679360\";a:11:{s:3:\"key\";s:32:\"c3c7377014553b7643f4f43a6f679360\";s:10:\"product_id\";i:25367;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:19000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:19000000;s:8:\"line_tax\";d:0;}s:32:\"2ddf544b22b312c51fbcd17b6b6201c8\";a:11:{s:3:\"key\";s:32:\"2ddf544b22b312c51fbcd17b6b6201c8\";s:10:\"product_id\";i:59304;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:370000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:370000;s:8:\"line_tax\";d:0;}s:32:\"2448225d3dfa0dc52632c746aa76b66e\";a:11:{s:3:\"key\";s:32:\"2448225d3dfa0dc52632c746aa76b66e\";s:10:\"product_id\";i:46341;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:480000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:480000;s:8:\"line_tax\";d:0;}s:32:\"8b6f8396f3f56f16483a2b9daf1f32d7\";a:11:{s:3:\"key\";s:32:\"8b6f8396f3f56f16483a2b9daf1f32d7\";s:10:\"product_id\";i:76666;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2550000;s:8:\"line_tax\";d:0;}s:32:\"22cc998033ef9e003b9ba547c889ce0f\";a:11:{s:3:\"key\";s:32:\"22cc998033ef9e003b9ba547c889ce0f\";s:10:\"product_id\";i:63548;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3100000;s:8:\"line_tax\";d:0;}s:32:\"f70098cc80bffdf04af7c9a9c9d0f8b6\";a:11:{s:3:\"key\";s:32:\"f70098cc80bffdf04af7c9a9c9d0f8b6\";s:10:\"product_id\";i:63016;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2490000;s:8:\"line_tax\";d:0;}s:32:\"bce60e2e21db809b747eb00bbcbd1361\";a:11:{s:3:\"key\";s:32:\"bce60e2e21db809b747eb00bbcbd1361\";s:10:\"product_id\";i:63030;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1730000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1730000;s:8:\"line_tax\";d:0;}s:32:\"c9bcf9fa1c8993fe873b1a96bf4f964e\";a:11:{s:3:\"key\";s:32:\"c9bcf9fa1c8993fe873b1a96bf4f964e\";s:10:\"product_id\";i:76938;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:270000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:270000;s:8:\"line_tax\";d:0;}s:32:\"4bb67cb357e53345f812f6ea74c3aba1\";a:11:{s:3:\"key\";s:32:\"4bb67cb357e53345f812f6ea74c3aba1\";s:10:\"product_id\";i:66756;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3450000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3450000;s:8:\"line_tax\";d:0;}s:32:\"af7ad403702ae71f79891c6f7f43fdb2\";a:11:{s:3:\"key\";s:32:\"af7ad403702ae71f79891c6f7f43fdb2\";s:10:\"product_id\";i:61127;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2800000;s:8:\"line_tax\";d:0;}s:32:\"f8805f762c10b6592ea784517b259860\";a:11:{s:3:\"key\";s:32:\"f8805f762c10b6592ea784517b259860\";s:10:\"product_id\";i:79195;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3990000;s:8:\"line_tax\";d:0;}s:32:\"87acc42a82fb7ace361a4c390d047f74\";a:11:{s:3:\"key\";s:32:\"87acc42a82fb7ace361a4c390d047f74\";s:10:\"product_id\";i:24962;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:440000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:440000;s:8:\"line_tax\";d:0;}s:32:\"501853dc6e28aaea1eb9f330023137fe\";a:11:{s:3:\"key\";s:32:\"501853dc6e28aaea1eb9f330023137fe\";s:10:\"product_id\";i:71913;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:9900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:9900000;s:8:\"line_tax\";d:0;}s:32:\"c6ea07fd9bea432c5bc511fd804788c6\";a:11:{s:3:\"key\";s:32:\"c6ea07fd9bea432c5bc511fd804788c6\";s:10:\"product_id\";i:19649;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:13300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:13300000;s:8:\"line_tax\";d:0;}s:32:\"30999ce1f0a35aeff9a456e4487f9924\";a:11:{s:3:\"key\";s:32:\"30999ce1f0a35aeff9a456e4487f9924\";s:10:\"product_id\";i:33800;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2400000;s:8:\"line_tax\";d:0;}s:32:\"0033ac30345370155f8c564570543295\";a:11:{s:3:\"key\";s:32:\"0033ac30345370155f8c564570543295\";s:10:\"product_id\";i:65380;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:220000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:220000;s:8:\"line_tax\";d:0;}s:32:\"4a692f54e677fa66bcdef2885a700056\";a:11:{s:3:\"key\";s:32:\"4a692f54e677fa66bcdef2885a700056\";s:10:\"product_id\";i:74867;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:4300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4300000;s:8:\"line_tax\";d:0;}s:32:\"6eebc030d78d41b6cbcf9067aeda9198\";a:11:{s:3:\"key\";s:32:\"6eebc030d78d41b6cbcf9067aeda9198\";s:10:\"product_id\";i:78857;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:10980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:10980000;s:8:\"line_tax\";d:0;}s:32:\"0555bb36e8cfb7af4aaad5472cab1c49\";a:11:{s:3:\"key\";s:32:\"0555bb36e8cfb7af4aaad5472cab1c49\";s:10:\"product_id\";i:25672;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:420000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:420000;s:8:\"line_tax\";d:0;}s:32:\"6937ab200a3e4b57a61c7343e2a6df14\";a:11:{s:3:\"key\";s:32:\"6937ab200a3e4b57a61c7343e2a6df14\";s:10:\"product_id\";i:80574;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1470000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1470000;s:8:\"line_tax\";d:0;}s:32:\"daccac86538e9945f7ae8ed8435e6769\";a:11:{s:3:\"key\";s:32:\"daccac86538e9945f7ae8ed8435e6769\";s:10:\"product_id\";i:61144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:540000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:540000;s:8:\"line_tax\";d:0;}s:32:\"3e6cddb9963945c4428c12d650ad45e2\";a:11:{s:3:\"key\";s:32:\"3e6cddb9963945c4428c12d650ad45e2\";s:10:\"product_id\";i:75440;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1290000;s:8:\"line_tax\";d:0;}s:32:\"1bb6847833ec4263dc3a7470c0cf3206\";a:11:{s:3:\"key\";s:32:\"1bb6847833ec4263dc3a7470c0cf3206\";s:10:\"product_id\";i:79190;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4900000;s:8:\"line_tax\";d:0;}s:32:\"8210ada0dd78f09fa6f32f9f69c842b5\";a:11:{s:3:\"key\";s:32:\"8210ada0dd78f09fa6f32f9f69c842b5\";s:10:\"product_id\";i:54970;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:960000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:960000;s:8:\"line_tax\";d:0;}s:32:\"2483125d070c795ba1ed28b241c5c737\";a:11:{s:3:\"key\";s:32:\"2483125d070c795ba1ed28b241c5c737\";s:10:\"product_id\";i:49305;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1800000;s:8:\"line_tax\";d:0;}s:32:\"0a13af406a42a1330c02147201f337da\";a:11:{s:3:\"key\";s:32:\"0a13af406a42a1330c02147201f337da\";s:10:\"product_id\";i:65464;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2000000;s:8:\"line_tax\";d:0;}s:32:\"3500250d7a0e97dbd076bb0de09dede2\";a:11:{s:3:\"key\";s:32:\"3500250d7a0e97dbd076bb0de09dede2\";s:10:\"product_id\";i:77479;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:360000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:360000;s:8:\"line_tax\";d:0;}s:32:\"ead093ca38b5d3210738fe7b53d5f6d9\";a:11:{s:3:\"key\";s:32:\"ead093ca38b5d3210738fe7b53d5f6d9\";s:10:\"product_id\";i:74268;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:270000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:270000;s:8:\"line_tax\";d:0;}s:32:\"7566e16caca64683927ae8657adbf956\";a:11:{s:3:\"key\";s:32:\"7566e16caca64683927ae8657adbf956\";s:10:\"product_id\";i:61353;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:710000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:710000;s:8:\"line_tax\";d:0;}s:32:\"5f8f8b4ab96b842515bfe342cf196929\";a:11:{s:3:\"key\";s:32:\"5f8f8b4ab96b842515bfe342cf196929\";s:10:\"product_id\";i:33745;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:490000;s:8:\"line_tax\";d:0;}s:32:\"1f150b5bb708ed3c5bc048e673208672\";a:11:{s:3:\"key\";s:32:\"1f150b5bb708ed3c5bc048e673208672\";s:10:\"product_id\";i:48892;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:7300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7300000;s:8:\"line_tax\";d:0;}s:32:\"66a25acc291c7856ef1f3d78003c47ea\";a:11:{s:3:\"key\";s:32:\"66a25acc291c7856ef1f3d78003c47ea\";s:10:\"product_id\";i:78360;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:600000;s:8:\"line_tax\";d:0;}s:32:\"c600aed790cd1367661aa24eb24ee7f0\";a:11:{s:3:\"key\";s:32:\"c600aed790cd1367661aa24eb24ee7f0\";s:10:\"product_id\";i:74235;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5700000;s:8:\"line_tax\";d:0;}s:32:\"06858ad3db1c868b1fc567ac774bd7a6\";a:11:{s:3:\"key\";s:32:\"06858ad3db1c868b1fc567ac774bd7a6\";s:10:\"product_id\";i:51674;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:255000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:255000;s:8:\"line_tax\";d:0;}s:32:\"2fdddc426480d46ce18affae5e455c82\";a:11:{s:3:\"key\";s:32:\"2fdddc426480d46ce18affae5e455c82\";s:10:\"product_id\";i:17364;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2975000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2975000;s:8:\"line_tax\";d:0;}s:32:\"b137eb4183c4e03586f8ae9257bbf3bc\";a:11:{s:3:\"key\";s:32:\"b137eb4183c4e03586f8ae9257bbf3bc\";s:10:\"product_id\";i:28184;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:800000;s:8:\"line_tax\";d:0;}s:32:\"21036a2695d09deb1b9907ce00e14d3c\";a:11:{s:3:\"key\";s:32:\"21036a2695d09deb1b9907ce00e14d3c\";s:10:\"product_id\";i:72338;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2500000;s:8:\"line_tax\";d:0;}s:32:\"8ce2eb65de03109e27fc0d7973ab2797\";a:11:{s:3:\"key\";s:32:\"8ce2eb65de03109e27fc0d7973ab2797\";s:10:\"product_id\";i:49514;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:8400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:8400000;s:8:\"line_tax\";d:0;}s:32:\"57167f135fdf68c5c2436238d187f005\";a:11:{s:3:\"key\";s:32:\"57167f135fdf68c5c2436238d187f005\";s:10:\"product_id\";i:68556;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2760000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2760000;s:8:\"line_tax\";d:0;}s:32:\"e06d7f49ca9995584b4c2ffeb55eb5b7\";a:11:{s:3:\"key\";s:32:\"e06d7f49ca9995584b4c2ffeb55eb5b7\";s:10:\"product_id\";i:77638;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:320000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:320000;s:8:\"line_tax\";d:0;}s:32:\"fc38d019366c0aa622caceb53f7f7a60\";a:11:{s:3:\"key\";s:32:\"fc38d019366c0aa622caceb53f7f7a60\";s:10:\"product_id\";i:28060;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:360000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:360000;s:8:\"line_tax\";d:0;}s:32:\"198cc987413a15a8adb4e5823ed9067c\";a:11:{s:3:\"key\";s:32:\"198cc987413a15a8adb4e5823ed9067c\";s:10:\"product_id\";i:65990;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:360000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:360000;s:8:\"line_tax\";d:0;}s:32:\"d225f07436e0075a13ffd66eae614707\";a:11:{s:3:\"key\";s:32:\"d225f07436e0075a13ffd66eae614707\";s:10:\"product_id\";i:17329;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1600000;s:8:\"line_tax\";d:0;}s:32:\"ac10ff1941c540cd87c107330996f4f6\";a:11:{s:3:\"key\";s:32:\"ac10ff1941c540cd87c107330996f4f6\";s:10:\"product_id\";i:10323;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5970000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5970000;s:8:\"line_tax\";d:0;}s:32:\"a2af5c1fc41987e8007039380a9e8a38\";a:11:{s:3:\"key\";s:32:\"a2af5c1fc41987e8007039380a9e8a38\";s:10:\"product_id\";i:62094;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:275000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:275000;s:8:\"line_tax\";d:0;}s:32:\"ed150a04651fc639aca9152e446c86b5\";a:11:{s:3:\"key\";s:32:\"ed150a04651fc639aca9152e446c86b5\";s:10:\"product_id\";i:64947;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1600000;s:8:\"line_tax\";d:0;}s:32:\"ede3c50dea25ba965ec7192eb15f2f70\";a:11:{s:3:\"key\";s:32:\"ede3c50dea25ba965ec7192eb15f2f70\";s:10:\"product_id\";i:63236;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1100000;s:8:\"line_tax\";d:0;}s:32:\"8018c2a5d2c6a86c19be358877fe64c8\";a:11:{s:3:\"key\";s:32:\"8018c2a5d2c6a86c19be358877fe64c8\";s:10:\"product_id\";i:77258;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:200000;s:8:\"line_tax\";d:0;}s:32:\"5a48316dcefbfd05ab7a7d98a5e9ec13\";a:11:{s:3:\"key\";s:32:\"5a48316dcefbfd05ab7a7d98a5e9ec13\";s:10:\"product_id\";i:45968;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:32700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:32700000;s:8:\"line_tax\";d:0;}s:32:\"bb59d584020b12905f83cc0410aa270d\";a:11:{s:3:\"key\";s:32:\"bb59d584020b12905f83cc0410aa270d\";s:10:\"product_id\";i:65620;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4500000;s:8:\"line_tax\";d:0;}s:32:\"72a95533d8b63ae88489229f563d695e\";a:11:{s:3:\"key\";s:32:\"72a95533d8b63ae88489229f563d695e\";s:10:\"product_id\";i:77349;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:120000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:120000;s:8:\"line_tax\";d:0;}s:32:\"c059d7dfefdf0fc36e1f71947e2b5e5a\";a:11:{s:3:\"key\";s:32:\"c059d7dfefdf0fc36e1f71947e2b5e5a\";s:10:\"product_id\";i:80107;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1395000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1395000;s:8:\"line_tax\";d:0;}s:32:\"85988ee36f770a407d01f737b42cbc9e\";a:11:{s:3:\"key\";s:32:\"85988ee36f770a407d01f737b42cbc9e\";s:10:\"product_id\";i:77429;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:190000;s:8:\"line_tax\";d:0;}s:32:\"16e289983cce14eda9b2ade90076c44d\";a:11:{s:3:\"key\";s:32:\"16e289983cce14eda9b2ade90076c44d\";s:10:\"product_id\";i:31404;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:320000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:320000;s:8:\"line_tax\";d:0;}s:32:\"a1ac769a261b4ac11e1fd4fd33b2ae8b\";a:11:{s:3:\"key\";s:32:\"a1ac769a261b4ac11e1fd4fd33b2ae8b\";s:10:\"product_id\";i:30011;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:23970000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:23970000;s:8:\"line_tax\";d:0;}s:32:\"f0a2c0f5474cbe314b3682c9325dc4f4\";a:11:{s:3:\"key\";s:32:\"f0a2c0f5474cbe314b3682c9325dc4f4\";s:10:\"product_id\";i:23269;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6400000;s:8:\"line_tax\";d:0;}s:32:\"ed2c74e394df9bcf67db4c5172c27f96\";a:11:{s:3:\"key\";s:32:\"ed2c74e394df9bcf67db4c5172c27f96\";s:10:\"product_id\";i:17338;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3850000;s:8:\"line_tax\";d:0;}s:32:\"5ebe6e8bcf5f8b19e076b337d97e5bb1\";a:11:{s:3:\"key\";s:32:\"5ebe6e8bcf5f8b19e076b337d97e5bb1\";s:10:\"product_id\";i:71522;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4980000;s:8:\"line_tax\";d:0;}s:32:\"a2a6a5c6ea38cac0864685dffaea8e92\";a:11:{s:3:\"key\";s:32:\"a2a6a5c6ea38cac0864685dffaea8e92\";s:10:\"product_id\";i:17375;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4170000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4170000;s:8:\"line_tax\";d:0;}s:32:\"f84de687f0bede5f16d6c112ecdba8bf\";a:11:{s:3:\"key\";s:32:\"f84de687f0bede5f16d6c112ecdba8bf\";s:10:\"product_id\";i:77412;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6300000;s:8:\"line_tax\";d:0;}s:32:\"8af8081953b99ebc3558b9bb2ca6ed15\";a:11:{s:3:\"key\";s:32:\"8af8081953b99ebc3558b9bb2ca6ed15\";s:10:\"product_id\";i:73407;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:5;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2650000;s:8:\"line_tax\";d:0;}s:32:\"901e70da072bc616caa6337421abe4ae\";a:11:{s:3:\"key\";s:32:\"901e70da072bc616caa6337421abe4ae\";s:10:\"product_id\";i:14301;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:570000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:570000;s:8:\"line_tax\";d:0;}s:32:\"eb93f4df03587406857064d48c7d518d\";a:11:{s:3:\"key\";s:32:\"eb93f4df03587406857064d48c7d518d\";s:10:\"product_id\";i:79123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:7780000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7780000;s:8:\"line_tax\";d:0;}s:32:\"308fa1ba116122db3d87cd0da6e145bb\";a:11:{s:3:\"key\";s:32:\"308fa1ba116122db3d87cd0da6e145bb\";s:10:\"product_id\";i:35469;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2500000;s:8:\"line_tax\";d:0;}s:32:\"7d903d254915e0f232b6465ef8731115\";a:11:{s:3:\"key\";s:32:\"7d903d254915e0f232b6465ef8731115\";s:10:\"product_id\";i:59324;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:240000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:240000;s:8:\"line_tax\";d:0;}s:32:\"9b176b5fa5bbb3494d354ecc7cb31386\";a:11:{s:3:\"key\";s:32:\"9b176b5fa5bbb3494d354ecc7cb31386\";s:10:\"product_id\";i:77604;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:400000;s:8:\"line_tax\";d:0;}s:32:\"364c1f1f41ddae3a5e1ef9e1f2c85e18\";a:11:{s:3:\"key\";s:32:\"364c1f1f41ddae3a5e1ef9e1f2c85e18\";s:10:\"product_id\";i:60460;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:120000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:120000;s:8:\"line_tax\";d:0;}s:32:\"fa99ccdbea597263a88f27075bd6eb49\";a:11:{s:3:\"key\";s:32:\"fa99ccdbea597263a88f27075bd6eb49\";s:10:\"product_id\";i:17385;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1990000;s:8:\"line_tax\";d:0;}s:32:\"464d0b9d99efb7a4595380d03b7ea164\";a:11:{s:3:\"key\";s:32:\"464d0b9d99efb7a4595380d03b7ea164\";s:10:\"product_id\";i:35992;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1790000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1790000;s:8:\"line_tax\";d:0;}s:32:\"9b01b09edbdae327a17ccc47cc5c6992\";a:11:{s:3:\"key\";s:32:\"9b01b09edbdae327a17ccc47cc5c6992\";s:10:\"product_id\";i:17463;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4500000;s:8:\"line_tax\";d:0;}s:32:\"93eeb56ae2930647f2a428006b81d7ec\";a:11:{s:3:\"key\";s:32:\"93eeb56ae2930647f2a428006b81d7ec\";s:10:\"product_id\";i:48905;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4400000;s:8:\"line_tax\";d:0;}s:32:\"99cb44f8f5bb2427ae078ed73b3977d8\";a:11:{s:3:\"key\";s:32:\"99cb44f8f5bb2427ae078ed73b3977d8\";s:10:\"product_id\";i:72496;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1080000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1080000;s:8:\"line_tax\";d:0;}s:32:\"cd3712b66b171d5715e1c3b6882f1f71\";a:11:{s:3:\"key\";s:32:\"cd3712b66b171d5715e1c3b6882f1f71\";s:10:\"product_id\";i:77746;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2280000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2280000;s:8:\"line_tax\";d:0;}s:32:\"ca8a2575f96034775c7dc00162fcc27f\";a:11:{s:3:\"key\";s:32:\"ca8a2575f96034775c7dc00162fcc27f\";s:10:\"product_id\";i:25950;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:750000;s:8:\"line_tax\";d:0;}s:32:\"436605aeb5a3e5c44454320978f5b5bc\";a:11:{s:3:\"key\";s:32:\"436605aeb5a3e5c44454320978f5b5bc\";s:10:\"product_id\";i:61091;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1500000;s:8:\"line_tax\";d:0;}s:32:\"25bdc6703ebbf72f67257cd959dce1a8\";a:11:{s:3:\"key\";s:32:\"25bdc6703ebbf72f67257cd959dce1a8\";s:10:\"product_id\";i:79364;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1770000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1770000;s:8:\"line_tax\";d:0;}s:32:\"c7540974af3ecbeb9d5fd74fcbe457e5\";a:11:{s:3:\"key\";s:32:\"c7540974af3ecbeb9d5fd74fcbe457e5\";s:10:\"product_id\";i:68247;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2850000;s:8:\"line_tax\";d:0;}s:32:\"ccc6c53b1f210446ca3070b3ec0828c7\";a:11:{s:3:\"key\";s:32:\"ccc6c53b1f210446ca3070b3ec0828c7\";s:10:\"product_id\";i:79862;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:120000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:120000;s:8:\"line_tax\";d:0;}s:32:\"6d64ebcfead2206d070b78cea71b81d1\";a:11:{s:3:\"key\";s:32:\"6d64ebcfead2206d070b78cea71b81d1\";s:10:\"product_id\";i:78366;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1440000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1440000;s:8:\"line_tax\";d:0;}s:32:\"e767e002b1202716ddeb9b7b51323c6a\";a:11:{s:3:\"key\";s:32:\"e767e002b1202716ddeb9b7b51323c6a\";s:10:\"product_id\";i:55848;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:120000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:120000;s:8:\"line_tax\";d:0;}s:32:\"0b823d8b45ee3eaf26e538b6cff6f451\";a:11:{s:3:\"key\";s:32:\"0b823d8b45ee3eaf26e538b6cff6f451\";s:10:\"product_id\";i:17262;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2940000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2940000;s:8:\"line_tax\";d:0;}s:32:\"085fc1406248327158619fb1326434cc\";a:11:{s:3:\"key\";s:32:\"085fc1406248327158619fb1326434cc\";s:10:\"product_id\";i:31023;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1340000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1340000;s:8:\"line_tax\";d:0;}s:32:\"6aca774f4adafd877e75508dfca5e550\";a:11:{s:3:\"key\";s:32:\"6aca774f4adafd877e75508dfca5e550\";s:10:\"product_id\";i:74595;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:995000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:995000;s:8:\"line_tax\";d:0;}s:32:\"0a43798a4f8ecce8979c6aa0933373a6\";a:11:{s:3:\"key\";s:32:\"0a43798a4f8ecce8979c6aa0933373a6\";s:10:\"product_id\";i:71220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3380000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3380000;s:8:\"line_tax\";d:0;}s:32:\"a73921413f345d23f9679a0678fce5c1\";a:11:{s:3:\"key\";s:32:\"a73921413f345d23f9679a0678fce5c1\";s:10:\"product_id\";i:72542;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2480000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2480000;s:8:\"line_tax\";d:0;}s:32:\"9f663198a8efb43fa42ad76d2f598205\";a:11:{s:3:\"key\";s:32:\"9f663198a8efb43fa42ad76d2f598205\";s:10:\"product_id\";i:77770;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3700000;s:8:\"line_tax\";d:0;}s:32:\"24270ec0abe691ec56a22d8dcba82152\";a:11:{s:3:\"key\";s:32:\"24270ec0abe691ec56a22d8dcba82152\";s:10:\"product_id\";i:62685;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1780000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1780000;s:8:\"line_tax\";d:0;}s:32:\"33649064cd253288159fcd9af5277e3d\";a:11:{s:3:\"key\";s:32:\"33649064cd253288159fcd9af5277e3d\";s:10:\"product_id\";i:29170;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:7440000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7440000;s:8:\"line_tax\";d:0;}s:32:\"21554a069ae2afe4c227fcb3af68aa6a\";a:11:{s:3:\"key\";s:32:\"21554a069ae2afe4c227fcb3af68aa6a\";s:10:\"product_id\";i:79712;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";d:0;}s:32:\"13efec348e66852991bc20ed97caa574\";a:11:{s:3:\"key\";s:32:\"13efec348e66852991bc20ed97caa574\";s:10:\"product_id\";i:28198;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1180000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1180000;s:8:\"line_tax\";d:0;}s:32:\"5490e7d6b0202e0f649d6fba5bf770ec\";a:11:{s:3:\"key\";s:32:\"5490e7d6b0202e0f649d6fba5bf770ec\";s:10:\"product_id\";i:45856;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1950000;s:8:\"line_tax\";d:0;}s:32:\"b8a36100575731ddb7cc6b344b7b8202\";a:11:{s:3:\"key\";s:32:\"b8a36100575731ddb7cc6b344b7b8202\";s:10:\"product_id\";i:58683;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100000;s:8:\"line_tax\";d:0;}s:32:\"cc091237c3898510ba6461cc2c6e4be9\";a:11:{s:3:\"key\";s:32:\"cc091237c3898510ba6461cc2c6e4be9\";s:10:\"product_id\";i:63554;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:9000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:9000000;s:8:\"line_tax\";d:0;}s:32:\"02c1dd6ad234773aeffd7f7067784d58\";a:11:{s:3:\"key\";s:32:\"02c1dd6ad234773aeffd7f7067784d58\";s:10:\"product_id\";i:77230;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:580000;s:8:\"line_tax\";d:0;}s:32:\"d7e4cdde82a894b8f633e6d61a01ef15\";a:11:{s:3:\"key\";s:32:\"d7e4cdde82a894b8f633e6d61a01ef15\";s:10:\"product_id\";i:5653;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:700000;s:8:\"line_tax\";d:0;}s:32:\"21e04c4536ac1ee11ab991e1dea13c47\";a:11:{s:3:\"key\";s:32:\"21e04c4536ac1ee11ab991e1dea13c47\";s:10:\"product_id\";i:28717;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:21000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:21000000;s:8:\"line_tax\";d:0;}s:32:\"e47883e8ec16860ea2385727a6824c28\";a:11:{s:3:\"key\";s:32:\"e47883e8ec16860ea2385727a6824c28\";s:10:\"product_id\";i:77102;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:595000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:595000;s:8:\"line_tax\";d:0;}s:32:\"e646e2fec7dcbe33111f4481a96523af\";a:11:{s:3:\"key\";s:32:\"e646e2fec7dcbe33111f4481a96523af\";s:10:\"product_id\";i:65349;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5580000;s:8:\"line_tax\";d:0;}s:32:\"2e9f1b0f07f2e53fe41d6743c15db964\";a:11:{s:3:\"key\";s:32:\"2e9f1b0f07f2e53fe41d6743c15db964\";s:10:\"product_id\";i:51840;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1060000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1060000;s:8:\"line_tax\";d:0;}s:32:\"061c8b4347d970f009ea500be31c577d\";a:11:{s:3:\"key\";s:32:\"061c8b4347d970f009ea500be31c577d\";s:10:\"product_id\";i:64854;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2120000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2120000;s:8:\"line_tax\";d:0;}s:32:\"f426f04f2f9813718fb806b30e0093de\";a:11:{s:3:\"key\";s:32:\"f426f04f2f9813718fb806b30e0093de\";s:10:\"product_id\";i:70142;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:75000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:75000;s:8:\"line_tax\";d:0;}s:32:\"b8c236e96fe743f33c1137d9dd6510c8\";a:11:{s:3:\"key\";s:32:\"b8c236e96fe743f33c1137d9dd6510c8\";s:10:\"product_id\";i:64943;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:790000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:790000;s:8:\"line_tax\";d:0;}s:32:\"fb5470d5c0e68b71712c659595119328\";a:11:{s:3:\"key\";s:32:\"fb5470d5c0e68b71712c659595119328\";s:10:\"product_id\";i:30967;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4000000;s:8:\"line_tax\";d:0;}s:32:\"eae90ac54159b06d1ad2d26d2d3f49df\";a:11:{s:3:\"key\";s:32:\"eae90ac54159b06d1ad2d26d2d3f49df\";s:10:\"product_id\";i:72539;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2050000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2050000;s:8:\"line_tax\";d:0;}s:32:\"231f45575568907aba1f840b104b621b\";a:11:{s:3:\"key\";s:32:\"231f45575568907aba1f840b104b621b\";s:10:\"product_id\";i:60580;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:98000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:98000;s:8:\"line_tax\";d:0;}s:32:\"18d559edc02d5e305ced429e5592a5ff\";a:11:{s:3:\"key\";s:32:\"18d559edc02d5e305ced429e5592a5ff\";s:10:\"product_id\";i:80354;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2500000;s:8:\"line_tax\";d:0;}s:32:\"d43e974aa93d103dea8cc8ff215c899a\";a:11:{s:3:\"key\";s:32:\"d43e974aa93d103dea8cc8ff215c899a\";s:10:\"product_id\";i:68181;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3000000;s:8:\"line_tax\";d:0;}s:32:\"a98a5bd776d042d78331ff291d61ffa1\";a:11:{s:3:\"key\";s:32:\"a98a5bd776d042d78331ff291d61ffa1\";s:10:\"product_id\";i:51678;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:245000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:245000;s:8:\"line_tax\";d:0;}s:32:\"def35ca4715a54f7fecd2fb80419572f\";a:11:{s:3:\"key\";s:32:\"def35ca4715a54f7fecd2fb80419572f\";s:10:\"product_id\";i:32270;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:550000;s:8:\"line_tax\";d:0;}s:32:\"d90547eba5f28ba0f8008060b4f25e77\";a:11:{s:3:\"key\";s:32:\"d90547eba5f28ba0f8008060b4f25e77\";s:10:\"product_id\";i:52387;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:740000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:740000;s:8:\"line_tax\";d:0;}s:32:\"676283b713248144c3e4a489feef1762\";a:11:{s:3:\"key\";s:32:\"676283b713248144c3e4a489feef1762\";s:10:\"product_id\";i:64736;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1120000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1120000;s:8:\"line_tax\";d:0;}s:32:\"399fe2ba76b3bae96212db3125015af9\";a:11:{s:3:\"key\";s:32:\"399fe2ba76b3bae96212db3125015af9\";s:10:\"product_id\";i:49663;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:15000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:15000000;s:8:\"line_tax\";d:0;}s:32:\"60c6106573c81e3ecbaf13c6db961384\";a:11:{s:3:\"key\";s:32:\"60c6106573c81e3ecbaf13c6db961384\";s:10:\"product_id\";i:74360;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:150000;s:8:\"line_tax\";d:0;}s:32:\"75883741f77a612cdff0a828f94792d1\";a:11:{s:3:\"key\";s:32:\"75883741f77a612cdff0a828f94792d1\";s:10:\"product_id\";i:15878;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4600000;s:8:\"line_tax\";d:0;}s:32:\"c8c117994bcf0d9910e3b10e4fc8227b\";a:11:{s:3:\"key\";s:32:\"c8c117994bcf0d9910e3b10e4fc8227b\";s:10:\"product_id\";i:55870;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:135000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:135000;s:8:\"line_tax\";d:0;}s:32:\"49aea21a9ed85c3bd530a37df3de1c7e\";a:11:{s:3:\"key\";s:32:\"49aea21a9ed85c3bd530a37df3de1c7e\";s:10:\"product_id\";i:28349;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3580000;s:8:\"line_tax\";d:0;}s:32:\"5e2125172ac57f156773c8a4551bad47\";a:11:{s:3:\"key\";s:32:\"5e2125172ac57f156773c8a4551bad47\";s:10:\"product_id\";i:53715;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:15000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:15000000;s:8:\"line_tax\";d:0;}s:32:\"24f9fd1fd2bac7acfc0e012729ffe8d7\";a:11:{s:3:\"key\";s:32:\"24f9fd1fd2bac7acfc0e012729ffe8d7\";s:10:\"product_id\";i:37931;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3850000;s:8:\"line_tax\";d:0;}s:32:\"eb414a86ec0575dc801691b76791a24d\";a:11:{s:3:\"key\";s:32:\"eb414a86ec0575dc801691b76791a24d\";s:10:\"product_id\";i:35963;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:9570000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:9570000;s:8:\"line_tax\";d:0;}s:32:\"e79416c5d640cd7b1df1405b3e86bcd4\";a:11:{s:3:\"key\";s:32:\"e79416c5d640cd7b1df1405b3e86bcd4\";s:10:\"product_id\";i:71671;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:295000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:295000;s:8:\"line_tax\";d:0;}s:32:\"3b5750171f62fd9c3cd91a41ddb1ac45\";a:11:{s:3:\"key\";s:32:\"3b5750171f62fd9c3cd91a41ddb1ac45\";s:10:\"product_id\";i:14267;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1080000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1080000;s:8:\"line_tax\";d:0;}s:32:\"0bfb1562e683054eafa831ffb5c33ca4\";a:11:{s:3:\"key\";s:32:\"0bfb1562e683054eafa831ffb5c33ca4\";s:10:\"product_id\";i:52216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3000000;s:8:\"line_tax\";d:0;}s:32:\"9e56f08ff7b88b35ee53148e99f7d8f1\";a:11:{s:3:\"key\";s:32:\"9e56f08ff7b88b35ee53148e99f7d8f1\";s:10:\"product_id\";i:63085;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:800000;s:8:\"line_tax\";d:0;}s:32:\"ef2357374bf1e93486f01db1c9edc6dd\";a:11:{s:3:\"key\";s:32:\"ef2357374bf1e93486f01db1c9edc6dd\";s:10:\"product_id\";i:71207;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1550000;s:8:\"line_tax\";d:0;}s:32:\"ed59d20a0087d854c452776d41092026\";a:11:{s:3:\"key\";s:32:\"ed59d20a0087d854c452776d41092026\";s:10:\"product_id\";i:63407;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:13980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:13980000;s:8:\"line_tax\";d:0;}s:32:\"b93934a018b52bc42af253ca036d9750\";a:11:{s:3:\"key\";s:32:\"b93934a018b52bc42af253ca036d9750\";s:10:\"product_id\";i:64901;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1700000;s:8:\"line_tax\";d:0;}s:32:\"9575ec6979ddd687845e66872682ce65\";a:11:{s:3:\"key\";s:32:\"9575ec6979ddd687845e66872682ce65\";s:10:\"product_id\";i:58603;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:307000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:307000;s:8:\"line_tax\";d:0;}s:32:\"a7a0da96b4c16537050114ceed8368c9\";a:11:{s:3:\"key\";s:32:\"a7a0da96b4c16537050114ceed8368c9\";s:10:\"product_id\";i:24700;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6500000;s:8:\"line_tax\";d:0;}s:32:\"0804dba4b38a10bc6ab71cf9aca9b1b6\";a:11:{s:3:\"key\";s:32:\"0804dba4b38a10bc6ab71cf9aca9b1b6\";s:10:\"product_id\";i:63194;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1180000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1180000;s:8:\"line_tax\";d:0;}s:32:\"1148786f081772ed0fbfedee09d8d771\";a:11:{s:3:\"key\";s:32:\"1148786f081772ed0fbfedee09d8d771\";s:10:\"product_id\";i:34715;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:9000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:9000000;s:8:\"line_tax\";d:0;}s:32:\"54526e432dbfc94816c704c3e81710df\";a:11:{s:3:\"key\";s:32:\"54526e432dbfc94816c704c3e81710df\";s:10:\"product_id\";i:25661;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:185000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:185000;s:8:\"line_tax\";d:0;}s:32:\"2b0fd97cf4bbb9a800b9004e5961bb0d\";a:11:{s:3:\"key\";s:32:\"2b0fd97cf4bbb9a800b9004e5961bb0d\";s:10:\"product_id\";i:79717;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:220000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:220000;s:8:\"line_tax\";d:0;}s:32:\"6b41f17abd11bbc46176560b301a4e24\";a:11:{s:3:\"key\";s:32:\"6b41f17abd11bbc46176560b301a4e24\";s:10:\"product_id\";i:24760;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1900000;s:8:\"line_tax\";d:0;}s:32:\"cb138c0ea6e0ec0ac07cb501db562b47\";a:11:{s:3:\"key\";s:32:\"cb138c0ea6e0ec0ac07cb501db562b47\";s:10:\"product_id\";i:32624;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4500000;s:8:\"line_tax\";d:0;}s:32:\"cefe723de1b77e09474a2f5510b2dd74\";a:11:{s:3:\"key\";s:32:\"cefe723de1b77e09474a2f5510b2dd74\";s:10:\"product_id\";i:59287;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:66000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:66000;s:8:\"line_tax\";d:0;}s:32:\"f2ea68d7f8c88649a31393a0f9459930\";a:11:{s:3:\"key\";s:32:\"f2ea68d7f8c88649a31393a0f9459930\";s:10:\"product_id\";i:23317;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2100000;s:8:\"line_tax\";d:0;}s:32:\"2f1818a43b894e125d0f8efc144bc2c6\";a:11:{s:3:\"key\";s:32:\"2f1818a43b894e125d0f8efc144bc2c6\";s:10:\"product_id\";i:17366;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:890000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:890000;s:8:\"line_tax\";d:0;}s:32:\"6e488c6839b47b3fb608e82efe977543\";a:11:{s:3:\"key\";s:32:\"6e488c6839b47b3fb608e82efe977543\";s:10:\"product_id\";i:80062;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:262000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:262000;s:8:\"line_tax\";d:0;}s:32:\"0adbd5d373892c21c682460b3517a714\";a:11:{s:3:\"key\";s:32:\"0adbd5d373892c21c682460b3517a714\";s:10:\"product_id\";i:77527;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:150000;s:8:\"line_tax\";d:0;}s:32:\"7f74350fdf72467eab97e3fbf19d849c\";a:11:{s:3:\"key\";s:32:\"7f74350fdf72467eab97e3fbf19d849c\";s:10:\"product_id\";i:58491;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1350000;s:8:\"line_tax\";d:0;}s:32:\"9dc6fac304032b726558428eb0e31d5a\";a:11:{s:3:\"key\";s:32:\"9dc6fac304032b726558428eb0e31d5a\";s:10:\"product_id\";i:60817;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2600000;s:8:\"line_tax\";d:0;}s:32:\"14719e695e2aed484baff9d12f29bd2d\";a:11:{s:3:\"key\";s:32:\"14719e695e2aed484baff9d12f29bd2d\";s:10:\"product_id\";i:32820;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:17400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:17400000;s:8:\"line_tax\";d:0;}s:32:\"719e650fc772473ef9a09955a62166aa\";a:11:{s:3:\"key\";s:32:\"719e650fc772473ef9a09955a62166aa\";s:10:\"product_id\";i:72640;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:390000;s:8:\"line_tax\";d:0;}s:32:\"576f6a8421fe2033afc59cb3ca140f75\";a:11:{s:3:\"key\";s:32:\"576f6a8421fe2033afc59cb3ca140f75\";s:10:\"product_id\";i:79998;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:400000;s:8:\"line_tax\";d:0;}s:32:\"760e4e8ca05904e3162c26ad34c1faf9\";a:11:{s:3:\"key\";s:32:\"760e4e8ca05904e3162c26ad34c1faf9\";s:10:\"product_id\";i:58456;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5400000;s:8:\"line_tax\";d:0;}s:32:\"66b0cd925d80e64555a2babbb2ccddc2\";a:11:{s:3:\"key\";s:32:\"66b0cd925d80e64555a2babbb2ccddc2\";s:10:\"product_id\";i:31307;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:204000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:204000;s:8:\"line_tax\";d:0;}s:32:\"33a398cdc4ee4392d969e847547ff78f\";a:11:{s:3:\"key\";s:32:\"33a398cdc4ee4392d969e847547ff78f\";s:10:\"product_id\";i:62430;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:425000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:425000;s:8:\"line_tax\";d:0;}s:32:\"13bd637ad91192a21d2d1a617b3f065a\";a:11:{s:3:\"key\";s:32:\"13bd637ad91192a21d2d1a617b3f065a\";s:10:\"product_id\";i:79582;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1360000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1360000;s:8:\"line_tax\";d:0;}s:32:\"fbf99289e8c1a22ee95ae6d2fb8ec4ea\";a:11:{s:3:\"key\";s:32:\"fbf99289e8c1a22ee95ae6d2fb8ec4ea\";s:10:\"product_id\";i:58475;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3450000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3450000;s:8:\"line_tax\";d:0;}s:32:\"e2f4a1d51d54f728370cb48014dbec2a\";a:11:{s:3:\"key\";s:32:\"e2f4a1d51d54f728370cb48014dbec2a\";s:10:\"product_id\";i:43873;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:13980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:13980000;s:8:\"line_tax\";d:0;}s:32:\"100a527975525b513a983359a3c51378\";a:11:{s:3:\"key\";s:32:\"100a527975525b513a983359a3c51378\";s:10:\"product_id\";i:29190;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:31200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:31200000;s:8:\"line_tax\";d:0;}s:32:\"45e0f0d91eb87a71812d4060b66cd113\";a:11:{s:3:\"key\";s:32:\"45e0f0d91eb87a71812d4060b66cd113\";s:10:\"product_id\";i:65963;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:295000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:295000;s:8:\"line_tax\";d:0;}s:32:\"0d7499344b7e483122d339bda81e9d5e\";a:11:{s:3:\"key\";s:32:\"0d7499344b7e483122d339bda81e9d5e\";s:10:\"product_id\";i:78348;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:310000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:310000;s:8:\"line_tax\";d:0;}s:32:\"4f8b4c73b1712622d6f05c02cda05d49\";a:11:{s:3:\"key\";s:32:\"4f8b4c73b1712622d6f05c02cda05d49\";s:10:\"product_id\";i:67314;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1140000;s:8:\"line_tax\";d:0;}s:32:\"90168d3ff3f7ce9d7e9c44e5076aaea0\";a:11:{s:3:\"key\";s:32:\"90168d3ff3f7ce9d7e9c44e5076aaea0\";s:10:\"product_id\";i:79952;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1560000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1560000;s:8:\"line_tax\";d:0;}s:32:\"75bd0bef20cc5d06a370e65d167ea1d2\";a:11:{s:3:\"key\";s:32:\"75bd0bef20cc5d06a370e65d167ea1d2\";s:10:\"product_id\";i:60582;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:168000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:168000;s:8:\"line_tax\";d:0;}s:32:\"807c4063f8fd3da43661d3087d697c7e\";a:11:{s:3:\"key\";s:32:\"807c4063f8fd3da43661d3087d697c7e\";s:10:\"product_id\";i:19784;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1700000;s:8:\"line_tax\";d:0;}s:32:\"1f6dd5f6d110719e1d16aa6b46eb97d7\";a:11:{s:3:\"key\";s:32:\"1f6dd5f6d110719e1d16aa6b46eb97d7\";s:10:\"product_id\";i:77847;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:950000;s:8:\"line_tax\";d:0;}s:32:\"874652a830c04985d23bef8ea1c584c1\";a:11:{s:3:\"key\";s:32:\"874652a830c04985d23bef8ea1c584c1\";s:10:\"product_id\";i:23082;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:11780000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:11780000;s:8:\"line_tax\";d:0;}s:32:\"c643c4d937abd1fce58c8794e90c5840\";a:11:{s:3:\"key\";s:32:\"c643c4d937abd1fce58c8794e90c5840\";s:10:\"product_id\";i:28927;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3800000;s:8:\"line_tax\";d:0;}s:32:\"2e068e276e5c0f88cc0ee3de630e49d7\";a:11:{s:3:\"key\";s:32:\"2e068e276e5c0f88cc0ee3de630e49d7\";s:10:\"product_id\";i:53713;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:10000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:10000000;s:8:\"line_tax\";d:0;}s:32:\"82c915bca7537ef11265aa134511f272\";a:11:{s:3:\"key\";s:32:\"82c915bca7537ef11265aa134511f272\";s:10:\"product_id\";i:37670;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1150000;s:8:\"line_tax\";d:0;}s:32:\"a59c557fdd56324ad6a1d7787258a66c\";a:11:{s:3:\"key\";s:32:\"a59c557fdd56324ad6a1d7787258a66c\";s:10:\"product_id\";i:63462;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:25470000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:25470000;s:8:\"line_tax\";d:0;}s:32:\"68ef1cc0f68c9810abcce01535cd24f0\";a:11:{s:3:\"key\";s:32:\"68ef1cc0f68c9810abcce01535cd24f0\";s:10:\"product_id\";i:64663;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1030000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1030000;s:8:\"line_tax\";d:0;}s:32:\"26a46ecbba4246b1e2df0332ea14fb54\";a:11:{s:3:\"key\";s:32:\"26a46ecbba4246b1e2df0332ea14fb54\";s:10:\"product_id\";i:54185;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2590000;s:8:\"line_tax\";d:0;}s:32:\"a7c20df233e5af0c709cb37d7f5ba3fd\";a:11:{s:3:\"key\";s:32:\"a7c20df233e5af0c709cb37d7f5ba3fd\";s:10:\"product_id\";i:17572;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1390000;s:8:\"line_tax\";d:0;}s:32:\"b952fb76427d6ab439fbd2b78f691ba5\";a:11:{s:3:\"key\";s:32:\"b952fb76427d6ab439fbd2b78f691ba5\";s:10:\"product_id\";i:17563;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:590000;s:8:\"line_tax\";d:0;}s:32:\"87355b7f60f29ecb7a50a7f5c1d67ff8\";a:11:{s:3:\"key\";s:32:\"87355b7f60f29ecb7a50a7f5c1d67ff8\";s:10:\"product_id\";i:80032;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3150000;s:8:\"line_tax\";d:0;}s:32:\"17307022ef0a07c152729ad550c94e22\";a:11:{s:3:\"key\";s:32:\"17307022ef0a07c152729ad550c94e22\";s:10:\"product_id\";i:77237;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1100000;s:8:\"line_tax\";d:0;}s:32:\"2c078e4b2c48fa83a11b825008177059\";a:11:{s:3:\"key\";s:32:\"2c078e4b2c48fa83a11b825008177059\";s:10:\"product_id\";i:77050;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:350000;s:8:\"line_tax\";d:0;}s:32:\"ed17f9a8d99098104d906e57df26c331\";a:11:{s:3:\"key\";s:32:\"ed17f9a8d99098104d906e57df26c331\";s:10:\"product_id\";i:62312;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2990000;s:8:\"line_tax\";d:0;}s:32:\"f891f3a22cb5a0714fc13dec3731c12c\";a:11:{s:3:\"key\";s:32:\"f891f3a22cb5a0714fc13dec3731c12c\";s:10:\"product_id\";i:61965;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:650000;s:8:\"line_tax\";d:0;}s:32:\"da908532dd9c2e462886273258a359ae\";a:11:{s:3:\"key\";s:32:\"da908532dd9c2e462886273258a359ae\";s:10:\"product_id\";i:78336;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3900000;s:8:\"line_tax\";d:0;}s:32:\"6d090e8d4f2d61498fe04b05cc2ba6eb\";a:11:{s:3:\"key\";s:32:\"6d090e8d4f2d61498fe04b05cc2ba6eb\";s:10:\"product_id\";i:17569;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:4780000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4780000;s:8:\"line_tax\";d:0;}s:32:\"2f60d946251d2dfd719925f3fa1fed01\";a:11:{s:3:\"key\";s:32:\"2f60d946251d2dfd719925f3fa1fed01\";s:10:\"product_id\";i:33835;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1240000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1240000;s:8:\"line_tax\";d:0;}s:32:\"0511703587bc74bca3e776d11006ccf1\";a:11:{s:3:\"key\";s:32:\"0511703587bc74bca3e776d11006ccf1\";s:10:\"product_id\";i:64846;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1800000;s:8:\"line_tax\";d:0;}s:32:\"362e9879b0aa04f4ebfb3bed33948556\";a:11:{s:3:\"key\";s:32:\"362e9879b0aa04f4ebfb3bed33948556\";s:10:\"product_id\";i:58638;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:305000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:305000;s:8:\"line_tax\";d:0;}s:32:\"ae03e4cbfafb3d70bba3bec8d8c5d5a6\";a:11:{s:3:\"key\";s:32:\"ae03e4cbfafb3d70bba3bec8d8c5d5a6\";s:10:\"product_id\";i:71956;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3150000;s:8:\"line_tax\";d:0;}s:32:\"256885516af278d9c9424884125a39f3\";a:11:{s:3:\"key\";s:32:\"256885516af278d9c9424884125a39f3\";s:10:\"product_id\";i:70133;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1350000;s:8:\"line_tax\";d:0;}s:32:\"e6ef568b114d2c91db0320578e50e0dd\";a:11:{s:3:\"key\";s:32:\"e6ef568b114d2c91db0320578e50e0dd\";s:10:\"product_id\";i:24309;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:699000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:699000;s:8:\"line_tax\";d:0;}s:32:\"ef8ff3bb5f926198d139c3e9750a3739\";a:11:{s:3:\"key\";s:32:\"ef8ff3bb5f926198d139c3e9750a3739\";s:10:\"product_id\";i:49655;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:395000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:395000;s:8:\"line_tax\";d:0;}s:32:\"01b13237868b4b62f177f19398d2733a\";a:11:{s:3:\"key\";s:32:\"01b13237868b4b62f177f19398d2733a\";s:10:\"product_id\";i:80512;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5160000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5160000;s:8:\"line_tax\";d:0;}s:32:\"97e869c7a8d3de5af4436b4ae4b003da\";a:11:{s:3:\"key\";s:32:\"97e869c7a8d3de5af4436b4ae4b003da\";s:10:\"product_id\";i:59704;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:125000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:125000;s:8:\"line_tax\";d:0;}s:32:\"c170720310dba87cccbaebd83ea6ace9\";a:11:{s:3:\"key\";s:32:\"c170720310dba87cccbaebd83ea6ace9\";s:10:\"product_id\";i:17456;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2150000;s:8:\"line_tax\";d:0;}s:32:\"164f7441f18de0245255d25238462f8f\";a:11:{s:3:\"key\";s:32:\"164f7441f18de0245255d25238462f8f\";s:10:\"product_id\";i:71188;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1150000;s:8:\"line_tax\";d:0;}s:32:\"a409a00df31982807386f27f8dc84407\";a:11:{s:3:\"key\";s:32:\"a409a00df31982807386f27f8dc84407\";s:10:\"product_id\";i:22141;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:160000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:160000;s:8:\"line_tax\";d:0;}s:32:\"499b9a5e43ad2e70083e6107e95deb88\";a:11:{s:3:\"key\";s:32:\"499b9a5e43ad2e70083e6107e95deb88\";s:10:\"product_id\";i:17614;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6600000;s:8:\"line_tax\";d:0;}s:32:\"e2a650bf102fd1c12d915d4f8a574ce8\";a:11:{s:3:\"key\";s:32:\"e2a650bf102fd1c12d915d4f8a574ce8\";s:10:\"product_id\";i:30407;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:49000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:49000000;s:8:\"line_tax\";d:0;}s:32:\"7fc0198b67cce188636277130d8f56cf\";a:11:{s:3:\"key\";s:32:\"7fc0198b67cce188636277130d8f56cf\";s:10:\"product_id\";i:51816;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4400000;s:8:\"line_tax\";d:0;}s:32:\"fcf9364bfda2b608a0a305bd157b75b6\";a:11:{s:3:\"key\";s:32:\"fcf9364bfda2b608a0a305bd157b75b6\";s:10:\"product_id\";i:64742;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:880000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:880000;s:8:\"line_tax\";d:0;}s:32:\"d62e4f397395281275035b2f6d67c5b4\";a:11:{s:3:\"key\";s:32:\"d62e4f397395281275035b2f6d67c5b4\";s:10:\"product_id\";i:80483;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3600000;s:8:\"line_tax\";d:0;}s:32:\"1b3c1623c5c98ad8549b8f62670d1f52\";a:11:{s:3:\"key\";s:32:\"1b3c1623c5c98ad8549b8f62670d1f52\";s:10:\"product_id\";i:28968;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:780000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:780000;s:8:\"line_tax\";d:0;}s:32:\"b12564853249eafedf53525ef9b6b0f6\";a:11:{s:3:\"key\";s:32:\"b12564853249eafedf53525ef9b6b0f6\";s:10:\"product_id\";i:28366;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2700000;s:8:\"line_tax\";d:0;}s:32:\"9e0e40a51b6ed794dbcfbd46410ba102\";a:11:{s:3:\"key\";s:32:\"9e0e40a51b6ed794dbcfbd46410ba102\";s:10:\"product_id\";i:73232;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1100000;s:8:\"line_tax\";d:0;}s:32:\"4a7f8ff99efa3673c1bf7d079e86ff3b\";a:11:{s:3:\"key\";s:32:\"4a7f8ff99efa3673c1bf7d079e86ff3b\";s:10:\"product_id\";i:50827;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";d:0;}s:32:\"7cc762eaf52b69a782553f189ff5d485\";a:11:{s:3:\"key\";s:32:\"7cc762eaf52b69a782553f189ff5d485\";s:10:\"product_id\";i:60586;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:210000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:210000;s:8:\"line_tax\";d:0;}s:32:\"bbdbf55804f3294747c053a7578b7dc7\";a:11:{s:3:\"key\";s:32:\"bbdbf55804f3294747c053a7578b7dc7\";s:10:\"product_id\";i:77520;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:120000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:120000;s:8:\"line_tax\";d:0;}s:32:\"aa2f382d39caa7c8767a196ff4148c13\";a:11:{s:3:\"key\";s:32:\"aa2f382d39caa7c8767a196ff4148c13\";s:10:\"product_id\";i:79672;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:760000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:760000;s:8:\"line_tax\";d:0;}s:32:\"a6fa45504565dc0928efc8807db66487\";a:11:{s:3:\"key\";s:32:\"a6fa45504565dc0928efc8807db66487\";s:10:\"product_id\";i:53292;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1390000;s:8:\"line_tax\";d:0;}s:32:\"8b361d620160b143214310905816c6f2\";a:11:{s:3:\"key\";s:32:\"8b361d620160b143214310905816c6f2\";s:10:\"product_id\";i:79627;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:95000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:95000;s:8:\"line_tax\";d:0;}s:32:\"f38ce71e421fafb53d63b064b1d0365c\";a:11:{s:3:\"key\";s:32:\"f38ce71e421fafb53d63b064b1d0365c\";s:10:\"product_id\";i:77754;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2400000;s:8:\"line_tax\";d:0;}s:32:\"1c55ed119caa4e1226adb7da772bd372\";a:11:{s:3:\"key\";s:32:\"1c55ed119caa4e1226adb7da772bd372\";s:10:\"product_id\";i:29137;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2100000;s:8:\"line_tax\";d:0;}s:32:\"69b86f4ce0394ef6d54f3033081bd3e1\";a:11:{s:3:\"key\";s:32:\"69b86f4ce0394ef6d54f3033081bd3e1\";s:10:\"product_id\";i:35256;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:745000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:745000;s:8:\"line_tax\";d:0;}s:32:\"3e0cb4a1171e1be5a03dbd5d46c09ac1\";a:11:{s:3:\"key\";s:32:\"3e0cb4a1171e1be5a03dbd5d46c09ac1\";s:10:\"product_id\";i:19908;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:140000;s:8:\"line_tax\";d:0;}s:32:\"8a618b8f8f01a09230853dbe6f581c27\";a:11:{s:3:\"key\";s:32:\"8a618b8f8f01a09230853dbe6f581c27\";s:10:\"product_id\";i:17193;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1850000;s:8:\"line_tax\";d:0;}s:32:\"372ac89e5b4b39b7d2afe7d04f43d4fd\";a:11:{s:3:\"key\";s:32:\"372ac89e5b4b39b7d2afe7d04f43d4fd\";s:10:\"product_id\";i:80241;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3400000;s:8:\"line_tax\";d:0;}s:32:\"f31c62b1be87ee00a16b9e51482263a7\";a:11:{s:3:\"key\";s:32:\"f31c62b1be87ee00a16b9e51482263a7\";s:10:\"product_id\";i:23355;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4600000;s:8:\"line_tax\";d:0;}s:32:\"0655abec90588edb235cad1134cda40f\";a:11:{s:3:\"key\";s:32:\"0655abec90588edb235cad1134cda40f\";s:10:\"product_id\";i:25545;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3390000;s:8:\"line_tax\";d:0;}s:32:\"36f89e5041d3c60e19c526241381b6d9\";a:11:{s:3:\"key\";s:32:\"36f89e5041d3c60e19c526241381b6d9\";s:10:\"product_id\";i:55869;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:80000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:80000;s:8:\"line_tax\";d:0;}s:32:\"b30f2bf3526450b57ffc2dc4f11999da\";a:11:{s:3:\"key\";s:32:\"b30f2bf3526450b57ffc2dc4f11999da\";s:10:\"product_id\";i:61387;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:365000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:365000;s:8:\"line_tax\";d:0;}s:32:\"d26deb6325aed2d1d9ebb9d96c423854\";a:11:{s:3:\"key\";s:32:\"d26deb6325aed2d1d9ebb9d96c423854\";s:10:\"product_id\";i:19510;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1400000;s:8:\"line_tax\";d:0;}s:32:\"413069c62e995fde1b862f55582aec23\";a:11:{s:3:\"key\";s:32:\"413069c62e995fde1b862f55582aec23\";s:10:\"product_id\";i:78355;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:200000;s:8:\"line_tax\";d:0;}s:32:\"5de765f341bd3b759c0633a9bde9bc26\";a:11:{s:3:\"key\";s:32:\"5de765f341bd3b759c0633a9bde9bc26\";s:10:\"product_id\";i:55799;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3480000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3480000;s:8:\"line_tax\";d:0;}s:32:\"3a6fb06246afab1becae063111c2a854\";a:11:{s:3:\"key\";s:32:\"3a6fb06246afab1becae063111c2a854\";s:10:\"product_id\";i:59074;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:233000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:233000;s:8:\"line_tax\";d:0;}s:32:\"751766bfc41e4a7cd9b4dc821d9160c8\";a:11:{s:3:\"key\";s:32:\"751766bfc41e4a7cd9b4dc821d9160c8\";s:10:\"product_id\";i:77629;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:140000;s:8:\"line_tax\";d:0;}s:32:\"6db77179478187c6a0479a878afa4990\";a:11:{s:3:\"key\";s:32:\"6db77179478187c6a0479a878afa4990\";s:10:\"product_id\";i:27324;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:490000;s:8:\"line_tax\";d:0;}s:32:\"a67f096809415ca1c9f112d96d27689b\";a:11:{s:3:\"key\";s:32:\"a67f096809415ca1c9f112d96d27689b\";s:10:\"product_id\";i:858;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";d:0;}s:32:\"1499cf7e1457d36260a142aebe350065\";a:11:{s:3:\"key\";s:32:\"1499cf7e1457d36260a142aebe350065\";s:10:\"product_id\";i:23245;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4240000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4240000;s:8:\"line_tax\";d:0;}s:32:\"8e3043308dbd3f6f6d6d175d7518fd04\";a:11:{s:3:\"key\";s:32:\"8e3043308dbd3f6f6d6d175d7518fd04\";s:10:\"product_id\";i:19678;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2400000;s:8:\"line_tax\";d:0;}s:32:\"fea68355a2b250eb95468fb15c087d8c\";a:11:{s:3:\"key\";s:32:\"fea68355a2b250eb95468fb15c087d8c\";s:10:\"product_id\";i:19670;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3580000;s:8:\"line_tax\";d:0;}s:32:\"344ea67c970f984ab09de3d3facbf028\";a:11:{s:3:\"key\";s:32:\"344ea67c970f984ab09de3d3facbf028\";s:10:\"product_id\";i:77355;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1700000;s:8:\"line_tax\";d:0;}s:32:\"1088cfbd540321e61be04e54d0502a70\";a:11:{s:3:\"key\";s:32:\"1088cfbd540321e61be04e54d0502a70\";s:10:\"product_id\";i:44097;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:320000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:320000;s:8:\"line_tax\";d:0;}s:32:\"2fdef625a264874c1a4081ca24dd479d\";a:11:{s:3:\"key\";s:32:\"2fdef625a264874c1a4081ca24dd479d\";s:10:\"product_id\";i:44136;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:145000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:145000;s:8:\"line_tax\";d:0;}s:32:\"c2f5a98f538a51b4e13f38d172da0277\";a:11:{s:3:\"key\";s:32:\"c2f5a98f538a51b4e13f38d172da0277\";s:10:\"product_id\";i:78852;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4650000;s:8:\"line_tax\";d:0;}s:32:\"213334eb8d81fbc898ce3abcf98bcfa1\";a:11:{s:3:\"key\";s:32:\"213334eb8d81fbc898ce3abcf98bcfa1\";s:10:\"product_id\";i:42788;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:690000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:690000;s:8:\"line_tax\";d:0;}s:32:\"8c3f9b7968b4b9437fa4f6304e12ada8\";a:11:{s:3:\"key\";s:32:\"8c3f9b7968b4b9437fa4f6304e12ada8\";s:10:\"product_id\";i:62727;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2150000;s:8:\"line_tax\";d:0;}s:32:\"61b80b3c2e4d6c208f2c634ae5816887\";a:11:{s:3:\"key\";s:32:\"61b80b3c2e4d6c208f2c634ae5816887\";s:10:\"product_id\";i:22096;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:130000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:130000;s:8:\"line_tax\";d:0;}s:32:\"e33594b578d32f6a08810d0f45784cf9\";a:11:{s:3:\"key\";s:32:\"e33594b578d32f6a08810d0f45784cf9\";s:10:\"product_id\";i:61732;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1410000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1410000;s:8:\"line_tax\";d:0;}s:32:\"eb8d67e83a1516eca825c2231aee81d7\";a:11:{s:3:\"key\";s:32:\"eb8d67e83a1516eca825c2231aee81d7\";s:10:\"product_id\";i:73732;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:980000;s:8:\"line_tax\";d:0;}s:32:\"479eaa8e93a42b42d12992f086cfa14f\";a:11:{s:3:\"key\";s:32:\"479eaa8e93a42b42d12992f086cfa14f\";s:10:\"product_id\";i:28178;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:290000;s:8:\"line_tax\";d:0;}s:32:\"85065180e34af1320f3aae7ab12fde60\";a:11:{s:3:\"key\";s:32:\"85065180e34af1320f3aae7ab12fde60\";s:10:\"product_id\";i:77074;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2130000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2130000;s:8:\"line_tax\";d:0;}s:32:\"be93aff998eaa951450701911c70dfb0\";a:11:{s:3:\"key\";s:32:\"be93aff998eaa951450701911c70dfb0\";s:10:\"product_id\";i:73278;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:815000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:815000;s:8:\"line_tax\";d:0;}s:32:\"3196991b4ae24d3bd8b6e74c9622c554\";a:11:{s:3:\"key\";s:32:\"3196991b4ae24d3bd8b6e74c9622c554\";s:10:\"product_id\";i:59521;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:750000;s:8:\"line_tax\";d:0;}s:32:\"bfd5a66a69fb7c69d67c273af438f3a9\";a:11:{s:3:\"key\";s:32:\"bfd5a66a69fb7c69d67c273af438f3a9\";s:10:\"product_id\";i:17268;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1170000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1170000;s:8:\"line_tax\";d:0;}s:32:\"13e0c58160370f4f3c24dd99c9cf6098\";a:11:{s:3:\"key\";s:32:\"13e0c58160370f4f3c24dd99c9cf6098\";s:10:\"product_id\";i:79223;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:155000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:155000;s:8:\"line_tax\";d:0;}s:32:\"3af735128a47958dd67b1d5989b69756\";a:11:{s:3:\"key\";s:32:\"3af735128a47958dd67b1d5989b69756\";s:10:\"product_id\";i:62262;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:495000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:495000;s:8:\"line_tax\";d:0;}s:32:\"3b6bd018360bb5464e081274b7e9467b\";a:11:{s:3:\"key\";s:32:\"3b6bd018360bb5464e081274b7e9467b\";s:10:\"product_id\";i:19430;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1200000;s:8:\"line_tax\";d:0;}s:32:\"ca9c5ad305c61767ad977ea1bcffc76e\";a:11:{s:3:\"key\";s:32:\"ca9c5ad305c61767ad977ea1bcffc76e\";s:10:\"product_id\";i:71808;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1000000;s:8:\"line_tax\";d:0;}s:32:\"fdfe72ea5c6bee9ca14e4bdd1d508f91\";a:11:{s:3:\"key\";s:32:\"fdfe72ea5c6bee9ca14e4bdd1d508f91\";s:10:\"product_id\";i:51681;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:225000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:225000;s:8:\"line_tax\";d:0;}s:32:\"f7dcef5e0ce632bd23e63109b3ebfdaa\";a:11:{s:3:\"key\";s:32:\"f7dcef5e0ce632bd23e63109b3ebfdaa\";s:10:\"product_id\";i:63454;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:11500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:11500000;s:8:\"line_tax\";d:0;}s:32:\"e099dcaa1fbe6ed7d9f843e37efc5097\";a:11:{s:3:\"key\";s:32:\"e099dcaa1fbe6ed7d9f843e37efc5097\";s:10:\"product_id\";i:64819;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1280000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1280000;s:8:\"line_tax\";d:0;}s:32:\"10dec6809fdb7a4a91cec4261efeddfc\";a:11:{s:3:\"key\";s:32:\"10dec6809fdb7a4a91cec4261efeddfc\";s:10:\"product_id\";i:23249;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2100000;s:8:\"line_tax\";d:0;}s:32:\"5222b70037a99736c6492943c5bccf14\";a:11:{s:3:\"key\";s:32:\"5222b70037a99736c6492943c5bccf14\";s:10:\"product_id\";i:71786;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:585000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:585000;s:8:\"line_tax\";d:0;}s:32:\"2d5321f0813775370f774070cad46fbe\";a:11:{s:3:\"key\";s:32:\"2d5321f0813775370f774070cad46fbe\";s:10:\"product_id\";i:19417;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2250000;s:8:\"line_tax\";d:0;}s:32:\"170bd74f5de4094d67a13c5b18c90822\";a:11:{s:3:\"key\";s:32:\"170bd74f5de4094d67a13c5b18c90822\";s:10:\"product_id\";i:79927;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:380000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:380000;s:8:\"line_tax\";d:0;}s:32:\"931b07d5b93f51dc03924618b1ffca0f\";a:11:{s:3:\"key\";s:32:\"931b07d5b93f51dc03924618b1ffca0f\";s:10:\"product_id\";i:62832;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:955000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:955000;s:8:\"line_tax\";d:0;}s:32:\"297b631a88835f8931aa5aabdd06ece9\";a:11:{s:3:\"key\";s:32:\"297b631a88835f8931aa5aabdd06ece9\";s:10:\"product_id\";i:7414;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:260000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:260000;s:8:\"line_tax\";d:0;}s:32:\"0c04c03add2634d3383b6eeb80246821\";a:11:{s:3:\"key\";s:32:\"0c04c03add2634d3383b6eeb80246821\";s:10:\"product_id\";i:19501;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:550000;s:8:\"line_tax\";d:0;}s:32:\"0a6b0cace0db07d841942b623baaad44\";a:11:{s:3:\"key\";s:32:\"0a6b0cace0db07d841942b623baaad44\";s:10:\"product_id\";i:77040;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:340000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:340000;s:8:\"line_tax\";d:0;}s:32:\"ff30a84dfdbc79ce3e13c4b2e1fad443\";a:11:{s:3:\"key\";s:32:\"ff30a84dfdbc79ce3e13c4b2e1fad443\";s:10:\"product_id\";i:64657;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1099000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1099000;s:8:\"line_tax\";d:0;}s:32:\"8f378ebbb1e12e36cfb2229b251778ae\";a:11:{s:3:\"key\";s:32:\"8f378ebbb1e12e36cfb2229b251778ae\";s:10:\"product_id\";i:78392;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:150000;s:8:\"line_tax\";d:0;}s:32:\"a07185ca29dd97374518759cab2eb0dc\";a:11:{s:3:\"key\";s:32:\"a07185ca29dd97374518759cab2eb0dc\";s:10:\"product_id\";i:19434;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:560000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:560000;s:8:\"line_tax\";d:0;}s:32:\"74a190a673b9880b825416fd36a44eb3\";a:11:{s:3:\"key\";s:32:\"74a190a673b9880b825416fd36a44eb3\";s:10:\"product_id\";i:32800;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:7500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7500000;s:8:\"line_tax\";d:0;}s:32:\"9bf717fa26d87832aeeda60df436728e\";a:11:{s:3:\"key\";s:32:\"9bf717fa26d87832aeeda60df436728e\";s:10:\"product_id\";i:55856;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:88000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:88000;s:8:\"line_tax\";d:0;}s:32:\"76156affbdaee88e92d5a2f7b57ada1d\";a:11:{s:3:\"key\";s:32:\"76156affbdaee88e92d5a2f7b57ada1d\";s:10:\"product_id\";i:24913;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1765000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1765000;s:8:\"line_tax\";d:0;}s:32:\"8313b45586a762852e20d6c919edb1c3\";a:11:{s:3:\"key\";s:32:\"8313b45586a762852e20d6c919edb1c3\";s:10:\"product_id\";i:62853;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1290000;s:8:\"line_tax\";d:0;}s:32:\"ce9920ac9521bd85f15394aabcc3ad83\";a:11:{s:3:\"key\";s:32:\"ce9920ac9521bd85f15394aabcc3ad83\";s:10:\"product_id\";i:62078;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:775000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:775000;s:8:\"line_tax\";d:0;}s:32:\"5055c192ccad856426ac0cdc38f9c8db\";a:11:{s:3:\"key\";s:32:\"5055c192ccad856426ac0cdc38f9c8db\";s:10:\"product_id\";i:72577;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2500000;s:8:\"line_tax\";d:0;}s:32:\"ee92edd48f586699b992fea3d9a2ca85\";a:11:{s:3:\"key\";s:32:\"ee92edd48f586699b992fea3d9a2ca85\";s:10:\"product_id\";i:62937;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:210000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:210000;s:8:\"line_tax\";d:0;}s:32:\"3f6d017d3e728b057bcc082a7db75a57\";a:11:{s:3:\"key\";s:32:\"3f6d017d3e728b057bcc082a7db75a57\";s:10:\"product_id\";i:30922;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:8490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:8490000;s:8:\"line_tax\";d:0;}s:32:\"ceca909dc469546eb2d5cdbe569b4fda\";a:11:{s:3:\"key\";s:32:\"ceca909dc469546eb2d5cdbe569b4fda\";s:10:\"product_id\";i:42295;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:7600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7600000;s:8:\"line_tax\";d:0;}s:32:\"b45d0892a61a32c5c01f5ff140148d54\";a:11:{s:3:\"key\";s:32:\"b45d0892a61a32c5c01f5ff140148d54\";s:10:\"product_id\";i:51099;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:50000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:50000;s:8:\"line_tax\";d:0;}s:32:\"27c602eea419202c123f75f17df800e0\";a:11:{s:3:\"key\";s:32:\"27c602eea419202c123f75f17df800e0\";s:10:\"product_id\";i:19673;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1700000;s:8:\"line_tax\";d:0;}s:32:\"d80f8d2f11bbd1a8ab728b02fa3cd66a\";a:11:{s:3:\"key\";s:32:\"d80f8d2f11bbd1a8ab728b02fa3cd66a\";s:10:\"product_id\";i:28173;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:185000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:185000;s:8:\"line_tax\";d:0;}s:32:\"9a1d3ee766a8565e8264efb2cae7459d\";a:11:{s:3:\"key\";s:32:\"9a1d3ee766a8565e8264efb2cae7459d\";s:10:\"product_id\";i:61972;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:300000;s:8:\"line_tax\";d:0;}s:32:\"d6b5899123f0ff9402eee92003afb979\";a:11:{s:3:\"key\";s:32:\"d6b5899123f0ff9402eee92003afb979\";s:10:\"product_id\";i:44131;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:145000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:145000;s:8:\"line_tax\";d:0;}s:32:\"b6a1fc980eba7aa351f4f9260e986cd7\";a:11:{s:3:\"key\";s:32:\"b6a1fc980eba7aa351f4f9260e986cd7\";s:10:\"product_id\";i:49552;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:13500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:13500000;s:8:\"line_tax\";d:0;}s:32:\"26efab7b1f849ac2fc9248e58ea37ad5\";a:11:{s:3:\"key\";s:32:\"26efab7b1f849ac2fc9248e58ea37ad5\";s:10:\"product_id\";i:80043;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1150000;s:8:\"line_tax\";d:0;}s:32:\"2cd16a1c4acae58f5e6dab146488b38d\";a:11:{s:3:\"key\";s:32:\"2cd16a1c4acae58f5e6dab146488b38d\";s:10:\"product_id\";i:55747;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:26200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:26200000;s:8:\"line_tax\";d:0;}s:32:\"b93e662b3e5e06be3555e0e087a2acb8\";a:11:{s:3:\"key\";s:32:\"b93e662b3e5e06be3555e0e087a2acb8\";s:10:\"product_id\";i:24354;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:980000;s:8:\"line_tax\";d:0;}s:32:\"fa0e49bd6f50d6cb76fedf9051c59f66\";a:11:{s:3:\"key\";s:32:\"fa0e49bd6f50d6cb76fedf9051c59f66\";s:10:\"product_id\";i:61647;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:670000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:670000;s:8:\"line_tax\";d:0;}s:32:\"51b2e0cf0cddae62ac04b25ab037a94f\";a:11:{s:3:\"key\";s:32:\"51b2e0cf0cddae62ac04b25ab037a94f\";s:10:\"product_id\";i:79773;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:220000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:220000;s:8:\"line_tax\";d:0;}s:32:\"b6619d3a11a7fa6aeb3f2add64e5cf9d\";a:11:{s:3:\"key\";s:32:\"b6619d3a11a7fa6aeb3f2add64e5cf9d\";s:10:\"product_id\";i:64907;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1350000;s:8:\"line_tax\";d:0;}s:32:\"509f063b87c8932810dd274ea508e5d3\";a:11:{s:3:\"key\";s:32:\"509f063b87c8932810dd274ea508e5d3\";s:10:\"product_id\";i:71252;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3600000;s:8:\"line_tax\";d:0;}s:32:\"b020093543b13787fd4455fb26784845\";a:11:{s:3:\"key\";s:32:\"b020093543b13787fd4455fb26784845\";s:10:\"product_id\";i:77615;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:240000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:240000;s:8:\"line_tax\";d:0;}s:32:\"44f9e4977aeb6b38d163be16a813658e\";a:11:{s:3:\"key\";s:32:\"44f9e4977aeb6b38d163be16a813658e\";s:10:\"product_id\";i:77491;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100000;s:8:\"line_tax\";d:0;}s:32:\"74241b20f1a748bc948e78a4d508ca9e\";a:11:{s:3:\"key\";s:32:\"74241b20f1a748bc948e78a4d508ca9e\";s:10:\"product_id\";i:51676;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:435000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:435000;s:8:\"line_tax\";d:0;}s:32:\"447923cb2835ac5d123ba77dc1f2b08a\";a:11:{s:3:\"key\";s:32:\"447923cb2835ac5d123ba77dc1f2b08a\";s:10:\"product_id\";i:74669;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5370000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5370000;s:8:\"line_tax\";d:0;}s:32:\"c2c1bfc8cba2cec46f0d7789719d81af\";a:11:{s:3:\"key\";s:32:\"c2c1bfc8cba2cec46f0d7789719d81af\";s:10:\"product_id\";i:71820;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:150000;s:8:\"line_tax\";d:0;}s:32:\"6c275a693a0e1764550078ac710873cf\";a:11:{s:3:\"key\";s:32:\"6c275a693a0e1764550078ac710873cf\";s:10:\"product_id\";i:24726;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1490000;s:8:\"line_tax\";d:0;}s:32:\"185c2de3f4ad8cfc7bc05dfe5de3e712\";a:11:{s:3:\"key\";s:32:\"185c2de3f4ad8cfc7bc05dfe5de3e712\";s:10:\"product_id\";i:80089;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:400000;s:8:\"line_tax\";d:0;}s:32:\"70aa6b749465bd4200a045958e25d5ed\";a:11:{s:3:\"key\";s:32:\"70aa6b749465bd4200a045958e25d5ed\";s:10:\"product_id\";i:58633;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:301000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:301000;s:8:\"line_tax\";d:0;}s:32:\"468a6110e2c79e3329df7dcbc5be02ed\";a:11:{s:3:\"key\";s:32:\"468a6110e2c79e3329df7dcbc5be02ed\";s:10:\"product_id\";i:46351;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:260000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:260000;s:8:\"line_tax\";d:0;}s:32:\"5ac0275858fa1f706d8550ae0828a016\";a:11:{s:3:\"key\";s:32:\"5ac0275858fa1f706d8550ae0828a016\";s:10:\"product_id\";i:70131;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:700000;s:8:\"line_tax\";d:0;}s:32:\"7a476b4e81aa1538ca6ebaa0fcd0fe26\";a:11:{s:3:\"key\";s:32:\"7a476b4e81aa1538ca6ebaa0fcd0fe26\";s:10:\"product_id\";i:77570;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:180000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:180000;s:8:\"line_tax\";d:0;}s:32:\"10e71f188f6f3575f6be7f7e94c50c44\";a:11:{s:3:\"key\";s:32:\"10e71f188f6f3575f6be7f7e94c50c44\";s:10:\"product_id\";i:46346;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:95000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:95000;s:8:\"line_tax\";d:0;}s:32:\"7af8a9ba036ef46f60328a11372e9755\";a:11:{s:3:\"key\";s:32:\"7af8a9ba036ef46f60328a11372e9755\";s:10:\"product_id\";i:67538;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:420000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:420000;s:8:\"line_tax\";d:0;}s:32:\"9479b4ffd145444cb2b274aca8aa69ee\";a:11:{s:3:\"key\";s:32:\"9479b4ffd145444cb2b274aca8aa69ee\";s:10:\"product_id\";i:64916;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3600000;s:8:\"line_tax\";d:0;}s:32:\"8572f22b5b0506a533ffd5ba9c9b551f\";a:11:{s:3:\"key\";s:32:\"8572f22b5b0506a533ffd5ba9c9b551f\";s:10:\"product_id\";i:77214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2490000;s:8:\"line_tax\";d:0;}s:32:\"14de672eaf947819f873fb754fe2c1a1\";a:11:{s:3:\"key\";s:32:\"14de672eaf947819f873fb754fe2c1a1\";s:10:\"product_id\";i:50976;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:4250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4250000;s:8:\"line_tax\";d:0;}s:32:\"035d4ef6febd5268f7589ea4017e9b82\";a:11:{s:3:\"key\";s:32:\"035d4ef6febd5268f7589ea4017e9b82\";s:10:\"product_id\";i:16078;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2950000;s:8:\"line_tax\";d:0;}s:32:\"ec967833951ea475033e1edc0b28783c\";a:11:{s:3:\"key\";s:32:\"ec967833951ea475033e1edc0b28783c\";s:10:\"product_id\";i:23241;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1850000;s:8:\"line_tax\";d:0;}s:32:\"086c98cd8fcd5da4d44864f9b3c7c2fa\";a:11:{s:3:\"key\";s:32:\"086c98cd8fcd5da4d44864f9b3c7c2fa\";s:10:\"product_id\";i:27981;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:225000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:225000;s:8:\"line_tax\";d:0;}s:32:\"7f348453d8bbf8d76edf658ac8d24937\";a:11:{s:3:\"key\";s:32:\"7f348453d8bbf8d76edf658ac8d24937\";s:10:\"product_id\";i:80269;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3000000;s:8:\"line_tax\";d:0;}s:32:\"de7b267c6c9cd2cc7ce9d71d2b59cfa0\";a:11:{s:3:\"key\";s:32:\"de7b267c6c9cd2cc7ce9d71d2b59cfa0\";s:10:\"product_id\";i:76929;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:200000;s:8:\"line_tax\";d:0;}s:32:\"87e5625bee77ec20a105b2772091e28b\";a:11:{s:3:\"key\";s:32:\"87e5625bee77ec20a105b2772091e28b\";s:10:\"product_id\";i:78571;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1390000;s:8:\"line_tax\";d:0;}s:32:\"4b0634bf8e6c9d0289c1102ced741317\";a:11:{s:3:\"key\";s:32:\"4b0634bf8e6c9d0289c1102ced741317\";s:10:\"product_id\";i:25646;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:550000;s:8:\"line_tax\";d:0;}s:32:\"bb321c34de561d798689cdf0520e24d4\";a:11:{s:3:\"key\";s:32:\"bb321c34de561d798689cdf0520e24d4\";s:10:\"product_id\";i:68014;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1960000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1960000;s:8:\"line_tax\";d:0;}s:32:\"91f024d4a24f398007c5cd62811f62f0\";a:11:{s:3:\"key\";s:32:\"91f024d4a24f398007c5cd62811f62f0\";s:10:\"product_id\";i:24418;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:270000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:270000;s:8:\"line_tax\";d:0;}s:32:\"1448628d3de88430d703aa7e91c9f67b\";a:11:{s:3:\"key\";s:32:\"1448628d3de88430d703aa7e91c9f67b\";s:10:\"product_id\";i:68092;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:105000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:105000;s:8:\"line_tax\";d:0;}s:32:\"8163ed218adc66e212cd660d2e70c436\";a:11:{s:3:\"key\";s:32:\"8163ed218adc66e212cd660d2e70c436\";s:10:\"product_id\";i:64955;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3400000;s:8:\"line_tax\";d:0;}s:32:\"8d2ed8adb7cc3acf598ea69600f2115b\";a:11:{s:3:\"key\";s:32:\"8d2ed8adb7cc3acf598ea69600f2115b\";s:10:\"product_id\";i:65735;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1140000;s:8:\"line_tax\";d:0;}s:32:\"945bcf80a53881dafde56a1aef8f627e\";a:11:{s:3:\"key\";s:32:\"945bcf80a53881dafde56a1aef8f627e\";s:10:\"product_id\";i:16493;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2085000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2085000;s:8:\"line_tax\";d:0;}s:32:\"f2fe4479d8861f09946a28965a67d436\";a:11:{s:3:\"key\";s:32:\"f2fe4479d8861f09946a28965a67d436\";s:10:\"product_id\";i:24897;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3500000;s:8:\"line_tax\";d:0;}s:32:\"93d6db6c098728cb60cdbdd2567150ab\";a:11:{s:3:\"key\";s:32:\"93d6db6c098728cb60cdbdd2567150ab\";s:10:\"product_id\";i:18526;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:695000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:695000;s:8:\"line_tax\";d:0;}s:32:\"5810733635b8629df4a4badaaef78f6c\";a:11:{s:3:\"key\";s:32:\"5810733635b8629df4a4badaaef78f6c\";s:10:\"product_id\";i:29184;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3190000;s:8:\"line_tax\";d:0;}s:32:\"7c9ba5420014ef899bcf06b3e1638083\";a:11:{s:3:\"key\";s:32:\"7c9ba5420014ef899bcf06b3e1638083\";s:10:\"product_id\";i:50825;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";d:0;}s:32:\"4693dc77a0ebb13fee222ff64a3e0a6b\";a:11:{s:3:\"key\";s:32:\"4693dc77a0ebb13fee222ff64a3e0a6b\";s:10:\"product_id\";i:78342;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1500000;s:8:\"line_tax\";d:0;}s:32:\"6b68749e7c77847afa55dd65082ab603\";a:11:{s:3:\"key\";s:32:\"6b68749e7c77847afa55dd65082ab603\";s:10:\"product_id\";i:44149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:180000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:180000;s:8:\"line_tax\";d:0;}s:32:\"14455a4dee32fb0787bc586bec8eb582\";a:11:{s:3:\"key\";s:32:\"14455a4dee32fb0787bc586bec8eb582\";s:10:\"product_id\";i:44240;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:390000;s:8:\"line_tax\";d:0;}s:32:\"b4298066417cc73475d0257087ad28da\";a:11:{s:3:\"key\";s:32:\"b4298066417cc73475d0257087ad28da\";s:10:\"product_id\";i:77244;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:295000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:295000;s:8:\"line_tax\";d:0;}s:32:\"dec6acdc3905891e7ef9655bd6a43148\";a:11:{s:3:\"key\";s:32:\"dec6acdc3905891e7ef9655bd6a43148\";s:10:\"product_id\";i:51436;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:15500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:15500000;s:8:\"line_tax\";d:0;}s:32:\"d3dce8f6c19589bace8a9d293a271780\";a:11:{s:3:\"key\";s:32:\"d3dce8f6c19589bace8a9d293a271780\";s:10:\"product_id\";i:79128;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3690000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3690000;s:8:\"line_tax\";d:0;}s:32:\"14e2478fdae5f8cbfe6f14cd046e5832\";a:11:{s:3:\"key\";s:32:\"14e2478fdae5f8cbfe6f14cd046e5832\";s:10:\"product_id\";i:59439;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:330000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:330000;s:8:\"line_tax\";d:0;}s:32:\"f5a3c3c60886486f624b163dec4533cc\";a:11:{s:3:\"key\";s:32:\"f5a3c3c60886486f624b163dec4533cc\";s:10:\"product_id\";i:55739;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:13000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:13000000;s:8:\"line_tax\";d:0;}s:32:\"1db51908b18392bc3d6e9754447d3bd6\";a:11:{s:3:\"key\";s:32:\"1db51908b18392bc3d6e9754447d3bd6\";s:10:\"product_id\";i:79587;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:240000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:240000;s:8:\"line_tax\";d:0;}s:32:\"1bf5bcc6fa7976fa5140c67c59b1aac2\";a:11:{s:3:\"key\";s:32:\"1bf5bcc6fa7976fa5140c67c59b1aac2\";s:10:\"product_id\";i:71362;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:750000;s:8:\"line_tax\";d:0;}s:32:\"0477dee948ac714571248b22f1abea78\";a:11:{s:3:\"key\";s:32:\"0477dee948ac714571248b22f1abea78\";s:10:\"product_id\";i:77199;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:190000;s:8:\"line_tax\";d:0;}s:32:\"c84389bbba219be3e13b80f9376a0db7\";a:11:{s:3:\"key\";s:32:\"c84389bbba219be3e13b80f9376a0db7\";s:10:\"product_id\";i:59081;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:90000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:90000;s:8:\"line_tax\";d:0;}s:32:\"3be42d8a3412057f79af152555e39bd4\";a:11:{s:3:\"key\";s:32:\"3be42d8a3412057f79af152555e39bd4\";s:10:\"product_id\";i:80273;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:590000;s:8:\"line_tax\";d:0;}s:32:\"1f41117131f4791c6929c04da4a9702b\";a:11:{s:3:\"key\";s:32:\"1f41117131f4791c6929c04da4a9702b\";s:10:\"product_id\";i:77771;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2050000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2050000;s:8:\"line_tax\";d:0;}s:32:\"15a01980eab4d075ee6d2a9da30bf017\";a:11:{s:3:\"key\";s:32:\"15a01980eab4d075ee6d2a9da30bf017\";s:10:\"product_id\";i:25963;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:260000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:260000;s:8:\"line_tax\";d:0;}s:32:\"7e8145ab66f342d033d1fec9574949bf\";a:11:{s:3:\"key\";s:32:\"7e8145ab66f342d033d1fec9574949bf\";s:10:\"product_id\";i:64899;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1900000;s:8:\"line_tax\";d:0;}s:32:\"cec0a5642ade5e8570f892aa0cf7c41d\";a:11:{s:3:\"key\";s:32:\"cec0a5642ade5e8570f892aa0cf7c41d\";s:10:\"product_id\";i:76719;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1100000;s:8:\"line_tax\";d:0;}s:32:\"8fb276fc273796ca929b7fc45c2bc661\";a:11:{s:3:\"key\";s:32:\"8fb276fc273796ca929b7fc45c2bc661\";s:10:\"product_id\";i:15892;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3100000;s:8:\"line_tax\";d:0;}s:32:\"85f04cdc828abe14dbe23e584cefabcf\";a:11:{s:3:\"key\";s:32:\"85f04cdc828abe14dbe23e584cefabcf\";s:10:\"product_id\";i:67394;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:400000;s:8:\"line_tax\";d:0;}s:32:\"eade5febf80213b6310d1b17bafc98ff\";a:11:{s:3:\"key\";s:32:\"eade5febf80213b6310d1b17bafc98ff\";s:10:\"product_id\";i:28876;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4200000;s:8:\"line_tax\";d:0;}s:32:\"0043195c73a526c9ad0903f8d9db5d71\";a:11:{s:3:\"key\";s:32:\"0043195c73a526c9ad0903f8d9db5d71\";s:10:\"product_id\";i:64698;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1850000;s:8:\"line_tax\";d:0;}s:32:\"c13f724567246c6aba1da13e2eb69230\";a:11:{s:3:\"key\";s:32:\"c13f724567246c6aba1da13e2eb69230\";s:10:\"product_id\";i:47356;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:16200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:16200000;s:8:\"line_tax\";d:0;}s:32:\"1b25ea4e3ede6fc047c018cb9b5ddc8b\";a:11:{s:3:\"key\";s:32:\"1b25ea4e3ede6fc047c018cb9b5ddc8b\";s:10:\"product_id\";i:71214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1390000;s:8:\"line_tax\";d:0;}s:32:\"bb9866cabf57950faff6a0f8c26c9e0c\";a:11:{s:3:\"key\";s:32:\"bb9866cabf57950faff6a0f8c26c9e0c\";s:10:\"product_id\";i:25654;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:370000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:370000;s:8:\"line_tax\";d:0;}s:32:\"c72645c9d0c1be8f8e43f76e58562868\";a:11:{s:3:\"key\";s:32:\"c72645c9d0c1be8f8e43f76e58562868\";s:10:\"product_id\";i:79963;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2990000;s:8:\"line_tax\";d:0;}s:32:\"a2ad21422707bdf0ac074f80b4c67181\";a:11:{s:3:\"key\";s:32:\"a2ad21422707bdf0ac074f80b4c67181\";s:10:\"product_id\";i:55862;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:125000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:125000;s:8:\"line_tax\";d:0;}s:32:\"807146b6e182180f66c8f118b3b7cc4a\";a:11:{s:3:\"key\";s:32:\"807146b6e182180f66c8f118b3b7cc4a\";s:10:\"product_id\";i:63076;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:5400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5400000;s:8:\"line_tax\";d:0;}s:32:\"294e74f6c60685282b754046db53a600\";a:11:{s:3:\"key\";s:32:\"294e74f6c60685282b754046db53a600\";s:10:\"product_id\";i:79664;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:190000;s:8:\"line_tax\";d:0;}s:32:\"c57d4c50a6b5969e1244e60155863090\";a:11:{s:3:\"key\";s:32:\"c57d4c50a6b5969e1244e60155863090\";s:10:\"product_id\";i:28593;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4380000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4380000;s:8:\"line_tax\";d:0;}s:32:\"4579da10f367382f6c82a034cac778ad\";a:11:{s:3:\"key\";s:32:\"4579da10f367382f6c82a034cac778ad\";s:10:\"product_id\";i:68184;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:550000;s:8:\"line_tax\";d:0;}s:32:\"6a878e164861d528050e8fe8d1025267\";a:11:{s:3:\"key\";s:32:\"6a878e164861d528050e8fe8d1025267\";s:10:\"product_id\";i:60584;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:98000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:98000;s:8:\"line_tax\";d:0;}s:32:\"1a7ce11d6848710f76b532956bec34fc\";a:11:{s:3:\"key\";s:32:\"1a7ce11d6848710f76b532956bec34fc\";s:10:\"product_id\";i:77226;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5790000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5790000;s:8:\"line_tax\";d:0;}s:32:\"8f0f97fd5d54a5266baefe05a31601d9\";a:11:{s:3:\"key\";s:32:\"8f0f97fd5d54a5266baefe05a31601d9\";s:10:\"product_id\";i:59413;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:220000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:220000;s:8:\"line_tax\";d:0;}s:32:\"5fb0cc44a098a9c5c81b2bba26c1f9b1\";a:11:{s:3:\"key\";s:32:\"5fb0cc44a098a9c5c81b2bba26c1f9b1\";s:10:\"product_id\";i:76705;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2300000;s:8:\"line_tax\";d:0;}s:32:\"611f825b294117975c8d5c112cfb44ad\";a:11:{s:3:\"key\";s:32:\"611f825b294117975c8d5c112cfb44ad\";s:10:\"product_id\";i:67281;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:580000;s:8:\"line_tax\";d:0;}s:32:\"9077ce55ba293bab4278d5e5e47a9106\";a:11:{s:3:\"key\";s:32:\"9077ce55ba293bab4278d5e5e47a9106\";s:10:\"product_id\";i:32667;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2790000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2790000;s:8:\"line_tax\";d:0;}s:32:\"f313108824e3182a1a030d80aa33c561\";a:11:{s:3:\"key\";s:32:\"f313108824e3182a1a030d80aa33c561\";s:10:\"product_id\";i:72595;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:530000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:530000;s:8:\"line_tax\";d:0;}s:32:\"2e374c73d4d7b6d776b0047cf309c96a\";a:11:{s:3:\"key\";s:32:\"2e374c73d4d7b6d776b0047cf309c96a\";s:10:\"product_id\";i:75853;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:590000;s:8:\"line_tax\";d:0;}s:32:\"6c787089533d4986bbe37d480b92ed5e\";a:11:{s:3:\"key\";s:32:\"6c787089533d4986bbe37d480b92ed5e\";s:10:\"product_id\";i:62661;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1690000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1690000;s:8:\"line_tax\";d:0;}s:32:\"6233fe33a395d79e173c73b5af84b18e\";a:11:{s:3:\"key\";s:32:\"6233fe33a395d79e173c73b5af84b18e\";s:10:\"product_id\";i:79905;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:400000;s:8:\"line_tax\";d:0;}s:32:\"b3c9c6b625569ed94bf0c160583537c9\";a:11:{s:3:\"key\";s:32:\"b3c9c6b625569ed94bf0c160583537c9\";s:10:\"product_id\";i:79872;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:190000;s:8:\"line_tax\";d:0;}s:32:\"0c86d0c9835a08db576da01099a6c708\";a:11:{s:3:\"key\";s:32:\"0c86d0c9835a08db576da01099a6c708\";s:10:\"product_id\";i:75191;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3350000;s:8:\"line_tax\";d:0;}s:32:\"fa3dade3a49305f27f64203452ac954c\";a:11:{s:3:\"key\";s:32:\"fa3dade3a49305f27f64203452ac954c\";s:10:\"product_id\";i:5180;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:330000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:330000;s:8:\"line_tax\";d:0;}s:32:\"9c1ffce10234eb3b15bf318f2f5ec588\";a:11:{s:3:\"key\";s:32:\"9c1ffce10234eb3b15bf318f2f5ec588\";s:10:\"product_id\";i:62999;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1290000;s:8:\"line_tax\";d:0;}s:32:\"04beac45f22dbb168337b44ba94dbeba\";a:11:{s:3:\"key\";s:32:\"04beac45f22dbb168337b44ba94dbeba\";s:10:\"product_id\";i:62256;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:345000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:345000;s:8:\"line_tax\";d:0;}s:32:\"853104641aaaa8414c7c57ff4c21ef9b\";a:11:{s:3:\"key\";s:32:\"853104641aaaa8414c7c57ff4c21ef9b\";s:10:\"product_id\";i:65888;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2500000;s:8:\"line_tax\";d:0;}s:32:\"26e5f52fb8c6201ef7f2850042b6b72e\";a:11:{s:3:\"key\";s:32:\"26e5f52fb8c6201ef7f2850042b6b72e\";s:10:\"product_id\";i:72056;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1990000;s:8:\"line_tax\";d:0;}s:32:\"0a27d42aa8dba19f9cf326cf6620b29a\";a:11:{s:3:\"key\";s:32:\"0a27d42aa8dba19f9cf326cf6620b29a\";s:10:\"product_id\";i:46651;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:50000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:50000;s:8:\"line_tax\";d:0;}s:32:\"4cee866e53cef6c818d1a7ed47d32158\";a:11:{s:3:\"key\";s:32:\"4cee866e53cef6c818d1a7ed47d32158\";s:10:\"product_id\";i:79365;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1450000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1450000;s:8:\"line_tax\";d:0;}s:32:\"87155e5c94541c4a990f4b152763dea5\";a:11:{s:3:\"key\";s:32:\"87155e5c94541c4a990f4b152763dea5\";s:10:\"product_id\";i:79833;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:190000;s:8:\"line_tax\";d:0;}s:32:\"3c80f81c51150399a3f5e931b620a433\";a:11:{s:3:\"key\";s:32:\"3c80f81c51150399a3f5e931b620a433\";s:10:\"product_id\";i:61767;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:150000;s:8:\"line_tax\";d:0;}s:32:\"b699556d36dd386da7c02d83f28686fb\";a:11:{s:3:\"key\";s:32:\"b699556d36dd386da7c02d83f28686fb\";s:10:\"product_id\";i:59237;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5500000;s:8:\"line_tax\";d:0;}s:32:\"8c20a63ef40e7c31086a1f6cbc2a29b7\";a:11:{s:3:\"key\";s:32:\"8c20a63ef40e7c31086a1f6cbc2a29b7\";s:10:\"product_id\";i:63751;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:26000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:26000000;s:8:\"line_tax\";d:0;}s:32:\"85fb8f045570014b485523879fc3ab0b\";a:11:{s:3:\"key\";s:32:\"85fb8f045570014b485523879fc3ab0b\";s:10:\"product_id\";i:24184;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5550000;s:8:\"line_tax\";d:0;}s:32:\"a699b7b5b42180d235ab0d87fafce345\";a:11:{s:3:\"key\";s:32:\"a699b7b5b42180d235ab0d87fafce345\";s:10:\"product_id\";i:62118;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:670000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:670000;s:8:\"line_tax\";d:0;}s:32:\"07d8be4e98fe2f96153d2e43b791d4ea\";a:11:{s:3:\"key\";s:32:\"07d8be4e98fe2f96153d2e43b791d4ea\";s:10:\"product_id\";i:16037;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1395000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1395000;s:8:\"line_tax\";d:0;}s:32:\"0d268c63f6edb66f7d5ce093467b1f10\";a:11:{s:3:\"key\";s:32:\"0d268c63f6edb66f7d5ce093467b1f10\";s:10:\"product_id\";i:62658;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1720000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1720000;s:8:\"line_tax\";d:0;}s:32:\"a83b3d7b3775f3df7a410c4dcbe14495\";a:11:{s:3:\"key\";s:32:\"a83b3d7b3775f3df7a410c4dcbe14495\";s:10:\"product_id\";i:72842;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:450000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:450000;s:8:\"line_tax\";d:0;}s:32:\"cb8f68e75a1dc196c58d28a791e9e5ed\";a:11:{s:3:\"key\";s:32:\"cb8f68e75a1dc196c58d28a791e9e5ed\";s:10:\"product_id\";i:14536;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990000;s:8:\"line_tax\";d:0;}s:32:\"ab1fdf2e3b7b9522daaada146d07d61e\";a:11:{s:3:\"key\";s:32:\"ab1fdf2e3b7b9522daaada146d07d61e\";s:10:\"product_id\";i:77471;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:70000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:70000;s:8:\"line_tax\";d:0;}s:32:\"f90ebc567e064d02b8d7b21c91f76ffa\";a:11:{s:3:\"key\";s:32:\"f90ebc567e064d02b8d7b21c91f76ffa\";s:10:\"product_id\";i:79679;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:190000;s:8:\"line_tax\";d:0;}s:32:\"05bd7b7237031159a5603a151d3c987e\";a:11:{s:3:\"key\";s:32:\"05bd7b7237031159a5603a151d3c987e\";s:10:\"product_id\";i:51267;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3450000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3450000;s:8:\"line_tax\";d:0;}s:32:\"5d4c7bf4ebab441c07f4fa26c4f0c4c3\";a:11:{s:3:\"key\";s:32:\"5d4c7bf4ebab441c07f4fa26c4f0c4c3\";s:10:\"product_id\";i:33149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:220000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:220000;s:8:\"line_tax\";d:0;}s:32:\"590d63dbcef4fae91a6d0f70d5d5ea9f\";a:11:{s:3:\"key\";s:32:\"590d63dbcef4fae91a6d0f70d5d5ea9f\";s:10:\"product_id\";i:74600;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2300000;s:8:\"line_tax\";d:0;}s:32:\"f51087699b69a100b319c5238677d901\";a:11:{s:3:\"key\";s:32:\"f51087699b69a100b319c5238677d901\";s:10:\"product_id\";i:79702;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:300000;s:8:\"line_tax\";d:0;}s:32:\"a261d1b5853628b6ec51d0f5ac434745\";a:11:{s:3:\"key\";s:32:\"a261d1b5853628b6ec51d0f5ac434745\";s:10:\"product_id\";i:77576;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:140000;s:8:\"line_tax\";d:0;}s:32:\"240dd8ff673662ec6cc3ae1224b7c408\";a:11:{s:3:\"key\";s:32:\"240dd8ff673662ec6cc3ae1224b7c408\";s:10:\"product_id\";i:76805;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:790000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:790000;s:8:\"line_tax\";d:0;}s:32:\"0d046bfbcea5badab201f3b708d12b3a\";a:11:{s:3:\"key\";s:32:\"0d046bfbcea5badab201f3b708d12b3a\";s:10:\"product_id\";i:43949;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2950000;s:8:\"line_tax\";d:0;}s:32:\"b49ebb04eb1f7db5983d9a80997f2c95\";a:11:{s:3:\"key\";s:32:\"b49ebb04eb1f7db5983d9a80997f2c95\";s:10:\"product_id\";i:79813;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:380000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:380000;s:8:\"line_tax\";d:0;}s:32:\"6d6fe678a03318543326709b1cc41bfd\";a:11:{s:3:\"key\";s:32:\"6d6fe678a03318543326709b1cc41bfd\";s:10:\"product_id\";i:48629;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1970000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1970000;s:8:\"line_tax\";d:0;}s:32:\"7e54aa89ad5560f1ab2cf249482837d4\";a:11:{s:3:\"key\";s:32:\"7e54aa89ad5560f1ab2cf249482837d4\";s:10:\"product_id\";i:51478;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3300000;s:8:\"line_tax\";d:0;}s:32:\"e7021b9297cc125c038d74cc5b38063e\";a:11:{s:3:\"key\";s:32:\"e7021b9297cc125c038d74cc5b38063e\";s:10:\"product_id\";i:76835;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:150000;s:8:\"line_tax\";d:0;}s:32:\"97b617208bd1cd250cf5d578030ec2f6\";a:11:{s:3:\"key\";s:32:\"97b617208bd1cd250cf5d578030ec2f6\";s:10:\"product_id\";i:77787;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1900000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1900000;s:8:\"line_tax\";d:0;}s:32:\"314426bd564599865c676dbb6dc198c4\";a:11:{s:3:\"key\";s:32:\"314426bd564599865c676dbb6dc198c4\";s:10:\"product_id\";i:22085;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:390000;s:8:\"line_tax\";d:0;}s:32:\"8f499d6176c74b6d550c515159da3885\";a:11:{s:3:\"key\";s:32:\"8f499d6176c74b6d550c515159da3885\";s:10:\"product_id\";i:53317;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:300000;s:8:\"line_tax\";d:0;}s:32:\"39225df22de7b1ab2e5cf03d912900b9\";a:11:{s:3:\"key\";s:32:\"39225df22de7b1ab2e5cf03d912900b9\";s:10:\"product_id\";i:19888;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:240000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:240000;s:8:\"line_tax\";d:0;}s:32:\"88333efbd2e6a812a995d2bd57dd56a5\";a:11:{s:3:\"key\";s:32:\"88333efbd2e6a812a995d2bd57dd56a5\";s:10:\"product_id\";i:64835;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1510000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1510000;s:8:\"line_tax\";d:0;}s:32:\"0237aedd1eafebe97db4611a4328b141\";a:11:{s:3:\"key\";s:32:\"0237aedd1eafebe97db4611a4328b141\";s:10:\"product_id\";i:28310;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3740000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3740000;s:8:\"line_tax\";d:0;}s:32:\"cc073c2619c2b1dba60b509cd5b5f9f6\";a:11:{s:3:\"key\";s:32:\"cc073c2619c2b1dba60b509cd5b5f9f6\";s:10:\"product_id\";i:16121;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:25000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:25000000;s:8:\"line_tax\";d:0;}s:32:\"5f99aa837b01466365d05863a7b90a93\";a:11:{s:3:\"key\";s:32:\"5f99aa837b01466365d05863a7b90a93\";s:10:\"product_id\";i:55733;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3850000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3850000;s:8:\"line_tax\";d:0;}s:32:\"324921def54c8482f9f2df40934796f9\";a:11:{s:3:\"key\";s:32:\"324921def54c8482f9f2df40934796f9\";s:10:\"product_id\";i:73848;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:200000;s:8:\"line_tax\";d:0;}s:32:\"2fb7499ecf0556150d20d49a5e92486c\";a:11:{s:3:\"key\";s:32:\"2fb7499ecf0556150d20d49a5e92486c\";s:10:\"product_id\";i:19475;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1140000;s:8:\"line_tax\";d:0;}s:32:\"5f9ec9a8660a545bcba20ac5e2c2004a\";a:11:{s:3:\"key\";s:32:\"5f9ec9a8660a545bcba20ac5e2c2004a\";s:10:\"product_id\";i:80021;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:800000;s:8:\"line_tax\";d:0;}s:32:\"43a0dda33973576a75a494916a54588e\";a:11:{s:3:\"key\";s:32:\"43a0dda33973576a75a494916a54588e\";s:10:\"product_id\";i:59448;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:350000;s:8:\"line_tax\";d:0;}s:32:\"90664f7d1cde0398e10c9466ef495b89\";a:11:{s:3:\"key\";s:32:\"90664f7d1cde0398e10c9466ef495b89\";s:10:\"product_id\";i:29176;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:12000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:12000000;s:8:\"line_tax\";d:0;}s:32:\"da31235cecfce300dec24b9b88e80316\";a:11:{s:3:\"key\";s:32:\"da31235cecfce300dec24b9b88e80316\";s:10:\"product_id\";i:61372;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:239500;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:239500;s:8:\"line_tax\";d:0;}s:32:\"dfaf1b7d15e572ae5a1b2fa172ce8657\";a:11:{s:3:\"key\";s:32:\"dfaf1b7d15e572ae5a1b2fa172ce8657\";s:10:\"product_id\";i:61100;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1190000;s:8:\"line_tax\";d:0;}s:32:\"af0bac84a3a08f394ae0fc4820083bb4\";a:11:{s:3:\"key\";s:32:\"af0bac84a3a08f394ae0fc4820083bb4\";s:10:\"product_id\";i:70129;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:420000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:420000;s:8:\"line_tax\";d:0;}s:32:\"e6bfd79be503e98ee35900cc07b0d5eb\";a:11:{s:3:\"key\";s:32:\"e6bfd79be503e98ee35900cc07b0d5eb\";s:10:\"product_id\";i:19931;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:145000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:145000;s:8:\"line_tax\";d:0;}s:32:\"78a7bccb3441fcda2680b388e508c98b\";a:11:{s:3:\"key\";s:32:\"78a7bccb3441fcda2680b388e508c98b\";s:10:\"product_id\";i:22007;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:198500;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:198500;s:8:\"line_tax\";d:0;}s:32:\"20affd577bdf871ee8acfc834622791f\";a:11:{s:3:\"key\";s:32:\"20affd577bdf871ee8acfc834622791f\";s:10:\"product_id\";i:32588;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:16500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:16500000;s:8:\"line_tax\";d:0;}s:32:\"09207cb53f4148d6a611144601bcdce7\";a:11:{s:3:\"key\";s:32:\"09207cb53f4148d6a611144601bcdce7\";s:10:\"product_id\";i:76943;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:130000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:130000;s:8:\"line_tax\";d:0;}s:32:\"c19c8b017c44d1ad533a583715915173\";a:11:{s:3:\"key\";s:32:\"c19c8b017c44d1ad533a583715915173\";s:10:\"product_id\";i:77106;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:160000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:160000;s:8:\"line_tax\";d:0;}s:32:\"61d8c968f0a66dcf2b05982bdccb484b\";a:11:{s:3:\"key\";s:32:\"61d8c968f0a66dcf2b05982bdccb484b\";s:10:\"product_id\";i:17311;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2385000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2385000;s:8:\"line_tax\";d:0;}s:32:\"fa46d72636d271b3974b6be01333c50e\";a:11:{s:3:\"key\";s:32:\"fa46d72636d271b3974b6be01333c50e\";s:10:\"product_id\";i:64971;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:950000;s:8:\"line_tax\";d:0;}s:32:\"7dfb4cb1de3ccbed290f3fdf9809dbe9\";a:11:{s:3:\"key\";s:32:\"7dfb4cb1de3ccbed290f3fdf9809dbe9\";s:10:\"product_id\";i:68242;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2400000;s:8:\"line_tax\";d:0;}s:32:\"9cb88dd759fcae2f3cb5907b9280bcaa\";a:11:{s:3:\"key\";s:32:\"9cb88dd759fcae2f3cb5907b9280bcaa\";s:10:\"product_id\";i:31056;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2550000;s:8:\"line_tax\";d:0;}s:32:\"71bba973ffee05c52cea63b565611625\";a:11:{s:3:\"key\";s:32:\"71bba973ffee05c52cea63b565611625\";s:10:\"product_id\";i:64233;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:240000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:240000;s:8:\"line_tax\";d:0;}s:32:\"febfe120eb0f53065332f1e046580b4f\";a:11:{s:3:\"key\";s:32:\"febfe120eb0f53065332f1e046580b4f\";s:10:\"product_id\";i:80392;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:690000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:690000;s:8:\"line_tax\";d:0;}s:32:\"de0165298049a79867e0a5a117d99317\";a:11:{s:3:\"key\";s:32:\"de0165298049a79867e0a5a117d99317\";s:10:\"product_id\";i:59386;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:95000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:95000;s:8:\"line_tax\";d:0;}s:32:\"dda9f652470c55335cb2c6c511da6975\";a:11:{s:3:\"key\";s:32:\"dda9f652470c55335cb2c6c511da6975\";s:10:\"product_id\";i:55908;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:270000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:270000;s:8:\"line_tax\";d:0;}s:32:\"705b26f35db9787b45deec630cf88e57\";a:11:{s:3:\"key\";s:32:\"705b26f35db9787b45deec630cf88e57\";s:10:\"product_id\";i:59053;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:102000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:102000;s:8:\"line_tax\";d:0;}s:32:\"5764e93c81bf82e3cc7cf76a63d6bf42\";a:11:{s:3:\"key\";s:32:\"5764e93c81bf82e3cc7cf76a63d6bf42\";s:10:\"product_id\";i:77752;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1750000;s:8:\"line_tax\";d:0;}s:32:\"38bda6843fdb0c73d04878860938fff1\";a:11:{s:3:\"key\";s:32:\"38bda6843fdb0c73d04878860938fff1\";s:10:\"product_id\";i:58243;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:137000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:137000;s:8:\"line_tax\";d:0;}s:32:\"c8b7a9d67af41991945f77465ef58f1a\";a:11:{s:3:\"key\";s:32:\"c8b7a9d67af41991945f77465ef58f1a\";s:10:\"product_id\";i:23592;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3705000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3705000;s:8:\"line_tax\";d:0;}s:32:\"30f4bc023f5a5303a2ecd2150bf04c9d\";a:11:{s:3:\"key\";s:32:\"30f4bc023f5a5303a2ecd2150bf04c9d\";s:10:\"product_id\";i:67276;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:720000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:720000;s:8:\"line_tax\";d:0;}s:32:\"79525d41efbf16d3363c138f713d2417\";a:11:{s:3:\"key\";s:32:\"79525d41efbf16d3363c138f713d2417\";s:10:\"product_id\";i:25667;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:125000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:125000;s:8:\"line_tax\";d:0;}s:32:\"ddc751074ed4db1ce8e65aec173d16e3\";a:11:{s:3:\"key\";s:32:\"ddc751074ed4db1ce8e65aec173d16e3\";s:10:\"product_id\";i:17471;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1420000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1420000;s:8:\"line_tax\";d:0;}s:32:\"0e679e39b6b60c9544f3215a9505f119\";a:11:{s:3:\"key\";s:32:\"0e679e39b6b60c9544f3215a9505f119\";s:10:\"product_id\";i:65401;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:150000;s:8:\"line_tax\";d:0;}s:32:\"09b529f6658b0309f8d28297612670f4\";a:11:{s:3:\"key\";s:32:\"09b529f6658b0309f8d28297612670f4\";s:10:\"product_id\";i:60764;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:380000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:380000;s:8:\"line_tax\";d:0;}s:32:\"d334e1b322c61cfbac4352b1ea6a9470\";a:11:{s:3:\"key\";s:32:\"d334e1b322c61cfbac4352b1ea6a9470\";s:10:\"product_id\";i:53720;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4300000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4300000;s:8:\"line_tax\";d:0;}s:32:\"5794b590339e6c12756618d80c517a19\";a:11:{s:3:\"key\";s:32:\"5794b590339e6c12756618d80c517a19\";s:10:\"product_id\";i:80398;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1050000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1050000;s:8:\"line_tax\";d:0;}s:32:\"79d138d7481609015cb46b9f9d08ebac\";a:11:{s:3:\"key\";s:32:\"79d138d7481609015cb46b9f9d08ebac\";s:10:\"product_id\";i:79686;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:520000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:520000;s:8:\"line_tax\";d:0;}s:32:\"710ebadf55558b46b755c665a9177880\";a:11:{s:3:\"key\";s:32:\"710ebadf55558b46b755c665a9177880\";s:10:\"product_id\";i:28711;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4890000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4890000;s:8:\"line_tax\";d:0;}s:32:\"278343ac714751e68175058a9bfb4e43\";a:11:{s:3:\"key\";s:32:\"278343ac714751e68175058a9bfb4e43\";s:10:\"product_id\";i:17260;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:570000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:570000;s:8:\"line_tax\";d:0;}s:32:\"18392e1e0f5eb6aa3b954d99f1f4ac3a\";a:11:{s:3:\"key\";s:32:\"18392e1e0f5eb6aa3b954d99f1f4ac3a\";s:10:\"product_id\";i:80408;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4100000;s:8:\"line_tax\";d:0;}s:32:\"49e5149850c506cbe690383f75345b83\";a:11:{s:3:\"key\";s:32:\"49e5149850c506cbe690383f75345b83\";s:10:\"product_id\";i:29045;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3190000;s:8:\"line_tax\";d:0;}s:32:\"1effd2a7004fba1258c87c7b3aee3513\";a:11:{s:3:\"key\";s:32:\"1effd2a7004fba1258c87c7b3aee3513\";s:10:\"product_id\";i:59379;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:390000;s:8:\"line_tax\";d:0;}s:32:\"babdd4caeed7437c968beb006e8b2cbe\";a:11:{s:3:\"key\";s:32:\"babdd4caeed7437c968beb006e8b2cbe\";s:10:\"product_id\";i:68258;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5100000;s:8:\"line_tax\";d:0;}s:32:\"b05d931354c9f442ace4af9fe8c9a754\";a:11:{s:3:\"key\";s:32:\"b05d931354c9f442ace4af9fe8c9a754\";s:10:\"product_id\";i:28116;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:350000;s:8:\"line_tax\";d:0;}s:32:\"65855f77bb6ee720c0a940b9cf8101a9\";a:11:{s:3:\"key\";s:32:\"65855f77bb6ee720c0a940b9cf8101a9\";s:10:\"product_id\";i:33320;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:290000;s:8:\"line_tax\";d:0;}s:32:\"a42419f3420cc448a514307a35d8eda2\";a:11:{s:3:\"key\";s:32:\"a42419f3420cc448a514307a35d8eda2\";s:10:\"product_id\";i:44274;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:220000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:220000;s:8:\"line_tax\";d:0;}s:32:\"a2e8e57dbcbed07cd3fd9d3635dbfa60\";a:11:{s:3:\"key\";s:32:\"a2e8e57dbcbed07cd3fd9d3635dbfa60\";s:10:\"product_id\";i:19669;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:750000;s:8:\"line_tax\";d:0;}s:32:\"755658c37b624a7e17877652cf99eec8\";a:11:{s:3:\"key\";s:32:\"755658c37b624a7e17877652cf99eec8\";s:10:\"product_id\";i:55823;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:590000;s:8:\"line_tax\";d:0;}s:32:\"c1481a88d8e582ce58f9413d5ac93360\";a:11:{s:3:\"key\";s:32:\"c1481a88d8e582ce58f9413d5ac93360\";s:10:\"product_id\";i:28005;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:115000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:115000;s:8:\"line_tax\";d:0;}s:32:\"e0e9e5503a9bd711d0e42b9d569ff91b\";a:11:{s:3:\"key\";s:32:\"e0e9e5503a9bd711d0e42b9d569ff91b\";s:10:\"product_id\";i:60814;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3100000;s:8:\"line_tax\";d:0;}s:32:\"f9d8c6f4d86d8f4ae626834601492846\";a:11:{s:3:\"key\";s:32:\"f9d8c6f4d86d8f4ae626834601492846\";s:10:\"product_id\";i:16225;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1000000;s:8:\"line_tax\";d:0;}s:32:\"8c9f62e19f6e213e2931c8fef9f08b64\";a:11:{s:3:\"key\";s:32:\"8c9f62e19f6e213e2931c8fef9f08b64\";s:10:\"product_id\";i:62695;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:830000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:830000;s:8:\"line_tax\";d:0;}s:32:\"c2210b017104dcfe34c66c1443c2e04c\";a:11:{s:3:\"key\";s:32:\"c2210b017104dcfe34c66c1443c2e04c\";s:10:\"product_id\";i:64975;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:770000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:770000;s:8:\"line_tax\";d:0;}s:32:\"266ccd524fac6a04a9212d5456462a55\";a:11:{s:3:\"key\";s:32:\"266ccd524fac6a04a9212d5456462a55\";s:10:\"product_id\";i:27986;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:180000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:180000;s:8:\"line_tax\";d:0;}s:32:\"3641a12ac876f978794065b0fde96404\";a:11:{s:3:\"key\";s:32:\"3641a12ac876f978794065b0fde96404\";s:10:\"product_id\";i:23401;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:5500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:5500000;s:8:\"line_tax\";d:0;}s:32:\"a47878d8262fec7042a338488ccb1b4a\";a:11:{s:3:\"key\";s:32:\"a47878d8262fec7042a338488ccb1b4a\";s:10:\"product_id\";i:28208;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:255000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:255000;s:8:\"line_tax\";d:0;}s:32:\"c98a92ffd1fb89a4ef831f12f47d1d26\";a:11:{s:3:\"key\";s:32:\"c98a92ffd1fb89a4ef831f12f47d1d26\";s:10:\"product_id\";i:27998;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:145000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:145000;s:8:\"line_tax\";d:0;}s:32:\"4cf94c3ff0a2ec91ad46d2f076ff59a8\";a:11:{s:3:\"key\";s:32:\"4cf94c3ff0a2ec91ad46d2f076ff59a8\";s:10:\"product_id\";i:54928;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:7650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7650000;s:8:\"line_tax\";d:0;}s:32:\"214f57783cac173e183096a607a408be\";a:11:{s:3:\"key\";s:32:\"214f57783cac173e183096a607a408be\";s:10:\"product_id\";i:17372;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1350000;s:8:\"line_tax\";d:0;}s:32:\"d52545723cdb94f70adc8e8801419d55\";a:11:{s:3:\"key\";s:32:\"d52545723cdb94f70adc8e8801419d55\";s:10:\"product_id\";i:25640;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:430000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:430000;s:8:\"line_tax\";d:0;}s:32:\"b2cbc0a549ec535998da8223cde1099e\";a:11:{s:3:\"key\";s:32:\"b2cbc0a549ec535998da8223cde1099e\";s:10:\"product_id\";i:35447;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1790000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1790000;s:8:\"line_tax\";d:0;}s:32:\"68ce24b138b67dd2467bd3d51a3a316c\";a:11:{s:3:\"key\";s:32:\"68ce24b138b67dd2467bd3d51a3a316c\";s:10:\"product_id\";i:64852;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1970000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1970000;s:8:\"line_tax\";d:0;}s:32:\"8c1bbcea199457b63dc39f7a024591f1\";a:11:{s:3:\"key\";s:32:\"8c1bbcea199457b63dc39f7a024591f1\";s:10:\"product_id\";i:56111;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3000000;s:8:\"line_tax\";d:0;}s:32:\"0614053c29836afdd915d777401128a9\";a:11:{s:3:\"key\";s:32:\"0614053c29836afdd915d777401128a9\";s:10:\"product_id\";i:54914;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1680000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1680000;s:8:\"line_tax\";d:0;}s:32:\"4efc93ce552c200ce4389a07ef02514c\";a:11:{s:3:\"key\";s:32:\"4efc93ce552c200ce4389a07ef02514c\";s:10:\"product_id\";i:80171;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:110000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:110000;s:8:\"line_tax\";d:0;}s:32:\"f7fd7d0c50e35bd2fd02ddd47a95dbfb\";a:11:{s:3:\"key\";s:32:\"f7fd7d0c50e35bd2fd02ddd47a95dbfb\";s:10:\"product_id\";i:60800;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3000000;s:8:\"line_tax\";d:0;}s:32:\"b5904a3b8a9dffa7336194a8f1e40ce0\";a:11:{s:3:\"key\";s:32:\"b5904a3b8a9dffa7336194a8f1e40ce0\";s:10:\"product_id\";i:72764;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:450000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:450000;s:8:\"line_tax\";d:0;}s:32:\"7897002b4013d89a76b25e0385681f00\";a:11:{s:3:\"key\";s:32:\"7897002b4013d89a76b25e0385681f00\";s:10:\"product_id\";i:79621;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:495000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:495000;s:8:\"line_tax\";d:0;}s:32:\"63664903af040693cb1beb3262c8c655\";a:11:{s:3:\"key\";s:32:\"63664903af040693cb1beb3262c8c655\";s:10:\"product_id\";i:60824;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:750000;s:8:\"line_tax\";d:0;}s:32:\"821e060b573688ae584b2c1ece04dfe6\";a:11:{s:3:\"key\";s:32:\"821e060b573688ae584b2c1ece04dfe6\";s:10:\"product_id\";i:65468;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1050000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1050000;s:8:\"line_tax\";d:0;}s:32:\"bd6ad709f5078853022fbca99c34dd9c\";a:11:{s:3:\"key\";s:32:\"bd6ad709f5078853022fbca99c34dd9c\";s:10:\"product_id\";i:25610;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1950000;s:8:\"line_tax\";d:0;}s:32:\"76264fb047590b55f23eef0195d020bc\";a:11:{s:3:\"key\";s:32:\"76264fb047590b55f23eef0195d020bc\";s:10:\"product_id\";i:65795;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:295000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:295000;s:8:\"line_tax\";d:0;}s:32:\"d1f2767f75c7a38bc77d43e2050293d9\";a:11:{s:3:\"key\";s:32:\"d1f2767f75c7a38bc77d43e2050293d9\";s:10:\"product_id\";i:19742;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3950000;s:8:\"line_tax\";d:0;}s:32:\"626b6dda9b6cfec27cc54ed23a22267f\";a:11:{s:3:\"key\";s:32:\"626b6dda9b6cfec27cc54ed23a22267f\";s:10:\"product_id\";i:64863;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2500000;s:8:\"line_tax\";d:0;}s:32:\"b7f85d87ad842dea96749f6ba5c58fdd\";a:11:{s:3:\"key\";s:32:\"b7f85d87ad842dea96749f6ba5c58fdd\";s:10:\"product_id\";i:63010;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1590000;s:8:\"line_tax\";d:0;}s:32:\"aa119b85a393d57b578950a6bf484494\";a:11:{s:3:\"key\";s:32:\"aa119b85a393d57b578950a6bf484494\";s:10:\"product_id\";i:53631;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2250000;s:8:\"line_tax\";d:0;}s:32:\"e56cc1df7a311668c43b2084d3ad7400\";a:11:{s:3:\"key\";s:32:\"e56cc1df7a311668c43b2084d3ad7400\";s:10:\"product_id\";i:34739;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:3950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3950000;s:8:\"line_tax\";d:0;}s:32:\"f42c904db0677913121f31a295de55a5\";a:11:{s:3:\"key\";s:32:\"f42c904db0677913121f31a295de55a5\";s:10:\"product_id\";i:49536;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1580000;s:8:\"line_tax\";d:0;}s:32:\"ce91e4af71deaa47491da4eeb35e4535\";a:11:{s:3:\"key\";s:32:\"ce91e4af71deaa47491da4eeb35e4535\";s:10:\"product_id\";i:33580;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6400000;s:8:\"line_tax\";d:0;}s:32:\"6b21f04e6513bf4ee0be04f57cdda6e1\";a:11:{s:3:\"key\";s:32:\"6b21f04e6513bf4ee0be04f57cdda6e1\";s:10:\"product_id\";i:78362;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:395000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:395000;s:8:\"line_tax\";d:0;}s:32:\"cc6ea19005a7d24e61ec87b1507f1bd5\";a:11:{s:3:\"key\";s:32:\"cc6ea19005a7d24e61ec87b1507f1bd5\";s:10:\"product_id\";i:19429;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:870000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:870000;s:8:\"line_tax\";d:0;}s:32:\"b3579acde25b2dab713999fa7f42c914\";a:11:{s:3:\"key\";s:32:\"b3579acde25b2dab713999fa7f42c914\";s:10:\"product_id\";i:40064;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1550000;s:8:\"line_tax\";d:0;}s:32:\"e4586a6840eefef891679438fed09a91\";a:11:{s:3:\"key\";s:32:\"e4586a6840eefef891679438fed09a91\";s:10:\"product_id\";i:77758;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1280000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1280000;s:8:\"line_tax\";d:0;}s:32:\"60d22149eee1175d3675575416f123b1\";a:11:{s:3:\"key\";s:32:\"60d22149eee1175d3675575416f123b1\";s:10:\"product_id\";i:14270;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1190000;s:8:\"line_tax\";d:0;}s:32:\"89650278562612d94fd3a5b4f981a513\";a:11:{s:3:\"key\";s:32:\"89650278562612d94fd3a5b4f981a513\";s:10:\"product_id\";i:62311;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1790000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1790000;s:8:\"line_tax\";d:0;}s:32:\"ae73c1f20b00bc238bb963f499f72a58\";a:11:{s:3:\"key\";s:32:\"ae73c1f20b00bc238bb963f499f72a58\";s:10:\"product_id\";i:49342;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:600000;s:8:\"line_tax\";d:0;}s:32:\"2716654b8f6aa6264bb337ab423d6a16\";a:11:{s:3:\"key\";s:32:\"2716654b8f6aa6264bb337ab423d6a16\";s:10:\"product_id\";i:52385;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:695000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:695000;s:8:\"line_tax\";d:0;}s:32:\"c6ebbf2d911fff534ae3b0b18d7e90a8\";a:11:{s:3:\"key\";s:32:\"c6ebbf2d911fff534ae3b0b18d7e90a8\";s:10:\"product_id\";i:45598;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:130000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:130000;s:8:\"line_tax\";d:0;}s:32:\"60515ff1fcf997329c3aa02a265213a9\";a:11:{s:3:\"key\";s:32:\"60515ff1fcf997329c3aa02a265213a9\";s:10:\"product_id\";i:72523;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1250000;s:8:\"line_tax\";d:0;}s:32:\"66a5071e4b5b9c677bd45a9885fe0fdc\";a:11:{s:3:\"key\";s:32:\"66a5071e4b5b9c677bd45a9885fe0fdc\";s:10:\"product_id\";i:68186;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";d:0;}s:32:\"9b82a8c44cb9278ba93faac4026f3768\";a:11:{s:3:\"key\";s:32:\"9b82a8c44cb9278ba93faac4026f3768\";s:10:\"product_id\";i:60821;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1500000;s:8:\"line_tax\";d:0;}s:32:\"ed2c2bfa56ce192562dc32c80014d914\";a:11:{s:3:\"key\";s:32:\"ed2c2bfa56ce192562dc32c80014d914\";s:10:\"product_id\";i:72586;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:650000;s:8:\"line_tax\";d:0;}s:32:\"35ae00d3b0b17c55bc1a0a1b7e251420\";a:11:{s:3:\"key\";s:32:\"35ae00d3b0b17c55bc1a0a1b7e251420\";s:10:\"product_id\";i:58607;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:328000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:328000;s:8:\"line_tax\";d:0;}s:32:\"afe6780c768d815498337a2de1c249b9\";a:11:{s:3:\"key\";s:32:\"afe6780c768d815498337a2de1c249b9\";s:10:\"product_id\";i:79708;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:720000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:720000;s:8:\"line_tax\";d:0;}s:32:\"b19c19d4ddd26a83fbf1ae635a64cd0f\";a:11:{s:3:\"key\";s:32:\"b19c19d4ddd26a83fbf1ae635a64cd0f\";s:10:\"product_id\";i:74603;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:750000;s:8:\"line_tax\";d:0;}s:32:\"4ff7b343f4e2cee53c205c7e0e005bd9\";a:11:{s:3:\"key\";s:32:\"4ff7b343f4e2cee53c205c7e0e005bd9\";s:10:\"product_id\";i:59665;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:96000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:96000;s:8:\"line_tax\";d:0;}s:32:\"d7f5e28f4a82a513a859b4168b7e9566\";a:11:{s:3:\"key\";s:32:\"d7f5e28f4a82a513a859b4168b7e9566\";s:10:\"product_id\";i:43962;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4450000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4450000;s:8:\"line_tax\";d:0;}s:32:\"f7af5ff3d054a0366a281ebda17809e0\";a:11:{s:3:\"key\";s:32:\"f7af5ff3d054a0366a281ebda17809e0\";s:10:\"product_id\";i:71354;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:985000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:985000;s:8:\"line_tax\";d:0;}s:32:\"e053e4f47a7ccbc51be254596e483d7c\";a:11:{s:3:\"key\";s:32:\"e053e4f47a7ccbc51be254596e483d7c\";s:10:\"product_id\";i:80416;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3350000;s:8:\"line_tax\";d:0;}s:32:\"93b7c511da7dafe2a37bf3546fcc4bd3\";a:11:{s:3:\"key\";s:32:\"93b7c511da7dafe2a37bf3546fcc4bd3\";s:10:\"product_id\";i:60831;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:930000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:930000;s:8:\"line_tax\";d:0;}s:32:\"ace29d05ce55b8b67c24556c30ec194c\";a:11:{s:3:\"key\";s:32:\"ace29d05ce55b8b67c24556c30ec194c\";s:10:\"product_id\";i:23157;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1490000;s:8:\"line_tax\";d:0;}s:32:\"6a40c7d8ed78d4450de020fb1c3ce5ab\";a:11:{s:3:\"key\";s:32:\"6a40c7d8ed78d4450de020fb1c3ce5ab\";s:10:\"product_id\";i:17234;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1580000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1580000;s:8:\"line_tax\";d:0;}s:32:\"fbe9c2670248dedcd8fe4a00f37cefac\";a:11:{s:3:\"key\";s:32:\"fbe9c2670248dedcd8fe4a00f37cefac\";s:10:\"product_id\";i:18745;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:8500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:8500000;s:8:\"line_tax\";d:0;}s:32:\"55657b1d30de5ba34fcdd6a0f9126701\";a:11:{s:3:\"key\";s:32:\"55657b1d30de5ba34fcdd6a0f9126701\";s:10:\"product_id\";i:51672;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:290000;s:8:\"line_tax\";d:0;}s:32:\"f5d5acb297496b4f9bbf96c3618d828c\";a:11:{s:3:\"key\";s:32:\"f5d5acb297496b4f9bbf96c3618d828c\";s:10:\"product_id\";i:28337;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3740000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3740000;s:8:\"line_tax\";d:0;}s:32:\"63b6da38dd39ce6dfce412cc36d8b1b5\";a:11:{s:3:\"key\";s:32:\"63b6da38dd39ce6dfce412cc36d8b1b5\";s:10:\"product_id\";i:42432;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2880000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2880000;s:8:\"line_tax\";d:0;}s:32:\"b03e037e11f179e685e85c8938ead486\";a:11:{s:3:\"key\";s:32:\"b03e037e11f179e685e85c8938ead486\";s:10:\"product_id\";i:79756;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:200000;s:8:\"line_tax\";d:0;}s:32:\"149e15ab5d2ef772dbcaebe142982669\";a:11:{s:3:\"key\";s:32:\"149e15ab5d2ef772dbcaebe142982669\";s:10:\"product_id\";i:74198;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:780000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:780000;s:8:\"line_tax\";d:0;}s:32:\"4755ef76b9939a550fda7364f55f32ca\";a:11:{s:3:\"key\";s:32:\"4755ef76b9939a550fda7364f55f32ca\";s:10:\"product_id\";i:63062;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:395000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:395000;s:8:\"line_tax\";d:0;}s:32:\"fd3771a0ce0803416cfb6a914448d0d0\";a:11:{s:3:\"key\";s:32:\"fd3771a0ce0803416cfb6a914448d0d0\";s:10:\"product_id\";i:61074;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2290000;s:8:\"line_tax\";d:0;}s:32:\"fe5f2e9a9d58560669c5698a3f9c672a\";a:11:{s:3:\"key\";s:32:\"fe5f2e9a9d58560669c5698a3f9c672a\";s:10:\"product_id\";i:71390;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2000000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2000000;s:8:\"line_tax\";d:0;}s:32:\"3adfed0a226eb2f6fbb6b7ed1e394421\";a:11:{s:3:\"key\";s:32:\"3adfed0a226eb2f6fbb6b7ed1e394421\";s:10:\"product_id\";i:35087;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1500000;s:8:\"line_tax\";d:0;}s:32:\"bb859699a1e4fc28c59162684235a28c\";a:11:{s:3:\"key\";s:32:\"bb859699a1e4fc28c59162684235a28c\";s:10:\"product_id\";i:45553;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:410000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:410000;s:8:\"line_tax\";d:0;}s:32:\"5e7d82fb40873235efb87212f67b1181\";a:11:{s:3:\"key\";s:32:\"5e7d82fb40873235efb87212f67b1181\";s:10:\"product_id\";i:49539;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2590000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2590000;s:8:\"line_tax\";d:0;}s:32:\"656176b089fee49ce4e725eafe97ac8a\";a:11:{s:3:\"key\";s:32:\"656176b089fee49ce4e725eafe97ac8a\";s:10:\"product_id\";i:24311;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:65000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:65000;s:8:\"line_tax\";d:0;}s:32:\"850b43ed679798a07372a5306332bdd2\";a:11:{s:3:\"key\";s:32:\"850b43ed679798a07372a5306332bdd2\";s:10:\"product_id\";i:55792;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1700000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1700000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764560566)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 05:59:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 05:59:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:00:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:00:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:00:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:00:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:00:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:00:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:00:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:01:00 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:01:00 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_f78acef7a8c37d25d65033db09e3e6', 'a:6:{s:22:\"shipping_for_package_0\";s:2490:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_165a127ee70ad17d433720a31666b5f5\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:97:\"Bosch Serie 8 HBG634BS1B Multifunction Electric Built-in Single Oven in Stainless Steel &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:97:\"Bosch Serie 8 HBG634BS1B Multifunction Electric Built-in Single Oven in Stainless Steel &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:97:\"Bosch Serie 8 HBG634BS1B Multifunction Electric Built-in Single Oven in Stainless Steel &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:97:\"Bosch Serie 8 HBG634BS1B Multifunction Electric Built-in Single Oven in Stainless Steel &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"3740000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"3740000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"3740000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"0237aedd1eafebe97db4611a4328b141\";a:11:{s:3:\"key\";s:32:\"0237aedd1eafebe97db4611a4328b141\";s:10:\"product_id\";i:28310;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3740000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3740000;s:8:\"line_tax\";d:0;}}\";}', 1764568860)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:01:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:01:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:01:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:01:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:01:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:01:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:01:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:01:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:01:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:02:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:02:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:02:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:02:54 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:03:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:03:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_1b01e005c82104a2882b9e7d4a81b3', 'a:7:{s:22:\"shipping_for_package_0\";s:1866:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_0798dcfba04a5fbee2ac8ffa33b22174\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:52:\"CHiQ 12,000 BTU Wall Split Air Conditioner &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:52:\"CHiQ 12,000 BTU Wall Split Air Conditioner &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:52:\"CHiQ 12,000 BTU Wall Split Air Conditioner &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:408:\"a:15:{s:8:\"subtotal\";s:7:\"1200000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1200000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1205000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"e5b2b969f92ce208b531c252d9ccacc5\";a:11:{s:3:\"key\";s:32:\"e5b2b969f92ce208b531c252d9ccacc5\";s:10:\"product_id\";i:52219;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1200000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:241:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:166:\"&ldquo;CHiQ 12,000 BTU Wall Split Air Conditioner&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569037)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:04:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:04:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_6268dd0e97739030ee9c8ba2f0acf1', 'a:6:{s:22:\"shipping_for_package_0\";s:2354:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_d129003d6ef357f92f5a5a200b6087b4\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"LG 18K BTU Single Cassette, Inverter Air Conditioner (R410) &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"LG 18K BTU Single Cassette, Inverter Air Conditioner (R410) &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:69:\"LG 18K BTU Single Cassette, Inverter Air Conditioner (R410) &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:69:\"LG 18K BTU Single Cassette, Inverter Air Conditioner (R410) &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:7:\"7500000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"7500000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"7500000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"74a190a673b9880b825416fd36a44eb3\";a:11:{s:3:\"key\";s:32:\"74a190a673b9880b825416fd36a44eb3\";s:10:\"product_id\";i:32800;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:7500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7500000;s:8:\"line_tax\";d:0;}}\";}', 1764569043)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:04:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:04:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_866ae2fc53a5bc35848f2f5f9b6596', 'a:6:{s:22:\"shipping_for_package_0\";s:1990:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_fd05a7f8337f53095ca43a15d037846d\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:85:\"Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE) &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:85:\"Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE) &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:85:\"Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE) &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1800000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1800000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1810000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"821fc6911dba0d124d68dd77901923d6\";a:11:{s:3:\"key\";s:32:\"821fc6911dba0d124d68dd77901923d6\";s:10:\"product_id\";i:17481;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1800000;s:8:\"line_tax\";d:0;}}\";}', 1764569050)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:04:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:04:31 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:04:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:04:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:05:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:05:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:05:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:05:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_value FROM wp_options WHERE option_name = 'wc_pending_batch_processes' LIMIT 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->get_enqueued_processors, get_option
    [29-Nov-2025 06:05:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_5ab133c649d5fa464490b11bcf9e87', 'a:6:{s:22:\"shipping_for_package_0\";s:2519:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_89ec1513d277e60991d53fe39dcf482b\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:103:\"LG GL-G442RLCM Net 327(L) Top Freezer Refrigerator | Even Cooling in Any Where | LED Lighting &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"30000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:103:\"LG GL-G442RLCM Net 327(L) Top Freezer Refrigerator | Even Cooling in Any Where | LED Lighting &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:103:\"LG GL-G442RLCM Net 327(L) Top Freezer Refrigerator | Even Cooling in Any Where | LED Lighting &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:103:\"LG GL-G442RLCM Net 327(L) Top Freezer Refrigerator | Even Cooling in Any Where | LED Lighting &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"3740000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"3740000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"3740000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"87dbbcde02455fc1add054b412a87714\";a:11:{s:3:\"key\";s:32:\"87dbbcde02455fc1add054b412a87714\";s:10:\"product_id\";i:17305;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3740000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3740000;s:8:\"line_tax\";d:0;}}\";}', 1764569143)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:05:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:05:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_09aaac38d5f190b3f4272c1637ece1', 'a:7:{s:22:\"shipping_for_package_0\";s:1878:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_68ab251082a30d6e7b56dba8ea87f829\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:424:\"a:15:{s:8:\"subtotal\";s:7:\"1950000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1950000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1955000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"b6d3c0588a849c40ba45345f27f113b6\";a:11:{s:3:\"key\";s:32:\"b6d3c0588a849c40ba45345f27f113b6\";s:10:\"product_id\";i:16153;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1950000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:237:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:162:\"&ldquo;Panasonic 12000BTU Wall Split AC, R410&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569146)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:05:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:06:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:06:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_59eb3ba3fab5f12a96a8a1e7175d6e', 'a:6:{s:22:\"shipping_for_package_0\";s:1878:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_68ab251082a30d6e7b56dba8ea87f829\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:424:\"a:15:{s:8:\"subtotal\";s:7:\"1950000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1950000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1955000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"b6d3c0588a849c40ba45345f27f113b6\";a:11:{s:3:\"key\";s:32:\"b6d3c0588a849c40ba45345f27f113b6\";s:10:\"product_id\";i:16153;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1950000;s:8:\"line_tax\";d:0;}}\";}', 1764569165)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:06:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:06:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_c36853f2c7d3f58a68148398f0fea6', 'a:6:{s:22:\"shipping_for_package_0\";s:2710:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_5d44eb9307b517ac792137d668ed0794\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:151:\"Electrolux 60x60cm Cooker; 3 Gas Burners + 1 Hotplate, Electric Oven and Grill, Rotisserie, Auto Safety, Oven Fan, Stainless Steel, LKM62001X &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:151:\"Electrolux 60x60cm Cooker; 3 Gas Burners + 1 Hotplate, Electric Oven and Grill, Rotisserie, Auto Safety, Oven Fan, Stainless Steel, LKM62001X &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:151:\"Electrolux 60x60cm Cooker; 3 Gas Burners + 1 Hotplate, Electric Oven and Grill, Rotisserie, Auto Safety, Oven Fan, Stainless Steel, LKM62001X &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:151:\"Electrolux 60x60cm Cooker; 3 Gas Burners + 1 Hotplate, Electric Oven and Grill, Rotisserie, Auto Safety, Oven Fan, Stainless Steel, LKM62001X &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"2200000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2200000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2200000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"1b64eb6bff48bea0902de10850c33383\";a:11:{s:3:\"key\";s:32:\"1b64eb6bff48bea0902de10850c33383\";s:10:\"product_id\";i:55705;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2200000;s:8:\"line_tax\";d:0;}}\";}', 1764569174)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:06:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:06:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_7a303f63977957dbf0845bf16c76aa', 'a:6:{s:22:\"shipping_for_package_0\";s:1872:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_d9293ac1f96523dfee48c8e735297376\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:46:\"Decakila 2.8 L Rice Cooker, KEER035W &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:46:\"Decakila 2.8 L Rice Cooker, KEER035W &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:46:\"Decakila 2.8 L Rice Cooker, KEER035W &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:421:\"a:15:{s:8:\"subtotal\";s:6:\"190000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"190000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"195000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"ebcf5d3c5ed2553dafd38d95ace8d207\";a:11:{s:3:\"key\";s:32:\"ebcf5d3c5ed2553dafd38d95ace8d207\";s:10:\"product_id\";i:61655;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:190000;s:8:\"line_tax\";d:0;}}\";}', 1764569208)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:07:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:07:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_45c629c16474f755bfc2f56ef2d1bb', 'a:6:{s:22:\"shipping_for_package_0\";s:2422:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_789533e76ef21f5f1e6fa9e2d95074c9\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:80:\"TEFAL Express Bowning / Toasting 2 Slots Toaster, 850 Watts | TT365027 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:80:\"TEFAL Express Bowning / Toasting 2 Slots Toaster, 850 Watts | TT365027 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:80:\"TEFAL Express Bowning / Toasting 2 Slots Toaster, 850 Watts | TT365027 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:80:\"TEFAL Express Bowning / Toasting 2 Slots Toaster, 850 Watts | TT365027 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"225000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"225000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"225000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"021abae3121d08e68ec099d8a2a7531d\";a:11:{s:3:\"key\";s:32:\"021abae3121d08e68ec099d8a2a7531d\";s:10:\"product_id\";i:24431;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:225000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:225000;s:8:\"line_tax\";d:0;}}\";}', 1764569222)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:08:28 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:08:28 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_f272d9803d6cf1c73108f60e5f4ac2', 'a:7:{s:22:\"shipping_for_package_0\";s:2354:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_a5e35b463825142888ad60b9a892b113\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:63:\"Tefal Ultragliss Plus Steam Iron 2800W, FV6832M0 Aqua &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:63:\"Tefal Ultragliss Plus Steam Iron 2800W, FV6832M0 Aqua &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:63:\"Tefal Ultragliss Plus Steam Iron 2800W, FV6832M0 Aqua &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:63:\"Tefal Ultragliss Plus Steam Iron 2800W, FV6832M0 Aqua &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"345000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"345000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"345000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"27f6f78fe227d299b12bd3031861913e\";a:11:{s:3:\"key\";s:32:\"27f6f78fe227d299b12bd3031861913e\";s:10:\"product_id\";i:44228;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:345000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:345000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:252:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:177:\"&ldquo;Tefal Ultragliss Plus Steam Iron 2800W, FV6832M0 Aqua&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569308)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:08:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:08:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_e83318bce7758dfac5b9685ea5d0a9', 'a:6:{s:22:\"shipping_for_package_0\";s:1915:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_2b9932d104dac31e2c1af3cd360e5347\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1390000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1390000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1410000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"a2a6a5c6ea38cac0864685dffaea8e92\";a:11:{s:3:\"key\";s:32:\"a2a6a5c6ea38cac0864685dffaea8e92\";s:10:\"product_id\";i:17375;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1390000;s:8:\"line_tax\";d:0;}}\";}', 1764569311)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:08:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:08:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_e2bdd17693d3fd0a9f13d34989c669', 'a:6:{s:22:\"shipping_for_package_0\";s:2555:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_428169c9cc494921d90aaaf3841822e0\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:112:\"LG 70-Inch 4K UHD Smart LED TV, 70UR80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:112:\"LG 70-Inch 4K UHD Smart LED TV, 70UR80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:112:\"LG 70-Inch 4K UHD Smart LED TV, 70UR80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:112:\"LG 70-Inch 4K UHD Smart LED TV, 70UR80; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"4990000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"4990000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"4990000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"f4f845d6fdeca6547c012e2b85347ae5\";a:11:{s:3:\"key\";s:32:\"f4f845d6fdeca6547c012e2b85347ae5\";s:10:\"product_id\";i:17394;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4990000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4990000;s:8:\"line_tax\";d:0;}}\";}', 1764569320)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:08:41 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:08:41 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_b794fdc8370f43cf7f0264b2e6b32a', 'a:6:{s:22:\"shipping_for_package_0\";s:2354:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_6e359174910c957897a0bd24c9f6c4bf\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:63:\"Royalford Aluminium Pressure Cooker, 11 Litres, RF355 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:63:\"Royalford Aluminium Pressure Cooker, 11 Litres, RF355 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:63:\"Royalford Aluminium Pressure Cooker, 11 Litres, RF355 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:63:\"Royalford Aluminium Pressure Cooker, 11 Litres, RF355 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"290000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"290000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"290000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"fcd95bd51c91dfb5ae0184a7ae82bdc9\";a:11:{s:3:\"key\";s:32:\"fcd95bd51c91dfb5ae0184a7ae82bdc9\";s:10:\"product_id\";i:37629;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:290000;s:8:\"line_tax\";d:0;}}\";}', 1764569320)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:08:42 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:08:42 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:09:41 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:09:41 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_93b0ff11622200275901cc12b7d4ae', 'a:6:{s:22:\"shipping_for_package_0\";s:2451:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_fcb134a67bfca72f594fc63f7e8b9889\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:87:\"Samsung CU8000 50-inch Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:87:\"Samsung CU8000 50-inch Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:87:\"Samsung CU8000 50-inch Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:87:\"Samsung CU8000 50-inch Crystal UHD 4K Smart TV; Wi-Fi, Bluetooth, Dolby Atmos &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"2250000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2250000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2250000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"9b01b09edbdae327a17ccc47cc5c6992\";a:11:{s:3:\"key\";s:32:\"9b01b09edbdae327a17ccc47cc5c6992\";s:10:\"product_id\";i:17463;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2250000;s:8:\"line_tax\";d:0;}}\";}', 1764569380)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:09:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:09:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_c481674fd801bc890c9d80ade8838c', 'a:6:{s:22:\"shipping_for_package_0\";s:2643:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_92ec3093a58d801fbb656481be073918\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:134:\"Skyworth 65-inch 4K UHD Android Smart TV, 65G3EN ; Android TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:134:\"Skyworth 65-inch 4K UHD Android Smart TV, 65G3EN ; Android TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:134:\"Skyworth 65-inch 4K UHD Android Smart TV, 65G3EN ; Android TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:134:\"Skyworth 65-inch 4K UHD Android Smart TV, 65G3EN ; Android TV w/ Built-in Chromecast, HDR, Bluetooth, HDMI, USB, Dolby Atmos &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"2550000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2550000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2550000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"3a451d508be07d684c2face70e6ecf9d\";a:11:{s:3:\"key\";s:32:\"3a451d508be07d684c2face70e6ecf9d\";s:10:\"product_id\";i:24919;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2550000;s:8:\"line_tax\";d:0;}}\";}', 1764569397)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:10:31 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:10:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:10:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_6769e7cf5cc9f81ea210809c561ef5', 'a:7:{s:22:\"shipping_for_package_0\";s:1900:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_da0522907b884b7180244820436eed5e\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"25000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:63:\"ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:63:\"ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:63:\"ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1190000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"25000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1190000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1215000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"60d22149eee1175d3675575416f123b1\";a:11:{s:3:\"key\";s:32:\"60d22149eee1175d3675575416f123b1\";s:10:\"product_id\";i:14270;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1190000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:252:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:177:\"&ldquo;ADH 220L Refrigerator, Top Mount Freezer, Double Door&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569442)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:10:45 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:11:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:11:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_a8fe80d46c1ec3501190910e9fde37', 'a:6:{s:22:\"shipping_for_package_0\";s:1900:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_da0522907b884b7180244820436eed5e\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"25000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:63:\"ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:63:\"ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:63:\"ADH 220L Refrigerator, Top Mount Freezer, Double Door &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1190000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"25000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1190000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1215000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"60d22149eee1175d3675575416f123b1\";a:11:{s:3:\"key\";s:32:\"60d22149eee1175d3675575416f123b1\";s:10:\"product_id\";i:14270;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1190000;s:8:\"line_tax\";d:0;}}\";}', 1764569461)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:11:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:11:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_d432fcf65ff87325e3864b9f121ac6', 'a:7:{s:22:\"shipping_for_package_0\";s:1930:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_5005c4698954324dc250f3fb33856233\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"25000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:65:\"INGCO Industrial High Pressure Washer, 2800w, HPWR28008 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:65:\"INGCO Industrial High Pressure Washer, 2800w, HPWR28008 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:65:\"INGCO Industrial High Pressure Washer, 2800w, HPWR28008 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1950000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"25000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1950000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1975000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"33910a1299fb755ddc28432d9ea4e322\";a:11:{s:3:\"key\";s:32:\"33910a1299fb755ddc28432d9ea4e322\";s:10:\"product_id\";i:79359;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1950000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:254:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:179:\"&ldquo;INGCO Industrial High Pressure Washer, 2800w, HPWR28008&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569465)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:11:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:11:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:11:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:11:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_cec06cdcd5890ad56433267d408827', 'a:6:{s:22:\"shipping_for_package_0\";s:1930:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_5005c4698954324dc250f3fb33856233\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"25000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:65:\"INGCO Industrial High Pressure Washer, 2800w, HPWR28008 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:65:\"INGCO Industrial High Pressure Washer, 2800w, HPWR28008 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:65:\"INGCO Industrial High Pressure Washer, 2800w, HPWR28008 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1950000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"25000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1950000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1975000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"33910a1299fb755ddc28432d9ea4e322\";a:11:{s:3:\"key\";s:32:\"33910a1299fb755ddc28432d9ea4e322\";s:10:\"product_id\";i:79359;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1950000;s:8:\"line_tax\";d:0;}}\";}', 1764569485)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:11:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:11:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:12:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:12:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_9d679bd692193ab898f1bbc2193322', 'a:6:{s:22:\"shipping_for_package_0\";s:1975:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_70996a83fe1e9c4c1d59dd31885f17db\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:80:\"BlueFlame 60*60cm 4 Gas Freestanding Cooker w/ Electric Oven, D6040ERF &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:80:\"BlueFlame 60*60cm 4 Gas Freestanding Cooker w/ Electric Oven, D6040ERF &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:80:\"BlueFlame 60*60cm 4 Gas Freestanding Cooker w/ Electric Oven, D6040ERF &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1550000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1550000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1560000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"b3579acde25b2dab713999fa7f42c914\";a:11:{s:3:\"key\";s:32:\"b3579acde25b2dab713999fa7f42c914\";s:10:\"product_id\";i:40064;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1550000;s:8:\"line_tax\";d:0;}}\";}', 1764569525)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:12:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:12:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_271d4aa2c8382adf5821470d589c64', 'a:7:{s:22:\"shipping_for_package_0\";s:2414:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_7d7804b1601f9644a8b8f11803cf82c2\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:78:\"Bosch PRY6A6B70 Serie 8 60cm Ceramic 3 Gas + 1 Electric Built In Hob &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:78:\"Bosch PRY6A6B70 Serie 8 60cm Ceramic 3 Gas + 1 Electric Built In Hob &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:78:\"Bosch PRY6A6B70 Serie 8 60cm Ceramic 3 Gas + 1 Electric Built In Hob &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:78:\"Bosch PRY6A6B70 Serie 8 60cm Ceramic 3 Gas + 1 Electric Built In Hob &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"3150000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"3150000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"3150000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"3c6d4f6a20e08ad47557b4fc5e67dbc8\";a:11:{s:3:\"key\";s:32:\"3c6d4f6a20e08ad47557b4fc5e67dbc8\";s:10:\"product_id\";i:23588;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3150000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:267:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:192:\"&ldquo;Bosch PRY6A6B70 Serie 8 60cm Ceramic 3 Gas + 1 Electric Built In Hob&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569529)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:12:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:12:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_f8b660d0ddf02035a97017c7ef9b98', 'a:7:{s:22:\"shipping_for_package_0\";s:2366:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_b6464f2a4e06636b8821773b84676def\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:66:\"Ariete Bagless Vacuum Cleaner, 700w, 3.0 Litre, ASPD2753 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:66:\"Ariete Bagless Vacuum Cleaner, 700w, 3.0 Litre, ASPD2753 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:66:\"Ariete Bagless Vacuum Cleaner, 700w, 3.0 Litre, ASPD2753 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:66:\"Ariete Bagless Vacuum Cleaner, 700w, 3.0 Litre, ASPD2753 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"485000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"485000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"485000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"bb729a240f58ad88d4e91fad8a78226c\";a:11:{s:3:\"key\";s:32:\"bb729a240f58ad88d4e91fad8a78226c\";s:10:\"product_id\";i:59923;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:485000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:485000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:255:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:180:\"&ldquo;Ariete Bagless Vacuum Cleaner, 700w, 3.0 Litre, ASPD2753&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569536)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:12:28 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:12:28 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:12:41 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:12:41 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_5aa6dac41a8897435096661f71f319', 'a:6:{s:22:\"shipping_for_package_0\";s:2534:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_85930c352ffb10fdeb81b6806b34ea80\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:107:\"Moulinex Perfect Mix 2 Litre Blender w/ Grinder &amp; Grater, 1200 Watts, Plastic/Glass, LM815D27 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:107:\"Moulinex Perfect Mix 2 Litre Blender w/ Grinder &amp; Grater, 1200 Watts, Plastic/Glass, LM815D27 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:107:\"Moulinex Perfect Mix 2 Litre Blender w/ Grinder &amp; Grater, 1200 Watts, Plastic/Glass, LM815D27 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:107:\"Moulinex Perfect Mix 2 Litre Blender w/ Grinder &amp; Grater, 1200 Watts, Plastic/Glass, LM815D27 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"620000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"620000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"620000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"576de785f42edab467b8b23a3fb0c168\";a:11:{s:3:\"key\";s:32:\"576de785f42edab467b8b23a3fb0c168\";s:10:\"product_id\";i:33094;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:620000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:620000;s:8:\"line_tax\";d:0;}}\";}', 1764569560)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:12:50 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:12:50 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_fafb8356123d520fe288ad1dcd5047', 'a:7:{s:22:\"shipping_for_package_0\";s:1998:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_49b9ea4d2f0387b13bbf8525e77d9e37\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:88:\"LG SNH5 4.1 Channel High Powered Sound Bar with DTS Virtual:X and AI Sound Pro &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:88:\"LG SNH5 4.1 Channel High Powered Sound Bar with DTS Virtual:X and AI Sound Pro &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:88:\"LG SNH5 4.1 Channel High Powered Sound Bar with DTS Virtual:X and AI Sound Pro &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:424:\"a:15:{s:8:\"subtotal\";s:7:\"1495000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1495000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1500000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"b7605ca507251b02a2e82d45b396d493\";a:11:{s:3:\"key\";s:32:\"b7605ca507251b02a2e82d45b396d493\";s:10:\"product_id\";i:35606;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1495000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1495000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:277:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:202:\"&ldquo;LG SNH5 4.1 Channel High Powered Sound Bar with DTS Virtual:X and AI Sound Pro&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569569)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_c22e83f2cb5f7e29b1d0011f688081', 'a:6:{s:22:\"shipping_for_package_0\";s:1998:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_49b9ea4d2f0387b13bbf8525e77d9e37\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:88:\"LG SNH5 4.1 Channel High Powered Sound Bar with DTS Virtual:X and AI Sound Pro &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:88:\"LG SNH5 4.1 Channel High Powered Sound Bar with DTS Virtual:X and AI Sound Pro &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:88:\"LG SNH5 4.1 Channel High Powered Sound Bar with DTS Virtual:X and AI Sound Pro &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:424:\"a:15:{s:8:\"subtotal\";s:7:\"1495000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1495000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1500000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"b7605ca507251b02a2e82d45b396d493\";a:11:{s:3:\"key\";s:32:\"b7605ca507251b02a2e82d45b396d493\";s:10:\"product_id\";i:35606;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1495000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1495000;s:8:\"line_tax\";d:0;}}\";}', 1764569590)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_40c6b23b80ecbfaf70502f0ec44fc8', 'a:6:{s:22:\"shipping_for_package_0\";s:2535:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_3e306a2f4378bd8c9f7efdcfcd59994f\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"30000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"4750000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"4750000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"4750000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:438:\"a:1:{s:32:\"55c567fd4395ecef6d936cf77b8d5b2b\";a:11:{s:3:\"key\";s:32:\"55c567fd4395ecef6d936cf77b8d5b2b\";s:10:\"product_id\";i:1497;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4750000;s:8:\"line_tax\";d:0;}}\";}', 1764569590)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_5d487a262505f5ea875bdb84d2a7c6', 'a:6:{s:22:\"shipping_for_package_0\";s:2318:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_74ee1bbc6232f9cd528d8390ac476b65\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"499000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"499000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"499000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"e6ec91cba600ca785d5e02beb0d0c8eb\";a:11:{s:3:\"key\";s:32:\"e6ec91cba600ca785d5e02beb0d0c8eb\";s:10:\"product_id\";i:24943;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:499000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:499000;s:8:\"line_tax\";d:0;}}\";}', 1764569595)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_e29cecf5c8aaa1c9c594d1c9fb1893', 'a:6:{s:22:\"shipping_for_package_0\";s:2431:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_110531af19629432aacb52fe22433819\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:88:\"Hisense 60 Liters (Net 44L) 1-Door Mini Fridge (Bar Fridge) Defrost, RR60DAGS0 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:88:\"Hisense 60 Liters (Net 44L) 1-Door Mini Fridge (Bar Fridge) Defrost, RR60DAGS0 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:88:\"Hisense 60 Liters (Net 44L) 1-Door Mini Fridge (Bar Fridge) Defrost, RR60DAGS0 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:88:\"Hisense 60 Liters (Net 44L) 1-Door Mini Fridge (Bar Fridge) Defrost, RR60DAGS0 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"335000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"335000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"335000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"ab43c4e87d82d0c6b0f9b02654aaf23c\";a:11:{s:3:\"key\";s:32:\"ab43c4e87d82d0c6b0f9b02654aaf23c\";s:10:\"product_id\";i:17265;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:335000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:335000;s:8:\"line_tax\";d:0;}}\";}', 1764569596)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_3f2b1383ea884727b6acc1c9fa9de5', 'a:6:{s:22:\"shipping_for_package_0\";s:2402:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_359bf9b74c4b2d99801aa4cf91ef9a6b\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:75:\"Bosch 90cm Built In Electric Oven, VBC514CR0 (85 Litres, 90x48cm) &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:75:\"Bosch 90cm Built In Electric Oven, VBC514CR0 (85 Litres, 90x48cm) &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:75:\"Bosch 90cm Built In Electric Oven, VBC514CR0 (85 Litres, 90x48cm) &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:75:\"Bosch 90cm Built In Electric Oven, VBC514CR0 (85 Litres, 90x48cm) &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"6250000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"6250000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"6250000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"b80ee7270cb478f771821dd00951ea56\";a:11:{s:3:\"key\";s:32:\"b80ee7270cb478f771821dd00951ea56\";s:10:\"product_id\";i:40477;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:6250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:6250000;s:8:\"line_tax\";d:0;}}\";}', 1764569609)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_d3fac31860b4664203a7a4fc202147', 'a:6:{s:22:\"shipping_for_package_0\";s:2286:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_6ed22da53bbc805a6daec9d4b768d7b2\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:52:\"JBL Go 3 Portable Waterproof Speaker, Blue &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:52:\"JBL Go 3 Portable Waterproof Speaker, Blue &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:52:\"JBL Go 3 Portable Waterproof Speaker, Blue &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:52:\"JBL Go 3 Portable Waterproof Speaker, Blue &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"245000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"245000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"245000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"f03a550c53b59ef2cb9970d9672c78da\";a:11:{s:3:\"key\";s:32:\"f03a550c53b59ef2cb9970d9672c78da\";s:10:\"product_id\";i:25124;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:245000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:245000;s:8:\"line_tax\";d:0;}}\";}', 1764569611)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_344be10b26f3d889a55b6f14aa0f9e', 'a:6:{s:22:\"shipping_for_package_0\";s:2318:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_74ee1bbc6232f9cd528d8390ac476b65\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"499000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"499000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"499000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"e6ec91cba600ca785d5e02beb0d0c8eb\";a:11:{s:3:\"key\";s:32:\"e6ec91cba600ca785d5e02beb0d0c8eb\";s:10:\"product_id\";i:24943;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:499000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:499000;s:8:\"line_tax\";d:0;}}\";}', 1764569615)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_106368261f4cd0efa93ace634cd81d', 'a:6:{s:22:\"shipping_for_package_0\";s:2014:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_6d891443cb5b0ee15a920c955d5d2617\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:93:\"Titan 60*60cm 3 Gas + 1 Electric Freestanding Cooker w/ Electric Oven, TN-FC6310XBS &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:93:\"Titan 60*60cm 3 Gas + 1 Electric Freestanding Cooker w/ Electric Oven, TN-FC6310XBS &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:93:\"Titan 60*60cm 3 Gas + 1 Electric Freestanding Cooker w/ Electric Oven, TN-FC6310XBS &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1490000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1490000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1500000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"8bcd446a0b16ce6dbefa3acf438dc512\";a:11:{s:3:\"key\";s:32:\"8bcd446a0b16ce6dbefa3acf438dc512\";s:10:\"product_id\";i:31063;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1490000;s:8:\"line_tax\";d:0;}}\";}', 1764569628)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:53 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:53 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_2e88df8dd7e7b8c58994d16e73d63e', 'a:6:{s:22:\"shipping_for_package_0\";s:2068:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_6315048661ea4aad051f922b754e5a64\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:110:\"Skyworth 50-inch 4K UHD Android Smart TV, 50G3EN; HDR, Dolby Atmos, Google TV, Chromecast, Bluetooth &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:110:\"Skyworth 50-inch 4K UHD Android Smart TV, 50G3EN; HDR, Dolby Atmos, Google TV, Chromecast, Bluetooth &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:110:\"Skyworth 50-inch 4K UHD Android Smart TV, 50G3EN; HDR, Dolby Atmos, Google TV, Chromecast, Bluetooth &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1350000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1350000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1370000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"ccd9f73a3bb415a32b0708b0821761c4\";a:11:{s:3:\"key\";s:32:\"ccd9f73a3bb415a32b0708b0821761c4\";s:10:\"product_id\";i:24907;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1350000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1350000;s:8:\"line_tax\";d:0;}}\";}', 1764569633)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_fa1b2ac09f9e96c3f86e4e6f10c219', 'a:6:{s:22:\"shipping_for_package_0\";s:2294:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_4df06768cfe16954c62658cf32873823\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:48:\"Canon EOS 850D (Rebel T8i) DSLR Camera &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:48:\"Canon EOS 850D (Rebel T8i) DSLR Camera &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:48:\"Canon EOS 850D (Rebel T8i) DSLR Camera &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:48:\"Canon EOS 850D (Rebel T8i) DSLR Camera &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"7500000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"7500000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"7500000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"399fe2ba76b3bae96212db3125015af9\";a:11:{s:3:\"key\";s:32:\"399fe2ba76b3bae96212db3125015af9\";s:10:\"product_id\";i:49663;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:7500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7500000;s:8:\"line_tax\";d:0;}}\";}', 1764569634)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:13:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:13:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_f4a6b9b2df884ed6657e4ca6c265ea', 'a:6:{s:22:\"shipping_for_package_0\";s:1918:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_72af0fb7d2ace9a985edf819d77a1b6c\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:61:\"TCL 55-inch 4K UHD HDR LED Smart Android TV, 55P635 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:61:\"TCL 55-inch 4K UHD HDR LED Smart Android TV, 55P635 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:61:\"TCL 55-inch 4K UHD HDR LED Smart Android TV, 55P635 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1420000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1420000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1440000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"07d0b867fe8673bbe9de71670ffdb6cb\";a:11:{s:3:\"key\";s:32:\"07d0b867fe8673bbe9de71670ffdb6cb\";s:10:\"product_id\";i:51136;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1420000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1420000;s:8:\"line_tax\";d:0;}}\";}', 1764569637)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:14:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:14:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_f85ceeeb96352cebb1be6b97a8f5b0', 'a:7:{s:22:\"shipping_for_package_0\";s:1822:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_fed0d0aae6f543242f11495086c09fb0\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:37:\"ADH 300 Litre Chest Freezer &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:37:\"ADH 300 Litre Chest Freezer &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:37:\"ADH 300 Litre Chest Freezer &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1195000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1195000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1215000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"f4a50e9667dbc51749cdda1ff0c237ce\";a:11:{s:3:\"key\";s:32:\"f4a50e9667dbc51749cdda1ff0c237ce\";s:10:\"product_id\";i:62063;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1195000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1195000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:226:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:151:\"&ldquo;ADH 300 Litre Chest Freezer&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569650)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:14:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_50f73ede0998df8dbe1cac86cd30c5', 'a:6:{s:22:\"shipping_for_package_0\";s:2375:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_15725e848f8f8cf9bd7325e3a59b4642\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:68:\"Beko 90x60cm Cooker, 4 Gas + 2 Electric, Inox, GE 12121 DX &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:68:\"Beko 90x60cm Cooker, 4 Gas + 2 Electric, Inox, GE 12121 DX &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:68:\"Beko 90x60cm Cooker, 4 Gas + 2 Electric, Inox, GE 12121 DX &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:68:\"Beko 90x60cm Cooker, 4 Gas + 2 Electric, Inox, GE 12121 DX &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"3800000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"3800000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"3800000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"6cbe986b041b57e3a1b492f5df823aff\";a:11:{s:3:\"key\";s:32:\"6cbe986b041b57e3a1b492f5df823aff\";s:10:\"product_id\";i:22797;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3800000;s:8:\"line_tax\";d:0;}}\";}', 1764569654)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:14:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_c37880c7ac2d27fff52309de57d9a0', 'a:6:{s:22:\"shipping_for_package_0\";s:2294:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_4df06768cfe16954c62658cf32873823\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:48:\"Canon EOS 850D (Rebel T8i) DSLR Camera &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:48:\"Canon EOS 850D (Rebel T8i) DSLR Camera &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:48:\"Canon EOS 850D (Rebel T8i) DSLR Camera &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:48:\"Canon EOS 850D (Rebel T8i) DSLR Camera &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"7500000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"7500000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"7500000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"399fe2ba76b3bae96212db3125015af9\";a:11:{s:3:\"key\";s:32:\"399fe2ba76b3bae96212db3125015af9\";s:10:\"product_id\";i:49663;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:7500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7500000;s:8:\"line_tax\";d:0;}}\";}', 1764569654)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:14:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_ccd5a9150d2055dbd6a7e4f83681cc', 'a:6:{s:22:\"shipping_for_package_0\";s:1918:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_72af0fb7d2ace9a985edf819d77a1b6c\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:61:\"TCL 55-inch 4K UHD HDR LED Smart Android TV, 55P635 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:61:\"TCL 55-inch 4K UHD HDR LED Smart Android TV, 55P635 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:61:\"TCL 55-inch 4K UHD HDR LED Smart Android TV, 55P635 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1420000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1420000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1440000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"07d0b867fe8673bbe9de71670ffdb6cb\";a:11:{s:3:\"key\";s:32:\"07d0b867fe8673bbe9de71670ffdb6cb\";s:10:\"product_id\";i:51136;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1420000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1420000;s:8:\"line_tax\";d:0;}}\";}', 1764569657)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:14:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:42 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:42 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_8056c85756f5c5161149841f5cbcea', 'a:6:{s:22:\"shipping_for_package_0\";s:2555:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_fc620b2b5a531e70ba8c203bc0d82454\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:112:\"LG 55-Inch 4K UHD Smart LED TV, 55UR90; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:112:\"LG 55-Inch 4K UHD Smart LED TV, 55UR90; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:112:\"LG 55-Inch 4K UHD Smart LED TV, 55UR90; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:112:\"LG 55-Inch 4K UHD Smart LED TV, 55UR90; WebOs, Built-in Wi-Fi, HDR, Bluetooth, Chromecast, Dolby Atmos &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"3250000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"3250000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"3250000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"df543abd114ce563a23341c8a0707de6\";a:11:{s:3:\"key\";s:32:\"df543abd114ce563a23341c8a0707de6\";s:10:\"product_id\";i:17391;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3250000;s:8:\"line_tax\";d:0;}}\";}', 1764569682)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:14:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_b6d279c8d50baec920a36322d27740', 'a:7:{s:22:\"shipping_for_package_0\";s:1878:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_68ab251082a30d6e7b56dba8ea87f829\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:48:\"Panasonic 12000BTU Wall Split AC, R410 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:424:\"a:15:{s:8:\"subtotal\";s:7:\"1950000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1950000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1955000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"b6d3c0588a849c40ba45345f27f113b6\";a:11:{s:3:\"key\";s:32:\"b6d3c0588a849c40ba45345f27f113b6\";s:10:\"product_id\";i:16153;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1950000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:237:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:162:\"&ldquo;Panasonic 12000BTU Wall Split AC, R410&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569683)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:14:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:14:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_8a475441c77cb4df0d881bd54df121', 'a:6:{s:22:\"shipping_for_package_0\";s:2303:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_11a31ebaabf56cfa8eff050406c6b7d5\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:50:\"Samsung 55\" NEO QLED Smart TV, QA55QN90B &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:50:\"Samsung 55\" NEO QLED Smart TV, QA55QN90B &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:50:\"Samsung 55\" NEO QLED Smart TV, QA55QN90B &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:50:\"Samsung 55\" NEO QLED Smart TV, QA55QN90B &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"7800000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"7800000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"7800000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"18464425b5cec45cbfdd485c61b33f38\";a:11:{s:3:\"key\";s:32:\"18464425b5cec45cbfdd485c61b33f38\";s:10:\"product_id\";i:22988;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:7800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:7800000;s:8:\"line_tax\";d:0;}}\";}', 1764569696)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:15:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:15:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_value FROM wp_options WHERE option_name = 'wc_pending_batch_processes' LIMIT 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->get_enqueued_processors, get_option
    [29-Nov-2025 06:15:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_18f0778864a4f8de38323c10ded10f', 'a:6:{s:22:\"shipping_for_package_0\";s:1899:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_b34e246b20d1713aa085cb87cf996049\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:55:\"Decakila 2-Slice, 750 Watts Toaster, KETS009M &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:55:\"Decakila 2-Slice, 750 Watts Toaster, KETS009M &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:55:\"Decakila 2-Slice, 750 Watts Toaster, KETS009M &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:421:\"a:15:{s:8:\"subtotal\";s:6:\"134000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"134000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"139000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"50df57ab09c6b0953e6897160f9a87f4\";a:11:{s:3:\"key\";s:32:\"50df57ab09c6b0953e6897160f9a87f4\";s:10:\"product_id\";i:58685;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:134000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:134000;s:8:\"line_tax\";d:0;}}\";}', 1764569719)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:15:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:15:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_ab1783739c33340096a0724ddc84a2', 'a:7:{s:22:\"shipping_for_package_0\";s:2570:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_9d30ccf63a69d4de0d22c7340b930378\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:116:\"Tefal Easy Fry Classic 2-in-1 Air Fryer and Grill, 4.2 Litre Capacity, 8 Programs, Black, 1400 W, EY501827 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:116:\"Tefal Easy Fry Classic 2-in-1 Air Fryer and Grill, 4.2 Litre Capacity, 8 Programs, Black, 1400 W, EY501827 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:116:\"Tefal Easy Fry Classic 2-in-1 Air Fryer and Grill, 4.2 Litre Capacity, 8 Programs, Black, 1400 W, EY501827 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:116:\"Tefal Easy Fry Classic 2-in-1 Air Fryer and Grill, 4.2 Litre Capacity, 8 Programs, Black, 1400 W, EY501827 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"400000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"400000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"400000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"43a7498d952a6206c7216315608847c0\";a:11:{s:3:\"key\";s:32:\"43a7498d952a6206c7216315608847c0\";s:10:\"product_id\";i:52383;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:400000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:305:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:230:\"&ldquo;Tefal Easy Fry Classic 2-in-1 Air Fryer and Grill, 4.2 Litre Capacity, 8 Programs, Black, 1400 W, EY501827&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764569720)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [29-Nov-2025 06:15:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [29-Nov-2025 06:15:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_7753b01d38cf22765ff2c3174902b8', 'a:6:{s:22:\"shipping_for_package_0\";s:2342:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_4a6d124a295fcebf96c3f3dd811de5bc\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"Bosch 90cm 5 Plate Ceramic Hob, Black | PKM975DK1D &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"Bosch 90cm 5 Plate Ceramic Hob, Black | PKM975DK1D &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:60:\"Bosch 90cm 5 Plate Ceramic Hob, Black | PKM975DK1D &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:60:\"Bosch 90cm 5 Plate Ceramic Hob, Black | PKM975DK1D &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"3150000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"3150000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"3150000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"984a8710e96d3210d30c185060159555\";a:11:{s:3:\"key\";s:32:\"984a8710e96d3210d30c185060159555\";s:10:\"product_id\";i:28343;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3150000;s:8:\"line_tax\";d:0;}}\";}', 1764569725)
    ON DUPLICATE KEY UPDATE `session_valu
    Thread Starter acsafrica

    (@acsafrica)

    I have made more cleaning and now this is the status

    <br>### WordPress Environment ###<br><br>WordPress address (URL): https://www.abanista.com<br>Site address (URL): https://www.abanista.com<br>WC Version: 10.3.5<br>Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.<br>Action Scheduler Version: ✔ 3.9.3<br>Log Directory Writable: ✔<br>WP Version: 6.8.3<br>WP Multisite: –<br>WP Memory Limit: 1 GB<br>WP Debug Mode: –<br>WP Cron: ✔<br>Language: en_US<br>External object cache: ✔<br><br>### Server Environment ###<br><br>Server Info: LiteSpeed<br>Server Architecture: Linux 5.14.0-570.28.1.el9_6.x86_64 x86_64<br>PHP Version: 8.4.14<br>PHP Post Max Size: 8 MB<br>PHP Time Limit: 300<br>PHP Max Input Vars: 1000<br>cURL Version: 8.14.1<br>OpenSSL/3.2.2<br><br>SUHOSIN Installed: –<br>MySQL Version: 10.11.15-MariaDB<br>Max Upload Size: 2 MB<br>Default Timezone is UTC: ✔<br>fsockopen/cURL: ✔<br>SoapClient: ✔<br>DOMDocument: ✔<br>GZip: ✔<br>Multibyte String: ✔<br>Remote Post: ✔<br>Remote Get: ✔<br><br>### Database ###<br><br>WC Database Version: 10.3.5<br>WC Database Prefix: wp_<br>Total Database Size: 564.24MB<br>Database Data Size: 360.11MB<br>Database Index Size: 204.13MB<br>wp_woocommerce_sessions: Data: 97.63MB + Index: 1.97MB + Engine InnoDB<br>wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_woocommerce_order_items: Data: 1.52MB + Index: 0.47MB + Engine InnoDB<br>wp_woocommerce_order_itemmeta: Data: 11.52MB + Index: 10.03MB + Engine InnoDB<br>wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_abanista_loyalty_ledger: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_abanista_wishlist: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_abanista_wishlist_product: Data: 0.06MB + Index: 0.00MB + Engine InnoDB<br>wp_actionscheduler_actions: Data: 0.02MB + Index: 0.20MB + Engine InnoDB<br>wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_automatewoo_abandoned_carts: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wp_automatewoo_customers: Data: 1.52MB + Index: 1.00MB + Engine InnoDB<br>wp_automatewoo_customer_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_automatewoo_guests: Data: 0.09MB + Index: 0.17MB + Engine InnoDB<br>wp_automatewoo_guest_meta: Data: 0.27MB + Index: 0.25MB + Engine InnoDB<br>wp_automatewoo_logs: Data: 0.14MB + Index: 0.20MB + Engine InnoDB<br>wp_automatewoo_log_meta: Data: 1.52MB + Index: 0.45MB + Engine InnoDB<br>wp_automatewoo_queue: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_automatewoo_queue_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_commentmeta: Data: 0.33MB + Index: 0.31MB + Engine InnoDB<br>wp_comments: Data: 6.52MB + Index: 8.55MB + Engine InnoDB<br>wp_cr_local_forms: Data: 0.16MB + Index: 0.03MB + Engine InnoDB<br>wp_cr_reminders_log: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wp_dgwt_wcas_index: Data: 3.52MB + Index: 0.44MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_doclist: Data: 15.52MB + Index: 13.03MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_wordlist: Data: 2.52MB + Index: 2.34MB + Engine InnoDB<br>wp_dgwt_wcas_stats: Data: 3.52MB + Index: 0.00MB + Engine InnoDB<br>wp_dgwt_wcas_tax_index: Data: 0.17MB + Index: 0.11MB + Engine InnoDB<br>wp_erp_acct_bills: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_bill_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_cash_at_banks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_chart_of_accounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_currency_info: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expenses: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expense_checks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expense_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_financial_years: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoices: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_details: Data: 0.09MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_receipts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_receipts_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_journals: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_journal_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledgers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_opening_balances: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_payment_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_bill: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_trn: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_trn_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_products: Data: 0.08MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_synced_taxes: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_acct_taxes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_agencies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_agency_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_cat_agency: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_pay: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_transfer_voucher: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_trn_status_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_voucher_no: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_audit_log: Data: 0.34MB + Index: 0.19MB + Engine InnoDB<br>wp_erp_company_locations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_crm_activities_task: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_crm_contact_group: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_crm_contact_subscriber: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_crm_customer_activities: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_erp_crm_customer_companies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_crm_save_email_replies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_crm_save_search: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_holidays_indv: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_announcement: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_dependents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_depts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_designations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_education: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_employees: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_employee_history: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_employee_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_employee_performance: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_financial_years: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_holiday: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_leaves_unpaid: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_leave_approval_status: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_leave_encashment_requests: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_leave_entitlements: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_leave_policies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_leave_policies_segregation: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_leave_requests: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_leave_request_details: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_work_exp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_peoplemeta: Data: 0.30MB + Index: 0.27MB + Engine InnoDB<br>wp_erp_peoples: Data: 1.52MB + Index: 0.48MB + Engine InnoDB<br>wp_erp_people_types: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_people_type_relations: Data: 0.36MB + Index: 0.38MB + Engine InnoDB<br>wp_erp_user_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_expm_hiiden_content: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_expm_maker: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_expm_maker_pages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fibofilters_descriptors_main: Data: 1.52MB + Index: 0.08MB + Engine InnoDB<br>wp_fibofilters_doclist_main: Data: 3.52MB + Index: 0.00MB + Engine InnoDB<br>wp_fibofilters_sources_main: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_fibofilters_valuelist_main: Data: 0.16MB + Index: 0.14MB + Engine InnoDB<br>wp_find_and_replace: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_firebase_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_attribute_mapping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_budget_recommendations: Data: 0.19MB + Index: 0.11MB + Engine InnoDB<br>wp_gla_merchant_issues: Data: 0.19MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_merchant_price_benchmarks: Data: 0.08MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_rates: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_grp_google_place: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_grp_google_review: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_grp_google_stats: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_jetpack_sync_queue: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_jetpack_waf_blocklog: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_litespeed_avatar: Data: 0.22MB + Index: 0.13MB + Engine InnoDB<br>wp_litespeed_img_optm: Data: 2.33MB + Index: 0.50MB + Engine InnoDB<br>wp_litespeed_img_optming: Data: 0.05MB + Index: 0.05MB + Engine InnoDB<br>wp_litespeed_url: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_litespeed_url_file: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_options: Data: 9.41MB + Index: 3.05MB + Engine InnoDB<br>wp_postmeta: Data: 112.66MB + Index: 109.83MB + Engine InnoDB<br>wp_posts: Data: 17.52MB + Index: 6.06MB + Engine InnoDB<br>wp_rank_math_404_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_analytics_gsc: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_rank_math_analytics_inspections: Data: 2.52MB + Index: 0.61MB + Engine InnoDB<br>wp_rank_math_analytics_objects: Data: 1.52MB + Index: 0.19MB + Engine InnoDB<br>wp_rank_math_internal_links: Data: 0.14MB + Index: 0.09MB + Engine InnoDB<br>wp_rank_math_internal_meta: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_rank_math_redirections: Data: 0.11MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_redirections_cache: Data: 0.22MB + Index: 0.06MB + Engine InnoDB<br>wp_rewards_points: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_serial_numbers: Data: 0.02MB + Index: 0.11MB + Engine InnoDB<br>wp_sib_model_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_sib_model_users: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_snippets: Data: 0.30MB + Index: 0.03MB + Engine InnoDB<br>wp_termmeta: Data: 1.52MB + Index: 1.83MB + Engine InnoDB<br>wp_terms: Data: 0.17MB + Index: 0.17MB + Engine InnoDB<br>wp_term_relationships: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_term_taxonomy: Data: 3.52MB + Index: 0.19MB + Engine InnoDB<br>wp_usermeta: Data: 16.55MB + Index: 12.03MB + Engine InnoDB<br>wp_users: Data: 1.52MB + Index: 0.59MB + Engine InnoDB<br>wp_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2020: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2023: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2024: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpv_commissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpv_per_product_shipping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_activity: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_clicks: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_register: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_notes: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_note_actions: Data: 0.09MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_category_lookup: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_customer_lookup: Data: 1.52MB + Index: 0.52MB + Engine InnoDB<br>wp_wc_deposits_payment_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_deposits_payment_plans_schedule: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_orders: Data: 1.52MB + Index: 1.08MB + Engine InnoDB<br>wp_wc_orders_meta: Data: 14.52MB + Index: 16.11MB + Engine InnoDB<br>wp_wc_order_addresses: Data: 1.52MB + Index: 1.20MB + Engine InnoDB<br>wp_wc_order_bundle_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB<br>wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_order_operational_data: Data: 1.52MB + Index: 0.31MB + Engine InnoDB<br>wp_wc_order_product_lookup: Data: 1.52MB + Index: 0.94MB + Engine InnoDB<br>wp_wc_order_stats: Data: 1.52MB + Index: 0.38MB + Engine InnoDB<br>wp_wc_order_tax_lookup: Data: 0.16MB + Index: 0.14MB + Engine InnoDB<br>wp_wc_product_attributes_lookup: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_product_meta_lookup: Data: 0.50MB + Index: 0.80MB + Engine InnoDB<br>wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_reserved_stock: Data: 0.23MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_warranty_products: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wfpklist_template_data: Data: 0.11MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_bolt_checkout_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_bundled_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_bundled_items: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woo_wallet_transactions: Data: 1.52MB + Index: 0.13MB + Engine InnoDB<br>wp_woo_wallet_transaction_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br><br>### Post Type Counts ###<br><br>abanista_message: 1<br>abanista_ticket: 1<br>amn_wpforms-lite: 1<br>attachment: 7895<br>aw_workflow: 7<br>b2bking_custom_role: 2<br>b2bking_group: 1<br>custom_css: 2<br>custom-css-js: 1<br>feedback: 179<br>global_product_addon: 1<br>grw_feed: 1<br>jetpack_migration: 1<br>jp_img_sitemap: 2<br>jp_img_sitemap_index: 1<br>jp_sitemap: 1<br>jp_sitemap_master: 1<br>nav_menu_item: 29<br>oembed_cache: 6<br>page: 81<br>popup_theme: 6<br>post: 101<br>product: 2643<br>product_variation: 1658<br>productsliderwoo: 1<br>pwbf_event: 1<br>rm_content_editor: 1<br>shop_coupon: 60<br>shop_order: 4583<br>shop_order_refund: 27<br>shop_order_vendor: 1<br>shopmagic_automation: 7<br>stocktend_object: 7037<br>stocktend_tryst: 1<br>vi_wad_draft_product: 4<br>wa-order-numbers: 1<br>warranty_request: 1<br>woo_email: 15<br>wp_global_styles: 2<br>wp_navigation: 4<br>wpc_smart_message: 6<br>wpclv: 25<br><br>### Security ###<br><br>Secure connection (HTTPS): ✔<br>Hide errors from visitors: ✔<br><br>### Active Plugins (14) ###<br><br>Abanista App Deals: by Abanista Dev Team – 1.2.0<br>Abanista Dynamic Deals Today: by Abanista Dev Team – 1.2.0<br>Abanista Product Tags Endpoint: by Abanista – 1.4.0<br>Abanista Rest API: by The Abanista Dev Team – 1.12<br>FiboSearch - AJAX Search for WooCommerce (Pro): by FiboSearch Team – 1.30.1<br>Code Snippets: by Code Snippets Pro – 3.9.2<br>WP ERP: by weDevs – 1.16.6<br>Google for WooCommerce: by WooCommerce – 3.5.0<br>Heateor Social Login: by Team Heateor – 1.1.39<br>JWT Authentication for WP-API: by Enrique Chavez – 1.4.1<br>LiteSpeed Cache: by LiteSpeed Technologies – 7.6.2<br>Brevo - Email, SMS, Web Push, Chat, and more.: by Brevo – 3.2.9<br>Rank Math SEO: by Rank Math SEO – 1.0.258<br>WooCommerce: by Automattic – 10.3.5<br><br>### Inactive Plugins (42) ###<br><br>Abanista - Click to Order or Chat: by The Abanista Team – 1.0.8<br>Abanista - Order Status Manager & Notifications: by Abanista Dev Team – 1.1.0<br>Abanista Additional Gateways: by Abanista – 0.1<br>Abanista Cart Tab: by The Abanista Team – 1.1.2<br>Abanista Coffee API Endpoint: by Abanista Dev Team – 0.4.0<br>Abanista Loyalty: by Abanista Dev – 1.2.0<br>Abanista OTP Reset and Register: by Abanista – 1.4<br>Abanista Preferences: by Abanista Dev – 1.0.4<br>Abanista Prime: by Abanista Dev – 0.3.4<br>Abanista Product SKU Generator: by Abanista – 2.5.0<br>Abanista Push Notifications: by Abanista Dev Team – 1.10.0<br>Abanista Store API: by The Abanista Dev Team – 1.2<br>Abanista Support Ticket System: by Abanista Dev Team (Cristaves) – 1.3.0<br>Abanista User Attributes: by Abanista Dev – 1.3.5<br>Abanista WC Warranty - Client REST API: by The Abanista Team – 0.3.0<br>Abanista Widget Visibility: by Abanista / You – 1.2.0<br>Abanista Wishlist & Notifications: by Abanista Dev Team – 0.9.3<br>AutomateWoo: by WooCommerce – 6.1.15<br>Coupon Affiliates for WooCommerce: by Elliot Sowersby<br>RelyWP – 7.2.1<br><br>Customer Reviews for WooCommerce: by CusRev – 5.90.0<br>Facebook for WooCommerce: by Facebook – 3.5.14<br>FiboFilters: by FiboFilters Team – 1.9.0<br>Google Analytics for WooCommerce: by WooCommerce – 2.1.19<br>PDF Invoices & Packing Slips for WooCommerce: by WP Overnight – 5.1.0<br>PWA: by PWA Plugin Contributors – 0.8.2<br>Rich Shortcodes for Google Reviews: by RichPlugins <[email protected]> – 6.7<br>Storefront Blog Customiser: by WooCommerce – 1.3.0<br>Storefront Footer Bar: by WooThemes – 1.0.4<br>Storefront Hamburger Menu: by WooCommerce – 1.2.2<br>Storefront Mega Menus: by WooCommerce – 1.6.2<br>Storefront Parallax Hero: by WooCommerce – 1.5.7<br>Storefront Powerpack: by WooCommerce – 1.6.3<br>Storefront Top Bar: by Wooassist – 1.2.0<br>TeraWallet: by StandaloneTech – 1.5.14<br>Variation Swatches for WooCommerce: by CartFlows – 1.0.13<br>WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes and Shipping Labels: by WebToffee – 4.8.8<br>WooCommerce Deposits: by WooCommerce – 2.3.9<br>WooCommerce Product Add-Ons: by Woo – 7.9.1<br>WooCommerce Product Bundles: by Woo – 8.4.2<br>WooCommerce Product Vendors: by WooCommerce – 2.4.7<br>WooCommerce Warranty Requests: by WooCommerce – 2.6.7<br>WPC Linked Variation for WooCommerce (Premium): by WPClever – 4.3.7<br><br>### Dropin Plugins () ###<br><br>object-cache.php: LiteSpeed Cache - Object Cache (Drop-in)<br><br>### Settings ###<br><br>Legacy API Enabled: –<br>Force SSL: –<br>Currency: UGX (UGX)<br>Currency Position: left_space<br>Thousand Separator: ,<br>Decimal Separator: .<br>Number of Decimals: 0<br>Taxonomies: Product Types: bundle (bundle)<br>external (external)<br>grouped (grouped)<br>simple (simple)<br>variable (variable)<br>woosb (woosb)<br><br>Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)<br>exclude-from-search (exclude-from-search)<br>featured (featured)<br>outofstock (outofstock)<br>rated-1 (rated-1)<br>rated-2 (rated-2)<br>rated-3 (rated-3)<br>rated-4 (rated-4)<br>rated-5 (rated-5)<br><br>Connected to WooCommerce.com: ✔<br>Enforce Approved Product Download Directories: –<br>HPOS feature enabled: ✔<br>Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore<br>HPOS data sync enabled: ✔<br>Enabled Features: analytics<br>marketplace<br>order_attribution<br>site_visibility_badge<br>remote_logging<br>custom_order_tables<br><br><br>### Logging ###<br><br>Enabled: ✔<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 days<br>Level threshold: –<br>Log directory size: 38 MB<br><br>### WC Pages ###<br><br>Shop base: #9 - /shop/<br>Cart: #10 - /cart/ -  Contains the woocommerce/cart block<br>Checkout: #11 - /checkout/ -  Contains the woocommerce/checkout block<br>My account: #12 - /my-account/ -  Contains the &#091;woocommerce_my_account] shortcode<br>Terms and conditions: #43 - /terms-conditions/terms-of-sale/<br><br>### Theme ###<br><br>Name: Abanista<br>Version: 1.0.1713589360<br>Author URL: https://www.abanista.com/<br>Child Theme: ✔<br>Parent Theme Name: Storefront<br>Parent Theme Version: 4.6.1<br>Parent Theme Author URL: https://woocommerce.com/<br>Theme type: Classic theme<br>WooCommerce Support: ✔<br><br>### Templates ###<br><br>Overrides: –<br><br>### Admin ###<br><br>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customize-store<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>onboarding<br>onboarding-tasks<br>pattern-toolkit-full-composability<br>product-custom-fields<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>printful<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page<br>launch-your-store<br><br>Disabled Features: product-data-views<br>experimental-blocks<br>experimental-iapi-mini-cart<br>experimental-iapi-runtime<br>coming-soon-newsletter-template<br>minified-js<br>product-pre-publish-modal<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br>use-wp-horizon<br>rest-api-v4<br><br>Daily Cron: ✔ Next scheduled: 2025-11-27 00:10:55 +03:00<br>Options: ✔<br>Notes: 234<br>Onboarding: completed<br><br>### Google for WooCommerce ###<br><br>Products API Pull: ❌ Disabled<br>Products MC Push: ✔ Enabled<br>Coupons API Pull: ❌ Disabled<br>Coupons MC Push: ✔ Enabled<br>Shipping API Pull: ❌ Disabled<br>Shipping MC Push: ✔ Enabled<br>Settings API Pull: ❌ Disabled<br>Settings MC Push: ✔ Enabled<br><br>### Action Scheduler ###<br><br>Complete: 2<br>Oldest: 2025-11-26 17:01:09 +0300<br>Newest: 2025-11-26 17:01:40 +0300<br><br>Failed: 1<br>Oldest: 2025-11-26 17:02:57 +0300<br>Newest: 2025-11-26 17:02:57 +0300<br><br>Pending: 22<br>Oldest: 2025-11-26 17:45:08 +0300<br>Newest: 2025-12-08 01:23:29 +0300<br><br><br>### Status report information ###<br><br>Generated at: 2025-11-26 17:12:02 +03:00<br>

    I will be monitoring to see by activating one plugin every two days

    Thread Starter acsafrica

    (@acsafrica)

    Hello, regarding the daily traffic is 1,000 visitors and 10-20 orders per day. i have cleared the tasks and below is my new system status

    <br>### WordPress Environment ###<br><br>WordPress address (URL): https://www.abanista.com<br>Site address (URL): https://www.abanista.com<br>WC Version: 10.3.5<br>Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.<br>Action Scheduler Version: ✔ 3.9.3<br>Log Directory Writable: ✔<br>WP Version: 6.8.3<br>WP Multisite: –<br>WP Memory Limit: 1 GB<br>WP Debug Mode: ✔<br>WP Cron: ✔<br>Language: en_US<br>External object cache: ✔<br><br>### Server Environment ###<br><br>Server Info: LiteSpeed<br>Server Architecture: Linux 5.14.0-570.28.1.el9_6.x86_64 x86_64<br>PHP Version: 8.4.14<br>PHP Post Max Size: 8 MB<br>PHP Time Limit: 300<br>PHP Max Input Vars: 1000<br>cURL Version: 8.14.1<br>OpenSSL/3.2.2<br><br>SUHOSIN Installed: –<br>MySQL Version: 10.11.15-MariaDB<br>Max Upload Size: 2 MB<br>Default Timezone is UTC: ✔<br>fsockopen/cURL: ✔<br>SoapClient: ✔<br>DOMDocument: ✔<br>GZip: ✔<br>Multibyte String: ✔<br>Remote Post: ✔<br>Remote Get: ✔<br><br>### Database ###<br><br>WC Database Version: 10.3.5<br>WC Database Prefix: wp_<br>Total Database Size: 2234.18MB<br>Database Data Size: 1136.32MB<br>Database Index Size: 1097.86MB<br>wp_woocommerce_sessions: Data: 72.59MB + Index: 1.83MB + Engine InnoDB<br>wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_woocommerce_order_items: Data: 1.52MB + Index: 0.47MB + Engine InnoDB<br>wp_woocommerce_order_itemmeta: Data: 11.52MB + Index: 10.03MB + Engine InnoDB<br>wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_abanista_loyalty_ledger: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wpstg0_abanista_wishlist: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_abanista_wishlist_product: Data: 0.06MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_actionscheduler_actions: Data: 38.58MB + Index: 69.81MB + Engine InnoDB<br>wpstg0_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_actionscheduler_logs: Data: 23.56MB + Index: 21.06MB + Engine InnoDB<br>wpstg0_automatewoo_abandoned_carts: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_automatewoo_customers: Data: 1.52MB + Index: 1.22MB + Engine InnoDB<br>wpstg0_automatewoo_customer_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_automatewoo_guests: Data: 0.11MB + Index: 0.19MB + Engine InnoDB<br>wpstg0_automatewoo_guest_meta: Data: 0.27MB + Index: 0.38MB + Engine InnoDB<br>wpstg0_automatewoo_logs: Data: 0.16MB + Index: 0.28MB + Engine InnoDB<br>wpstg0_automatewoo_log_meta: Data: 1.52MB + Index: 0.72MB + Engine InnoDB<br>wpstg0_automatewoo_queue: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_automatewoo_queue_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_commentmeta: Data: 0.39MB + Index: 0.52MB + Engine InnoDB<br>wpstg0_comments: Data: 6.52MB + Index: 9.59MB + Engine InnoDB<br>wpstg0_cr_local_forms: Data: 0.17MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_cr_reminders_log: Data: 0.09MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_dgwt_wcas_index: Data: 3.52MB + Index: 0.58MB + Engine InnoDB<br>wpstg0_dgwt_wcas_invindex_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_dgwt_wcas_invindex_doclist: Data: 13.52MB + Index: 17.03MB + Engine InnoDB<br>wpstg0_dgwt_wcas_invindex_wordlist: Data: 2.52MB + Index: 2.52MB + Engine InnoDB<br>wpstg0_dgwt_wcas_stats: Data: 3.52MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_dgwt_wcas_tax_index: Data: 0.19MB + Index: 0.11MB + Engine InnoDB<br>wpstg0_erp_acct_bills: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_bill_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_cash_at_banks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_chart_of_accounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_currency_info: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_expenses: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_expense_checks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_expense_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_financial_years: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_invoices: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_invoice_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_invoice_details: Data: 0.09MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_invoice_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_invoice_receipts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_invoice_receipts_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_journals: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_journal_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_ledgers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_ledger_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_ledger_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_ledger_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_opening_balances: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_payment_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_pay_bill: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_pay_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_pay_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_pay_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_people_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_people_trn: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_people_trn_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_products: Data: 0.08MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_product_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_product_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_product_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_purchase_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_purchase_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_synced_taxes: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_erp_acct_taxes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_tax_agencies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_tax_agency_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_tax_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_tax_cat_agency: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_tax_pay: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_transfer_voucher: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_trn_status_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_acct_voucher_no: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_audit_log: Data: 0.34MB + Index: 0.19MB + Engine InnoDB<br>wpstg0_erp_company_locations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_erp_crm_activities_task: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_erp_crm_contact_group: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_crm_contact_subscriber: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_erp_crm_customer_activities: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wpstg0_erp_crm_customer_companies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_erp_crm_save_email_replies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_crm_save_search: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_holidays_indv: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_hr_announcement: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_erp_hr_dependents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_erp_hr_depts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_hr_designations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_hr_education: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_erp_hr_employees: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_erp_hr_employee_history: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_erp_hr_employee_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_hr_employee_performance: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_erp_hr_financial_years: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_erp_hr_holiday: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_hr_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_erp_hr_leaves_unpaid: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_erp_hr_leave_approval_status: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_erp_hr_leave_encashment_requests: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_erp_hr_leave_entitlements: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_erp_hr_leave_policies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_erp_hr_leave_policies_segregation: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_erp_hr_leave_requests: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_erp_hr_leave_request_details: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_erp_hr_work_exp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_erp_peoplemeta: Data: 0.30MB + Index: 0.39MB + Engine InnoDB<br>wpstg0_erp_peoples: Data: 1.52MB + Index: 0.67MB + Engine InnoDB<br>wpstg0_erp_people_types: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_erp_people_type_relations: Data: 0.38MB + Index: 0.45MB + Engine InnoDB<br>wpstg0_erp_user_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_expm_hiiden_content: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_expm_maker: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_expm_maker_pages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fibofilters_descriptors_main: Data: 1.52MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_fibofilters_doclist_main: Data: 2.52MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fibofilters_sources_main: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_fibofilters_valuelist_main: Data: 0.17MB + Index: 0.16MB + Engine InnoDB<br>wpstg0_find_and_replace: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_firebase_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_activities: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_attachments: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_conversations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_data_metrix: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_mail_boxes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_persons: Data: 0.06MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_products: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_taggables: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_tag_pivot: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_fs_tickets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_gla_attribute_mapping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_gla_budget_recommendations: Data: 0.19MB + Index: 0.14MB + Engine InnoDB<br>wpstg0_gla_merchant_issues: Data: 0.19MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_gla_merchant_price_benchmarks: Data: 0.08MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_gla_shipping_rates: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_grp_google_place: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_grp_google_review: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_grp_google_stats: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_jetpack_sync_queue: Data: 0.11MB + Index: 0.06MB + Engine InnoDB<br>wpstg0_jetpack_waf_blocklog: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_litespeed_avatar: Data: 0.22MB + Index: 0.13MB + Engine InnoDB<br>wpstg0_litespeed_img_optm: Data: 2.52MB + Index: 1.91MB + Engine InnoDB<br>wpstg0_litespeed_img_optming: Data: 1.52MB + Index: 3.33MB + Engine InnoDB<br>wpstg0_litespeed_url: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_litespeed_url_file: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_options: Data: 81.45MB + Index: 28.88MB + Engine InnoDB<br>wpstg0_postmeta: Data: 107.66MB + Index: 170.27MB + Engine InnoDB<br>wpstg0_posts: Data: 15.52MB + Index: 7.06MB + Engine InnoDB<br>wpstg0_rank_math_404_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_rank_math_analytics_gsc: Data: 147.69MB + Index: 210.92MB + Engine InnoDB<br>wpstg0_rank_math_analytics_inspections: Data: 2.52MB + Index: 0.73MB + Engine InnoDB<br>wpstg0_rank_math_analytics_objects: Data: 1.52MB + Index: 0.28MB + Engine InnoDB<br>wpstg0_rank_math_internal_links: Data: 0.14MB + Index: 0.13MB + Engine InnoDB<br>wpstg0_rank_math_internal_meta: Data: 0.16MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_rank_math_redirections: Data: 0.13MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_rank_math_redirections_cache: Data: 0.23MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_rewards_points: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_serial_numbers: Data: 0.02MB + Index: 0.11MB + Engine InnoDB<br>wpstg0_serial_numbers_activations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_sib_model_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_sib_model_users: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_snippets: Data: 0.30MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_termmeta: Data: 1.52MB + Index: 1.98MB + Engine InnoDB<br>wpstg0_terms: Data: 0.19MB + Index: 0.22MB + Engine InnoDB<br>wpstg0_term_relationships: Data: 1.52MB + Index: 1.52MB + Engine InnoDB<br>wpstg0_term_taxonomy: Data: 3.52MB + Index: 0.23MB + Engine InnoDB<br>wpstg0_usermeta: Data: 15.55MB + Index: 19.06MB + Engine InnoDB<br>wpstg0_users: Data: 1.52MB + Index: 0.83MB + Engine InnoDB<br>wpstg0_vi_wad_error_product_images: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcboost_wishlist_items: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_wcfm_daily_analysis: Data: 0.08MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_wcfm_detailed_analysis: Data: 0.13MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_enquiries: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_enquiries_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_enquiries_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_enquiries_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_fbc_chat_rows: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_fbc_chat_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wcfm_fbc_chat_visitors: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_fbc_offline_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_following_followers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_orders: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_orders_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_product_multivendor: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_refund_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_refund_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_reverse_withdrawal: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_reverse_withdrawal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_reviews: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_reviews_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_reviews_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_review_rating_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_shipping_zone_locations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_store_taxonomies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_vendor_ledger: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_withdraw_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_marketplace_withdraw_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_membership_subscription: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wcfm_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_messages_modifier: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_messages_stat: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_support: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_support_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_support_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcfm_support_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcpdf_invoice_number_2020: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcpdf_invoice_number_2023: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcpdf_invoice_number_2024: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcpv_commissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcpv_per_product_shipping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcusage_activity: Data: 0.06MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcusage_clicks: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wcusage_register: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wc_admin_notes: Data: 0.16MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wc_admin_note_actions: Data: 0.09MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wc_category_lookup: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wc_customer_lookup: Data: 1.52MB + Index: 1.78MB + Engine InnoDB<br>wpstg0_wc_deposits_payment_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wc_deposits_payment_plans_schedule: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_wc_orders: Data: 1.52MB + Index: 1.52MB + Engine InnoDB<br>wpstg0_wc_orders_meta: Data: 13.52MB + Index: 24.19MB + Engine InnoDB<br>wpstg0_wc_order_addresses: Data: 1.52MB + Index: 1.56MB + Engine InnoDB<br>wpstg0_wc_order_bundle_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB<br>wpstg0_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_wc_order_operational_data: Data: 1.52MB + Index: 0.39MB + Engine InnoDB<br>wpstg0_wc_order_product_lookup: Data: 1.52MB + Index: 1.50MB + Engine InnoDB<br>wpstg0_wc_order_stats: Data: 1.52MB + Index: 0.47MB + Engine InnoDB<br>wpstg0_wc_order_tax_lookup: Data: 0.17MB + Index: 0.19MB + Engine InnoDB<br>wpstg0_wc_product_attributes_lookup: Data: 2.52MB + Index: 2.52MB + Engine InnoDB<br>wpstg0_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wc_product_meta_lookup: Data: 0.50MB + Index: 1.06MB + Engine InnoDB<br>wpstg0_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wc_reserved_stock: Data: 0.25MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wc_se_queue: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_wc_se_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wc_warranty_products: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wfpklist_template_data: Data: 0.11MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_woocommerce_bolt_checkout_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_woocommerce_bundled_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_woocommerce_bundled_items: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wpstg0_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_woocommerce_order_itemmeta: Data: 10.52MB + Index: 12.03MB + Engine InnoDB<br>wpstg0_woocommerce_order_items: Data: 1.52MB + Index: 0.63MB + Engine InnoDB<br>wpstg0_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_woocommerce_sessions: Data: 38.08MB + Index: 3.41MB + Engine InnoDB<br>wpstg0_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wpstg0_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wpstg0_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wpstg0_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_woo_wallet_transactions: Data: 1.52MB + Index: 0.19MB + Engine InnoDB<br>wpstg0_woo_wallet_transaction_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_wps_hit: Data: 0.02MB + Index: 0.14MB + Engine InnoDB<br>wpstg0_wps_index: Data: 37.58MB + Index: 66.69MB + Engine InnoDB<br>wpstg0_wps_key: Data: 1.52MB + Index: 1.52MB + Engine InnoDB<br>wpstg0_wps_object_term: Data: 3.52MB + Index: 11.09MB + Engine InnoDB<br>wpstg0_wps_object_type: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wpstg0_wps_query: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wps_uri: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_wps_user_agent: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wpstg0_yith_wcwl: Data: 1.52MB + Index: 1.52MB + Engine InnoDB<br>wpstg0_yith_wcwl_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wpstg0_yith_wcwl_lists: Data: 2.52MB + Index: 4.86MB + Engine InnoDB<br>wp_abanista_loyalty_ledger: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_abanista_wishlist: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_abanista_wishlist_product: Data: 0.06MB + Index: 0.00MB + Engine InnoDB<br>wp_actionscheduler_actions: Data: 0.06MB + Index: 0.20MB + Engine InnoDB<br>wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_actionscheduler_logs: Data: 0.05MB + Index: 0.03MB + Engine InnoDB<br>wp_automatewoo_abandoned_carts: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wp_automatewoo_customers: Data: 1.52MB + Index: 1.00MB + Engine InnoDB<br>wp_automatewoo_customer_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_automatewoo_guests: Data: 0.09MB + Index: 0.17MB + Engine InnoDB<br>wp_automatewoo_guest_meta: Data: 0.27MB + Index: 0.25MB + Engine InnoDB<br>wp_automatewoo_logs: Data: 0.14MB + Index: 0.20MB + Engine InnoDB<br>wp_automatewoo_log_meta: Data: 1.52MB + Index: 0.45MB + Engine InnoDB<br>wp_automatewoo_queue: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_automatewoo_queue_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_commentmeta: Data: 0.33MB + Index: 0.31MB + Engine InnoDB<br>wp_comments: Data: 6.52MB + Index: 8.55MB + Engine InnoDB<br>wp_cr_local_forms: Data: 0.16MB + Index: 0.03MB + Engine InnoDB<br>wp_cr_reminders_log: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wp_dgwt_wcas_index: Data: 3.52MB + Index: 0.44MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_doclist: Data: 15.52MB + Index: 13.03MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_wordlist: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_dgwt_wcas_stats: Data: 3.52MB + Index: 0.00MB + Engine InnoDB<br>wp_dgwt_wcas_tax_index: Data: 0.17MB + Index: 0.11MB + Engine InnoDB<br>wp_erp_acct_bills: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_bill_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_cash_at_banks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_chart_of_accounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_currency_info: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expenses: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expense_checks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expense_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_financial_years: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoices: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_details: Data: 0.09MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_receipts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_receipts_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_journals: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_journal_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledgers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_opening_balances: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_payment_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_bill: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_trn: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_trn_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_products: Data: 0.08MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_synced_taxes: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_acct_taxes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_agencies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_agency_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_cat_agency: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_pay: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_transfer_voucher: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_trn_status_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_voucher_no: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_audit_log: Data: 0.34MB + Index: 0.19MB + Engine InnoDB<br>wp_erp_company_locations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_crm_activities_task: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_crm_contact_group: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_crm_contact_subscriber: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_crm_customer_activities: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_erp_crm_customer_companies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_crm_save_email_replies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_crm_save_search: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_holidays_indv: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_announcement: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_dependents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_depts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_designations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_education: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_employees: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_employee_history: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_employee_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_employee_performance: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_financial_years: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_holiday: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_leaves_unpaid: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_leave_approval_status: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_leave_encashment_requests: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_leave_entitlements: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_leave_policies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_leave_policies_segregation: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_leave_requests: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_leave_request_details: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_work_exp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_peoplemeta: Data: 0.30MB + Index: 0.27MB + Engine InnoDB<br>wp_erp_peoples: Data: 1.52MB + Index: 0.48MB + Engine InnoDB<br>wp_erp_people_types: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_people_type_relations: Data: 0.36MB + Index: 0.38MB + Engine InnoDB<br>wp_erp_user_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_expm_hiiden_content: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_expm_maker: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_expm_maker_pages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fibofilters_descriptors_main: Data: 1.52MB + Index: 0.08MB + Engine InnoDB<br>wp_fibofilters_doclist_main: Data: 3.52MB + Index: 0.00MB + Engine InnoDB<br>wp_fibofilters_sources_main: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_fibofilters_valuelist_main: Data: 0.16MB + Index: 0.14MB + Engine InnoDB<br>wp_find_and_replace: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_firebase_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_attribute_mapping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_budget_recommendations: Data: 0.19MB + Index: 0.11MB + Engine InnoDB<br>wp_gla_merchant_issues: Data: 0.19MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_merchant_price_benchmarks: Data: 0.08MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_rates: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_grp_google_place: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_grp_google_review: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_grp_google_stats: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_jetpack_sync_queue: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_jetpack_waf_blocklog: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_litespeed_avatar: Data: 0.22MB + Index: 0.13MB + Engine InnoDB<br>wp_litespeed_img_optm: Data: 2.33MB + Index: 0.50MB + Engine InnoDB<br>wp_litespeed_img_optming: Data: 0.05MB + Index: 0.05MB + Engine InnoDB<br>wp_litespeed_url: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_litespeed_url_file: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_options: Data: 32.44MB + Index: 7.08MB + Engine InnoDB<br>wp_postmeta: Data: 112.66MB + Index: 109.83MB + Engine InnoDB<br>wp_posts: Data: 17.52MB + Index: 6.06MB + Engine InnoDB<br>wp_rank_math_404_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_analytics_gsc: Data: 159.70MB + Index: 176.59MB + Engine InnoDB<br>wp_rank_math_analytics_inspections: Data: 2.52MB + Index: 0.61MB + Engine InnoDB<br>wp_rank_math_analytics_objects: Data: 1.52MB + Index: 0.19MB + Engine InnoDB<br>wp_rank_math_internal_links: Data: 0.14MB + Index: 0.09MB + Engine InnoDB<br>wp_rank_math_internal_meta: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_rank_math_redirections: Data: 0.11MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_redirections_cache: Data: 0.22MB + Index: 0.06MB + Engine InnoDB<br>wp_rewards_points: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_serial_numbers: Data: 0.02MB + Index: 0.11MB + Engine InnoDB<br>wp_sib_model_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_sib_model_users: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_snippets: Data: 0.30MB + Index: 0.03MB + Engine InnoDB<br>wp_termmeta: Data: 1.52MB + Index: 1.83MB + Engine InnoDB<br>wp_terms: Data: 0.17MB + Index: 0.17MB + Engine InnoDB<br>wp_term_relationships: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_term_taxonomy: Data: 3.52MB + Index: 0.19MB + Engine InnoDB<br>wp_usermeta: Data: 16.55MB + Index: 12.03MB + Engine InnoDB<br>wp_users: Data: 1.52MB + Index: 0.59MB + Engine InnoDB<br>wp_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2020: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2023: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2024: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpv_commissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpv_per_product_shipping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_activity: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_clicks: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_register: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_notes: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_note_actions: Data: 0.11MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_category_lookup: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_customer_lookup: Data: 1.52MB + Index: 0.52MB + Engine InnoDB<br>wp_wc_deposits_payment_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_deposits_payment_plans_schedule: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_orders: Data: 1.52MB + Index: 1.08MB + Engine InnoDB<br>wp_wc_orders_meta: Data: 14.52MB + Index: 16.11MB + Engine InnoDB<br>wp_wc_order_addresses: Data: 1.52MB + Index: 1.20MB + Engine InnoDB<br>wp_wc_order_bundle_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB<br>wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_order_operational_data: Data: 1.52MB + Index: 0.31MB + Engine InnoDB<br>wp_wc_order_product_lookup: Data: 1.52MB + Index: 0.94MB + Engine InnoDB<br>wp_wc_order_stats: Data: 1.52MB + Index: 0.38MB + Engine InnoDB<br>wp_wc_order_tax_lookup: Data: 0.16MB + Index: 0.14MB + Engine InnoDB<br>wp_wc_product_attributes_lookup: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_product_meta_lookup: Data: 0.50MB + Index: 0.80MB + Engine InnoDB<br>wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_reserved_stock: Data: 0.23MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_warranty_products: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wfpklist_template_data: Data: 0.11MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_bolt_checkout_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_bundled_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_bundled_items: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woo_wallet_transactions: Data: 1.52MB + Index: 0.13MB + Engine InnoDB<br>wp_woo_wallet_transaction_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br><br>### Post Type Counts ###<br><br>abanista_message: 1<br>abanista_ticket: 1<br>amn_wpforms-lite: 1<br>attachment: 7895<br>aw_workflow: 7<br>b2bking_custom_role: 2<br>b2bking_group: 1<br>custom_css: 2<br>custom-css-js: 1<br>feedback: 179<br>global_product_addon: 1<br>grw_feed: 1<br>jetpack_migration: 1<br>jp_img_sitemap: 2<br>jp_img_sitemap_index: 1<br>jp_sitemap: 1<br>jp_sitemap_master: 1<br>nav_menu_item: 29<br>oembed_cache: 6<br>page: 81<br>popup_theme: 6<br>post: 101<br>product: 2643<br>product_variation: 1658<br>productsliderwoo: 1<br>pwbf_event: 1<br>rm_content_editor: 1<br>shop_coupon: 60<br>shop_order: 4554<br>shop_order_refund: 27<br>shop_order_vendor: 1<br>shopmagic_automation: 7<br>stocktend_object: 7037<br>stocktend_tryst: 1<br>vi_wad_draft_product: 4<br>wa-order-numbers: 1<br>warranty_request: 1<br>woo_email: 15<br>wp_global_styles: 2<br>wp_navigation: 4<br>wpc_smart_message: 6<br>wpclv: 25<br><br>### Security ###<br><br>Secure connection (HTTPS): ✔<br>Hide errors from visitors: ✔<br><br>### Active Plugins (12) ###<br><br>Abanista App Deals: by Abanista Dev Team – 1.2.0<br>Abanista Dynamic Deals Today: by Abanista Dev Team – 1.2.0<br>Abanista Rest API: by The Abanista Dev Team – 1.12<br>FiboSearch - AJAX Search for WooCommerce (Pro): by FiboSearch Team – 1.30.1<br>Code Snippets: by Code Snippets Pro – 3.9.2<br>Heateor Social Login: by Team Heateor – 1.1.39<br>JWT Authentication for WP-API: by Enrique Chavez – 1.4.1<br>LiteSpeed Cache: by LiteSpeed Technologies – 7.6.2<br>Brevo - Email, SMS, Web Push, Chat, and more.: by Brevo – 3.2.9<br>Rank Math SEO: by Rank Math SEO – 1.0.258<br>WooCommerce: by Automattic – 10.3.5<br>WP STAGING WordPress Backup Plugin - Backup Duplicator & Migration: by WP-STAGING<br>WPStagingBackup – 4.3.2<br><br><br>### Inactive Plugins (45) ###<br><br>Abanista - Click to Order or Chat: by The Abanista Team – 1.0.8<br>Abanista - Order Status Manager & Notifications: by Abanista Dev Team – 1.1.0<br>Abanista Additional Gateways: by Abanista – 0.1<br>Abanista Cart Tab: by The Abanista Team – 1.1.2<br>Abanista Coffee API Endpoint: by Abanista Dev Team – 0.4.0<br>Abanista Loyalty: by Abanista Dev – 1.2.0<br>Abanista OTP Reset and Register: by Abanista – 1.4<br>Abanista Preferences: by Abanista Dev – 1.0.4<br>Abanista Prime: by Abanista Dev – 0.3.4<br>Abanista Product SKU Generator: by Abanista – 2.5.0<br>Abanista Product Tags Endpoint: by Abanista – 1.4.0<br>Abanista Push Notifications: by Abanista Dev Team – 1.10.0<br>Abanista Store API: by The Abanista Dev Team – 1.2<br>Abanista Support Ticket System: by Abanista Dev Team (Cristaves) – 1.3.0<br>Abanista User Attributes: by Abanista Dev – 1.3.5<br>Abanista WC Warranty - Client REST API: by The Abanista Team – 0.3.0<br>Abanista Widget Visibility: by Abanista / You – 1.2.0<br>Abanista Wishlist & Notifications: by Abanista Dev Team – 0.9.3<br>AutomateWoo: by WooCommerce – 6.1.15 (update to version 6.1.19 is available)<br>Coupon Affiliates for WooCommerce: by Elliot Sowersby<br>RelyWP – 7.2.1<br><br>Customer Reviews for WooCommerce: by CusRev – 5.90.0<br>Facebook for WooCommerce: by Facebook – 3.5.14<br>FiboFilters: by FiboFilters Team – 1.9.0<br>Google Analytics for WooCommerce: by WooCommerce – 2.1.19<br>Google for WooCommerce: by WooCommerce – 3.5.0<br>PDF Invoices & Packing Slips for WooCommerce: by WP Overnight – 5.1.0<br>PWA: by PWA Plugin Contributors – 0.8.2<br>Rich Shortcodes for Google Reviews: by RichPlugins <[email protected]> – 6.7<br>Storefront Blog Customiser: by WooCommerce – 1.3.0<br>Storefront Footer Bar: by WooThemes – 1.0.4<br>Storefront Hamburger Menu: by WooCommerce – 1.2.2<br>Storefront Mega Menus: by WooCommerce – 1.6.2<br>Storefront Parallax Hero: by WooCommerce – 1.5.7<br>Storefront Powerpack: by WooCommerce – 1.6.3<br>Storefront Top Bar: by Wooassist – 1.2.0<br>TeraWallet: by StandaloneTech – 1.5.14<br>Variation Swatches for WooCommerce: by CartFlows – 1.0.13<br>WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes and Shipping Labels: by WebToffee – 4.8.8<br>WooCommerce Deposits: by WooCommerce – 2.3.9 (update to version 2.4.2 is available)<br>WooCommerce Product Add-Ons: by Woo – 7.9.1 (update to version 8.1.1 is available)<br>WooCommerce Product Bundles: by Woo – 8.4.2 (update to version 8.5.3 is available)<br>WooCommerce Product Vendors: by WooCommerce – 2.4.7 (update to version 2.4.8 is available)<br>WooCommerce Warranty Requests: by WooCommerce – 2.6.7 (update to version 2.7.0 is available)<br>WPC Linked Variation for WooCommerce (Premium): by WPClever – 4.3.7<br>WP ERP: by weDevs – 1.16.6<br><br>### Dropin Plugins () ###<br><br>object-cache.php: LiteSpeed Cache - Object Cache (Drop-in)<br><br>### Must Use Plugins (1) ###<br><br>WP STAGING Optimizer: by WP STAGING – 1.6.0<br><br>### Settings ###<br><br>Legacy API Enabled: –<br>Force SSL: –<br>Currency: UGX (UGX)<br>Currency Position: left_space<br>Thousand Separator: ,<br>Decimal Separator: .<br>Number of Decimals: 0<br>Taxonomies: Product Types: bundle (bundle)<br>external (external)<br>grouped (grouped)<br>simple (simple)<br>variable (variable)<br>woosb (woosb)<br><br>Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)<br>exclude-from-search (exclude-from-search)<br>featured (featured)<br>outofstock (outofstock)<br>rated-1 (rated-1)<br>rated-2 (rated-2)<br>rated-3 (rated-3)<br>rated-4 (rated-4)<br>rated-5 (rated-5)<br><br>Connected to WooCommerce.com: ✔<br>Enforce Approved Product Download Directories: –<br>HPOS feature enabled: ✔<br>Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore<br>HPOS data sync enabled: ✔<br>Enabled Features: analytics<br>marketplace<br>order_attribution<br>site_visibility_badge<br>remote_logging<br>custom_order_tables<br><br><br>### Logging ###<br><br>Enabled: ✔<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 days<br>Level threshold: –<br>Log directory size: 38 MB<br><br>### WC Pages ###<br><br>Shop base: #9 - /shop/<br>Cart: #10 - /cart/ -  Contains the woocommerce/cart block<br>Checkout: #11 - /checkout/ -  Contains the woocommerce/checkout block<br>My account: #12 - /my-account/ -  Contains the &#091;woocommerce_my_account] shortcode<br>Terms and conditions: #43 - /terms-conditions/terms-of-sale/<br><br>### Theme ###<br><br>Name: Abanista<br>Version: 1.0.1713589360<br>Author URL: https://www.abanista.com/<br>Child Theme: ✔<br>Parent Theme Name: Storefront<br>Parent Theme Version: 4.6.1<br>Parent Theme Author URL: https://woocommerce.com/<br>Theme type: Classic theme<br>WooCommerce Support: ✔<br><br>### Templates ###<br><br>Overrides: –<br><br>### Admin ###<br><br>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customize-store<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>onboarding<br>onboarding-tasks<br>pattern-toolkit-full-composability<br>product-custom-fields<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>printful<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page<br>launch-your-store<br><br>Disabled Features: product-data-views<br>experimental-blocks<br>experimental-iapi-mini-cart<br>experimental-iapi-runtime<br>coming-soon-newsletter-template<br>minified-js<br>product-pre-publish-modal<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br>use-wp-horizon<br>rest-api-v4<br><br>Daily Cron: ✔ Next scheduled: 2025-11-27 00:10:55 +03:00<br>Options: ✔<br>Notes: 234<br>Onboarding: completed<br><br>### Action Scheduler ###<br><br>Complete: 74<br>Oldest: 2025-11-25 23:39:11 +0300<br>Newest: 2025-11-26 10:29:10 +0300<br><br>Failed: 13<br>Oldest: 2025-11-26 00:01:09 +0300<br>Newest: 2025-11-26 09:49:08 +0300<br><br>Pending: 21<br>Oldest: 2025-11-26 13:45:08 +0300<br>Newest: 2025-12-08 01:23:29 +0300<br><br><br>### Status report information ###<br><br>Generated at: 2025-11-26 10:37:43 +03:00<br>
    Thread Starter acsafrica

    (@acsafrica)

    i have monitored the staging but so far no error has happened. but on the main site, with the same plugin activated and other plugins inactive i am getting these

    [25-Nov-2025 06:48:34 UTC] PHP Notice:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>woocommerce</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [25-Nov-2025 06:48:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [25-Nov-2025 06:48:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO
    wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_a9352c67075d25b8c93137f8cbcec8', 'a:6:{s:22:\"shipping_for_package_0\";s:2355:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_342c0239632ae43b699534810da66f30\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"Beko 10kg Semi-Automatic Twin Tub Washing Machine, WTT100UK &times; 2\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10500\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"Beko 10kg Semi-Automatic Twin Tub Washing Machine, WTT100UK &times; 2\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:69:\"Beko 10kg Semi-Automatic Twin Tub Washing Machine, WTT100UK &times; 2\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:69:\"Beko 10kg Semi-Automatic Twin Tub Washing Machine, WTT100UK &times; 2\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:7:\"2600000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2600000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2600000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"296a4a440e3b55ea2556f652bb30dc98\";a:11:{s:3:\"key\";s:32:\"296a4a440e3b55ea2556f652bb30dc98\";s:10:\"product_id\";i:71410;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2600000;s:8:\"line_tax\";d:0;}}\";}', 1764226097)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [25-Nov-2025 06:48:34 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>woocommerce</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [25-Nov-2025 06:48:34 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>woocommerce</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [25-Nov-2025 06:48:34 UTC] PHP Deprecated:

    the problematic situation happens when the command out of sync error happens. and site is currently unreachable or becomes too slow because the resource usage has jumped to the peak. The staging site is not undergoing the same load as the main site even if they all have the same plugin installed because the main site has traffic and also we have an app that interacts with the site via the woocommerce storeapi documented here https://developer.woocommerce.com/docs/apis/store-api/. i suspect issue may be coming when user is performing a certain activity on the site or trying to checkout on the website or in the app. i also checked this thread https://ww.wp.xz.cn/support/topic/woocommerce-slowing-site-crashing/#post-18730374 and they are likely facing similar issue and checked as if the other plugins we all have are litespeed cache and webtofee pdf invoices and packing slips. but all these plugins are inactive on the site. the other thing i see is that on the main site i see an notice that has been there for days “Thumbnail regeneration is running in the background. Depending on the amount of images in your store this may take a while.” i dont know if it can be related to the problem bacause that notice is not there on the staging site.

Viewing 15 replies - 1 through 15 (of 21 total)