1
0.25 ms
SELECT
`name` ,
`base_class` AS baseClass ,
IF (`active` = 1 AND `installed_at` IS NOT NULL , 1 , 0 ) AS active ,
`path` ,
`version` ,
`autoload` ,
`managed_by_composer` AS managedByComposer ,
composer_name as composerName
FROM `plugin`
ORDER BY `installed_at` ;
SELECT
`name` ,
`base_class` AS baseClass ,
IF (`active` = 1 AND `installed_at` IS NOT NULL , 1 , 0 ) AS active ,
`path` ,
`version` ,
`autoload` ,
`managed_by_composer` AS managedByComposer ,
composer_name as composerName
FROM `plugin`
ORDER BY `installed_at` ; ;
Copy
2
0.10 ms
SELECT `key` , `value` FROM `app_config`
SELECT `key` , `value` FROM `app_config` ;
Copy
3
0.15 ms
SELECT custom_entity . name , custom_entity . fields , custom_entity . flags
FROM custom_entity
LEFT JOIN app ON app . id = custom_entity . app_id
WHERE (custom_entity . app_id IS NULL OR app . active = 1 ) AND custom_entity . deleted_at IS NULL ;
SELECT custom_entity . name , custom_entity . fields , custom_entity . flags
FROM custom_entity
LEFT JOIN app ON app . id = custom_entity . app_id
WHERE (custom_entity . app_id IS NULL OR app . active = 1 ) AND custom_entity . deleted_at IS NULL ;
;
Copy
4
5.05 ms
SELECT CONCAT (TRIM (TRAILING '/' FROM domain . url ), '/' ) `key` , CONCAT (TRIM (TRAILING '/' FROM domain . url ), '/' ) url , LOWER (HEX (domain . id )) id , LOWER (HEX (sales_channel . id )) salesChannelId , LOWER (HEX (sales_channel . type_id )) typeId , LOWER (HEX (domain . snippet_set_id )) snippetSetId , LOWER (HEX (domain . currency_id )) currencyId , LOWER (HEX (domain . language_id )) languageId , LOWER (HEX (theme . id )) themeId , sales_channel . maintenance maintenance , sales_channel . maintenance_ip_whitelist maintenanceIpWhitelist , snippet_set . iso as locale , theme . technical_name as themeName , parentTheme . technical_name as parentThemeName FROM sales_channel INNER JOIN sales_channel_domain domain ON domain . sales_channel_id = sales_channel . id LEFT JOIN theme_sales_channel theme_sales_channel ON sales_channel . id = theme_sales_channel . sales_channel_id INNER JOIN snippet_set snippet_set ON snippet_set . id = domain . snippet_set_id LEFT JOIN theme theme ON theme_sales_channel . theme_id = theme . id LEFT JOIN theme parentTheme ON theme . parent_theme_id = parentTheme . id WHERE (sales_channel . type_id = UNHEX (? )) AND (sales_channel . active )
Parameters :
[
"8a243080f92e4c719546314b577cf82b "
]
SELECT CONCAT (TRIM (TRAILING '/' FROM domain . url ), '/' ) `key` , CONCAT (TRIM (TRAILING '/' FROM domain . url ), '/' ) url , LOWER (HEX (domain . id )) id , LOWER (HEX (sales_channel . id )) salesChannelId , LOWER (HEX (sales_channel . type_id )) typeId , LOWER (HEX (domain . snippet_set_id )) snippetSetId , LOWER (HEX (domain . currency_id )) currencyId , LOWER (HEX (domain . language_id )) languageId , LOWER (HEX (theme . id )) themeId , sales_channel . maintenance maintenance , sales_channel . maintenance_ip_whitelist maintenanceIpWhitelist , snippet_set . iso as locale , theme . technical_name as themeName , parentTheme . technical_name as parentThemeName FROM sales_channel INNER JOIN sales_channel_domain domain ON domain . sales_channel_id = sales_channel . id LEFT JOIN theme_sales_channel theme_sales_channel ON sales_channel . id = theme_sales_channel . sales_channel_id INNER JOIN snippet_set snippet_set ON snippet_set . id = domain . snippet_set_id LEFT JOIN theme theme ON theme_sales_channel . theme_id = theme . id LEFT JOIN theme parentTheme ON theme . parent_theme_id = parentTheme . id WHERE (sales_channel . type_id = UNHEX ('8a243080f92e4c719546314b577cf82b' )) AND (sales_channel . active );
Copy
5
0.30 ms
SELECT id , path_info pathInfo , is_canonical isCanonical , sales_channel_id salesChannelId FROM seo_url WHERE (language_id = ? ) AND ((sales_channel_id = ? OR sales_channel_id IS NULL )) AND ((seo_path_info = ? OR seo_path_info = ? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
"Zubehoer "
"Zubehoer/ "
]
SELECT id , path_info pathInfo , is_canonical isCanonical , sales_channel_id salesChannelId FROM seo_url WHERE (language_id = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) AND ((sales_channel_id = 0xCD6592C636AE4BF38378B01A9B31E46D OR sales_channel_id IS NULL )) AND ((seo_path_info = 'Zubehoer' OR seo_path_info = 'Zubehoer/' ));
Copy
6
0.29 ms
SELECT * FROM sales_channel_api_context WHERE (sales_channel_id = ? ) AND (token = ? ) LIMIT 1
Parameters :
[
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
"eDfaCmt7qVZcCjfV795EsUUlpUo4jeJX "
]
SELECT * FROM sales_channel_api_context WHERE (sales_channel_id = 0xCD6592C636AE4BF38378B01A9B31E46D ) AND (token = 'eDfaCmt7qVZcCjfV795EsUUlpUo4jeJX' ) LIMIT 1 ;
Copy
7
0.28 ms
SELECT
sales_channel . id as sales_channel_id ,
sales_channel . language_id as sales_channel_default_language_id ,
sales_channel . currency_id as sales_channel_currency_id ,
currency . factor as sales_channel_currency_factor ,
GROUP_CONCAT (LOWER (HEX (sales_channel_language . language_id ))) as sales_channel_language_ids
FROM sales_channel
INNER JOIN currency
ON sales_channel . currency_id = currency . id
LEFT JOIN sales_channel_language
ON sales_channel_language . sales_channel_id = sales_channel . id
WHERE sales_channel . id = ?
GROUP BY sales_channel . id , sales_channel . language_id , sales_channel . currency_id , currency . factor
Parameters :
[
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
]
SELECT
sales_channel . id as sales_channel_id ,
sales_channel . language_id as sales_channel_default_language_id ,
sales_channel . currency_id as sales_channel_currency_id ,
currency . factor as sales_channel_currency_factor ,
GROUP_CONCAT (LOWER (HEX (sales_channel_language . language_id ))) as sales_channel_language_ids
FROM sales_channel
INNER JOIN currency
ON sales_channel . currency_id = currency . id
LEFT JOIN sales_channel_language
ON sales_channel_language . sales_channel_id = sales_channel . id
WHERE sales_channel . id = 0xCD6592C636AE4BF38378B01A9B31E46D
GROUP BY sales_channel . id , sales_channel . language_id , sales_channel . currency_id , currency . factor ;
Copy
8
1.66 ms
SELECT `sales_channel` . `id` as `sales_channel.id` , `sales_channel` . `type_id` as `sales_channel.typeId` , `sales_channel` . `language_id` as `sales_channel.languageId` , `sales_channel` . `customer_group_id` as `sales_channel.customerGroupId` , `sales_channel` . `currency_id` as `sales_channel.currencyId` , `sales_channel` . `payment_method_id` as `sales_channel.paymentMethodId` , `sales_channel` . `shipping_method_id` as `sales_channel.shippingMethodId` , `sales_channel` . `country_id` as `sales_channel.countryId` , `sales_channel` . `analytics_id` as `sales_channel.analyticsId` , `sales_channel` . `navigation_category_id` as `sales_channel.navigationCategoryId` , `sales_channel` . `navigation_category_version_id` as `sales_channel.navigationCategoryVersionId` , `sales_channel` . `navigation_category_depth` as `sales_channel.navigationCategoryDepth` , `sales_channel` . `footer_category_id` as `sales_channel.footerCategoryId` , `sales_channel` . `footer_category_version_id` as `sales_channel.footerCategoryVersionId` , `sales_channel` . `service_category_id` as `sales_channel.serviceCategoryId` , `sales_channel` . `service_category_version_id` as `sales_channel.serviceCategoryVersionId` , `sales_channel` . `mail_header_footer_id` as `sales_channel.mailHeaderFooterId` , `sales_channel` . `hreflang_default_domain_id` as `sales_channel.hreflangDefaultDomainId` , `sales_channel` . `measurement_units` as `sales_channel.measurementUnits` , `sales_channel` . `short_name` as `sales_channel.shortName` , `sales_channel` . `tax_calculation_type` as `sales_channel.taxCalculationType` , `sales_channel` . `access_key` as `sales_channel.accessKey` , `sales_channel` . `configuration` as `sales_channel.configuration` , `sales_channel` . `active` as `sales_channel.active` , `sales_channel` . `hreflang_active` as `sales_channel.hreflangActive` , `sales_channel` . `maintenance` as `sales_channel.maintenance` , `sales_channel` . `maintenance_ip_whitelist` as `sales_channel.maintenanceIpWhitelist` , `sales_channel` . `payment_method_ids` as `sales_channel.paymentMethodIds` , `sales_channel` . `home_cms_page_id` as `sales_channel.homeCmsPageId` , `sales_channel` . `home_cms_page_version_id` as `sales_channel.homeCmsPageVersionId` , `sales_channel` . `created_at` as `sales_channel.createdAt` , `sales_channel` . `updated_at` as `sales_channel.updatedAt` , `sales_channel.currency` . `id` as `sales_channel.currency.id` , `sales_channel.currency` . `factor` as `sales_channel.currency.factor` , `sales_channel.currency` . `symbol` as `sales_channel.currency.symbol` , `sales_channel.currency` . `iso_code` as `sales_channel.currency.isoCode` , `sales_channel.currency` . `position` as `sales_channel.currency.position` , `sales_channel.currency` . `tax_free_from` as `sales_channel.currency.taxFreeFrom` , `sales_channel.currency` . `item_rounding` as `sales_channel.currency.itemRounding` , `sales_channel.currency` . `total_rounding` as `sales_channel.currency.totalRounding` , `sales_channel.currency` . `created_at` as `sales_channel.currency.createdAt` , `sales_channel.currency` . `updated_at` as `sales_channel.currency.updatedAt` , `sales_channel.currency.translation.shortName` , `sales_channel.currency.translation.shortName` as `sales_channel.currency.shortName` , `sales_channel.currency.translation.name` , `sales_channel.currency.translation.name` as `sales_channel.currency.name` , `sales_channel.currency.translation.customFields` , `sales_channel.currency.translation.customFields` as `sales_channel.currency.customFields` , `sales_channel.translation.name` , `sales_channel.translation.name` as `sales_channel.name` , `sales_channel.translation.homeSlotConfig` , `sales_channel.translation.homeSlotConfig` as `sales_channel.homeSlotConfig` , `sales_channel.translation.homeEnabled` , `sales_channel.translation.homeEnabled` as `sales_channel.homeEnabled` , `sales_channel.translation.homeName` , `sales_channel.translation.homeName` as `sales_channel.homeName` , `sales_channel.translation.homeMetaTitle` , `sales_channel.translation.homeMetaTitle` as `sales_channel.homeMetaTitle` , `sales_channel.translation.homeMetaDescription` , `sales_channel.translation.homeMetaDescription` as `sales_channel.homeMetaDescription` , `sales_channel.translation.homeKeywords` , `sales_channel.translation.homeKeywords` as `sales_channel.homeKeywords` , `sales_channel.translation.customFields` , `sales_channel.translation.customFields` as `sales_channel.customFields` FROM `sales_channel` LEFT JOIN `currency` `sales_channel.currency` ON `sales_channel` . `currency_id` = `sales_channel.currency` . `id` LEFT JOIN (SELECT `sales_channel.translation` . `sales_channel_id` , `sales_channel.translation` . `name` as `sales_channel.translation.name` , `sales_channel.translation` . `custom_fields` as `sales_channel.translation.customFields` , `sales_channel.translation` . `home_slot_config` as `sales_channel.translation.homeSlotConfig` , `sales_channel.translation` . `home_enabled` as `sales_channel.translation.homeEnabled` , `sales_channel.translation` . `home_name` as `sales_channel.translation.homeName` , `sales_channel.translation` . `home_meta_title` as `sales_channel.translation.homeMetaTitle` , `sales_channel.translation` . `home_meta_description` as `sales_channel.translation.homeMetaDescription` , `sales_channel.translation` . `home_keywords` as `sales_channel.translation.homeKeywords` FROM `sales_channel_translation` `sales_channel.translation` WHERE `sales_channel.translation` . `language_id` = ? ) `sales_channel.sales_channel_translation` ON `sales_channel.sales_channel_translation` . `sales_channel_id` = `sales_channel` . `id` LEFT JOIN (SELECT `sales_channel.currency.translation` . `currency_id` , `sales_channel.currency.translation` . `short_name` as `sales_channel.currency.translation.shortName` , `sales_channel.currency.translation` . `name` as `sales_channel.currency.translation.name` , `sales_channel.currency.translation` . `custom_fields` as `sales_channel.currency.translation.customFields` FROM `currency_translation` `sales_channel.currency.translation` WHERE `sales_channel.currency.translation` . `language_id` = ? ) `sales_channel.currency.currency_translation` ON `sales_channel.currency.currency_translation` . `currency_id` = `sales_channel.currency` . `id` WHERE `sales_channel` . `id` IN (? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
]
SELECT
`sales_channel` . `id` as `sales_channel.id` ,
`sales_channel` . `type_id` as `sales_channel.typeId` ,
`sales_channel` . `language_id` as `sales_channel.languageId` ,
`sales_channel` . `customer_group_id` as `sales_channel.customerGroupId` ,
`sales_channel` . `currency_id` as `sales_channel.currencyId` ,
`sales_channel` . `payment_method_id` as `sales_channel.paymentMethodId` ,
`sales_channel` . `shipping_method_id` as `sales_channel.shippingMethodId` ,
`sales_channel` . `country_id` as `sales_channel.countryId` ,
`sales_channel` . `analytics_id` as `sales_channel.analyticsId` ,
`sales_channel` . `navigation_category_id` as `sales_channel.navigationCategoryId` ,
`sales_channel` . `navigation_category_version_id` as `sales_channel.navigationCategoryVersionId` ,
`sales_channel` . `navigation_category_depth` as `sales_channel.navigationCategoryDepth` ,
`sales_channel` . `footer_category_id` as `sales_channel.footerCategoryId` ,
`sales_channel` . `footer_category_version_id` as `sales_channel.footerCategoryVersionId` ,
`sales_channel` . `service_category_id` as `sales_channel.serviceCategoryId` ,
`sales_channel` . `service_category_version_id` as `sales_channel.serviceCategoryVersionId` ,
`sales_channel` . `mail_header_footer_id` as `sales_channel.mailHeaderFooterId` ,
`sales_channel` . `hreflang_default_domain_id` as `sales_channel.hreflangDefaultDomainId` ,
`sales_channel` . `measurement_units` as `sales_channel.measurementUnits` ,
`sales_channel` . `short_name` as `sales_channel.shortName` ,
`sales_channel` . `tax_calculation_type` as `sales_channel.taxCalculationType` ,
`sales_channel` . `access_key` as `sales_channel.accessKey` ,
`sales_channel` . `configuration` as `sales_channel.configuration` ,
`sales_channel` . `active` as `sales_channel.active` ,
`sales_channel` . `hreflang_active` as `sales_channel.hreflangActive` ,
`sales_channel` . `maintenance` as `sales_channel.maintenance` ,
`sales_channel` . `maintenance_ip_whitelist` as `sales_channel.maintenanceIpWhitelist` ,
`sales_channel` . `payment_method_ids` as `sales_channel.paymentMethodIds` ,
`sales_channel` . `home_cms_page_id` as `sales_channel.homeCmsPageId` ,
`sales_channel` . `home_cms_page_version_id` as `sales_channel.homeCmsPageVersionId` ,
`sales_channel` . `created_at` as `sales_channel.createdAt` ,
`sales_channel` . `updated_at` as `sales_channel.updatedAt` ,
`sales_channel.currency` . `id` as `sales_channel.currency.id` ,
`sales_channel.currency` . `factor` as `sales_channel.currency.factor` ,
`sales_channel.currency` . `symbol` as `sales_channel.currency.symbol` ,
`sales_channel.currency` . `iso_code` as `sales_channel.currency.isoCode` ,
`sales_channel.currency` . `position` as `sales_channel.currency.position` ,
`sales_channel.currency` . `tax_free_from` as `sales_channel.currency.taxFreeFrom` ,
`sales_channel.currency` . `item_rounding` as `sales_channel.currency.itemRounding` ,
`sales_channel.currency` . `total_rounding` as `sales_channel.currency.totalRounding` ,
`sales_channel.currency` . `created_at` as `sales_channel.currency.createdAt` ,
`sales_channel.currency` . `updated_at` as `sales_channel.currency.updatedAt` ,
`sales_channel.currency.translation.shortName` ,
`sales_channel.currency.translation.shortName` as `sales_channel.currency.shortName` ,
`sales_channel.currency.translation.name` ,
`sales_channel.currency.translation.name` as `sales_channel.currency.name` ,
`sales_channel.currency.translation.customFields` ,
`sales_channel.currency.translation.customFields` as `sales_channel.currency.customFields` ,
`sales_channel.translation.name` ,
`sales_channel.translation.name` as `sales_channel.name` ,
`sales_channel.translation.homeSlotConfig` ,
`sales_channel.translation.homeSlotConfig` as `sales_channel.homeSlotConfig` ,
`sales_channel.translation.homeEnabled` ,
`sales_channel.translation.homeEnabled` as `sales_channel.homeEnabled` ,
`sales_channel.translation.homeName` ,
`sales_channel.translation.homeName` as `sales_channel.homeName` ,
`sales_channel.translation.homeMetaTitle` ,
`sales_channel.translation.homeMetaTitle` as `sales_channel.homeMetaTitle` ,
`sales_channel.translation.homeMetaDescription` ,
`sales_channel.translation.homeMetaDescription` as `sales_channel.homeMetaDescription` ,
`sales_channel.translation.homeKeywords` ,
`sales_channel.translation.homeKeywords` as `sales_channel.homeKeywords` ,
`sales_channel.translation.customFields` ,
`sales_channel.translation.customFields` as `sales_channel.customFields`
FROM
`sales_channel`
LEFT JOIN `currency` `sales_channel.currency` ON `sales_channel` . `currency_id` = `sales_channel.currency` . `id`
LEFT JOIN (
SELECT
`sales_channel.translation` . `sales_channel_id` ,
`sales_channel.translation` . `name` as `sales_channel.translation.name` ,
`sales_channel.translation` . `custom_fields` as `sales_channel.translation.customFields` ,
`sales_channel.translation` . `home_slot_config` as `sales_channel.translation.homeSlotConfig` ,
`sales_channel.translation` . `home_enabled` as `sales_channel.translation.homeEnabled` ,
`sales_channel.translation` . `home_name` as `sales_channel.translation.homeName` ,
`sales_channel.translation` . `home_meta_title` as `sales_channel.translation.homeMetaTitle` ,
`sales_channel.translation` . `home_meta_description` as `sales_channel.translation.homeMetaDescription` ,
`sales_channel.translation` . `home_keywords` as `sales_channel.translation.homeKeywords`
FROM
`sales_channel_translation` `sales_channel.translation`
WHERE
`sales_channel.translation` . `language_id` = ?
) `sales_channel.sales_channel_translation` ON `sales_channel.sales_channel_translation` . `sales_channel_id` = `sales_channel` . `id`
LEFT JOIN (
SELECT
`sales_channel.currency.translation` . `currency_id` ,
`sales_channel.currency.translation` . `short_name` as `sales_channel.currency.translation.shortName` ,
`sales_channel.currency.translation` . `name` as `sales_channel.currency.translation.name` ,
`sales_channel.currency.translation` . `custom_fields` as `sales_channel.currency.translation.customFields`
FROM
`currency_translation` `sales_channel.currency.translation`
WHERE
`sales_channel.currency.translation` . `language_id` = ?
) `sales_channel.currency.currency_translation` ON `sales_channel.currency.currency_translation` . `currency_id` = `sales_channel.currency` . `id`
WHERE
`sales_channel` . `id` IN (? )
Copy
SELECT `sales_channel` . `id` as `sales_channel.id` , `sales_channel` . `type_id` as `sales_channel.typeId` , `sales_channel` . `language_id` as `sales_channel.languageId` , `sales_channel` . `customer_group_id` as `sales_channel.customerGroupId` , `sales_channel` . `currency_id` as `sales_channel.currencyId` , `sales_channel` . `payment_method_id` as `sales_channel.paymentMethodId` , `sales_channel` . `shipping_method_id` as `sales_channel.shippingMethodId` , `sales_channel` . `country_id` as `sales_channel.countryId` , `sales_channel` . `analytics_id` as `sales_channel.analyticsId` , `sales_channel` . `navigation_category_id` as `sales_channel.navigationCategoryId` , `sales_channel` . `navigation_category_version_id` as `sales_channel.navigationCategoryVersionId` , `sales_channel` . `navigation_category_depth` as `sales_channel.navigationCategoryDepth` , `sales_channel` . `footer_category_id` as `sales_channel.footerCategoryId` , `sales_channel` . `footer_category_version_id` as `sales_channel.footerCategoryVersionId` , `sales_channel` . `service_category_id` as `sales_channel.serviceCategoryId` , `sales_channel` . `service_category_version_id` as `sales_channel.serviceCategoryVersionId` , `sales_channel` . `mail_header_footer_id` as `sales_channel.mailHeaderFooterId` , `sales_channel` . `hreflang_default_domain_id` as `sales_channel.hreflangDefaultDomainId` , `sales_channel` . `measurement_units` as `sales_channel.measurementUnits` , `sales_channel` . `short_name` as `sales_channel.shortName` , `sales_channel` . `tax_calculation_type` as `sales_channel.taxCalculationType` , `sales_channel` . `access_key` as `sales_channel.accessKey` , `sales_channel` . `configuration` as `sales_channel.configuration` , `sales_channel` . `active` as `sales_channel.active` , `sales_channel` . `hreflang_active` as `sales_channel.hreflangActive` , `sales_channel` . `maintenance` as `sales_channel.maintenance` , `sales_channel` . `maintenance_ip_whitelist` as `sales_channel.maintenanceIpWhitelist` , `sales_channel` . `payment_method_ids` as `sales_channel.paymentMethodIds` , `sales_channel` . `home_cms_page_id` as `sales_channel.homeCmsPageId` , `sales_channel` . `home_cms_page_version_id` as `sales_channel.homeCmsPageVersionId` , `sales_channel` . `created_at` as `sales_channel.createdAt` , `sales_channel` . `updated_at` as `sales_channel.updatedAt` , `sales_channel.currency` . `id` as `sales_channel.currency.id` , `sales_channel.currency` . `factor` as `sales_channel.currency.factor` , `sales_channel.currency` . `symbol` as `sales_channel.currency.symbol` , `sales_channel.currency` . `iso_code` as `sales_channel.currency.isoCode` , `sales_channel.currency` . `position` as `sales_channel.currency.position` , `sales_channel.currency` . `tax_free_from` as `sales_channel.currency.taxFreeFrom` , `sales_channel.currency` . `item_rounding` as `sales_channel.currency.itemRounding` , `sales_channel.currency` . `total_rounding` as `sales_channel.currency.totalRounding` , `sales_channel.currency` . `created_at` as `sales_channel.currency.createdAt` , `sales_channel.currency` . `updated_at` as `sales_channel.currency.updatedAt` , `sales_channel.currency.translation.shortName` , `sales_channel.currency.translation.shortName` as `sales_channel.currency.shortName` , `sales_channel.currency.translation.name` , `sales_channel.currency.translation.name` as `sales_channel.currency.name` , `sales_channel.currency.translation.customFields` , `sales_channel.currency.translation.customFields` as `sales_channel.currency.customFields` , `sales_channel.translation.name` , `sales_channel.translation.name` as `sales_channel.name` , `sales_channel.translation.homeSlotConfig` , `sales_channel.translation.homeSlotConfig` as `sales_channel.homeSlotConfig` , `sales_channel.translation.homeEnabled` , `sales_channel.translation.homeEnabled` as `sales_channel.homeEnabled` , `sales_channel.translation.homeName` , `sales_channel.translation.homeName` as `sales_channel.homeName` , `sales_channel.translation.homeMetaTitle` , `sales_channel.translation.homeMetaTitle` as `sales_channel.homeMetaTitle` , `sales_channel.translation.homeMetaDescription` , `sales_channel.translation.homeMetaDescription` as `sales_channel.homeMetaDescription` , `sales_channel.translation.homeKeywords` , `sales_channel.translation.homeKeywords` as `sales_channel.homeKeywords` , `sales_channel.translation.customFields` , `sales_channel.translation.customFields` as `sales_channel.customFields` FROM `sales_channel` LEFT JOIN `currency` `sales_channel.currency` ON `sales_channel` . `currency_id` = `sales_channel.currency` . `id` LEFT JOIN (SELECT `sales_channel.translation` . `sales_channel_id` , `sales_channel.translation` . `name` as `sales_channel.translation.name` , `sales_channel.translation` . `custom_fields` as `sales_channel.translation.customFields` , `sales_channel.translation` . `home_slot_config` as `sales_channel.translation.homeSlotConfig` , `sales_channel.translation` . `home_enabled` as `sales_channel.translation.homeEnabled` , `sales_channel.translation` . `home_name` as `sales_channel.translation.homeName` , `sales_channel.translation` . `home_meta_title` as `sales_channel.translation.homeMetaTitle` , `sales_channel.translation` . `home_meta_description` as `sales_channel.translation.homeMetaDescription` , `sales_channel.translation` . `home_keywords` as `sales_channel.translation.homeKeywords` FROM `sales_channel_translation` `sales_channel.translation` WHERE `sales_channel.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `sales_channel.sales_channel_translation` ON `sales_channel.sales_channel_translation` . `sales_channel_id` = `sales_channel` . `id` LEFT JOIN (SELECT `sales_channel.currency.translation` . `currency_id` , `sales_channel.currency.translation` . `short_name` as `sales_channel.currency.translation.shortName` , `sales_channel.currency.translation` . `name` as `sales_channel.currency.translation.name` , `sales_channel.currency.translation` . `custom_fields` as `sales_channel.currency.translation.customFields` FROM `currency_translation` `sales_channel.currency.translation` WHERE `sales_channel.currency.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `sales_channel.currency.currency_translation` ON `sales_channel.currency.currency_translation` . `currency_id` = `sales_channel.currency` . `id` WHERE `sales_channel` . `id` IN (0xCD6592C636AE4BF38378B01A9B31E46D );
Copy
9
0.16 ms
SELECT `sales_channel_domain` . `id` as `sales_channel_domain.id` , `sales_channel_domain` . `url` as `sales_channel_domain.url` , `sales_channel_domain` . `sales_channel_id` as `sales_channel_domain.salesChannelId` , `sales_channel_domain` . `language_id` as `sales_channel_domain.languageId` , `sales_channel_domain` . `currency_id` as `sales_channel_domain.currencyId` , `sales_channel_domain` . `snippet_set_id` as `sales_channel_domain.snippetSetId` , `sales_channel_domain` . `measurement_units` as `sales_channel_domain.measurementUnits` , `sales_channel_domain` . `hreflang_use_only_locale` as `sales_channel_domain.hreflangUseOnlyLocale` , `sales_channel_domain` . `custom_fields` as `sales_channel_domain.customFields` , `sales_channel_domain` . `created_at` as `sales_channel_domain.createdAt` , `sales_channel_domain` . `updated_at` as `sales_channel_domain.updatedAt` FROM `sales_channel_domain` WHERE ((`sales_channel_domain` . `sales_channel_id` IN (? )))
Parameters :
[
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
]
SELECT `sales_channel_domain` . `id` as `sales_channel_domain.id` , `sales_channel_domain` . `url` as `sales_channel_domain.url` , `sales_channel_domain` . `sales_channel_id` as `sales_channel_domain.salesChannelId` , `sales_channel_domain` . `language_id` as `sales_channel_domain.languageId` , `sales_channel_domain` . `currency_id` as `sales_channel_domain.currencyId` , `sales_channel_domain` . `snippet_set_id` as `sales_channel_domain.snippetSetId` , `sales_channel_domain` . `measurement_units` as `sales_channel_domain.measurementUnits` , `sales_channel_domain` . `hreflang_use_only_locale` as `sales_channel_domain.hreflangUseOnlyLocale` , `sales_channel_domain` . `custom_fields` as `sales_channel_domain.customFields` , `sales_channel_domain` . `created_at` as `sales_channel_domain.createdAt` , `sales_channel_domain` . `updated_at` as `sales_channel_domain.updatedAt` FROM `sales_channel_domain` WHERE ((`sales_channel_domain` . `sales_channel_id` IN (0xCD6592C636AE4BF38378B01A9B31E46D )));
Copy
10
0.37 ms
SELECT LOWER (HEX (`language.salesChannels.mapping` . `sales_channel_id` )) as `key` , GROUP_CONCAT (LOWER (HEX (`language.salesChannels.mapping` . `language_id` )) ) as `value` FROM `language` LEFT JOIN `sales_channel_language` `language.salesChannels.mapping` ON `language.salesChannels.mapping` . `language_id` = `language` . id WHERE ((`language` . `id` = ? )) AND (`language.salesChannels.mapping` . `sales_channel_id` IN (? )) GROUP BY `language.salesChannels.mapping` . `sales_channel_id`
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
]
SELECT LOWER (HEX (`language.salesChannels.mapping` . `sales_channel_id` )) as `key` , GROUP_CONCAT (LOWER (HEX (`language.salesChannels.mapping` . `language_id` )) ) as `value` FROM `language` LEFT JOIN `sales_channel_language` `language.salesChannels.mapping` ON `language.salesChannels.mapping` . `language_id` = `language` . id WHERE ((`language` . `id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B )) AND (`language.salesChannels.mapping` . `sales_channel_id` IN (0xCD6592C636AE4BF38378B01A9B31E46D )) GROUP BY `language.salesChannels.mapping` . `sales_channel_id` ;
Copy
11
2.07 ms
SELECT `language` . `id` as `language.id` , `language` . `parent_id` as `language.parentId` , `language` . `locale_id` as `language.localeId` , `language` . `translation_code_id` as `language.translationCodeId` , `language` . `name` as `language.name` , `language` . `active` as `language.active` , `language` . `custom_fields` as `language.customFields` , `language` . `created_at` as `language.createdAt` , `language` . `updated_at` as `language.updatedAt` , `language.translationCode` . `id` as `language.translationCode.id` , `language.translationCode` . `code` as `language.translationCode.code` , `language.translationCode` . `created_at` as `language.translationCode.createdAt` , `language.translationCode` . `updated_at` as `language.translationCode.updatedAt` , `language.translationCode.translation.name` , `language.translationCode.translation.name` as `language.translationCode.name` , `language.translationCode.translation.territory` , `language.translationCode.translation.territory` as `language.translationCode.territory` , `language.translationCode.translation.customFields` , `language.translationCode.translation.customFields` as `language.translationCode.customFields` , `language.locale` . `id` as `language.locale.id` , `language.locale` . `code` as `language.locale.code` , `language.locale` . `created_at` as `language.locale.createdAt` , `language.locale` . `updated_at` as `language.locale.updatedAt` , `language.locale.translation.name` , `language.locale.translation.name` as `language.locale.name` , `language.locale.translation.territory` , `language.locale.translation.territory` as `language.locale.territory` , `language.locale.translation.customFields` , `language.locale.translation.customFields` as `language.locale.customFields` FROM `language` LEFT JOIN `locale` `language.translationCode` ON `language` . `translation_code_id` = `language.translationCode` . `id` LEFT JOIN `locale` `language.locale` ON `language` . `locale_id` = `language.locale` . `id` LEFT JOIN (SELECT `language.translationCode.translation` . `locale_id` , `language.translationCode.translation` . `name` as `language.translationCode.translation.name` , `language.translationCode.translation` . `territory` as `language.translationCode.translation.territory` , `language.translationCode.translation` . `custom_fields` as `language.translationCode.translation.customFields` FROM `locale_translation` `language.translationCode.translation` WHERE `language.translationCode.translation` . `language_id` = ? ) `language.translationCode.locale_translation` ON `language.translationCode.locale_translation` . `locale_id` = `language.translationCode` . `id` LEFT JOIN (SELECT `language.locale.translation` . `locale_id` , `language.locale.translation` . `name` as `language.locale.translation.name` , `language.locale.translation` . `territory` as `language.locale.translation.territory` , `language.locale.translation` . `custom_fields` as `language.locale.translation.customFields` FROM `locale_translation` `language.locale.translation` WHERE `language.locale.translation` . `language_id` = ? ) `language.locale.locale_translation` ON `language.locale.locale_translation` . `locale_id` = `language.locale` . `id` WHERE ((`language` . `id` = ? )) AND (`language` . `id` IN (? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
]
SELECT `language` . `id` as `language.id` , `language` . `parent_id` as `language.parentId` , `language` . `locale_id` as `language.localeId` , `language` . `translation_code_id` as `language.translationCodeId` , `language` . `name` as `language.name` , `language` . `active` as `language.active` , `language` . `custom_fields` as `language.customFields` , `language` . `created_at` as `language.createdAt` , `language` . `updated_at` as `language.updatedAt` , `language.translationCode` . `id` as `language.translationCode.id` , `language.translationCode` . `code` as `language.translationCode.code` , `language.translationCode` . `created_at` as `language.translationCode.createdAt` , `language.translationCode` . `updated_at` as `language.translationCode.updatedAt` , `language.translationCode.translation.name` , `language.translationCode.translation.name` as `language.translationCode.name` , `language.translationCode.translation.territory` , `language.translationCode.translation.territory` as `language.translationCode.territory` , `language.translationCode.translation.customFields` , `language.translationCode.translation.customFields` as `language.translationCode.customFields` , `language.locale` . `id` as `language.locale.id` , `language.locale` . `code` as `language.locale.code` , `language.locale` . `created_at` as `language.locale.createdAt` , `language.locale` . `updated_at` as `language.locale.updatedAt` , `language.locale.translation.name` , `language.locale.translation.name` as `language.locale.name` , `language.locale.translation.territory` , `language.locale.translation.territory` as `language.locale.territory` , `language.locale.translation.customFields` , `language.locale.translation.customFields` as `language.locale.customFields` FROM `language` LEFT JOIN `locale` `language.translationCode` ON `language` . `translation_code_id` = `language.translationCode` . `id` LEFT JOIN `locale` `language.locale` ON `language` . `locale_id` = `language.locale` . `id` LEFT JOIN (SELECT `language.translationCode.translation` . `locale_id` , `language.translationCode.translation` . `name` as `language.translationCode.translation.name` , `language.translationCode.translation` . `territory` as `language.translationCode.translation.territory` , `language.translationCode.translation` . `custom_fields` as `language.translationCode.translation.customFields` FROM `locale_translation` `language.translationCode.translation` WHERE `language.translationCode.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `language.translationCode.locale_translation` ON `language.translationCode.locale_translation` . `locale_id` = `language.translationCode` . `id` LEFT JOIN (SELECT `language.locale.translation` . `locale_id` , `language.locale.translation` . `name` as `language.locale.translation.name` , `language.locale.translation` . `territory` as `language.locale.translation.territory` , `language.locale.translation` . `custom_fields` as `language.locale.translation.customFields` FROM `locale_translation` `language.locale.translation` WHERE `language.locale.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `language.locale.locale_translation` ON `language.locale.locale_translation` . `locale_id` = `language.locale` . `id` WHERE ((`language` . `id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B )) AND (`language` . `id` IN (0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ));
Copy
12
0.22 ms
SELECT `currency` . `id` as `currency.id` , `currency` . `factor` as `currency.factor` , `currency` . `symbol` as `currency.symbol` , `currency` . `iso_code` as `currency.isoCode` , `currency` . `position` as `currency.position` , `currency` . `tax_free_from` as `currency.taxFreeFrom` , `currency` . `item_rounding` as `currency.itemRounding` , `currency` . `total_rounding` as `currency.totalRounding` , `currency` . `created_at` as `currency.createdAt` , `currency` . `updated_at` as `currency.updatedAt` , `currency.translation.shortName` , `currency.translation.shortName` as `currency.shortName` , `currency.translation.name` , `currency.translation.name` as `currency.name` , `currency.translation.customFields` , `currency.translation.customFields` as `currency.customFields` FROM `currency` LEFT JOIN (SELECT `currency.translation` . `currency_id` , `currency.translation` . `short_name` as `currency.translation.shortName` , `currency.translation` . `name` as `currency.translation.name` , `currency.translation` . `custom_fields` as `currency.translation.customFields` FROM `currency_translation` `currency.translation` WHERE `currency.translation` . `language_id` = ? ) `currency.currency_translation` ON `currency.currency_translation` . `currency_id` = `currency` . `id` WHERE `currency` . `id` IN (? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"·ÒUK\f èGÍ‚ó¬›ÑÀßÊ "
]
SELECT `currency` . `id` as `currency.id` , `currency` . `factor` as `currency.factor` , `currency` . `symbol` as `currency.symbol` , `currency` . `iso_code` as `currency.isoCode` , `currency` . `position` as `currency.position` , `currency` . `tax_free_from` as `currency.taxFreeFrom` , `currency` . `item_rounding` as `currency.itemRounding` , `currency` . `total_rounding` as `currency.totalRounding` , `currency` . `created_at` as `currency.createdAt` , `currency` . `updated_at` as `currency.updatedAt` , `currency.translation.shortName` , `currency.translation.shortName` as `currency.shortName` , `currency.translation.name` , `currency.translation.name` as `currency.name` , `currency.translation.customFields` , `currency.translation.customFields` as `currency.customFields` FROM `currency` LEFT JOIN (SELECT `currency.translation` . `currency_id` , `currency.translation` . `short_name` as `currency.translation.shortName` , `currency.translation` . `name` as `currency.translation.name` , `currency.translation` . `custom_fields` as `currency.translation.customFields` FROM `currency_translation` `currency.translation` WHERE `currency.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `currency.currency_translation` ON `currency.currency_translation` . `currency_id` = `currency` . `id` WHERE `currency` . `id` IN (0xB7D2554B0CE847CD82F3AC9BD1C0DFCA );
Copy
13
2.95 ms
SELECT `country` . `id` as `country.id` , `country` . `iso` as `country.iso` , `country` . `position` as `country.position` , `country` . `active` as `country.active` , `country` . `shipping_available` as `country.shippingAvailable` , `country` . `iso3` as `country.iso3` , `country` . `display_state_in_registration` as `country.displayStateInRegistration` , `country` . `force_state_in_registration` as `country.forceStateInRegistration` , `country` . `check_vat_id_pattern` as `country.checkVatIdPattern` , `country` . `vat_id_required` as `country.vatIdRequired` , `country` . `vat_id_pattern` as `country.vatIdPattern` , `country` . `customer_tax` as `country.customerTax` , `country` . `company_tax` as `country.companyTax` , `country` . `postal_code_required` as `country.postalCodeRequired` , `country` . `check_postal_code_pattern` as `country.checkPostalCodePattern` , `country` . `check_advanced_postal_code_pattern` as `country.checkAdvancedPostalCodePattern` , `country` . `advanced_postal_code_pattern` as `country.advancedPostalCodePattern` , `country` . `default_postal_code_pattern` as `country.defaultPostalCodePattern` , `country` . `is_eu` as `country.isEu` , `country` . `created_at` as `country.createdAt` , `country` . `updated_at` as `country.updatedAt` , `country.translation.name` , `country.translation.name` as `country.name` , `country.translation.addressFormat` , `country.translation.addressFormat` as `country.addressFormat` , `country.translation.customFields` , `country.translation.customFields` as `country.customFields` FROM `country` LEFT JOIN (SELECT `country.translation` . `country_id` , `country.translation` . `name` as `country.translation.name` , `country.translation` . `custom_fields` as `country.translation.customFields` , `country.translation` . `address_format` as `country.translation.addressFormat` FROM `country_translation` `country.translation` WHERE `country.translation` . `language_id` = ? ) `country.country_translation` ON `country.country_translation` . `country_id` = `country` . `id` WHERE `country` . `id` IN (? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"Å\x08 ×PÉVKÿ»IQ\x1E øP\x08 r "
]
SELECT `country` . `id` as `country.id` , `country` . `iso` as `country.iso` , `country` . `position` as `country.position` , `country` . `active` as `country.active` , `country` . `shipping_available` as `country.shippingAvailable` , `country` . `iso3` as `country.iso3` , `country` . `display_state_in_registration` as `country.displayStateInRegistration` , `country` . `force_state_in_registration` as `country.forceStateInRegistration` , `country` . `check_vat_id_pattern` as `country.checkVatIdPattern` , `country` . `vat_id_required` as `country.vatIdRequired` , `country` . `vat_id_pattern` as `country.vatIdPattern` , `country` . `customer_tax` as `country.customerTax` , `country` . `company_tax` as `country.companyTax` , `country` . `postal_code_required` as `country.postalCodeRequired` , `country` . `check_postal_code_pattern` as `country.checkPostalCodePattern` , `country` . `check_advanced_postal_code_pattern` as `country.checkAdvancedPostalCodePattern` , `country` . `advanced_postal_code_pattern` as `country.advancedPostalCodePattern` , `country` . `default_postal_code_pattern` as `country.defaultPostalCodePattern` , `country` . `is_eu` as `country.isEu` , `country` . `created_at` as `country.createdAt` , `country` . `updated_at` as `country.updatedAt` , `country.translation.name` , `country.translation.name` as `country.name` , `country.translation.addressFormat` , `country.translation.addressFormat` as `country.addressFormat` , `country.translation.customFields` , `country.translation.customFields` as `country.customFields` FROM `country` LEFT JOIN (SELECT `country.translation` . `country_id` , `country.translation` . `name` as `country.translation.name` , `country.translation` . `custom_fields` as `country.translation.customFields` , `country.translation` . `address_format` as `country.translation.addressFormat` FROM `country_translation` `country.translation` WHERE `country.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `country.country_translation` ON `country.country_translation` . `country_id` = `country` . `id` WHERE `country` . `id` IN (0xC508D750C9564BFFBB49511EF8500872 );
Copy
14
1.32 ms
SELECT `customer_group` . `id` as `customer_group.id` , `customer_group` . `display_gross` as `customer_group.displayGross` , `customer_group` . `registration_active` as `customer_group.registrationActive` , `customer_group` . `created_at` as `customer_group.createdAt` , `customer_group` . `updated_at` as `customer_group.updatedAt` , `customer_group.translation.name` , `customer_group.translation.name` as `customer_group.name` , `customer_group.translation.registrationTitle` , `customer_group.translation.registrationTitle` as `customer_group.registrationTitle` , `customer_group.translation.registrationIntroduction` , `customer_group.translation.registrationIntroduction` as `customer_group.registrationIntroduction` , `customer_group.translation.registrationOnlyCompanyRegistration` , `customer_group.translation.registrationOnlyCompanyRegistration` as `customer_group.registrationOnlyCompanyRegistration` , `customer_group.translation.registrationSeoMetaDescription` , `customer_group.translation.registrationSeoMetaDescription` as `customer_group.registrationSeoMetaDescription` , `customer_group.translation.customFields` , `customer_group.translation.customFields` as `customer_group.customFields` FROM `customer_group` LEFT JOIN (SELECT `customer_group.translation` . `customer_group_id` , `customer_group.translation` . `name` as `customer_group.translation.name` , `customer_group.translation` . `custom_fields` as `customer_group.translation.customFields` , `customer_group.translation` . `registration_title` as `customer_group.translation.registrationTitle` , `customer_group.translation` . `registration_introduction` as `customer_group.translation.registrationIntroduction` , `customer_group.translation` . `registration_only_company_registration` as `customer_group.translation.registrationOnlyCompanyRegistration` , `customer_group.translation` . `registration_seo_meta_description` as `customer_group.translation.registrationSeoMetaDescription` FROM `customer_group_translation` `customer_group.translation` WHERE `customer_group.translation` . `language_id` = ? ) `customer_group.customer_group_translation` ON `customer_group.customer_group_translation` . `customer_group_id` = `customer_group` . `id` WHERE `customer_group` . `id` IN (? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"²ÁÂÇ«5OU•€}bàgÖÆ "
]
SELECT `customer_group` . `id` as `customer_group.id` , `customer_group` . `display_gross` as `customer_group.displayGross` , `customer_group` . `registration_active` as `customer_group.registrationActive` , `customer_group` . `created_at` as `customer_group.createdAt` , `customer_group` . `updated_at` as `customer_group.updatedAt` , `customer_group.translation.name` , `customer_group.translation.name` as `customer_group.name` , `customer_group.translation.registrationTitle` , `customer_group.translation.registrationTitle` as `customer_group.registrationTitle` , `customer_group.translation.registrationIntroduction` , `customer_group.translation.registrationIntroduction` as `customer_group.registrationIntroduction` , `customer_group.translation.registrationOnlyCompanyRegistration` , `customer_group.translation.registrationOnlyCompanyRegistration` as `customer_group.registrationOnlyCompanyRegistration` , `customer_group.translation.registrationSeoMetaDescription` , `customer_group.translation.registrationSeoMetaDescription` as `customer_group.registrationSeoMetaDescription` , `customer_group.translation.customFields` , `customer_group.translation.customFields` as `customer_group.customFields` FROM `customer_group` LEFT JOIN (SELECT `customer_group.translation` . `customer_group_id` , `customer_group.translation` . `name` as `customer_group.translation.name` , `customer_group.translation` . `custom_fields` as `customer_group.translation.customFields` , `customer_group.translation` . `registration_title` as `customer_group.translation.registrationTitle` , `customer_group.translation` . `registration_introduction` as `customer_group.translation.registrationIntroduction` , `customer_group.translation` . `registration_only_company_registration` as `customer_group.translation.registrationOnlyCompanyRegistration` , `customer_group.translation` . `registration_seo_meta_description` as `customer_group.translation.registrationSeoMetaDescription` FROM `customer_group_translation` `customer_group.translation` WHERE `customer_group.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `customer_group.customer_group_translation` ON `customer_group.customer_group_translation` . `customer_group_id` = `customer_group` . `id` WHERE `customer_group` . `id` IN (0xB2C1C2C7AB354F5595807D62E067D6C6 );
Copy
15
0.11 ms
SELECT `tax` . `id` as `tax.id` , `tax` . `tax_rate` as `tax.taxRate` , `tax` . `name` as `tax.name` , `tax` . `position` as `tax.position` , `tax` . `custom_fields` as `tax.customFields` , `tax` . `created_at` as `tax.createdAt` , `tax` . `updated_at` as `tax.updatedAt` FROM `tax`
SELECT `tax` . `id` as `tax.id` , `tax` . `tax_rate` as `tax.taxRate` , `tax` . `name` as `tax.name` , `tax` . `position` as `tax.position` , `tax` . `custom_fields` as `tax.customFields` , `tax` . `created_at` as `tax.createdAt` , `tax` . `updated_at` as `tax.updatedAt` FROM `tax` ;
Copy
16
3.79 ms
SELECT `tax_rule` . `id` as `tax_rule.id` , `tax_rule` . `tax_rule_type_id` as `tax_rule.taxRuleTypeId` , `tax_rule` . `country_id` as `tax_rule.countryId` , `tax_rule` . `tax_rate` as `tax_rule.taxRate` , `tax_rule` . `data` as `tax_rule.data` , `tax_rule` . `tax_id` as `tax_rule.taxId` , `tax_rule` . `active_from` as `tax_rule.activeFrom` , `tax_rule` . `created_at` as `tax_rule.createdAt` , `tax_rule` . `updated_at` as `tax_rule.updatedAt` , `tax_rule.type` . `id` as `tax_rule.type.id` , `tax_rule.type` . `technical_name` as `tax_rule.type.technicalName` , `tax_rule.type` . `position` as `tax_rule.type.position` , `tax_rule.type` . `created_at` as `tax_rule.type.createdAt` , `tax_rule.type` . `updated_at` as `tax_rule.type.updatedAt` , `tax_rule.type.translation.typeName` , `tax_rule.type.translation.typeName` as `tax_rule.type.typeName` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule` . `tax_rule_type_id` = `tax_rule.type` . `id` LEFT JOIN (SELECT `tax_rule.type.translation` . `tax_rule_type_id` , `tax_rule.type.translation` . `type_name` as `tax_rule.type.translation.typeName` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation` . `language_id` = ? ) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation` . `tax_rule_type_id` = `tax_rule.type` . `id` WHERE ((`tax_rule` . `tax_id` IN (? , ? , ? )))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"q\\x1F #…ÁGg’\x18 ŸX\x12 •€8 "
b"¢SHÛOÓMã©ù-+\x06\x03 !¨ "
b"àl%ÚÇ@°€H%}ö°¤] "
]
SELECT `tax_rule` . `id` as `tax_rule.id` , `tax_rule` . `tax_rule_type_id` as `tax_rule.taxRuleTypeId` , `tax_rule` . `country_id` as `tax_rule.countryId` , `tax_rule` . `tax_rate` as `tax_rule.taxRate` , `tax_rule` . `data` as `tax_rule.data` , `tax_rule` . `tax_id` as `tax_rule.taxId` , `tax_rule` . `active_from` as `tax_rule.activeFrom` , `tax_rule` . `created_at` as `tax_rule.createdAt` , `tax_rule` . `updated_at` as `tax_rule.updatedAt` , `tax_rule.type` . `id` as `tax_rule.type.id` , `tax_rule.type` . `technical_name` as `tax_rule.type.technicalName` , `tax_rule.type` . `position` as `tax_rule.type.position` , `tax_rule.type` . `created_at` as `tax_rule.type.createdAt` , `tax_rule.type` . `updated_at` as `tax_rule.type.updatedAt` , `tax_rule.type.translation.typeName` , `tax_rule.type.translation.typeName` as `tax_rule.type.typeName` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule` . `tax_rule_type_id` = `tax_rule.type` . `id` LEFT JOIN (SELECT `tax_rule.type.translation` . `tax_rule_type_id` , `tax_rule.type.translation` . `type_name` as `tax_rule.type.translation.typeName` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation` . `tax_rule_type_id` = `tax_rule.type` . `id` WHERE ((`tax_rule` . `tax_id` IN (0x715C1F2385C1476792189F5812958038 , 0xA25348DB4FD34DE3A9F92D2B060321A8 , 0xE06C25DA81C740B08048257DF6B0A45D )));
Copy
17
1.99 ms
SELECT `payment_method` . `id` as `payment_method.id` , `payment_method` . `plugin_id` as `payment_method.pluginId` , `payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` , `payment_method` . `position` as `payment_method.position` , `payment_method` . `active` as `payment_method.active` , `payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` , `payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` , `payment_method` . `media_id` as `payment_method.mediaId` , `payment_method` . `technical_name` as `payment_method.technicalName` , `payment_method` . `created_at` as `payment_method.createdAt` , `payment_method` . `updated_at` as `payment_method.updatedAt` , `payment_method.media` . `id` as `payment_method.media.id` , `payment_method.media` . `user_id` as `payment_method.media.userId` , `payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` , `payment_method.media` . `mime_type` as `payment_method.media.mimeType` , `payment_method.media` . `file_extension` as `payment_method.media.fileExtension` , `payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` , `payment_method.media` . `file_name` as `payment_method.media.fileName` , `payment_method.media` . `file_size` as `payment_method.media.fileSize` , `payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` , `payment_method.media` . `meta_data` as `payment_method.media.metaData` , `payment_method.media` . `config` as `payment_method.media.config` , `payment_method.media` . `path` as `payment_method.media.path` , `payment_method.media` . `private` as `payment_method.media.private` , `payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` , `payment_method.media` . `file_hash` as `payment_method.media.fileHash` , `payment_method.media` . `created_at` as `payment_method.media.createdAt` , `payment_method.media` . `updated_at` as `payment_method.media.updatedAt` , `payment_method.media.translation.title` , `payment_method.media.translation.title` as `payment_method.media.title` , `payment_method.media.translation.alt` , `payment_method.media.translation.alt` as `payment_method.media.alt` , `payment_method.media.translation.customFields` , `payment_method.media.translation.customFields` as `payment_method.media.customFields` , `payment_method.appPaymentMethod` . `id` as `payment_method.appPaymentMethod.id` , `payment_method.appPaymentMethod` . `app_name` as `payment_method.appPaymentMethod.appName` , `payment_method.appPaymentMethod` . `identifier` as `payment_method.appPaymentMethod.identifier` , `payment_method.appPaymentMethod` . `pay_url` as `payment_method.appPaymentMethod.payUrl` , `payment_method.appPaymentMethod` . `finalize_url` as `payment_method.appPaymentMethod.finalizeUrl` , `payment_method.appPaymentMethod` . `validate_url` as `payment_method.appPaymentMethod.validateUrl` , `payment_method.appPaymentMethod` . `capture_url` as `payment_method.appPaymentMethod.captureUrl` , `payment_method.appPaymentMethod` . `refund_url` as `payment_method.appPaymentMethod.refundUrl` , `payment_method.appPaymentMethod` . `recurring_url` as `payment_method.appPaymentMethod.recurringUrl` , `payment_method.appPaymentMethod` . `app_id` as `payment_method.appPaymentMethod.appId` , `payment_method.appPaymentMethod` . `original_media_id` as `payment_method.appPaymentMethod.originalMediaId` , `payment_method.appPaymentMethod` . `payment_method_id` as `payment_method.appPaymentMethod.paymentMethodId` , `payment_method.appPaymentMethod` . `created_at` as `payment_method.appPaymentMethod.createdAt` , `payment_method.appPaymentMethod` . `updated_at` as `payment_method.appPaymentMethod.updatedAt` , `payment_method.translation.name` , `payment_method.translation.name` as `payment_method.name` , `payment_method.translation.distinguishableName` , `payment_method.translation.distinguishableName` as `payment_method.distinguishableName` , `payment_method.translation.description` , `payment_method.translation.description` as `payment_method.description` , `payment_method.translation.customFields` , `payment_method.translation.customFields` as `payment_method.customFields` FROM `payment_method` LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id` LEFT JOIN `app_payment_method` `payment_method.appPaymentMethod` ON `payment_method` . `id` = `payment_method.appPaymentMethod` . `payment_method_id` LEFT JOIN (SELECT `payment_method.translation` . `payment_method_id` , `payment_method.translation` . `name` as `payment_method.translation.name` , `payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` , `payment_method.translation` . `description` as `payment_method.translation.description` , `payment_method.translation` . `custom_fields` as `payment_method.translation.customFields` FROM `payment_method_translation` `payment_method.translation` WHERE `payment_method.translation` . `language_id` = ? ) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id` LEFT JOIN (SELECT `payment_method.media.translation` . `media_id` , `payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` , `payment_method.media.translation` . `title` as `payment_method.media.translation.title` , `payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields` FROM `media_translation` `payment_method.media.translation` WHERE `payment_method.media.translation` . `language_id` = ? ) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id` WHERE `payment_method` . `id` IN (? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"R\x1F t\r HªK5ŸÞh\x07 ÒñÜS "
]
SELECT
`payment_method` . `id` as `payment_method.id` ,
`payment_method` . `plugin_id` as `payment_method.pluginId` ,
`payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` ,
`payment_method` . `position` as `payment_method.position` ,
`payment_method` . `active` as `payment_method.active` ,
`payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` ,
`payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` ,
`payment_method` . `media_id` as `payment_method.mediaId` ,
`payment_method` . `technical_name` as `payment_method.technicalName` ,
`payment_method` . `created_at` as `payment_method.createdAt` ,
`payment_method` . `updated_at` as `payment_method.updatedAt` ,
`payment_method.media` . `id` as `payment_method.media.id` ,
`payment_method.media` . `user_id` as `payment_method.media.userId` ,
`payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` ,
`payment_method.media` . `mime_type` as `payment_method.media.mimeType` ,
`payment_method.media` . `file_extension` as `payment_method.media.fileExtension` ,
`payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` ,
`payment_method.media` . `file_name` as `payment_method.media.fileName` ,
`payment_method.media` . `file_size` as `payment_method.media.fileSize` ,
`payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` ,
`payment_method.media` . `meta_data` as `payment_method.media.metaData` ,
`payment_method.media` . `config` as `payment_method.media.config` ,
`payment_method.media` . `path` as `payment_method.media.path` ,
`payment_method.media` . `private` as `payment_method.media.private` ,
`payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` ,
`payment_method.media` . `file_hash` as `payment_method.media.fileHash` ,
`payment_method.media` . `created_at` as `payment_method.media.createdAt` ,
`payment_method.media` . `updated_at` as `payment_method.media.updatedAt` ,
`payment_method.media.translation.title` ,
`payment_method.media.translation.title` as `payment_method.media.title` ,
`payment_method.media.translation.alt` ,
`payment_method.media.translation.alt` as `payment_method.media.alt` ,
`payment_method.media.translation.customFields` ,
`payment_method.media.translation.customFields` as `payment_method.media.customFields` ,
`payment_method.appPaymentMethod` . `id` as `payment_method.appPaymentMethod.id` ,
`payment_method.appPaymentMethod` . `app_name` as `payment_method.appPaymentMethod.appName` ,
`payment_method.appPaymentMethod` . `identifier` as `payment_method.appPaymentMethod.identifier` ,
`payment_method.appPaymentMethod` . `pay_url` as `payment_method.appPaymentMethod.payUrl` ,
`payment_method.appPaymentMethod` . `finalize_url` as `payment_method.appPaymentMethod.finalizeUrl` ,
`payment_method.appPaymentMethod` . `validate_url` as `payment_method.appPaymentMethod.validateUrl` ,
`payment_method.appPaymentMethod` . `capture_url` as `payment_method.appPaymentMethod.captureUrl` ,
`payment_method.appPaymentMethod` . `refund_url` as `payment_method.appPaymentMethod.refundUrl` ,
`payment_method.appPaymentMethod` . `recurring_url` as `payment_method.appPaymentMethod.recurringUrl` ,
`payment_method.appPaymentMethod` . `app_id` as `payment_method.appPaymentMethod.appId` ,
`payment_method.appPaymentMethod` . `original_media_id` as `payment_method.appPaymentMethod.originalMediaId` ,
`payment_method.appPaymentMethod` . `payment_method_id` as `payment_method.appPaymentMethod.paymentMethodId` ,
`payment_method.appPaymentMethod` . `created_at` as `payment_method.appPaymentMethod.createdAt` ,
`payment_method.appPaymentMethod` . `updated_at` as `payment_method.appPaymentMethod.updatedAt` ,
`payment_method.translation.name` ,
`payment_method.translation.name` as `payment_method.name` ,
`payment_method.translation.distinguishableName` ,
`payment_method.translation.distinguishableName` as `payment_method.distinguishableName` ,
`payment_method.translation.description` ,
`payment_method.translation.description` as `payment_method.description` ,
`payment_method.translation.customFields` ,
`payment_method.translation.customFields` as `payment_method.customFields`
FROM
`payment_method`
LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id`
LEFT JOIN `app_payment_method` `payment_method.appPaymentMethod` ON `payment_method` . `id` = `payment_method.appPaymentMethod` . `payment_method_id`
LEFT JOIN (
SELECT
`payment_method.translation` . `payment_method_id` ,
`payment_method.translation` . `name` as `payment_method.translation.name` ,
`payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` ,
`payment_method.translation` . `description` as `payment_method.translation.description` ,
`payment_method.translation` . `custom_fields` as `payment_method.translation.customFields`
FROM
`payment_method_translation` `payment_method.translation`
WHERE
`payment_method.translation` . `language_id` = ?
) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id`
LEFT JOIN (
SELECT
`payment_method.media.translation` . `media_id` ,
`payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` ,
`payment_method.media.translation` . `title` as `payment_method.media.translation.title` ,
`payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields`
FROM
`media_translation` `payment_method.media.translation`
WHERE
`payment_method.media.translation` . `language_id` = ?
) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id`
WHERE
`payment_method` . `id` IN (? )
Copy
SELECT `payment_method` . `id` as `payment_method.id` , `payment_method` . `plugin_id` as `payment_method.pluginId` , `payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` , `payment_method` . `position` as `payment_method.position` , `payment_method` . `active` as `payment_method.active` , `payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` , `payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` , `payment_method` . `media_id` as `payment_method.mediaId` , `payment_method` . `technical_name` as `payment_method.technicalName` , `payment_method` . `created_at` as `payment_method.createdAt` , `payment_method` . `updated_at` as `payment_method.updatedAt` , `payment_method.media` . `id` as `payment_method.media.id` , `payment_method.media` . `user_id` as `payment_method.media.userId` , `payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` , `payment_method.media` . `mime_type` as `payment_method.media.mimeType` , `payment_method.media` . `file_extension` as `payment_method.media.fileExtension` , `payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` , `payment_method.media` . `file_name` as `payment_method.media.fileName` , `payment_method.media` . `file_size` as `payment_method.media.fileSize` , `payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` , `payment_method.media` . `meta_data` as `payment_method.media.metaData` , `payment_method.media` . `config` as `payment_method.media.config` , `payment_method.media` . `path` as `payment_method.media.path` , `payment_method.media` . `private` as `payment_method.media.private` , `payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` , `payment_method.media` . `file_hash` as `payment_method.media.fileHash` , `payment_method.media` . `created_at` as `payment_method.media.createdAt` , `payment_method.media` . `updated_at` as `payment_method.media.updatedAt` , `payment_method.media.translation.title` , `payment_method.media.translation.title` as `payment_method.media.title` , `payment_method.media.translation.alt` , `payment_method.media.translation.alt` as `payment_method.media.alt` , `payment_method.media.translation.customFields` , `payment_method.media.translation.customFields` as `payment_method.media.customFields` , `payment_method.appPaymentMethod` . `id` as `payment_method.appPaymentMethod.id` , `payment_method.appPaymentMethod` . `app_name` as `payment_method.appPaymentMethod.appName` , `payment_method.appPaymentMethod` . `identifier` as `payment_method.appPaymentMethod.identifier` , `payment_method.appPaymentMethod` . `pay_url` as `payment_method.appPaymentMethod.payUrl` , `payment_method.appPaymentMethod` . `finalize_url` as `payment_method.appPaymentMethod.finalizeUrl` , `payment_method.appPaymentMethod` . `validate_url` as `payment_method.appPaymentMethod.validateUrl` , `payment_method.appPaymentMethod` . `capture_url` as `payment_method.appPaymentMethod.captureUrl` , `payment_method.appPaymentMethod` . `refund_url` as `payment_method.appPaymentMethod.refundUrl` , `payment_method.appPaymentMethod` . `recurring_url` as `payment_method.appPaymentMethod.recurringUrl` , `payment_method.appPaymentMethod` . `app_id` as `payment_method.appPaymentMethod.appId` , `payment_method.appPaymentMethod` . `original_media_id` as `payment_method.appPaymentMethod.originalMediaId` , `payment_method.appPaymentMethod` . `payment_method_id` as `payment_method.appPaymentMethod.paymentMethodId` , `payment_method.appPaymentMethod` . `created_at` as `payment_method.appPaymentMethod.createdAt` , `payment_method.appPaymentMethod` . `updated_at` as `payment_method.appPaymentMethod.updatedAt` , `payment_method.translation.name` , `payment_method.translation.name` as `payment_method.name` , `payment_method.translation.distinguishableName` , `payment_method.translation.distinguishableName` as `payment_method.distinguishableName` , `payment_method.translation.description` , `payment_method.translation.description` as `payment_method.description` , `payment_method.translation.customFields` , `payment_method.translation.customFields` as `payment_method.customFields` FROM `payment_method` LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id` LEFT JOIN `app_payment_method` `payment_method.appPaymentMethod` ON `payment_method` . `id` = `payment_method.appPaymentMethod` . `payment_method_id` LEFT JOIN (SELECT `payment_method.translation` . `payment_method_id` , `payment_method.translation` . `name` as `payment_method.translation.name` , `payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` , `payment_method.translation` . `description` as `payment_method.translation.description` , `payment_method.translation` . `custom_fields` as `payment_method.translation.customFields` FROM `payment_method_translation` `payment_method.translation` WHERE `payment_method.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id` LEFT JOIN (SELECT `payment_method.media.translation` . `media_id` , `payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` , `payment_method.media.translation` . `title` as `payment_method.media.translation.title` , `payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields` FROM `media_translation` `payment_method.media.translation` WHERE `payment_method.media.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id` WHERE `payment_method` . `id` IN (0x521F740D48AA4B359FDE6807D2F1DC53 );
Copy
18
0.36 ms
SELECT `shipping_method` . `id` as `shipping_method.id` , `shipping_method` . `technical_name` as `shipping_method.technicalName` , `shipping_method` . `active` as `shipping_method.active` , `shipping_method` . `position` as `shipping_method.position` , `shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` , `shipping_method` . `media_id` as `shipping_method.mediaId` , `shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` , `shipping_method` . `tax_type` as `shipping_method.taxType` , `shipping_method` . `tax_id` as `shipping_method.taxId` , `shipping_method` . `created_at` as `shipping_method.createdAt` , `shipping_method` . `updated_at` as `shipping_method.updatedAt` , `shipping_method.media` . `id` as `shipping_method.media.id` , `shipping_method.media` . `user_id` as `shipping_method.media.userId` , `shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` , `shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` , `shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` , `shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` , `shipping_method.media` . `file_name` as `shipping_method.media.fileName` , `shipping_method.media` . `file_size` as `shipping_method.media.fileSize` , `shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` , `shipping_method.media` . `meta_data` as `shipping_method.media.metaData` , `shipping_method.media` . `config` as `shipping_method.media.config` , `shipping_method.media` . `path` as `shipping_method.media.path` , `shipping_method.media` . `private` as `shipping_method.media.private` , `shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` , `shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` , `shipping_method.media` . `created_at` as `shipping_method.media.createdAt` , `shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` , `shipping_method.media.translation.title` , `shipping_method.media.translation.title` as `shipping_method.media.title` , `shipping_method.media.translation.alt` , `shipping_method.media.translation.alt` as `shipping_method.media.alt` , `shipping_method.media.translation.customFields` , `shipping_method.media.translation.customFields` as `shipping_method.media.customFields` , `shipping_method.translation.name` , `shipping_method.translation.name` as `shipping_method.name` , `shipping_method.translation.description` , `shipping_method.translation.description` as `shipping_method.description` , `shipping_method.translation.trackingUrl` , `shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` , `shipping_method.translation.customFields` , `shipping_method.translation.customFields` as `shipping_method.customFields` FROM `shipping_method` LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id` LEFT JOIN (SELECT `shipping_method.translation` . `shipping_method_id` , `shipping_method.translation` . `name` as `shipping_method.translation.name` , `shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` , `shipping_method.translation` . `description` as `shipping_method.translation.description` , `shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl` FROM `shipping_method_translation` `shipping_method.translation` WHERE `shipping_method.translation` . `language_id` = ? ) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id` LEFT JOIN (SELECT `shipping_method.media.translation` . `media_id` , `shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` , `shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` , `shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields` FROM `media_translation` `shipping_method.media.translation` WHERE `shipping_method.media.translation` . `language_id` = ? ) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id` WHERE `shipping_method` . `id` IN (? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"¼\x07 “‡›Ll€R¯"‡™yb "
]
SELECT
`shipping_method` . `id` as `shipping_method.id` ,
`shipping_method` . `technical_name` as `shipping_method.technicalName` ,
`shipping_method` . `active` as `shipping_method.active` ,
`shipping_method` . `position` as `shipping_method.position` ,
`shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` ,
`shipping_method` . `media_id` as `shipping_method.mediaId` ,
`shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` ,
`shipping_method` . `tax_type` as `shipping_method.taxType` ,
`shipping_method` . `tax_id` as `shipping_method.taxId` ,
`shipping_method` . `created_at` as `shipping_method.createdAt` ,
`shipping_method` . `updated_at` as `shipping_method.updatedAt` ,
`shipping_method.media` . `id` as `shipping_method.media.id` ,
`shipping_method.media` . `user_id` as `shipping_method.media.userId` ,
`shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` ,
`shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` ,
`shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` ,
`shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` ,
`shipping_method.media` . `file_name` as `shipping_method.media.fileName` ,
`shipping_method.media` . `file_size` as `shipping_method.media.fileSize` ,
`shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` ,
`shipping_method.media` . `meta_data` as `shipping_method.media.metaData` ,
`shipping_method.media` . `config` as `shipping_method.media.config` ,
`shipping_method.media` . `path` as `shipping_method.media.path` ,
`shipping_method.media` . `private` as `shipping_method.media.private` ,
`shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` ,
`shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` ,
`shipping_method.media` . `created_at` as `shipping_method.media.createdAt` ,
`shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` ,
`shipping_method.media.translation.title` ,
`shipping_method.media.translation.title` as `shipping_method.media.title` ,
`shipping_method.media.translation.alt` ,
`shipping_method.media.translation.alt` as `shipping_method.media.alt` ,
`shipping_method.media.translation.customFields` ,
`shipping_method.media.translation.customFields` as `shipping_method.media.customFields` ,
`shipping_method.translation.name` ,
`shipping_method.translation.name` as `shipping_method.name` ,
`shipping_method.translation.description` ,
`shipping_method.translation.description` as `shipping_method.description` ,
`shipping_method.translation.trackingUrl` ,
`shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` ,
`shipping_method.translation.customFields` ,
`shipping_method.translation.customFields` as `shipping_method.customFields`
FROM
`shipping_method`
LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id`
LEFT JOIN (
SELECT
`shipping_method.translation` . `shipping_method_id` ,
`shipping_method.translation` . `name` as `shipping_method.translation.name` ,
`shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` ,
`shipping_method.translation` . `description` as `shipping_method.translation.description` ,
`shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl`
FROM
`shipping_method_translation` `shipping_method.translation`
WHERE
`shipping_method.translation` . `language_id` = ?
) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id`
LEFT JOIN (
SELECT
`shipping_method.media.translation` . `media_id` ,
`shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` ,
`shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` ,
`shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields`
FROM
`media_translation` `shipping_method.media.translation`
WHERE
`shipping_method.media.translation` . `language_id` = ?
) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id`
WHERE
`shipping_method` . `id` IN (? )
Copy
SELECT `shipping_method` . `id` as `shipping_method.id` , `shipping_method` . `technical_name` as `shipping_method.technicalName` , `shipping_method` . `active` as `shipping_method.active` , `shipping_method` . `position` as `shipping_method.position` , `shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` , `shipping_method` . `media_id` as `shipping_method.mediaId` , `shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` , `shipping_method` . `tax_type` as `shipping_method.taxType` , `shipping_method` . `tax_id` as `shipping_method.taxId` , `shipping_method` . `created_at` as `shipping_method.createdAt` , `shipping_method` . `updated_at` as `shipping_method.updatedAt` , `shipping_method.media` . `id` as `shipping_method.media.id` , `shipping_method.media` . `user_id` as `shipping_method.media.userId` , `shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` , `shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` , `shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` , `shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` , `shipping_method.media` . `file_name` as `shipping_method.media.fileName` , `shipping_method.media` . `file_size` as `shipping_method.media.fileSize` , `shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` , `shipping_method.media` . `meta_data` as `shipping_method.media.metaData` , `shipping_method.media` . `config` as `shipping_method.media.config` , `shipping_method.media` . `path` as `shipping_method.media.path` , `shipping_method.media` . `private` as `shipping_method.media.private` , `shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` , `shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` , `shipping_method.media` . `created_at` as `shipping_method.media.createdAt` , `shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` , `shipping_method.media.translation.title` , `shipping_method.media.translation.title` as `shipping_method.media.title` , `shipping_method.media.translation.alt` , `shipping_method.media.translation.alt` as `shipping_method.media.alt` , `shipping_method.media.translation.customFields` , `shipping_method.media.translation.customFields` as `shipping_method.media.customFields` , `shipping_method.translation.name` , `shipping_method.translation.name` as `shipping_method.name` , `shipping_method.translation.description` , `shipping_method.translation.description` as `shipping_method.description` , `shipping_method.translation.trackingUrl` , `shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` , `shipping_method.translation.customFields` , `shipping_method.translation.customFields` as `shipping_method.customFields` FROM `shipping_method` LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id` LEFT JOIN (SELECT `shipping_method.translation` . `shipping_method_id` , `shipping_method.translation` . `name` as `shipping_method.translation.name` , `shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` , `shipping_method.translation` . `description` as `shipping_method.translation.description` , `shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl` FROM `shipping_method_translation` `shipping_method.translation` WHERE `shipping_method.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id` LEFT JOIN (SELECT `shipping_method.media.translation` . `media_id` , `shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` , `shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` , `shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields` FROM `media_translation` `shipping_method.media.translation` WHERE `shipping_method.media.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id` WHERE `shipping_method` . `id` IN (0x90BC0793879B4C6C8052AF2287997962 );
Copy
19
1.18 ms
SELECT `currency_country_rounding` . `id` FROM `currency_country_rounding` WHERE (`currency_country_rounding` . `currency_id` = ? AND `currency_country_rounding` . `country_id` = ? ) LIMIT 1
Parameters :
[
b"·ÒUK\f èGÍ‚ó¬›ÑÀßÊ "
b"Å\x08 ×PÉVKÿ»IQ\x1E øP\x08 r "
]
SELECT `currency_country_rounding` . `id` FROM `currency_country_rounding` WHERE (`currency_country_rounding` . `currency_id` = 0xB7D2554B0CE847CD82F3AC9BD1C0DFCA AND `currency_country_rounding` . `country_id` = 0xC508D750C9564BFFBB49511EF8500872 ) LIMIT 1 ;
Copy
20
0.17 ms
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = ?
Parameters :
[
"eDfaCmt7qVZcCjfV795EsUUlpUo4jeJX "
]
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = 'eDfaCmt7qVZcCjfV795EsUUlpUo4jeJX' ;
Copy
21
10.12 ms
SELECT `rule` . `id` FROM `rule` WHERE (`rule` . `invalid` = ? ) ORDER BY `rule` . `priority` DESC , `rule` . `id` ASC LIMIT 500
SELECT `rule` . `id` FROM `rule` WHERE (`rule` . `invalid` = 0 ) ORDER BY `rule` . `priority` DESC , `rule` . `id` ASC LIMIT 500 ;
Copy
22
1.52 ms
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"""
\x17 \n
C\x7F 6ø@²—-ûrøæ¿b
"""
b"\x1E ›mÉ\v RG|·'÷ïeÆ]Ö "
b"8X•p\x16 dMä®HÀP\v óÌÈ "
b"""
[\n
Ì—\x17 ³I¤«óá;É߇¾
"""
b"¦.\x1F j\x1A\v E\x19 ¯@\e bp£qI "
b"¸Rs=·eO;‚°T•Ë!ÚW "
b"Ð[4\ÛyIgƒ\x12\x17 [ÄLKL "
b"á7Ž·€ŠG‘ž\r t\r ]l\x1A "
b"ï\x7F Ù.®S@I’\x06 €\x12 ¨.’‹ "
b"\x0F }È‘\x02 ÎJëŽ\r […?×Þ\x14 "
b"""
<õA6žmJ/§\n
¨hzeü-
"""
b"\x00\x06 9m\v ¨ž=1–ú:ÙÇuÎ "
b"\x00 vàLð!T6\x7F\x11 –ÆÿH!\x18 "
b"\x00 ¾çqùž€\x05 ùWUuíf"@ "
b"\x00 ü. %\v Ìn†/—`µKìù "
b"\x01\x17 e.c–ÖZù#¿Ö/ˆñ\x14 "
b"\x01 V<Ý™:F\t ƒrÛ‹g§y "
b"\x01 ¶àýxf5b÷æ\t äÏ^d "
b"\x02 ¡™Æ…R{O϶·ÀçB\x06 h "
b"\x03\x0E [sî6ÐD{\x0F "›K;\x17 · "
b"\x03 :`ÔÒ\x16 ]®\x0E vyàgg\x06 ‰ "
b"\x04\x0F <£¬\x18 Gh»ç\x1A î¨7\x01 … "
b"\x04 bi\x06 Á¼CL„\x12 µ\x07 ݇Í1 "
b"\x04 Ùä\x01 ¢×à“ý\x12 2%_¿ "
b"\x05\x19\t ^[çÌ\e ÷”Ð>OŠlÖ "
b"\x05 bÖ¯L\t ïØæÞ\x1F\x1D ‚ø¶o "
b"\x05 ²º\x14 M\x0F éÎgÚ!\x00 ´\x08 ê "
b"\x06 +_ÔkžS‡\x10 ~öw™~z) "
b"\x06 AÕ\x13 B¾‡ÊˆšÑì\x01 ;Ï "
b"\x06 íŠäÅ\v NÍ\x07 P*ª±‘i7 "
b"\x07\x0F t’è\x1C _2ÚÄ¢.\x01 ·òD "
b"\x07 p„4\x12 Ÿ\v ‰ÄL6+8\x17 "\x03 "
b"\x08 =Ú²jR6¸î·Îv¥¿Ø "
b"\x08 Z\r ÑC²ÙûOùÃW\x10 ‚k "
b"\x08 µ+UF’¯öÝåekH®o\x0F "
b"\x08 èä¦íËnZ˜Ž‹LÁEUg "
b"\t\x01 ì=M©Tèû=}Ë¢Ðjù "
b"\t\x04 vV\x15 Ù?m ŸÑó6\x14 @A "
b"\t ·?,µ?1‹’â6##ȼ· "
b"""
\n
X>–\x12 »ˆ1[kuEAß6C
"""
b"""
\n
–óþx¯uò\f\x0E d”yÚ\x02 ý
"""
b"""
\n
Ê@\x16\x01 kû\¸Ž\x19 ”\x18 “H@
"""
b"""
\n
ÔÊ›“Žqn\x1C\x07 -ÑaPß
"""
b"""
\n
õCEÅê~¥–κÈî¯4\x08
"""
b"\v qnôR9KÖ”u£Àª‹– "
b"\f\v -E–?§\x12\x04 ª|?ž«ÏÍ "
b"\f L\x1F n8¨½\x00 –°‹×i®œ\x05 "
b"\f Z–æ+\x18 -Yƒ\x0F ÍÈãiÄ\r "
b"\r Γe\e ~µpãn‰[ßZŸÀ "
b"\x0E BQ€ú}6îD`§‡›’°d "
b"\x0F r%6ìf\x18 %õtQê7# "
b"\x0F x2ÐôFíW^±k\x14 Äwv "
b"""
\x0F ÅÛkUü1n\n
Wk¡™q
"""
b"\x10 ÿ´žzvšß±žÇ¦\x06 b\x04 "
b"\x11\x1E\x03 ^X%Òð^îv,@¤rŒ "
b"\x11 )-âÝÐ\x18 ÷<‹’†§]\x0E ( "
b"\x11 B\x0F ÂÃQ>’ø•瑨öBÐ "
b"\x11 T¯À×ß÷‚\x13 ©H¬®Í·t "
b"""
\x11 ["êŸS\n
Îf¾$gü<4Ñ
"""
b"\x11 ½ô%\x16 ¼œÂ©•Ë›Çg® "
b"\x12 tÞ\x1A ~B\x12\f\x1A\v :öo¥ã\x06 "
b"\x12 ¯Ö}\v\x08 Ú„\x16 &é´sþ©A "
b"\x12 ô\x16 \r ×Ú„€Ï\x01 €þ ãiÜ "
b"\x13 4)ð\x16 ˆ9€åoî7µ³_\x00 "
b"\x13 G’¥ÈñD\x04 ™®r<õ~'j "
b"\x13 ÚVNHêf‹ß\x10 w¨~\x1C 4 "
b"\x13 í.ûPßù\x12\x1E\x19 ”©yLè8 "
b"\x14 3é’Éq«ŸboW\x14\x03 çÅ´ "
b"\x14 Ä;|ét[\x00 #Ée\x17\x05 ‡\x18 $ "
b"\x15 êÉ}*ôÿÓ¤,¸\\x18 ~É "
b"\x17\x11 žL¨Ç\x1A Uq1\¸Ó\x12 LË "
b"\x17 °Öá<,øQsðr\x03 %\x0F\x07 "
b"\x18 rbƒôª\x7F t°\x7F ÃØf\A` "
b"\x18 Åv^€‚ªV¾¦XÁ\x18\x07 ßl "
b"\x19 d\º¡^†/ªGg\x10 bÛ\x17 "
b"\x19 žk]£ë•îz\x19 á˜â]J\x10 "
b"\x19 ä0÷šQ%s2|\x06 }÷>ÑD "
b"\x1A ÄÙQãê¦ù\x13 ö~5\x7F `\f ) "
b"\x1C )îÛv:eƒéˆfÀãÜš4 "
b"\x1C rRáÓgN\x0F Ú\r ¨ïhIˆ× "
b"\x1C ˜VvCb:ph?[{4F¨j "
b"\x1C Ôn5—æ˜Ë<þ7iWOk“ "
b"""
\x1D %<d¹\n
¼vEËH³;ñŸ-
"""
b"\x1D 2þJ6ÈDÕ£\x1D 2\x7F ÅÙÂ\x0E "
b"\x1E w ¢;ÔcQ,\t Åžm*^ö "
b"\x1E £Xwû\x1E ý\x16 ëP]O®G<\x18 "
b"\x1E àÃìðñ{˜í\r H\x12 [6e "
b"\x1E ç\x14 Ô«C«‹a~\x04 çH¸$Í "
b"\x1F\e Š13ù‚Wü?&·£8Rn "
b"\x1F aº\x7F Óp¾!bóåË\x19 %²Í "
b"\x1F ÃÒþß_XŽð£7qäâŒã "
b" ½ŒÏHà\x13 7\x19 Ê㄃Ž\x1A ³ "
b" òx°æëyˆï_3ê\x06 £µd "
b"#\x1E æ…,}ù+ÕÕWÁí\x11 Âü "
b"#k0NW¾\x17 µ\x17\x1A æ‹Ö\x1A ´‰ "
b"#ÀÅë\x07 ¾îå5jç\x05\e ‹ñj "
b"""
#ÃÎ#ËØ2Êm½•Í\n
_\x13\x17
"""
b"#Ë6ƒ&Ôû@î¢\x0F ¡¤ú\x08 £ "
b"$\x15 žB™àfvZ[G§˜*J "
b"$àk6„™\x12 uPóú\x00 Ó… "
b"$¿‰P—‚éé!çýÈ$¶©Ž "
b"$Úä±’ë‚\e\x16 ú/%kõPÿ "
b"%\x16 IÆÖ¶\x11 ¬ðÇÉò\x1C Mªq "
b"%\x1A ØÁš›\µÃA2ŒPõ "
b"%ÝV!Ä;Ïz+\x13 ¤éø!G½ "
b"%íý¤É\x13 ›Y\x0F 7ýÏ\t R\x00 "
b"&apSòÞÏE(|~C]wñÚ "
b"'\x01 Lú•ŠÐv\x12 §¾6"ãØ7 "
b"'Q0}1ºSoá;i3<í:á "
b"'f\r \x04 Q¶Q\È&rÎNa– "
b"'÷Öõ3\x19 š’#\x04 i"–“Äa "
b"(Ê®u¥bO\r ˜Z½\x0E ³*¡` "
b"*\x0F Ó.uøM\x1E ñw¹ž\x02 §æ[ "
b"*_q¶ýk\x12 ^Gcv?wªæÉ "
b"*d®ß\x02 Ž_bFrú¦ŽÁR¹ "
b"*ŽÁ>«ÐÅÓ\x1A òcÿxò\x0F "
b"+\e "\x03 ©7ÜË\x0E _Æj\e m½¬ "
b"+·5Ñ‘À\x11 {e\x07 ù¯‘9Öø "
b"+Óõ¯š[f÷ä›ëoª1P– "
b",\x12 $Ë\x19 4¦¼[7(*ÞA´ "
b",k¸ã½oÊJ«\t #¿\x1F hŽª "
b",yt\x12\x15 ,ûSÒãƒzE“ "
b",ß\x10 ‘`Ç„äkGC\x07 j‹‘5 "
b",ó‰Þ\t \.Ý\x17\x19 ¦\x19 žá7³ "
b"-8®4Íòj°Ô\x06 #÷hÐ‰Ü "
b"-Œ\x12 ¦ÜoבÁ#$u\x19 ¶A "
b"-Ý\t иF'ñÁˆC'@Áãö "
b".&Æ·ŽDC‘x^\x0E ¬©¶óê "
b".å²ó›ïñ˜‚d!ÇÔH\x0E A "
b".éä5e\x1F ;Ü*\x17 ]'6v|ÿ "
b"/\x18\x10 c,¸\r \x04 Å(ÿ;ãÓË "
b"/ÿ\x00 >Ð\n Ä¿\x04 3¶Öø\f\x04 \r "
b"0!pSÊ{´š¼Qé"å©v¢ "
b"0õÕ\v “Ó\x19 oFœÒ„«]¼ƒ "
b"1&×É=\x04 7\x02 €~«‚Éð&¥ "
b"1³°“‹l\f û…“/\x0E …5\x01 "
b"2Žô(ÝLm½áN{À\x1F\x17\x1A ª "
b"2o3ãÏØãÆz° ®\x0E Èw "
b"32f¶mXMiêÌ¡ž#\x1F Ê "
b"33NT„ð9£{g%ʧ\x05 [° "
b"3÷÷yjB„©îò\x1A £f4~ "
b"4GŒ\x19 _ó×X’û¢µ\t Âvü "
b"4zclÑK\e qÔ\e ìtc-² "
b"4û\\x06 Ñ\x17 |mÕ·&RÓ!(Ä "
b"5$\x1F äO±î#Êv5\x06 Íp¹« "
b"5$üè†Öß»\t Áõ„N4 "
b"5rrÌÐ7V¯²ÌãvŒáW; "
b"6µ€õQ£BݧV\¿Amæ\x08 "
b"7\x08\x15 -\x05 `,Ý•ò\x17 ä\x1F F\x0E † "
b"7”zõ߈سµÚ\f Óœô“ñ "
b"""
8rÇù0©»À[×™I\n
ÿ8
"""
b"8Åçj†\x02 >¶uP[lÜ’[è "
b"8Ô¦A"´c\5è•;¬!J“ "
b"9\x13 @íÃr-hÝ\x02 ;ñ¾Ž*ë "
b"9ªÆh÷?äÛêt\x7F -ÚºåS "
b"9¹#ÀÄ\x1A àŸ“ÖÎÖ\x16 "ï± "
b"<ö©AA™±bÂÔµ\x04\x13 WÕ "
b"=&ë=` þxí>p\x01 Ù,nI "
b"><Y(«Æ¢ßÅ\x11 ÷D¾©¤ "
b"ApJZdä^/\x1C\x7F V7“è¿ "
b"A‹î-´#ç\x1F htº[P‘®% "
b"B)\x04 ªÆ\x13 Ù¤\x11 öŒŠ8Pp› "
b"BUÃ\x14\x03 µ\x1F äZ"öp~!s\x16 "
b"BÏC,\x14 ä™ÀB¹dÓ»Ô~\x12 "
b"CGJ£Tð˜\x00 (ê*ÞTŽ0Ê "
b"CV?)½ÉV…€\x15 näUËé\x02 "
b"C‚7b-¨lý2ÇÜÒÿ¿h "
b"C‰)\e )F²¨'zg!\t ö^ "
b"""
CücMtC:„§\n
\x16 h—·\x17 Ð
"""
b"D\x04 î\x1D i\x07 `Ø{Æ7¸sy¼) "
b"DbR€ÁCK׌j•·\x07 d¨\x1C "
b"D~Þ¬sçKõæ_? BT\x04 Õ "
b"D³Ð'ÄB\x06 ð^›åág\¯& "
b"DÍQµµŽG uÔ-\f æMƬ "
b"E²_\x04 k•ò\x14 Z–µ$APš "
b"F\x0F Ø^Ÿ\x03 “´lxwë¾)2\x04 "
b"FUKAèH\x17 [\x16 \x19 Ûÿr+ "
b"Fl‘‡³“à\x05 ÎëL™†í¡C "
b"Fƒ\x04 6\e [1\r ýêâ\x1C ‰… "
b"FKÚ0EœøF°ä&¾\x12 Š "
b"FÍlòצ:}É-D\x1E p3õÒ "
b"Fø>\x0F ļ„%–{\x00 €'ß "
b"GRMJJŽÃI‹6c\x14 hœ€Î "
b"Gtiå›Áe¢\x07\x18\x1C Å(\x1C ] "
b"G®%\x11 û\x12 0NðÍR¥\x16 ® "
b"GádðØNšý:Ä\x1A u·º\x18 \n "
b"GôÚyTf4\x1F Ér\x14 [™GR "
b"HX\x7F\x1A Q"C…ž\x01 OX«T‹\x00 "
b"H^Fb\x07\f Q<—–âR\x05 …ó‡ "
b"HË\x10 Î\e å¤BEõTé@\x06 ô‹ "
b"HíÏ\x14 qFï\x11 ÷e£wé=‚ "
b"Hü\x18 F\x7F bóÖ£îs®¨¶/Ž "
b"I,Š\r )æÙ‘¥ü#W{Âé. "
b"I8¨™s/+×\x02 ’7‡fôaÍ "
b"IwuCs\x0E <Où_ÅïLyƒ| "
b"I™ÞÀ¤Žý·X\x11 |N橆ã "
b"IÂk\x1D ·yÝÏ\x0F\x00 -á´+f’ "
b"IñB!TÆNt§¯'d&!©Ù "
b"JGa‘z(\x12\x03 ª\x14 Ƥ_¡©V "
b"K0ëB(B4)ÌÌ\x14 Œlb§) "
b"KBêã‹È\x07 /ùD‰M\f ›¾? "
b"KY§\x16 ïËÛ\x10 ·\x06 ù³ú&çá "
b"KrâªïŽÅ(\x03 دΓD¼¹ "
b"KšUƒ%9EtoIh€\v\x1E ± "
b"Lý2a\x17 {BìQ4=¯îMŽÉ "
b"M,‹ö¯™û¿\x14\x12 êý\t ù¾$ "
b"MšMÈ\r éç#Ò„}d\e N…# "
b"""
MÁ5yæwx,dº¨2\n
\x1D v±
"""
b"N\x13 }ÿëåØ2×qk‹ä®ˆÞ "
b"N õ¬Ü\x05 ¦¤2\x14 wPå'‘y "
b"N*Xù\x13 •S\x11 ¸¬vö\x04\x7F Ä "
b"""
Nl\n
¡¦\x02 £ìË\x05 =—ÝQÊÖ
"""
b"N¶\x00 œ ±\x19 6¡.\x10\x17 ê8E¢ "
b"NÈA£\t ÿRÿEÀL“\x12\v {g "
b"OŽ\x1A wÔ\x1C Àœ°—ósú\e U "
b"P\e €–5[duî\v ¬ uq\x02 "
b"P ð_«.ù£*ç—b½U”” "
b"Q\x1C 0ߥ\x01 «x|\x1F §ˆ¦%X\x18 "
b"QhÞ°æôgéP”sÀ†2B "
b"Rξ+aK|ä0\x07\x18 ”"ýÞ "
b"SS±?MKˤ9Å66Nÿ²d "
b"ST\x07 x\x1C þ+¶ËDå\x7F\x0F 7²\f "
b"T\x18 ÷½Ø4áon:\v ŠþÃ&? "
b"Tªs˜r#\t î–%ëäz(„ "
b"TÜ…6Ι8ÐÏ\x01 1sø@ñ\x03 "
b"U9™àZ·\x13\x05 ‰UEy.“4Q "
b"UÏ–Î5›7뫊\x12 ñ>Í¿Ò "
b"Uß\x10 .?tÔ\x1C €}ÕÏ\x19 «,¹ "
b"""
V\n
\x08 9ðõªøw ¦—\r µxB
"""
b"V5]\x12 #~Ž+K\x1E žÃ’RJ\x1C "
b"Vä*›"ÁäÄvª\x02 £!Q¾x "
b"WŽÓÂØã\x00 pë\x17 ¥æ¯\x03 x¿ "
b"WÙ…T÷Þ×\x10 Å¡¦÷wŒëc "
b"WÜ\x1E ¬l‰Fg´ÏWvgeÐm "
b"WáíÂ_Qo\x12 §ê^\x0F ‰à¥\e "
b"XÜiд£äGµƒ&fëõÏ€ "
b"Y^†å ×Õ«ÕÃÊ\x1C MÚás "
b"YiÃhó@k†\x14 ØPŒ{>ð\e "
b"Y™n\x16 ó)wNEƒ\x16 †\x10 ÕE* "
b"YÞ’ª(ÀÌ¢-9,\x0F\x13 páe "
b"[@áÔ\x04 >ð>bÐô£ÌÝ , "
b"[ë¤g£î\x11\x16 SZ"%\x1E þ4\x18 "
b"\ŠÅ¢[#‰,ËÖ=€ÿJó "
b"]¥fšGœä1:¦z\x00 ‘j\x1C ` "
b"^\x1F 3V\x1F !œu0\x08 Î\e 5Ì "
b"^¹Ä\x0E ‚\x13 P`“Oú~\x12 ;·µ "
b"_LlÊ[e)õQ\x1C Þºì\Í\x04 "
b"_€{d$?¨¢›öé³ù\e ”S "
b"_‚Ô\x10 KÃ?\x13 øû(ІØ>¬ "
b"a!Ñ>‚MoÅ\x12 iªWÆ9¿\x00 "
b"a"÷=\x02 :k§£}u\x18 #$ô' "
b"""
ay\x1C ÿ0\x05 K,²ÖgAŠ\n
ÿ¾
"""
b"""
a˜\x12 ²¦¹\x1D º˜ãu§•\n
W9
"""
b"bRi•×—8\x1A ã\x13 &û‰w\x03 "
b"bÃäÓŠ<¬ô’‘v\x1D ÛÏ\r H "
b"cÚ] nT\x04 dHG\x1C\x04 ‰Ôh "
b"d\x1D SK¸Å£|¶±\x13 ¢=»s* "
b"d””Ýs)\x04 74_‹¯ã(HÞ "
b"dЗmwvuØ•ž**;) Š "
b"g4Âc*sê{\t ˆœ«\x03 ª«¼ "
b"g<\x08 Š\x15\x05 ’w<\x0E\x00 %\x01 ¿›q "
b"gjš‰ï\ Õ,yºïš÷ÙÉ "
b"gÃ9‰§Ç\x1A\x03 \r J\x13 +ùz2 "
b"gâà‚)hsŒ™¸Ÿs¿Å.Ê "
b"h^ù†ê¤Û\x05 pÄA}\t +þ| "
b"h·&/8µÁgŒ†\f Û«ƒeV "
b"hàÙv\v ƒ\x05 ÀÔQá³Ãö‘ "
b"hú>Éx\x1E Á\x1A ŒRI¼‚\r ¢d "
b"i#e\x1E ÊðH\x7F Ž9q@;qH$ "
b"iViT\e\x12 As$'ePÇÖéå "
b"""
ióµ\x04 B´ý\x1F\x04 ù\t Ã\n
\x1D H{
"""
b"jjH‹#;\x18 [ß6¸ÆSS "
b"j¨¥{Ü.>S§ž\x19 Ÿ\x02 ’•â "
b"k'wˆ\x11 uz¾âSºÑz\x14\v © "
b"k1%‘q\x04 q~)âíXŽÿ⤠"
b"kO‚\x11\x14 …mWò\x08 H\x13 d;¼ "
b"ki·P\x05 |E× žÔ¥ŸÞˆÖ "
b"""
l#³ìCMM\n
Z±@bèò»n
"""
b"l‘©–Ï–ä\x15 Ø’\x7F ähôl® "
b"lã\x03 ¯\x1A\x12 MÊ\x00 ÝÜ•ÌJk "
b"m\x04 ®wol)?\r ±æ"á˜O¼ "
b"m)rä}±85Æ·Žu—Mø8 "
b"m¬yL†…Ãa]u\x1F ,!}ýz "
b"""
n-ã½\n
\x11 týP·\x1A\x10 ’4G
"""
b"nA;\x17 6\x05 vóŒ\x1A Ï¿èy7# "
b"o/\x7F š\x18 …‚,uZ·äÊQ= "
b"p\x17 iB ë;ÜãjKÛï\x06 ™d "
b"pˆ€&¦Ö1rˆBz¿NO\x15 3 "
b"q¶rÀÝ\x00 ˜s\x14\x12 )´²½kë "
b"qȃÜÔ!›"€Ìñk\x05 ^a\e "
b"qßAœ²\x7F ÛÏî›M©Vë\e ê "
b"r1K*\x14 $†“Ž~\t v#+\x05 e "
b"sþ4ÞAfµ\e\x07 jÍC{\x16 = "
b"tt' drnÐ\x16 S¨Ÿnîéƒ "
b"t©kC8¶\x0E ϼ\x03 =ê`º\f • "
b"u\x04 ?àÃü<GAÆCžúˆ”ð "
b"uc‡N\e 2\x1F â!\x1F\f (“c# "
b"v\x04 Ú†‚O‘ý,@1Ý…yÏ "
b"vH%)ñžM¦(¸\x07 5}º¢n "
b"wþH:¹¼,1\r \x14 ŸÜK\x10\x05 ƒ "
b"x/¡E‘;3\x1F ×Uâ«\x02 '« "
b"xq*€œ ¥O\r \x0E ßà;†í˜ "
b"y ï)¡Ý›Î‰E™\x15 YUv "
b"y:µ†vÏÞl‹ˆÒðÄef "
b"y€W2=ZC¶£âù\r ˆÆò’ "
b"y¸8‰Í5\x0F Ç\x07 )y³ÙÞl¢ "
b"z\x0F\x0E ƒá\x1A ¾–“\x03 Tû\x13 z! "
b"z£\x10 x³ÜMUB&n×ûþ9\x16 "
b"z«¾Yª÷\x0E\x01 á}DÙã…T9 "
b"{tÇs«—Õ@GR\x14 Ç\x12\x1D üà "
b"""
{Ð\n
ú¥\r ½Ü\x19 VèE\x08\t SŒ
"""
b"|‘™:îiô?g”[¡\x04 ã/J "
b"|·k\x08 é/î„ÛÌ\x13 ÍÆ¾\x06 F "
b"}\t šVw\x07 F_ÉÐí\x7F cé‰\x12 "
b"}\x10 zhÑ‚é\x05 ÚN™PWÁSé "
b"}A\x00 m,¥X«dóM†X)3\x0E "
b"~+e«öñi\<\x03 9Òƒ‘*o "
b"~C›~¸ý%5K“\x14 ÎÈòÿõ "
b"~kT\x10 ãå\x1E 0I@(dï|ls "
b"~žî©\x07 Ð\x1E ¡öÖØm¼Ñ "
b"~Ñ•\x00 ¦JBw¤Ög’õ@¯â "
b"~èhB\x03 ÝZ\t ª‘ØÜX\x1C ð\x10 "
b"~î=¨NœNDYIϵ&ùª\f "
b"\x7F û8¢œÂG&i¼‡\x1F Àˆÿ{ "
b"€ç\x08 å\x14\e ùë<º¾T9\x01 8{ "
b"""
€êùª<0\x19 \n
v\x1E )/Ÿg\x04 š
"""
b"§ðbv\x05 ËÈgßxrS¸\x0F [ "
b"‚^Ú#\x1A R;K\x15 ÍžYæ\x1D "
b"‚¹[\x10 ä¤;jÞܧ\x7F R• "
b"‚ÄvÜÁHp´C£¯¬Œó\e "
b"‚Ç"kû¡å«}®ÙÛ)Öêè "
b"‚ïwÀl‰Aä’ÍÅ\x17\x7F\x04 ” "
b"„\x01 ¥…³ÆFÆHþF–¼’`% "
b"„|Š©3\x1C ;\x0E @¿%³âK¤d "
b"„³;Îlšª´<_û¥[o2 "
b"…\x02 iüI²ºqDaj\x12 9€Ê\x11 "
b"…8hY\x19 w\x1A ŒîàÍÃÈ\x16 ê\x1F "
b"…F\x17\v ˆÝ¸aXr(±ü\x7F ›\t "
b"…²õ}ø€æ³‚{dC¤Võ\x12 "
b"†\x0F (\x00 yLo4Æä˜f\x03 âm\x0E "
b"†m`Á°…³èÕØ¬¼÷\x19 ‘ "
b"†ˆ\x08 4¥úš\x1E\f ¬¾›À¤¹- "
b"†º¯óMK¬“^ÌûÐIÔX› "
b"‡\x00 ÿœcj=[4ýwZº)ÈÑ "
b"‡Hž\r TFù\x1D ›eHq¼s¡Ÿ "
b"‡©{²ü[(j°:¼º8ã+‹ "
b"‡ØN§âæœý\x1C 1oágö\x7F G "
b"ˆÿÇ©1ªù€J~¥5´\x0F L "
b"‰Ž¬·Ú\x1C ¼‹Ó±†ÞC\x03 n\x18 "
b"Š+¿ÐÖÝ\x0F ·:°ÞTK˜7Ž "
b"Š=SÀÛ2\x15 šf£2x\x03 ³Òø "
b"Šü³Õä\x7F ”M9Ñ™\x16 Ì\f\v ÿ "
b"‹d;éi¿žæ]ø\x0F p®g\x7F Ö "
b"‹ú#è·Î<¡ä»9\x7F Õ\x05 3\x06 "
b"Ž\e Ãvç\x1A ‘R,Ð,ÄEB³\x08 "
b"ŽBüõï¾$b1Cq¹v²öŠ "
b"Žb0¹>\x0E XOòðý\x1F ¦ª\x19 t "
b"Ž—ï\x01 OÛQß¼Â\x14 ¡uÒ\x00\f "
b"Ž £ÖØåEÁ“$¶aãä\x02 È "
b"ޝH¥™<Ô¼Goѹ\x19\x06 z\x00 "
b"Žï›XJ@•9ƒ=\x01 ûU¹—Ž "
b"Ž‘\x00 WD\x1E m#‰¯…î\e ™Õ "
b"ŽÊýM9Ç‚Âè™Õjñ\x02 j "
b" óÚÆ\x10 þ½ÈS\x07 „o\x17\x14 2 "
b"§¤NEß\x0F ‹Š5\x00\x1A 6>GP "
b"´…”Pz‘±Í!\x06 ¯Ž¡\x11 $ "
b"\x05 C12¤r….jÊ\x03 \r 2±B "
b"‘\r 4z\x1D Vq\f ûYy£á\x03 "
b"‘\x1D Ã\x06 —²„Žº–cÇÜUzK "
b"‘4<\x0E áf§®‚Ò¦Bê\x1F ©Ê "
b"‘†¸2¹Z(ÿIô!\x7F Ç\x07 ‹ "
b"‘æë3I•îß\x07 E®!ðn "
b"""
’\x05 \n
ÛAȱ \x04 PBÙã9Ç
"""
b"’M߯\x11 jcï\x0F ýó¬Ÿn\x04 & "
b"’È\x1A 惧Ÿ\x12 ì\x13 8\Áóª\x11 "
b"“ÄK«u°l\x13 Iê\x07\x1A <o° "
b"“œ-„¯Ô 5]q\x02 ÐÓ½ "
b"”r¯Ï#—ü”ŒÅ?×Åö×Ë "
b"”îw ›XµOZ\x0E È6dqõ "
b"•1Î×8„\v Œ€D\x0E Yµ4îÊ "
b"•nÅnbM>+A\x1A a\x16 †î0à "
b"—\x06 Ê‹qÔÚ\x08 |Å\x04\f ’F "
b"™B%ïjq´R¡Ox.Ø\x03 7\r "
b"™_\x11\x1F\x16 ô’wúã½yî,€… "
b"™˜ëÒÕ¿‰76}\x1F\x1F GÚš "
b"™½È¯½pN8°Uÿ\x06 )â "
b"š}\x1E m\x1A ÛO\x12 G£ÅŽòñ˜ "
b"š†0a—\v ›§^-Mþñ{I "
b"šæ\x02 ÈáËH¸ƒª#ûƲçh "
b"›^:S6\x1D E™\e ,ëºÍì“ "
b"œ‰c\x1A ·I8û¯÷X̰þ>< "
b"œ×¾Ù\x01 F*ÙÝE¼’\x19 HC\x13 "
b"\x06 @Éf\x1D ÂÌâfb¿·œ¥ã "
b"Ãz\f\x18 V÷œ’0¢ð\x7F ÿ² "
b"žIˆùHòý)³\x1A ™¶Q¶…Ò "
b"žUº\x1D ôƒ²‚VB‰oÙ?²\x03 "
b"Ÿ\x00\x01\x05 PB¢~ öç\f Vö“‚ "
b"Ë\x11\x17 ÿ|Õ£7ó~ À™ª "
b"Ÿïø ª÷½\f èø\x1C Ó» 3 "
b" \x05 ™ó(I„UÔwŽPIEV! "
b" \e y8xãq“=¦ÊYÐ\x19 ä‡ "
b" \x1E éñA¢š\e ]yÀÚÕ¥g "
b"""
-\x10 O)Ïðï„ê\n
Žyô¬
"""
b"¡.Q\x02\x14 åN"¿p\x04 Ĥø~\x06 "
b"¢]‘\x18 Þ©~\x10 !E‰½í„C„ "
b"¢{ ‘rNâÒ\v ŸF \e ïN\e "
b"£©ÞüYã?âýÇOoO\x0F ×» "
b"¤n3\x1E •tÃÛÚŸÜ\x15 ºùg| "
b"¤æ\x1C Aƒ.ǰÆw\f\x06 ÈÁyÚ "
b"¤öZj´ÃmTÃ<,;É6İ "
b"¤ýÀf0®'\t ÄÁ2Z&-,Y "
b"¥I\f\x16 Åþ?™;\x13 ‰êL±d§ "
b"""
¦i\x01 LK\n
$!‚ñK˜Vó^\x17
"""
b"¦Í# ¼÷B_…æÌ6ìc "
b"§|ù¶UËV•%;µ’BÜÝi "
b"¨\x00 6CD'Ë;¡Ä{Ò´;æO "
b"¨^\x19 \r \x06 ï\x01\x10 ðÞúêm\x0E %ÿ "
b"©8Üž\x16 ÂYÖ«©\x0E \r öÔˆ "
b"«\f Ðî¼cLêr.§\x10 ¬;`P "
b"«±¯ÚVn³’•\x17 ÷€‰Õ®æ "
b"¬HÔÑlíoT¢G‚Å´ÿP\x16 "
b"¬i=ÛšÆ,„-P»äfÓ9® "
b"¬s\x14 n\x7F ·;‚uu\x16\x17 ¤\f º "
b"¬\x7F p²\x11 „-ñúTÆnc¬\x03 ‰ "
b"<—f¿ë{„}¯\x1A $\x08 Ú\x1F\e "
b"c\x1E ¢ó´:l”–§"¶\x11 B "
b"cI%±£¥ ‡”^xžK| "
b"§)¾½a\x1D /°-_£›î\x11 Ž "
b"ÉÌ\x08 ÒpYJÇq-q\e /j\x1A "
b"®,'»Àe<7'þÿºû`Ñz "
b"®FÒÁ…)^½\x1A ^Ò\t áýuÇ "
b"®‰ñÁ©\x0E ÕÆ’¼\x0E M\t Ø\x13 ç "
b"®ŽÓœ\x02 ›y\x05\x18 0\x10 K&“ZD "
b"®ª\x0F .¯Î¦«\x17 È:Í\x00 %Ç "
b"®ð4:ö+Yï„{↜ȹ" "
b"®òÏí=ÜÚð¡Ç¡èÅì÷\f "
b"¯\x1E ø\ø¥8\x01 Ñ\x7F ÌÍI¬bÎ "
b"¯gu\x11 2,\x13 #€P¢ä)e, "
b"¯Ðx\e ÿ\x00 _)jÀœ-Xºñî "
b"¯ííj¡wêÏ\x18\x06 ¬èêŸ\x0E Þ "
b"°Råð\x04 =ŠÊÙHŒœ\x11 ;\x05 £ "
b"°xðaq•‘œ\x14 eGîÓ\x1C Ïï "
b"°ëæJ]‰úëQ\x07 ßÏ\x1C ³é\x14 "
b"±\x04 ðÀI$šÉáS‘\x1C âÁ\x04 ‰ "
b"±Ë ¸Ž¶VdƯ|û—pýR "
b"²Ï\x1E â\x08 ¿agQÓ4\e ëoÛ "
b"²ïþÂ\x18 ŽßJ¾«Ôl8ÿ¥‹ "
b"³\x14 SIZ̦‘çã\e Ÿaê'1 "
b"³qQÿmÏô—€×ýò…\r Ñ1 "
b"³Œ—}L4u*ÖŽ—d9\x11 ÌÁ "
b"´\x11 S½X£“ùF(k¦!\x10 ¶ "
b"´øný´œÖ¶\x03 š¿%Ó7º "
b"´ÛœsÈÃ\x04 ‡1)B\f ±Î "
b"¶\x12\x14 1ÌL"4”è.Ê¡(\x05 ÿ "
b"¶\x1C 4\x13 A©\x1C º©4¶g\x16\x10 ™ "
b"¶%ÿ@›Æå¡qôË¡\x10 —› "
b"¶j¼½\x1F ©á\v VŒk2\x0F Ô@ "
b"¶èÅçnpŒ¶9”óOb+\e - "
b"¸\x11 uÜÁÿLOrŠ@Èž‰¢À "
b"¸~¼,\x06 !2Ì×Ý\x06 Þ±\x1A ý "
b"¹\x11 8(Poˆ¿N{6"E€\x0F ^ "
b"¹,꼆۸n‘MÉçËà¥ý "
b"¹«_Ä\x16\x1A q‡Q¶ƒHAk¨ß "
b"ºŒæBn+´6•ÝÓî7â_ "
b"º½R‚lT°ÃuÒ“\lÎ7\x1F "
b"¼.öý"ø÷7þ\x02 qIî-Y "
b"¼<•PZJÑS½ÑQ\x03 'È\x10 € "
b"¼n;FVãÒ|\r Ñ\f 6´ëÞ’ "
b"¼p×x,6‘N¼\x16 ^=ŸÖD} "
b"½\x02 ™¯x|t\x15 (Öü4\x03 ;\x0F È "
b"½n¶ç\x0E\x01 r\x06 =:TŸ¦ðb\x08 "
b"¾¥9$È{fµ“.¤Ê)¹\x04\x13 "
b"¾Ùœoß\x01 j•§2ëŒQ\x0E K’ "
b"¿\x07 !-Õ,¹=\x02 @äÝ‹lǤ "
b"¿Vß*«žîñ\x1D ¼Î±ÍFT "
b"¿—\r rè·ËéïÕZ˜ž5 "
b"¿ïö\f JÉš|®x3dMv&V "
b"ÀFÑm"XIò´‚Õ4Ãì+g "
b"À©eVÔÏ\x13\x14 !¼‘?\x1E ˆØ\ "
b"Àûð\x13 žQµ<ŠÃR\x08\x16 Û^k "
b"Ánñ`P¾“ð©a”\x07\v —û„ "
b"‘.$#Ò¤–>¼2ºC|—# "
b"ÂÖ‡x¶eµñý\t 4\x0E 3ýÝ× "
b"Âë<ù½s¯AÓÏ\t ƒoŸí¥ "
b"áäf!Œ\x1D a4P{\x1F Ñ\x13 c "
b"ÃîAÌ™º\x07 JÔ2.§©Gð "
b"ÄqQÿ}€Oìzþ\x18 A\x11 ü\x17\x12 "
b"Äôp‚N³ƒK+óÑgš¼Ý\n "
b"Å6,»k\x18 ÞóW…Dçlá¾b "
b"Åt؈Èc¬ôÈ1îóc@cï "
b"ž_™=´R\x13\x06 ÐÆôå+Ä> "
b"ÅÜ7MVÛRX1{(\x0E ÚFÏ "
b"Æ\x16 ¡‚ >\l‹fbS\x1F ,‚ "
b"ÇöOpTýãæg(Ë›sÆùµ "
b"ÉŒ50<é©íC»\x1C )CaÖe "
b"Ë\x10 Ûëà¼;Â\v V‹\x08 ˜“.T "
b"""
̃y\x16 BÃ!3\n
ßõ‘£;Mé
"""
b"Î\r \x7F 9 S)\x1A H‚èM’Bi "
b"Îøñ\x1E (°:®žc´J\f\x17 èÄ "
b"Ï\f câÚ\x14 Ÿ…S\x12 p‹%®Ôù "
]
SELECT
`rule` . `id` as `rule.id` ,
`rule` . `name` as `rule.name` ,
`rule` . `priority` as `rule.priority` ,
`rule` . `description` as `rule.description` ,
`rule` . `payload` as `rule.payload` ,
`rule` . `invalid` as `rule.invalid` ,
`rule` . `areas` as `rule.areas` ,
`rule` . `custom_fields` as `rule.customFields` ,
`rule` . `module_types` as `rule.moduleTypes` ,
`rule` . `created_at` as `rule.createdAt` ,
`rule` . `updated_at` as `rule.updatedAt`
FROM
`rule`
WHERE
`rule` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
Copy
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (0x170A437F36F840B2972DFB72F8E6BF62 , 0x1E9B6DC90B52477CB727F7EF65C65DD6 , 0x3858957016644DE4AE48C0500BF3CCC8 , 0x5B0ACC9717B349A4ABF3E13BC9DF87BE , 0xA62E1F6A1A0B4519AF401B6270A37149 , 0xB852733DB7654F3B82B05495CB21DA57 , 0xD05B345CDB7949678312175BC44C4B4C , 0xE1378DB7808A478F919E0D740D5D6C1A , 0xEF7FD92EAE53404992068012A82E928B , 0x0F7DC89102CE4AEB8E0D5B853FD7DE14 , 0x3CF541369E6D4A2FA70AA8687A65FC2D , 0x0006396D0BA89E3D3196FA3AD9C775CE , 0x0076E04CF02154367F1196C6FF482118 , 0x00BEE771F99E8005F9575575ED662240 , 0x00FC2E20250BCC6E862F9760B54BECF9 , 0x0117652E6396D65AF923BFD62F88F114 , 0x01563CDD993A4609908372DB8B67A779 , 0x01B6E0FD78663562ADF7E609E4CF5E64 , 0x02A199C685527B4FCFB6B7C0E7420668 , 0x030E5B73EE36D0447B0F229B4B3B17B7 , 0x033A60D4D2165DAE0E7679E067670689 , 0x040F3CA3AC184768BBE71AEEA8370185 , 0x04626906C1BC434C8412B507DD87CD31 , 0x04D990E49D01A2D7E093FD1232255FBF , 0x0519095E5BE7CC1BF794D03E4F8A6CD6 , 0x0562D6AF4C09EFD8E6DE1F1D82F8B66F , 0x05B2BA144D0FE9CE67DA2100B408C3AA , 0x062B5FD46B9E5387107EF677997E7A29 , 0x0641D51342BE87CA889A90D1EC013BCF , 0x06ED8AE4C50B4ECD07502AAAB1916937 , 0x070F7492E81C5F32DAC4A22E01B7F244 , 0x07708434129F0B89C44C362B38172203 , 0x083DDA8FB26A5236B8EEB7CE76A5BFD8 , 0x085A0DD143B2D9FB4FF9C3578110826B , 0x08B52B554692AFF6DDE5656B48AE6F0F , 0x08E8E4A6EDCB6E5A988E8B4CC1455567 , 0x0901EC3D4DA954E8FB3D7DCBA2D06AF9 , 0x0904765615D93F6D209FD1F336144041 , 0x09B73F2CB53F318B92E2362323C8BCB7 , 0x0A583E9612BB88315B6B754541DF3643 , 0x0A96F3FE78AF75F20C0E649479DA02FD , 0x0ACA4016016BFB5CB88D199418934840 , 0x0AD4CA9B938D716E1C072DD16150DF90 , 0x0AF54345C5EA7EA596CEBAC8EEAF3408 , 0x0B716EF452394BD69475C2A3C0AA8B96 , 0x0C0B2D45963FA71204AA7C3F9EABCFCD , 0x0C4C1F6E38A8BD0096B08BD769AE9C05 , 0x0C5A96E62B182D59830FCDC8E369C40D , 0x0DCE93651B7EB570E36E895BDF5A9FC0 , 0x0E425180FA7D36EE4460A7879B92B064 , 0x0F728E8F2536EC661825F57451EA3723 , 0x0F7832D0F446ED575EB18F6B14C47776 , 0x0FC5DB8F6B55FC316E0A576BA1997190 , 0x108FFFB49E7A769ADFB19EC7A6066204 , 0x111E035E5825D2F05EEE762C40A4728C , 0x11292DE2DDD018F73C8B9286A75D0E28 , 0x11420FC2C3513E92F895E791A8F642D0 , 0x1154AFC0D7DFF78213A948ACAECDB774 , 0x115B22EA9F530ACE66BE2467FC3C34D1 , 0x11BDF42516BC819CC2A995CB9BC767AE , 0x1274DE1A7E42120C1A0B3AF66FA5E306 , 0x12AFD67D0B08DA841626E9B473FEA941 , 0x12F4160DD7DA8480CF0180FEA0E369DC , 0x133429F016883980E56FEE37B5B35F00 , 0x134792A5C8F1440499AE723CF57E276A , 0x13A0DA564E48EA668BDF1077A87E1C34 , 0x13ED2EFB50DFF9121E1994A9794CE838 , 0x1433E992C971AB9F626F571403E7C5B4 , 0x14C43B7CE9745B0023C9651705871824 , 0x15EAC3897D2AF4FFD3A42CB85C187EC9 , 0x17119E4CA8C71A5571315CB8D3124CCB , 0x17B0D6E13C2CF89D5173F07203250F07 , 0x18726283F4AA7F74B07FC3D8665C4160 , 0x18C5765E8082AA56BEA658C11807DF6C , 0x19645CBAA15E862FAA478F671062DB17 , 0x199E6B5DA3EB95EE7A19E198E25D4A10 , 0x19E430F79A512573327C067DF73ED144 , 0x1AC4D951E3EAA6F913F67E357F600C29 , 0x1C29EEDB763A6583E98866C0E3DC9A34 , 0x1C7252E1D3674E0FDA0DA8EF684988D7 , 0x1C98567643623A70683F5B7B3446A86A , 0x1CD46E3597E698CB3CFE3769574F6B93 , 0x1D253C64B90ABC7645CB48B33BF19F2D , 0x1D32FE4A36C844D5A31D327FC5D9C20E , 0x1E77A0A23BD463512C09C59E6D2A5EF6 , 0x1EA35877FB1EFD16EB505D4FAE473C18 , 0x1EE0C3ECF0F17B98ED0D48125BAD3665 , 0x1EE714D4AB43AB8B617E04E748B824CD , 0x1F1B8A3133F98257FC3F26B7A338526E , 0x1F61BA7FD370BE2162F3E5CB1925B2CD , 0x1FC3D2FEDF5F588EF0A33771E4E28CE3 , 0x20BD8CCF48E0133719CAE384838D1AB3 , 0x20F278B0E6EB7988EF5F33EA06A3B564 , 0x231EE6852C7DF92BD5D557C1ED11C2FC , 0x236B304E57BE17B5171AE68BD61AB489 , 0x23C0C5EB07BEEEE5356AE7051B8BF16A , 0x23C3CE23CBD832CA6DBD95CD0A5F1317 , 0x23CB368326D4FB40EEA20FA1A4FA08A3 , 0x24159E4299E06676905A5B47A7982A4A , 0x248EE06B368499127550F3FA00D39D85 , 0x24BF89509782E9E921E7FDC824B6A98D , 0x24DAE4B192EB821B16FA2F256BF550FF , 0x251649C6D6B611ACF0C7C9F21C4DAA71 , 0x251AAD81D8C19A9B5CB5C341328C50F5 , 0x25DD5621C43BCF7A2B13A4E9F82147BD , 0x25EDFDA4C9139B590F37FD9DCF095200 , 0x26617053F2DECF45287C7E435D77F1DA , 0x27014CFA958AD07612A7BE3622E3D837 , 0x2751307D31BA536FE13B69333CED3AE1 , 0x27660D0451B6515CC8268172CE4E6196 , 0x27F7D6F533199A92230469229693C461 , 0x28CAAE75A5624F0D985ABD0EB32AA160 , 0x2A0FD32E75F84D1EF177B99E02A7E65B , 0x2A5F71B6FD6B125E4763763F77AAE6C9 , 0x2A64AEDF028D5F624672FAA68DC152B9 , 0x2A8EC13EADABD0C5D31AF263FF78F20F , 0x2B1B2203A937DCCB0E5FC66A1B6DBDAC , 0x2BB735D191C0117B6507F9AF9139D6F8 , 0x2BD3F5AF9A5B66F7E49BEB6FAA315096 , 0x2C1224CB1934C2A6BC5B37282ADE41B4 , 0x2C6BB8E3BD6FCA4AAB0923BF1F688EAA , 0x2C797412152CFB538E81D2E3837A4593 , 0x2CDF109160C784E46B4743076A8B9135 , 0x2CF389DE095C2EDD1719A6199EE137B3 , 0x2D38AE34CDF26AB0D40623F768D089DC , 0x2D8C12A6DC906FD791C123247519B641 , 0x2DDD09D0B84627F1C188432740C1E3F6 , 0x2E26C6B78D444391785E0EACA9B6F3EA , 0x2EE5B2F39BEFF198826421C7D4480E41 , 0x2EE9E435651F3BDC2A175D2736767CFF , 0x2F1810632CB80D04C528FFCDBEE3D3CB , 0x2FFF003ED00AC4BF0433B6D6F80C040D , 0x30217053CA7BB49ABC51E922E5A976A2 , 0x30F5D50B93D3196F469CD284AB5DBC83 , 0x3126D7C93D043702807EAB82C9F026A5 , 0x31B3B0938B6C0CFB85932F0E85350120 , 0x328EF428DD4C6DBDE14E7BC01F171AAA , 0x329D6F33E3CFD8E3C67AB0A0AE0EC877 , 0x333266B66DAD584D69EACCA19E231FCA , 0x33334E5484F039A37B6725CAA7055BB0 , 0x33F7F779816A4284A9EEF21AA366347E , 0x34478C195FF3D75892FBA2B509C276FC , 0x347A81636CD14B1B71D41BEC74632DB2 , 0x34FB5C06D1177C6DD5B72652D32128C4 , 0x35241FE44FB1EE23CA763506CD70B9AB , 0x3524FCE886D6DFBB09C1F5844E9DAD34 , 0x357272CCD03756AFB2CCE3768CE1573B , 0x36B580F551A342DDA7565CBF416DE608 , 0x3708152D05602CDD95F217E41F460E86 , 0x37947AF5DF88D8B3B5DA0CD39CF493F1 , 0x3872C7F930A9BBC05BD79D99490AFF38 , 0x38C5E76A86023EB675505B6CDC925BE8 , 0x38D4A64122B4635C35E8953BAC214A93 , 0x391340EDC3722D68DD023BF1BE8D2AEB , 0x39AAC668F73FE4DBEA747F2DDABAE553 , 0x39B923C0C41AE09F93D6CED61622EFB1 , 0x3CF6A9414199B162C2D4B58F041357D5 , 0x3D26EB3D60A0FE78ED3E7001D92C6E49 , 0x3E8F3C5928ABC6A2DFC511F744BEA9A4 , 0x41704A5A64E45E2F1C7F563793E8ADBF , 0x418BEE2DB423E71F6874BA5B5091AE25 , 0x422904AAC613D9A411F68C8A3850709B , 0x4255C31403B51FE45A22F6707E217316 , 0x42CF432C14E499C042B964D3BBD47E12 , 0x43474AA354F0980028EA2ADE548D30CA , 0x43563F29BDC9568580156EE455CBE902 , 0x438237622DA86CFD32C7DCD2FFBF6890 , 0x4389291BA02946B2A8277A672109F65E , 0x43FC634D74433A84A70A166897B717D0 , 0x4404EE1D690760D87BC637B87379BC29 , 0x44625280C1434BD78C6A95B70764A81C , 0x447EDEAC73E74BF5E65F3FA0425404D5 , 0x44B3D027C44206F05E9BE5E1675CAF26 , 0x44CD51B5B58D47A075D42D0CE64DC6AC , 0x45B25F04816B95F2145A96B52441509A , 0x460FD85E9F0393B46C7877EBBE293204 , 0x46559D4B41E848175B16A019DBFF722B , 0x466C9187B393E005CEEB4C9986EDA143 , 0x468304361B5B8E310DFDEAE2901C8985 , 0x469F4BDA30459CF89D46B0E426BE128A , 0x46CD6CF2D7A63A7DC92D441E7033F5D2 , 0x46F83E0FC4BC9D8425967B00818027DF , 0x47524D4A4A8DC3498B366314689C80CE , 0x477469E5C29BC165A207181CC5281C5D , 0x47AE2511FB1230904EF0CD52A58E16AE , 0x47E164F0D84E9AFD3AC41A75B7BA180A , 0x47F4DA795466341FC97281145B994752 , 0x48587F1A512243859E014F58AB548B00 , 0x485E4662070C513C9796E2520585F387 , 0x48CB10CE1BE5A44245F554E94006F48B , 0x48EDCF147146EF11F765A39077E93D82 , 0x48FC18467F62F3D6A3EE73AEA8B62F8E , 0x492C8A0D29E6D991A5FC23577BC2E92E , 0x4938A899732F2BD70292378766F461CD , 0x49777543730E3C4FF95FC5EF4C79837C , 0x4999DEC0A48EFDB758117C4EE6A986E3 , 0x49C26B1DB779DDCF0F002DE1B42B6692 , 0x49F1422154C64E74A7AF27642621A9D9 , 0x4A4761917A281203AA14C6A45FA1A956 , 0x4B30EB4228423429CCCC148C6C62A729 , 0x4B42EAE38BC8072FF944894D0C9BBE3F , 0x4B59A716EFCBDB10B706F9B3FA26E7E1 , 0x4B72E2AAEF8EC52803D8AFCE9344BCB9 , 0x4B9A5583253945746F4968800B1E81B1 , 0x4CFD3261177B42EC51343DAFEE4D8EC9 , 0x4D2C8BF6AF99FBBF1412EAFD09F9BE24 , 0x4D9A4DC80DE9E723D2847D641B4E8523 , 0x4DC13579E677782C64BAA8320A1D76B1 , 0x4E137DFFEBE5D832D7716B8BE4AE88DE , 0x4E20F5ACDC05A6A432147750E5279179 , 0x4E2A58F91395539D11B8AC76F6047FC4 , 0x4E6C0AA1A602A3ECCB053D97DD51CAD6 , 0x4EB6009C20B11936A12E1017EA3845A2 , 0x4EC841A309FF52FF45C04C93120B7B67 , 0x4F8D1A77D41CC0AD9CB097F373FA1B55 , 0x501B8096355B6475EE0BA0ACA0757102 , 0x5020F05FAB2EF9A32AE79762BD559494 , 0x511C30DFA501AB787C1FA788A6255818 , 0x5168DEB0E6F467E9509473C0863242A0 , 0x52CEBE2B614B7CE4300718909422FDDE , 0x5353B13F4D4BCBA439C536364EFFB264 , 0x535407781CFE2BB6CB44E57F0F37B20C , 0x5418F7BDD834E16F6E3A0B8AFEC3263F , 0x54AA7398722309EE9625EBE47A812884 , 0x54DC8536CE9938D0CF013173F840F103 , 0x553999E05AB71305895545792E933451 , 0x55CF96CE359B37EBAB8A12F13ECDBFD2 , 0x55DF102E3F74D41C807DD5CF19AB2CB9 , 0x560A0839F0F5AAF877A0A6970DB57842 , 0x56355D12237E8E2B4B1E9EC392524A1C , 0x56E42A9B22C1E4C476AA02A32151BE78 , 0x578ED3C2D8E30070EB17A5E6AF0378BF , 0x57D98554F7DED710C5A1A6F7778CEB63 , 0x57DC1EAC6C894667B4CF57766765D06D , 0x57E1EDC25F516F12A7EA5E0F89E0A51B , 0x58DC69D0B4A3E447B5832666EBF5CF80 , 0x595E86E520D7D5ABD5C3CA1C4DDAE173 , 0x5969C368F3406B8614D8508C7B3EF01B , 0x59996E16F329774E4583168610D5452A , 0x59DE92AA28C0CCA22D392C0F1370E165 , 0x5B40E1D4043EF03E62D0F4A3CCDDA02C , 0x5BEBA467A3EE1116535A22251EFE3418 , 0x5C8AC5ADA25B23892CCBD63D80FF4AF3 , 0x5DA5669A479CE4313AA67A00916A1C60 , 0x5E1F33561F219C753008CE901B358ECC , 0x5EB9C40E82135060934FFA7E123BB7B5 , 0x5F4C6CCA5B6529F5511CDEBAEC5CCD04 , 0x5F807B64243FA8A29BF6E9B3F91B9453 , 0x5F82D4104BC33F13F8FB288A86D83EAC , 0x6121D13E824D6FC51269AA57C639BF00 , 0x6122F73D023A6BA7A37D75182324F427 , 0x61791CFF30054B2CB2D667418A0AFFBE , 0x619812B2A6B91DBA98E375A7950A5739 , 0x62526995D79D97381AE31326FB897703 , 0x62C3E4D38A3CACF49291761DDBCF0D48 , 0x639DDA5D206E54046448471C0489D468 , 0x641D534BB8C5A37CB6B113A23DBB732A , 0x649494DD73290437345F8BAFE32848DE , 0x64D0976D777675D8959E2A2A3B29208A , 0x6734C2632A73EA7B09889CAB03AAABBC , 0x673C088A150592773C0E002501BF9B71 , 0x676A9A89EF5CA0D52C79BAEF9AF7D9C9 , 0x67C33989A7C71A030D4A132BF97A32AD , 0x67E2E0822968738C99B89F73BFC52ECA , 0x685EF986EAA4DB0570C4417D092BFE7C , 0x68B7262F38B5C1678C860CDBAB836556 , 0x68E0D9760B8305C380D451E1B3C3F691 , 0x68FA3EC9781EC11A8C5249BC820DA264 , 0x6923651ECAF0487F8D3971403B714824 , 0x695669541B12417324276550C7D6E9E5 , 0x69F3B50442B4FD1F04F909C30A1D487B , 0x6A6A488F8B233B185BDF36B8C69D5353 , 0x6AA8A57BDC2E3E53A79E199F029295E2 , 0x6B27778811757ABEE253BAD17A140BA9 , 0x6B3125917104717E29E2ED588EFFE2A4 , 0x6B4F821114856D57F2084813643BBC20 , 0x6B69B750057C45D7A09ED4A59FDE88D6 , 0x6C23B3EC434D4D0A5AB14062E8F2BB6E , 0x6C91A996CF96E415D8927FE468F46CAE , 0x6CE303AF1A124DCA0020DDDC95CC4A6B , 0x6D04AE776F6C293F0DB1E622E1984FBC , 0x6D2972E47DB13835C6B78D75974DF838 , 0x6DAC794C8685C3615D751F2C217DFD7A , 0x6E2DE3BD0AAD1174FD50B71A10923447 , 0x6E413B17360576F38C1ACFBFE8793723 , 0x6F2F817F9A1885822C755AB7E4CA513D , 0x70176942A0EB3BDCE36A4BDBEF069964 , 0x70888026A6D6317288427ABF4E4F1533 , 0x71B672C0DD009873141229B4B2BD6BEB , 0x71C883DCD4219B2280CCF16B055E611B , 0x71DF419CB27FDBCFEE9B4DA956EB1BEA , 0x72314B2A142486938E7E0976232B0565 , 0x73FE3490DE4166B51B076ACD437B163D , 0x7474272064726ED01653A89F6EEEE983 , 0x74A96B4338B60ECFBC033DEA60BA0C95 , 0x75043FE0C3FC3C4741C6439EFA8894F0 , 0x7563874E1B321FE290211F0C28936323 , 0x7604DAC286824F91FD2C4031DD8579CF , 0x76482529F19E4DA628B807357DBAA26E , 0x77FE483AB9BC2C310D149FDC4B100583 , 0x782FA19045913B331FD755E2AB0227AB , 0x78712A809CA0A54F0D0EDFE03B86ED98 , 0x7920EF29A1ADDD9BCE89459915595576 , 0x793AB58676CFDE6C8B88D28FF0C46566 , 0x798057323D5A43B6A3E2F90D88C6F292 , 0x79B83889CD350FC7072979B3D9DE6CA2 , 0x7A0F0E83E11ABE96C2930354FB137A21 , 0x7AA31078B3DC4D5542266ED7FBFE3916 , 0x7AABBE59AAF70E01E17D44D9E3855439 , 0x7B74C773AB97D540475214C7121DFCE0 , 0x7BD00AFAA50DBDDC1956E8450809538C , 0x7C91993AEE69F43F67945BA104E32F4A , 0x7CB76B08E92FEE84DBCC13CDC6BE0646 , 0x7D099A567707465FC9D0ED7F63E98912 , 0x7D107A68D182E905DA4E995057C153E9 , 0x7D41006D2CA558AB64F34D865829330E , 0x7E2B65ABF6F1695C3C0339D283912A6F , 0x7E439B7EB8FD25354B9314CEC8F2FFF5 , 0x7E6B5410E3E51E3049402864EF7C6C73 , 0x7E909EEEA907D01E90A1F6D6D86DBCD1 , 0x7ED19500A64A4277A4D66792F540AFE2 , 0x7EE8684203DD5A09AA91D8DC581CF010 , 0x7EEE3DA84E9C4E445949CFB526F9AA0C , 0x7FFB38A29CC2472669BC871FC088FF7B , 0x80E708E5141BF9EB3CBABE543901387B , 0x80EAF9AA3C30190A761E292F9F67049A , 0x81A7F0627605CBC867DF787253B80F5B , 0x825EADDA231A523B904B15CD9E59E61D , 0x828FB95B9010E4A43B6ADEDCA77F5295 , 0x82C476DCC14870B443A38FAFAC8CF31B , 0x82C7226BFBA1E5AB7DAED9DB29D6EAE8 , 0x82EF77C06C8941E492CD8FC5177F0494 , 0x8401A585B3C646C648FE4696BC926025 , 0x847C8AA9331C3B0E40BF25B3E24BA464 , 0x84B33BCE6C909AAAB43C5FFBA55B6F32 , 0x850269FC49B2BA7144616A123980CA11 , 0x8538685919771A8CEEE0CDC3C816EA1F , 0x8546170B88DDB861587228B1FC7F9B09 , 0x85B2F57DF880E6B3827B6443A456F512 , 0x860F2800794C6F34C6E4986603E26D0E , 0x866D60C1B085B3E8ADD5D8ACBCF71991 , 0x86880834A5FA9A1E0CACBE9BC0A4B92D , 0x86BAAFF34D4BAC935ECCFBD049D4589B , 0x8700FF9C636A3D5B34FD775ABA29C8D1 , 0x87489E0D5446F91D9B654871BC73A19F , 0x87A97BB2FC5B286AB03ABCBA38E32B8B , 0x87D84EA7E2E69CFD1C316FE167F67F47 , 0x88FFC7A931AAADF9804A7EA535B40F4C , 0x898DACB7DA1CBC8BD3B186DE43036E18 , 0x8A2BBFD0D6DD0FB73AB0DE544B98378D , 0x8A3D53C0DB32159A66A3327803B3D2F8 , 0x8AFCB3D5E47F944D39D19916CC0C0BFF , 0x8B643BE969BF9EE65DF80F70AE677FD6 , 0x8BFA23E8B7CE3CA1E4BB397FD5053306 , 0x8D1BC376E71A91522CD02CC44542B308 , 0x8D42FCF5EFBE2462314371B976B2F68A , 0x8D6230B93E0E584FF2F0FD1FA6AA1974 , 0x8D97EF014FDB51DFBCC214A175D2000C , 0x8DA0A3D6D8E545C19324B661E3E402C8 , 0x8DAF48A5993CD4BC476FD1B919067A00 , 0x8DEF9B584A409539833D01FB55B9978D , 0x8E910057441E6D2389AF85EE1B2099D5 , 0x8ECAFD4D39C782C2E8C299D56AF1026A , 0x8FA0F3DAC610FEBDC85307846F171432 , 0x8FA7A44E45DF0F8B8A35001A363E4750 , 0x8FB48594507A91B1CD2106AF8DA11124 , 0x9005433132A472852E6ACA030D32B142 , 0x910D347A1D56710CFB59798FA3ADE103 , 0x911DC30697B2848EBA9663C7DC557A4B , 0x91343C0EE166A7AE82D2A642EA1FA9CA , 0x9186B832B95A28FF49ADF4217FC7078B , 0x91E6EB33499590EEDF0745AE21F0816E , 0x92050ADB41C8B120045042C399E339C7 , 0x924DDFC6116A63EF0FFDF3AC9F6E0426 , 0x92C81AE683A79F12EC13385CC1F3AA11 , 0x938FC44BAB75B06C1349EA071A3C6FB0 , 0x939C2D848FAFD4A0355D9D7102D0D3BD , 0x9472AFCF2397FC948CC53FD7C5F6D7CB , 0x9490EE77209B58B54F5A0EC8366471F5 , 0x9531CED738840B8C80440E59B534EECA , 0x956EC56E624D3E2B411A611686EE30C3 , 0x97068FCA8B71D48EDA087CC5040C9246 , 0x994225EF6A71B452A14F782ED803370D , 0x995F111F16F49277FAE3BD79EE2C8085 , 0x9998EBD2D5BF8937367D1F1F47DA8F9A , 0x99BDC8AFBD704E38B09055FF0629E2A0 , 0x9A7D1E6D1ADB4F12AD47A3C58EF2F198 , 0x9A863061970BAD9BA75E2D4DFEF17B49 , 0x9AE602C8E1CB48B883AA23FBC6B2E768 , 0x9B5E3A5336901D45991B2CEBBACDEC93 , 0x9C89631AB74938FBAFF758CCB0FE3E3C , 0x9CD7BED901462AD9DD45BC9219484313 , 0x9D0640C9661DC2CCE26662BFB79CA5E3 , 0x9DC37A0C1856F79C9230A2F0907FFFB2 , 0x9E4988F948F2FD29B31A99B651B685D2 , 0x9E55BA1DF483B2825642896FD93FB203 , 0x9F0001055042A27E20F6E70C56F69382 , 0x9FCB1117FF7CD5A38F37F37E20C099AA , 0x9FEFC3B820AAF7BD0CE8F81CD3BB2033 , 0xA00599F328498455D4778E5049455621 , 0xA01B793878E371933DA6CA59D019E487 , 0xA01EE9F1AD41A29A1B5D79C0DAD5A567 , 0xA02D104F29CFF0EF84EA0A908D79F4AC , 0xA12E510214E54E22BF7004C4A4F87E06 , 0xA25D9118DEA97E10214589BDED844384 , 0xA27B2091724EE2D20B9F46A01BEF4E1B , 0xA3A9DEFC59E33FE2FDC74F6F4F0FD7BB , 0xA46E331E9574C3DBDA9FDC15BAF9677C , 0xA4E61C41832EC7B0C6770C06C8C179DA , 0xA4F65A6AB4C36D54C33C2C3BC936C4B0 , 0xA4FDC06630AE2709C4C1325A262D2C59 , 0xA5490C16C5FE3F993B1389EA4CB164A7 , 0xA669014C4B0A242182F14B9856F35E17 , 0xA6CD2320BCF7425F8581E6CC36EC8E63 , 0xA77CF9B655CB5695253BB59242DCDD69 , 0xA80036434427CB3BA1C47BD2B43BE64F , 0xA85E190D06EF0110F0DEFAEA6D0E25FF , 0xA938DC9E16C259D6ABA90E0DF68FD488 , 0xAB0CD0EEBC634CEA722EA710AC3B6050 , 0xABB1AFDA566EB3929517F78089D5AEE6 , 0xAC48D4D16CED6F54A24782C5B4FF5016 , 0xAC693DDB9AC62C842D50BBE466D339AE , 0xAC73146E7FB73B827575AD1617A40CBA , 0xAC7F70B211842DF1FA54C66E63AC0389 , 0xAD3C9766BFEB7B847DAF1A2408DA1F1B , 0xAD631EA2F3B43A6C9496A722B6112042 , 0xAD634925B18FA3A5A087945E789E4B7C , 0xADA729BEBD611D2FB02D5FA39BEE118D , 0xADC9CC08D270594AC7712D711B2F6A1A , 0xAE2C27BBC0653C3727FEFFBAFB60D17A , 0xAE46D2C185295EBD1A5ED209E1FD75C7 , 0xAE89F1C1A90ED5C692BC0E4D09D813E7 , 0xAE8ED39C029B79051830104B26935A44 , 0xAEAA0FAD2EAFCEA6AB17C83ACD0025C7 , 0xAEF0343AF62B59EF847BE2869CC8B922 , 0xAEF2CFED3DDCDAF0A1C7A1E8C5ECF70C , 0xAF1EF85CF8A53801D17FCCCD49AC62CE , 0xAF67751132AD2C13238050A2E429652C , 0xAFD0781BFF005F296AC09C2D58BAF1EE , 0xAFEDED6AA177EACF1806ACE8EA9F0EDE , 0xB052E5F0043D8ACAD9488C9C113B05A3 , 0xB078F0617195919C146547EED31CCFEF , 0xB0EBE64A5D89FAEB5107DFCF1CB3E914 , 0xB104F0C049249AC9E153911CE2C10489 , 0xB1CBA0B88EB65664C6AF7CFB9770FD52 , 0xB2CF1E9DE208BF616751D3341BEB6FDB , 0xB2EFFEC2188DDF4ABEABD46C38FFA58B , 0xB31453495ACCA691E7E31B9F61EA2731 , 0xB37151FF6DCFF49780D7FDF2850DD131 , 0xB38C977D4C34752AD68E97643911CCC1 , 0xB41153BDAD58A393F946286BA62110B6 , 0xB4ADF86EFDB49CD6B6039ABF25D337BA , 0xB4DB9C73C89DC304878F3129420CB1CE , 0xB6121431CC4C223494E82ECAA12805FF , 0xB61C34138141A91CBAA934B667161099 , 0xB625FF409B9DC6E5A171F4CBA110979B , 0xB66ABCBD1FA9E10B568C6B328F0FD440 , 0xB6E8C5E76E708CB63994F34F622B1B2D , 0xB81175DCC1FF4C4F728A40C89E89A2C0 , 0xB87EBC2C062132CCD7DDAD06DEB11AFD , 0xB9113828506F88BF4E7B362245800F5E , 0xB92CEABC86DBB86E914DC9E7CBE0A5FD , 0xB9AB5FC4161A718751B68348416BA8DF , 0xBA8CE642906E2BB43695DDD3EE37E25F , 0xBABD52826C54B0C375D2935C6CCE371F , 0xBC2EF6FD22F8F737FE81027149EE2D59 , 0xBC3C95505A4AD153BDD1510327C81080 , 0xBC6E3B4656E3D27C0DD10C36B4EBDE92 , 0xBC70D7782C36914EBC165E3D9FD6447D , 0xBD0299AF787C741528D6FC34033B0FC8 , 0xBD6EB6E70E0172063D3A549FA6F06208 , 0xBEA53924C87B66B5932EA4CA29B90413 , 0xBED99C6FDF016A95A732EB8C510E4B92 , 0xBF07212DD52CB93D0240E4DD8B6CC7A4 , 0xBF56DF2AAB9EEEF11DBCCEB1CD9D4654 , 0xBF979D0D72E8B7CB8EE9EFD55A989E35 , 0xBFEFF60C4AC99A7CAE7833644D762656 , 0xC046D16D225849F2B482D534C3EC2B67 , 0xC0A96556D4CF131421BC913F1E88D85C , 0xC0FBF0139E51B53C8AC3520816DB5E6B , 0xC16EF16050BE93F0A96194070B97FB84 , 0xC2912E2423D2A4963EBC32BA437C9723 , 0xC2D68778B665B5F1FD09340E33FDDDD7 , 0xC2EB3CF9BD73AF41D3CF09836F9FEDA5 , 0xC3A1E466218C1D6134507B1F20D11363 , 0xC3EE41CC99BA074AD4322E8FA7A947F0 , 0xC47151FF7D804FEC7AFE184111FC1712 , 0xC4F470824EB3834B2BF3D1679ABCDD0A , 0xC5362CBB6B18DEF3578544E76CE1BE62 , 0xC574D888C863ACF4C831EEF3634063EF , 0xC5BE5F993DB4521306D0C6F4E52BC43E , 0xC5DC374D56DB815258317B280EDA46CF , 0xC616A18220A03E5C6C8B6662531F2C82 , 0xC7F64F7054FDE3E66728CB9B73C6F9B5 , 0xC98C35303CE9A9ED43BB1C294361D665 , 0xCB10DBEBE0BC3BC20B568B0898932E54 , 0xCC83791642C321330ADFF591A33B4DE9 , 0xCE0D7F392053291A488F82E84D924269 , 0xCEF8F11E28B03AAE9E63B44A0C17E8C4 , 0xCF0C63E2DA149F855312708B25AED4F9 );
Copy
23
0.53 ms
SELECT `rule` . `id` FROM `rule` WHERE (`rule` . `invalid` = ? ) ORDER BY `rule` . `priority` DESC , `rule` . `id` ASC LIMIT 500 OFFSET 500
SELECT `rule` . `id` FROM `rule` WHERE (`rule` . `invalid` = 0 ) ORDER BY `rule` . `priority` DESC , `rule` . `id` ASC LIMIT 500 OFFSET 500 ;
Copy
24
0.51 ms
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"""
ÏM:…\x01 ‘„\x03 È\Ì\n
c_ÅB
"""
b"Ï”T}”¦\x05 ¸ÏÇ.b34 "
b"Ïœ\x7F Õe¿v:÷鋽åÐ\x10 "
b"Ï´FÀzÌÎòP#éHô×TÇ "
b"Ð(<×åÝ3?¨r=㮂\r \x14 "
b"жøŒº÷"è\x18 ý!_¤¨\f "
b"ÑAÎmÃ^`\x10 v>\x05 Ÿ \x10\v q "
b"ÑK{EÃö0k\x17 ˜¼")Á} "
b"Ñ`”IZ^žõœ*l\x07 )Aˆ¾ "
b"Ѹ9<.ÈѰ3ÃD¶è\t è "
b"Ò˜\x19 6\v W5ž©Gç',\ "
b"ÓÁi„\x0F r«Ø)’»d=\x15 ÿŠ "
b"""
ÓË\x13 iF¬à\x1F ©ã ξ\n
ì
"""
b"Ô6…¡>cx\x1C •ÁÃV¼ÎT "
b"ÔH<ô˾b¶Ôò}±\x1F öS "
b"ÔeÉ¡ü‚¬l„ðü-ÉË0' "
b"ÔuâŽ\x06 BùqÓï%8¢\x1D £Ã "
b"Õ\x1D k\x0E\x16 ü\x08 .Uƒ\t y7\x10 "
b"Ö\x0E çÇih\x04 Ëeü•‚Ü\x01 )\x08 "
b"Ö î\x1F Õ\x16 ãÙÁ!\x15 PôÎ\x1C w "
b"×\x13 SFUIæ\x1F Â$r\x11 Ë^* "
b"×¹p )ߘÓ;P£ï}\x03 ùi "
b"×áº\x1E ½þw5¤Øü«~x0… "
b"Ø\x1C à6\x18 V/L•\x17 -\r b\x03 §\f "
b"ع-…SΡÙ\x17 #ŽÞŠjõ\t "
b"Ú’‡aJÀF\x19\x19 ¦IX\ÚÆx "
b"ÚöZ-P•1©n\x0E ¶|Q\f E\x06 "
b"""
Û]mtÞ\n
ÃC \x08\v Ä>m³E
"""
b"ÛG‡é\v „¯¯yÕÂí!‚ "
b"ÛÄ\x1D é\x01 "„f>Q׈¤ µ "
b"Ü\x07 Ã5¦nd\x11 :»í$´DõÀ "
b"Ü?O¿6ßOÑŒý\x04 ôÙßô¯ "
b"ÜÉ÷ËŽÊt&=ÅÓH]k!i "
b"ݦã˜ÿ‡0Mƾz{lÐ:¥ "
b"Þ5Ó\x7F R\x13 XâèÀN†\x1D œØ\x14 "
b"Þ@tªÿ‡uÉu‘#Üò’c0 "
b"ÞmïOR~§s.\x02\x03 –:X2 "
b"Þ¬\x1E Y‘ê†*/4’4\x07 A\x05 "
b"Þ±ŽEuÄ\x1D\x0F ¨ä'\x11 kEzZ "
b"àR±\x06 Ü€~Yž{\x1D -ΕŒ\x1A "
b"àº5áöïtL ¨Pà\x07 ¯\x16 ¯ "
b"àë¥UŒ,´Î•½o§ÖÊS› "
b"á\x1E 0rÜý9Óëâæsç\x7F Áw "
b"á8!}î´%qUBöµ´ã\x18 ~ "
b"áü#úkéí`OÈO?á\x10 ) "
b"â†`¶WîE\t ±Áì\x1A |œà "
b"âµ=&ÛÀtä=¥%\x0F\x18 \x12 "
b"ãé‘\t Þ¬°¯\x11 "é`¼\v\t Ú "
b"ä\x1C Ë$5sê\x7F ”Õû\x10 ÙÁBu "
b"åj\x16 C|¸À~€Á-³èqÀ¢ "
b"å©ýJÔûÛ/Þø\x04\x7F ÷Žgq "
b"åÅõuDl÷ØK¸\x06\x0E Òñ\x14 í "
b"æ=¢&\x1E `¬ôÏ\x15 O\x03 ‹ "
b"æ>\x08 NÃ[¡·ÈŽ}½Y-ö\x14 "
b"ç2C¶É¢öØ\x10\x14 ï@"Tû& "
b"ç:o\x08 @ÿL\x1D ª¹>’ž—È "
b"籎JØBs\x11\x0E\x01\x1C Õ>hÿ° "
b"èeëÅØ\x1D :\x01\x17 …A\x0E\x12 ËÉš "
b"è¸2ªÚš@"ÝÀ‹üJ"º¹ "
b"èè\x10 ú9¼›Ž¶ú#qI\x00 ©Š "
b"é ‘¿˜\x19 :AÞè=†Äíšk "
b"銇©ïá.ZͶ¿†p.3ê "
b"é¢u78x•:Ü’\x1F .¦=™¬ "
b"ê\r 1/æ×Õ «’È\x13 jŒ\e Y "
b"ê\x12 {tŠ\x13 ÇU9–\x16 ©Pô¿f "
b"ê;ôPz²¡¶Ë>!§)|œe "
b"ëñŒŽÞ\x16 [s¢<©‚;\x7F ™ "
b"ì\x17 œ¼K\x13 ˆë\x16 G5½ÔTD½ "
b"""
ì=4l˜§»w¤*”œ\n
TX™
"""
b"켻ݟŒ¨ë‘îÌœýoòb "
b"í¹\x04 ·ð¸þ‡y0È2†’€ "
b"íÞÆ8\x15 ¸×~™\x16 Bº\x03 ºG "
b"""
î\x7F v•×¼)‰¡\n
9«»\t ×\n
"""
b"îì\x15 wtºú\x14 ȲA\x02 çî,K "
b"ï8Ê}ˆßg¥w¢60&±Õ "
b"ï;¬ ؃4d¾ŽÌnÀ^® "
b"ï?ÆÉù\x18 ÂwÃ\v ùö\x01 ß·® "
b"ð-hAÁ\x00 òC*8Lªå£Ún "
b"ð2Y\x04 Ȫ%þs!G(±Î\x10 æ "
b"ð[Æf\x14 (>cFë0å2¿¯å "
b"ð\É’ëÂ3=\x7F FŽàÿM4 "
b"ð·k™[€–ÉR¹ì½µ'Q "
b"ñž\’wI$d(÷\x14 ÈE\x7F q "
b"ñºHº\x07 k8äÊ.\x1A\x17\x0F y¼\x7F "
b"ò[#’F!ª“M¿Ô[Y*Å\x11 "
b"òßœ¼Ž`o}f\e\x0E /Œêõº "
b"ó\x00\x1A 4°![\x15 Âx6©Ù±»z "
b"óŸCF™\x1D rõì\x18 Ó½”ÈÓ\x1C "
b"ô\x13 ñt\x06 A\x1E [§F\e Žïî "
b"ôCŽ+¬”\x1D `™\x10 µyòš_« "
b"õ\x14 Â\x06 Œ\x15 S\x03\v ج\x18\x06 í\x07 u "
b"õ0²Ë\x0F\x1C öÛ׊nÁàÎ\f _ "
b"õ†ÁŠdy¼\x12 Zò\x19 ã\e B›x "
b"öE\x07 Ž¿ÿÄ\x1E ¼=-@1S "
b"öËô\x1A UÑ…ë(ðÁ\x1E Û*V\x06 "
b"öôõ«SwîéA\x06 ú…êì "
b"ø\x04 NAÕWBåN\e ñ‹ŠÇ\x17 Ý "
b"øA·d\x05 \x1A\x1D Øíä\x0E Fn‰ü "
b"ù\x05 lyCã\x00 ìÃ÷fm\x16 Lùt "
b"ù\x1A Ê4æÐ\r çIW\x17 Ë|Š\x10 ¯ "
b"ù+§{Sé¿–¹¬ãçâ\x11 r "
b"úB1\x00\x02 +#Öuk€"í[Ém "
b"ú“R\x19 ol;Y‘L\r Ùà‚ZÚ "
b"ü0X'Ž7Þ½ÿ\x17 ± +àÀ "
b"ü:V\e —Vè¨\r E\x18 â\x14 Ø# "
b"ü}tèìã\x16 ôÃJ\x18 “¿\x01 Z^ "
b"ü›\x06 YF¡î2J§K›\x16 GJÉ "
b"ü«²ñM¢\©Gx–iü "
b"ü¯1îš5n—Ì®A\x08 E,CË "
b"üðç¦6I±”}¯dEä±y "
b"ýÞ(ŠÇr¬Ý7%®‘~¾ "
b"ýüZŒ\x04 í»×2\x16 y£A”\x07 "
b"þF¦\x07 jZÓÿ÷ëB ûX ô "
b"þ öË\x12 ¤T0E!y\x11 Èü¶û "
b"þ¨x\x01 Á1A"vÙ\x05 “íì "
b"þÔn<g[±/Àr\x19 ª$¨¤ã "
b"ÿVñ!EX°0iæ\x04 ß´\x0F ·¸ "
b"ÿ´\x0E c‹Ô{Îqƒõð\x19\e\x05 "
b"ÿ˜Y$Ú<\x7F Û\x04 VÚN7LŽ\x7F "
b"ÿøÄ)GÖ&¤û\r JÃrï\x03 "
]
SELECT
`rule` . `id` as `rule.id` ,
`rule` . `name` as `rule.name` ,
`rule` . `priority` as `rule.priority` ,
`rule` . `description` as `rule.description` ,
`rule` . `payload` as `rule.payload` ,
`rule` . `invalid` as `rule.invalid` ,
`rule` . `areas` as `rule.areas` ,
`rule` . `custom_fields` as `rule.customFields` ,
`rule` . `module_types` as `rule.moduleTypes` ,
`rule` . `created_at` as `rule.createdAt` ,
`rule` . `updated_at` as `rule.updatedAt`
FROM
`rule`
WHERE
`rule` . `id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?
)
Copy
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (0xCF4D3A8501918403C85CCC0A635FC542 , 0xCF9454AD7D9481A605B8CFC72E623334 , 0xCF9C817FD565BF763AF7E98BBDE5D010 , 0xCFB446C07ACCCEF25023E948F4D754C7 , 0xD0283CD7E5DD333FA8723DE3AE820D14 , 0xD0B6F88CBAF722E818FD21905FA4A80C , 0xD141CE6DC35E6010763E059FA0100B71 , 0xD14B7B45C3F6306B1798BC2229C17D81 , 0xD16094495A5E9EF59C2A6C07294188BE , 0xD1B8393C2EC8D1B033C3448FB6E809E8 , 0xD29819360B57359EA98E4790E7272C5C , 0xD3C169840F72ABD82992BB643D15FF8A , 0xD3CB136946ACE01FA9E320C4AABE0AEC , 0xD43685A13E63781C95C190C356BCCE54 , 0xD4483CF4CBBE62B6D4F27DB1901FF653 , 0xD465C9A1FC82AC6C84F0FC2DC9CB3027 , 0xD475E28E0642F971D3EF2538A21DA3C3 , 0xD51D6B0E16FC082E815583098F793710 , 0xD60EE7C7696804CB65FC9582DC012908 , 0xD620EE1FD516E3D9C1211550F4CE1C77 , 0xD71353465549E61FC2247211CB5E2AAD , 0xD7B970A029DF98D33B50A3EF7D03F969 , 0xD7E1BA1EBDFE7735A4D8FCAB7E783085 , 0xD81CE03618562F4C95172D0D6203A70C , 0xD8B92D8553CEA1D917238EDE8A6AF509 , 0xDA9287614AC0461919A649585CDAC678 , 0xDAF65A2D509531A96E0EB67C510C4506 , 0xDB5D6D74DE0AC343A0080BC43E6DB345 , 0xDB814787E90B84AFAF8179D5C2ED2182 , 0xDBC41DE9012284663E51D79088A420B5 , 0xDC07C335A66E64113ABBED24B444F5C0 , 0xDC3F4FBF36DF4FD18CFD04F4D9DFF4AF , 0xDCC9F7CB8DCA74263DC5D3485D6B2169 , 0xDDA6E398FF87304DC6BE7A7B6CD03AA5 , 0xDE35D37F521358E2E8C04E861D9CD814 , 0xDE4074AAFF8775C9759123DCF2926330 , 0xDE6DEF4F527EA7732E810203963A5832 , 0xDEAC1E5991EA862A2F349234AD074105 , 0xDEB18D4575C41D0FA8E427116B457A5A , 0xE052B106DC807E599E7B1D2DCE958C1A , 0xE0BA35E1F6EF744C20A850E007AF16AF , 0xE0EBA5558C2CB4CE95BD6FA7D6CA539B , 0xE11E3072DCFD39D3EBE2E673E77FC177 , 0xE138217DEEB425715542F6B5B4E3187E , 0xE1FC23FA6BE9ED604FC84F3F81E11029 , 0xE28660B657EE450990B1C1EC1A7C9CE0 , 0xE2B53D26DBC074E43DA59D250F188112 , 0xE3E99109DEACB0AF1122E960BC0B09DA , 0xE41CCB243573EA7F94D5FB10D9C14275 , 0xE56A16437CB8C07E80C12DB3E871C0A2 , 0xE5A9FD4AD4FBDB2FDEF8047FF78D6771 , 0xE5C5F575446CF7D84BB8060ED2F114ED , 0xE63D8EA2261E60ACF4CF154FAD9D038B , 0xE63E084EC35BA1B7C88E7DBD592DF614 , 0xE73243B6C9A2F6D81014EF402254FB26 , 0xE73A6F0840FF4C1DAAB93E92819E97C8 , 0xE7B18D4AD84273110E011CD53E68FFB0 , 0xE865EBC5D81D3A011785410E12CBC99A , 0xE8B832AADA9A4022DDC08BFC4A22BAB9 , 0xE8E810FA39BC9B8DB6FA23714900A98A , 0xE92091BF98193A41DEE83D86C4ED9A6B , 0xE98A87A9EFE12E5ACDB6BF86702E33EA , 0xE9A275373878953ADC921F2EA63D99AC , 0xEA0D312FE6D7D520AB92C8136A8C1B59 , 0xEA127B748A13C755399616A950F4BF66 , 0xEA3BF4507AB2A1B6CB3E21A7297C9C65 , 0xEBF18C8EDE165B73A23CA9823B7FA099 , 0xEC179CBC4B1388EB164735BDD45444BD , 0xEC3D346C98A7BB77A42A949C0A545899 , 0xECBCBBDD9F8CA8EB91EECC9CFD6FF262 , 0xEDB904B7F0B8FE8779309DC832869280 , 0xEDDEC63815B8D77E99168142BA03BA47 , 0xEE7F7695D7BC2989A10A39ABBB09D70A , 0xEEEC157774BAFA14C8B24102E7EE2C4B , 0xEF38CA7D88DF8167A577A2363026B1D5 , 0xEF3BAC20D88334AD64BE8ECC6EC05EAE , 0xEF3FC6C9F918C277C30BF9F601DFB7AE , 0xF02D6841C100F2432A384CAAE5A3DA6E , 0xF0325904C8AA25FE73214728B1CE10E6 , 0xF05BC66614283E6346EB30E532BFAFE5 , 0xF08E5CC992EBC2333D7F468DE0FF4D34 , 0xF0B76B995B8096C952B9EC8FBDB52751 , 0xF19E5C927749246428F714C8457F71AD , 0xF1BA48BA076B38E4CA2E1A170F79BC7F , 0xF25B23924621AA934DBFD45B592AC511 , 0xF2DF9CBC8E606F7D661B0E2F8CEAF5BA , 0xF3001A34B0215B15C27836A9D9B1BB7A , 0xF39F4346991D72F5EC18D3BD94C8D31C , 0xF413F1740681411E9F5BA7461B8DEFEE , 0xF4438D2BAC941D609910B579F29A5FAB , 0xF514C2068C1553030BD8AC1806ED0775 , 0xF530B2CB0F1CF6DBD78A6EC1E0CE0C5F , 0xF586C18A6479BC125AF219E31B429B78 , 0xF645078DBFFFC41E8EBC813D2D403153 , 0xF6CBF41A55D185EB28F0C11EDB2A5606 , 0xF6F481F5AB5377EEE94106FA859FEAEC , 0xF8044E41D55742E54E1BF18B8AC717DD , 0xF841B76405811A1DD8EDE40E466E89FC , 0xF9056C7943E300ECC3F7666D164CF974 , 0xF91ACA34E6D00DE7495717CB7C8A10AF , 0xF92BA77B53E9BF9D96B9ACE3E7E21172 , 0xFA423100022B23D6756B8022ED5BC96D , 0xFA9352196F6C3B59914C0DD9E0825ADA , 0xFC305827AD8E37DEBDFF17B1A02BE0C0 , 0xFC3A561B9756E8A80D4518E2AD14D823 , 0xFC7D74E8ECE316F4C34A1893BF015A5E , 0xFC9B065946A1EE324AA74B9B16474AC9 , 0xFCABB2F1814DA25CA947789F96698EFC , 0xFCAF31EE9A356E97CCAE4108452C43CB , 0xFCF0E78FA63649B1947DAF6445E4B179 , 0xFDDE8F288AC772ACDD3725AE917E9FBE , 0xFDFC5A8C04EDBBD73216AD79A3419407 , 0xFE46A6076A5AD3FFF7EB42A0FB58A0F4 , 0xFEA0F6CB12A4543045217911C8FCB6FB , 0xFEA87801C13141228F76D90593EDEC81 , 0xFED46E3C675BB12FC07219AA24A8A4E3 , 0xFF56F1214558B03069E604DFB40FB7B8 , 0xFF81B40E638BD47BCE7183F5F0191B05 , 0xFF985924DA3C7FDB0456DA4E374C8E7F , 0xFFF8C42947D626A48FFB0D4AC372EF03 );
Copy
25
0.21 ms
SELECT `sales_channel_country` . `sales_channel_id` , `sales_channel_country` . `country_id` FROM `sales_channel_country` WHERE (`sales_channel_country` . `sales_channel_id` = ? AND `sales_channel_country` . `country_id` = ? )
Parameters :
[
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
b"Å\x08 ×PÉVKÿ»IQ\x1E øP\x08 r "
]
SELECT `sales_channel_country` . `sales_channel_id` , `sales_channel_country` . `country_id` FROM `sales_channel_country` WHERE (`sales_channel_country` . `sales_channel_id` = 0xCD6592C636AE4BF38378B01A9B31E46D AND `sales_channel_country` . `country_id` = 0xC508D750C9564BFFBB49511EF8500872 );
Copy
26
0.55 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0xC3057BB031634C669CD6DFB0D4ACBB15 ));
Copy
27
0.18 ms
SELECT `category_translation` . `name` as `category_translation.name` , `category_translation` . `breadcrumb` as `category_translation.breadcrumb` , `category_translation` . `slot_config` as `category_translation.slotConfig` , `category_translation` . `link_type` as `category_translation.linkType` , `category_translation` . `internal_link` as `category_translation.internalLink` , `category_translation` . `external_link` as `category_translation.externalLink` , `category_translation` . `link_new_tab` as `category_translation.linkNewTab` , `category_translation` . `description` as `category_translation.description` , `category_translation` . `meta_title` as `category_translation.metaTitle` , `category_translation` . `meta_description` as `category_translation.metaDescription` , `category_translation` . `keywords` as `category_translation.keywords` , `category_translation` . `custom_fields` as `category_translation.customFields` , `category_translation` . `created_at` as `category_translation.createdAt` , `category_translation` . `updated_at` as `category_translation.updatedAt` , `category_translation` . `category_id` as `category_translation.categoryId` , `category_translation` . `language_id` as `category_translation.languageId` , `category_translation` . `category_version_id` as `category_translation.categoryVersionId` FROM `category_translation` WHERE (`category_translation` . `category_version_id` = ? ) AND (((`category_translation` . `category_id` IN (? ))))
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
]
SELECT `category_translation` . `name` as `category_translation.name` , `category_translation` . `breadcrumb` as `category_translation.breadcrumb` , `category_translation` . `slot_config` as `category_translation.slotConfig` , `category_translation` . `link_type` as `category_translation.linkType` , `category_translation` . `internal_link` as `category_translation.internalLink` , `category_translation` . `external_link` as `category_translation.externalLink` , `category_translation` . `link_new_tab` as `category_translation.linkNewTab` , `category_translation` . `description` as `category_translation.description` , `category_translation` . `meta_title` as `category_translation.metaTitle` , `category_translation` . `meta_description` as `category_translation.metaDescription` , `category_translation` . `keywords` as `category_translation.keywords` , `category_translation` . `custom_fields` as `category_translation.customFields` , `category_translation` . `created_at` as `category_translation.createdAt` , `category_translation` . `updated_at` as `category_translation.updatedAt` , `category_translation` . `category_id` as `category_translation.categoryId` , `category_translation` . `language_id` as `category_translation.languageId` , `category_translation` . `category_version_id` as `category_translation.categoryVersionId` FROM `category_translation` WHERE (`category_translation` . `category_version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`category_translation` . `category_id` IN (0xC3057BB031634C669CD6DFB0D4ACBB15 ))));
Copy
28
0.26 ms
SELECT `cms_page` . `id` as `cms_page.id` , `cms_page` . `version_id` as `cms_page.versionId` , `cms_page` . `type` as `cms_page.type` , `cms_page` . `entity` as `cms_page.entity` , `cms_page` . `css_class` as `cms_page.cssClass` , `cms_page` . `config` as `cms_page.config` , `cms_page` . `preview_media_id` as `cms_page.previewMediaId` , `cms_page` . `locked` as `cms_page.locked` , `cms_page` . `created_at` as `cms_page.createdAt` , `cms_page` . `updated_at` as `cms_page.updatedAt` , `cms_page.translation.name` , `cms_page.translation.name` as `cms_page.name` , `cms_page.translation.customFields` , `cms_page.translation.customFields` as `cms_page.customFields` FROM `cms_page` LEFT JOIN (SELECT `cms_page.translation` . `cms_page_id` , `cms_page.translation` . `cms_page_version_id` , `cms_page.translation` . `name` as `cms_page.translation.name` , `cms_page.translation` . `custom_fields` as `cms_page.translation.customFields` FROM `cms_page_translation` `cms_page.translation` WHERE `cms_page.translation` . `language_id` = ? ) `cms_page.cms_page_translation` ON `cms_page.cms_page_translation` . `cms_page_id` = `cms_page` . `id` AND `cms_page.cms_page_translation` . `cms_page_version_id` = `cms_page` . `version_id` WHERE (`cms_page` . `version_id` = ? ) AND (`cms_page` . `id` IN (? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"vˆT\x04 °{KC·ñ \x06 xµ\x05 œ "
]
SELECT `cms_page` . `id` as `cms_page.id` , `cms_page` . `version_id` as `cms_page.versionId` , `cms_page` . `type` as `cms_page.type` , `cms_page` . `entity` as `cms_page.entity` , `cms_page` . `css_class` as `cms_page.cssClass` , `cms_page` . `config` as `cms_page.config` , `cms_page` . `preview_media_id` as `cms_page.previewMediaId` , `cms_page` . `locked` as `cms_page.locked` , `cms_page` . `created_at` as `cms_page.createdAt` , `cms_page` . `updated_at` as `cms_page.updatedAt` , `cms_page.translation.name` , `cms_page.translation.name` as `cms_page.name` , `cms_page.translation.customFields` , `cms_page.translation.customFields` as `cms_page.customFields` FROM `cms_page` LEFT JOIN (SELECT `cms_page.translation` . `cms_page_id` , `cms_page.translation` . `cms_page_version_id` , `cms_page.translation` . `name` as `cms_page.translation.name` , `cms_page.translation` . `custom_fields` as `cms_page.translation.customFields` FROM `cms_page_translation` `cms_page.translation` WHERE `cms_page.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `cms_page.cms_page_translation` ON `cms_page.cms_page_translation` . `cms_page_id` = `cms_page` . `id` AND `cms_page.cms_page_translation` . `cms_page_version_id` = `cms_page` . `version_id` WHERE (`cms_page` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`cms_page` . `id` IN (0x76885404B07B4B43B7F1A00678B5059C ));
Copy
29
0.34 ms
SELECT `cms_section` . `id` as `cms_section.id` , `cms_section` . `version_id` as `cms_section.versionId` , `cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` , `cms_section` . `position` as `cms_section.position` , `cms_section` . `type` as `cms_section.type` , `cms_section` . `locked` as `cms_section.locked` , `cms_section` . `name` as `cms_section.name` , `cms_section` . `sizing_mode` as `cms_section.sizingMode` , `cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` , `cms_section` . `background_color` as `cms_section.backgroundColor` , `cms_section` . `background_media_id` as `cms_section.backgroundMediaId` , `cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` , `cms_section` . `css_class` as `cms_section.cssClass` , `cms_section` . `cms_page_id` as `cms_section.pageId` , `cms_section` . `visibility` as `cms_section.visibility` , `cms_section` . `custom_fields` as `cms_section.customFields` , `cms_section` . `created_at` as `cms_section.createdAt` , `cms_section` . `updated_at` as `cms_section.updatedAt` , `cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` , `cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` , `cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` , `cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` , `cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` , `cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` , `cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` , `cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` , `cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` , `cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` , `cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` , `cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` , `cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` , `cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` , `cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` , `cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` , `cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` , `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` , `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` , `cms_section.backgroundMedia.translation.customFields` , `cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields` FROM `cms_section` LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_section.backgroundMedia.translation` . `media_id` , `cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields` FROM `media_translation` `cms_section.backgroundMedia.translation` WHERE `cms_section.backgroundMedia.translation` . `language_id` = ? ) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id` WHERE (`cms_section` . `version_id` = ? ) AND (((`cms_section` . `cms_page_id` IN (? ))))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"vˆT\x04 °{KC·ñ \x06 xµ\x05 œ "
]
SELECT
`cms_section` . `id` as `cms_section.id` ,
`cms_section` . `version_id` as `cms_section.versionId` ,
`cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` ,
`cms_section` . `position` as `cms_section.position` ,
`cms_section` . `type` as `cms_section.type` ,
`cms_section` . `locked` as `cms_section.locked` ,
`cms_section` . `name` as `cms_section.name` ,
`cms_section` . `sizing_mode` as `cms_section.sizingMode` ,
`cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` ,
`cms_section` . `background_color` as `cms_section.backgroundColor` ,
`cms_section` . `background_media_id` as `cms_section.backgroundMediaId` ,
`cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` ,
`cms_section` . `css_class` as `cms_section.cssClass` ,
`cms_section` . `cms_page_id` as `cms_section.pageId` ,
`cms_section` . `visibility` as `cms_section.visibility` ,
`cms_section` . `custom_fields` as `cms_section.customFields` ,
`cms_section` . `created_at` as `cms_section.createdAt` ,
`cms_section` . `updated_at` as `cms_section.updatedAt` ,
`cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` ,
`cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` ,
`cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` ,
`cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` ,
`cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` ,
`cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` ,
`cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` ,
`cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` ,
`cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` ,
`cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` ,
`cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` ,
`cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` ,
`cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` ,
`cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` ,
`cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` ,
`cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` ,
`cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` ,
`cms_section.backgroundMedia.translation.title` ,
`cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` ,
`cms_section.backgroundMedia.translation.alt` ,
`cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` ,
`cms_section.backgroundMedia.translation.customFields` ,
`cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields`
FROM
`cms_section`
LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id`
LEFT JOIN (
SELECT
`cms_section.backgroundMedia.translation` . `media_id` ,
`cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` ,
`cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` ,
`cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields`
FROM
`media_translation` `cms_section.backgroundMedia.translation`
WHERE
`cms_section.backgroundMedia.translation` . `language_id` = ?
) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id`
WHERE
(`cms_section` . `version_id` = ? )
AND (
(
(
`cms_section` . `cms_page_id` IN (? )
)
)
)
Copy
SELECT `cms_section` . `id` as `cms_section.id` , `cms_section` . `version_id` as `cms_section.versionId` , `cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` , `cms_section` . `position` as `cms_section.position` , `cms_section` . `type` as `cms_section.type` , `cms_section` . `locked` as `cms_section.locked` , `cms_section` . `name` as `cms_section.name` , `cms_section` . `sizing_mode` as `cms_section.sizingMode` , `cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` , `cms_section` . `background_color` as `cms_section.backgroundColor` , `cms_section` . `background_media_id` as `cms_section.backgroundMediaId` , `cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` , `cms_section` . `css_class` as `cms_section.cssClass` , `cms_section` . `cms_page_id` as `cms_section.pageId` , `cms_section` . `visibility` as `cms_section.visibility` , `cms_section` . `custom_fields` as `cms_section.customFields` , `cms_section` . `created_at` as `cms_section.createdAt` , `cms_section` . `updated_at` as `cms_section.updatedAt` , `cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` , `cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` , `cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` , `cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` , `cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` , `cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` , `cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` , `cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` , `cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` , `cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` , `cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` , `cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` , `cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` , `cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` , `cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` , `cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` , `cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` , `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` , `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` , `cms_section.backgroundMedia.translation.customFields` , `cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields` FROM `cms_section` LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_section.backgroundMedia.translation` . `media_id` , `cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields` FROM `media_translation` `cms_section.backgroundMedia.translation` WHERE `cms_section.backgroundMedia.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id` WHERE (`cms_section` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_section` . `cms_page_id` IN (0x76885404B07B4B43B7F1A00678B5059C ))));
Copy
30
0.34 ms
SELECT `cms_block` . `id` as `cms_block.id` , `cms_block` . `version_id` as `cms_block.versionId` , `cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` , `cms_block` . `position` as `cms_block.position` , `cms_block` . `type` as `cms_block.type` , `cms_block` . `locked` as `cms_block.locked` , `cms_block` . `name` as `cms_block.name` , `cms_block` . `section_position` as `cms_block.sectionPosition` , `cms_block` . `margin_top` as `cms_block.marginTop` , `cms_block` . `margin_bottom` as `cms_block.marginBottom` , `cms_block` . `margin_left` as `cms_block.marginLeft` , `cms_block` . `margin_right` as `cms_block.marginRight` , `cms_block` . `background_color` as `cms_block.backgroundColor` , `cms_block` . `background_media_id` as `cms_block.backgroundMediaId` , `cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` , `cms_block` . `css_class` as `cms_block.cssClass` , `cms_block` . `visibility` as `cms_block.visibility` , `cms_block` . `cms_section_id` as `cms_block.sectionId` , `cms_block` . `custom_fields` as `cms_block.customFields` , `cms_block` . `created_at` as `cms_block.createdAt` , `cms_block` . `updated_at` as `cms_block.updatedAt` , `cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` , `cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` , `cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` , `cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` , `cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` , `cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` , `cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` , `cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` , `cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` , `cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` , `cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` , `cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` , `cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` , `cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` , `cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` , `cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` , `cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` , `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` , `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` , `cms_block.backgroundMedia.translation.customFields` , `cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields` FROM `cms_block` LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_block.backgroundMedia.translation` . `media_id` , `cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields` FROM `media_translation` `cms_block.backgroundMedia.translation` WHERE `cms_block.backgroundMedia.translation` . `language_id` = ? ) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id` WHERE (`cms_block` . `version_id` = ? ) AND (((`cms_block` . `cms_section_id` IN (? , ? ))))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"/š\x02 ûª=B)¾àÇ᤹Z\x1D "
b"/ó¶\x05 –ßA'Œç51˜)ûø "
]
SELECT
`cms_block` . `id` as `cms_block.id` ,
`cms_block` . `version_id` as `cms_block.versionId` ,
`cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` ,
`cms_block` . `position` as `cms_block.position` ,
`cms_block` . `type` as `cms_block.type` ,
`cms_block` . `locked` as `cms_block.locked` ,
`cms_block` . `name` as `cms_block.name` ,
`cms_block` . `section_position` as `cms_block.sectionPosition` ,
`cms_block` . `margin_top` as `cms_block.marginTop` ,
`cms_block` . `margin_bottom` as `cms_block.marginBottom` ,
`cms_block` . `margin_left` as `cms_block.marginLeft` ,
`cms_block` . `margin_right` as `cms_block.marginRight` ,
`cms_block` . `background_color` as `cms_block.backgroundColor` ,
`cms_block` . `background_media_id` as `cms_block.backgroundMediaId` ,
`cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` ,
`cms_block` . `css_class` as `cms_block.cssClass` ,
`cms_block` . `visibility` as `cms_block.visibility` ,
`cms_block` . `cms_section_id` as `cms_block.sectionId` ,
`cms_block` . `custom_fields` as `cms_block.customFields` ,
`cms_block` . `created_at` as `cms_block.createdAt` ,
`cms_block` . `updated_at` as `cms_block.updatedAt` ,
`cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` ,
`cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` ,
`cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` ,
`cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` ,
`cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` ,
`cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` ,
`cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` ,
`cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` ,
`cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` ,
`cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` ,
`cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` ,
`cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` ,
`cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` ,
`cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` ,
`cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` ,
`cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` ,
`cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` ,
`cms_block.backgroundMedia.translation.title` ,
`cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` ,
`cms_block.backgroundMedia.translation.alt` ,
`cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` ,
`cms_block.backgroundMedia.translation.customFields` ,
`cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields`
FROM
`cms_block`
LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id`
LEFT JOIN (
SELECT
`cms_block.backgroundMedia.translation` . `media_id` ,
`cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` ,
`cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` ,
`cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields`
FROM
`media_translation` `cms_block.backgroundMedia.translation`
WHERE
`cms_block.backgroundMedia.translation` . `language_id` = ?
) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id`
WHERE
(`cms_block` . `version_id` = ? )
AND (
(
(
`cms_block` . `cms_section_id` IN (? , ? )
)
)
)
Copy
SELECT `cms_block` . `id` as `cms_block.id` , `cms_block` . `version_id` as `cms_block.versionId` , `cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` , `cms_block` . `position` as `cms_block.position` , `cms_block` . `type` as `cms_block.type` , `cms_block` . `locked` as `cms_block.locked` , `cms_block` . `name` as `cms_block.name` , `cms_block` . `section_position` as `cms_block.sectionPosition` , `cms_block` . `margin_top` as `cms_block.marginTop` , `cms_block` . `margin_bottom` as `cms_block.marginBottom` , `cms_block` . `margin_left` as `cms_block.marginLeft` , `cms_block` . `margin_right` as `cms_block.marginRight` , `cms_block` . `background_color` as `cms_block.backgroundColor` , `cms_block` . `background_media_id` as `cms_block.backgroundMediaId` , `cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` , `cms_block` . `css_class` as `cms_block.cssClass` , `cms_block` . `visibility` as `cms_block.visibility` , `cms_block` . `cms_section_id` as `cms_block.sectionId` , `cms_block` . `custom_fields` as `cms_block.customFields` , `cms_block` . `created_at` as `cms_block.createdAt` , `cms_block` . `updated_at` as `cms_block.updatedAt` , `cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` , `cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` , `cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` , `cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` , `cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` , `cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` , `cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` , `cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` , `cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` , `cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` , `cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` , `cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` , `cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` , `cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` , `cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` , `cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` , `cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` , `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` , `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` , `cms_block.backgroundMedia.translation.customFields` , `cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields` FROM `cms_block` LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_block.backgroundMedia.translation` . `media_id` , `cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields` FROM `media_translation` `cms_block.backgroundMedia.translation` WHERE `cms_block.backgroundMedia.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id` WHERE (`cms_block` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_block` . `cms_section_id` IN (0x2F9A02FBAA3D4229BEE0C7E1A4B95A1D , 0x2FF3B60596DF41278CE735319829FBF8 ))));
Copy
31
0.26 ms
SELECT `cms_slot` . `id` as `cms_slot.id` , `cms_slot` . `version_id` as `cms_slot.versionId` , `cms_slot` . `cms_block_version_id` as `cms_slot.cmsBlockVersionId` , `cms_slot` . `type` as `cms_slot.type` , `cms_slot` . `slot` as `cms_slot.slot` , `cms_slot` . `locked` as `cms_slot.locked` , `cms_slot` . `cms_block_id` as `cms_slot.blockId` , `cms_slot` . `created_at` as `cms_slot.createdAt` , `cms_slot` . `updated_at` as `cms_slot.updatedAt` , `cms_slot.translation.config` , `cms_slot.translation.config` as `cms_slot.config` , `cms_slot.translation.customFields` , `cms_slot.translation.customFields` as `cms_slot.customFields` FROM `cms_slot` LEFT JOIN (SELECT `cms_slot.translation` . `cms_slot_id` , `cms_slot.translation` . `cms_slot_version_id` , `cms_slot.translation` . `config` as `cms_slot.translation.config` , `cms_slot.translation` . `custom_fields` as `cms_slot.translation.customFields` FROM `cms_slot_translation` `cms_slot.translation` WHERE `cms_slot.translation` . `language_id` = ? ) `cms_slot.cms_slot_translation` ON `cms_slot.cms_slot_translation` . `cms_slot_id` = `cms_slot` . `id` AND `cms_slot.cms_slot_translation` . `cms_slot_version_id` = `cms_slot` . `version_id` WHERE (`cms_slot` . `version_id` = ? ) AND (((`cms_slot` . `cms_block_id` IN (? , ? , ? , ? ))))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"‚Ä|°LžCl„ÌFI2¡4J "
b"ÇE\t ø\r IÚ–„Á¬Î\x10\x1D "
b"æôe‚ßhNÿ¦$oñ˶‡m "
b"™,ÉX}\x1C FÀº\x1F ¥p{J«< "
]
SELECT `cms_slot` . `id` as `cms_slot.id` , `cms_slot` . `version_id` as `cms_slot.versionId` , `cms_slot` . `cms_block_version_id` as `cms_slot.cmsBlockVersionId` , `cms_slot` . `type` as `cms_slot.type` , `cms_slot` . `slot` as `cms_slot.slot` , `cms_slot` . `locked` as `cms_slot.locked` , `cms_slot` . `cms_block_id` as `cms_slot.blockId` , `cms_slot` . `created_at` as `cms_slot.createdAt` , `cms_slot` . `updated_at` as `cms_slot.updatedAt` , `cms_slot.translation.config` , `cms_slot.translation.config` as `cms_slot.config` , `cms_slot.translation.customFields` , `cms_slot.translation.customFields` as `cms_slot.customFields` FROM `cms_slot` LEFT JOIN (SELECT `cms_slot.translation` . `cms_slot_id` , `cms_slot.translation` . `cms_slot_version_id` , `cms_slot.translation` . `config` as `cms_slot.translation.config` , `cms_slot.translation` . `custom_fields` as `cms_slot.translation.customFields` FROM `cms_slot_translation` `cms_slot.translation` WHERE `cms_slot.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `cms_slot.cms_slot_translation` ON `cms_slot.cms_slot_translation` . `cms_slot_id` = `cms_slot` . `id` AND `cms_slot.cms_slot_translation` . `cms_slot_version_id` = `cms_slot` . `version_id` WHERE (`cms_slot` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_slot` . `cms_block_id` IN (0x82C47CB04C9E436C84CC464932A1344A , 0x8EC74509F80D49DA9684C1AC9DCE101D , 0xE6F46582DF684EFFA6246FF1CBB6876D , 0x992CC9587D1C46C0BA1FA5707B4AAB3C ))));
Copy
32
0.24 ms
SELECT `product_sorting` . `id` as `product_sorting.id` , `product_sorting` . `locked` as `product_sorting.locked` , `product_sorting` . `url_key` as `product_sorting.key` , `product_sorting` . `priority` as `product_sorting.priority` , `product_sorting` . `active` as `product_sorting.active` , `product_sorting` . `fields` as `product_sorting.fields` , `product_sorting` . `created_at` as `product_sorting.createdAt` , `product_sorting` . `updated_at` as `product_sorting.updatedAt` , `product_sorting.translation.label` , `product_sorting.translation.label` as `product_sorting.label` FROM `product_sorting` LEFT JOIN (SELECT `product_sorting.translation` . `product_sorting_id` , `product_sorting.translation` . `label` as `product_sorting.translation.label` FROM `product_sorting_translation` `product_sorting.translation` WHERE `product_sorting.translation` . `language_id` = ? ) `product_sorting.product_sorting_translation` ON `product_sorting.product_sorting_translation` . `product_sorting_id` = `product_sorting` . `id` WHERE `product_sorting` . `id` IN (? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"´ \x18 ·vGÉ‹\t\x17 DV;ûÍ "
]
SELECT `product_sorting` . `id` as `product_sorting.id` , `product_sorting` . `locked` as `product_sorting.locked` , `product_sorting` . `url_key` as `product_sorting.key` , `product_sorting` . `priority` as `product_sorting.priority` , `product_sorting` . `active` as `product_sorting.active` , `product_sorting` . `fields` as `product_sorting.fields` , `product_sorting` . `created_at` as `product_sorting.createdAt` , `product_sorting` . `updated_at` as `product_sorting.updatedAt` , `product_sorting.translation.label` , `product_sorting.translation.label` as `product_sorting.label` FROM `product_sorting` LEFT JOIN (SELECT `product_sorting.translation` . `product_sorting_id` , `product_sorting.translation` . `label` as `product_sorting.translation.label` FROM `product_sorting_translation` `product_sorting.translation` WHERE `product_sorting.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `product_sorting.product_sorting_translation` ON `product_sorting.product_sorting_translation` . `product_sorting_id` = `product_sorting` . `id` WHERE `product_sorting` . `id` IN (0xB4A018B7768147C98B091744563BFBCD );
Copy
33
0.13 ms
SELECT `product_sorting` . `id` FROM `product_sorting` WHERE (`product_sorting` . `active` = ? ) ORDER BY `product_sorting` . `priority` DESC
SELECT `product_sorting` . `id` FROM `product_sorting` WHERE (`product_sorting` . `active` = 1 ) ORDER BY `product_sorting` . `priority` DESC ;
Copy
34
0.21 ms
SELECT `product_sorting` . `id` as `product_sorting.id` , `product_sorting` . `locked` as `product_sorting.locked` , `product_sorting` . `url_key` as `product_sorting.key` , `product_sorting` . `priority` as `product_sorting.priority` , `product_sorting` . `active` as `product_sorting.active` , `product_sorting` . `fields` as `product_sorting.fields` , `product_sorting` . `created_at` as `product_sorting.createdAt` , `product_sorting` . `updated_at` as `product_sorting.updatedAt` , `product_sorting.translation.label` , `product_sorting.translation.label` as `product_sorting.label` FROM `product_sorting` LEFT JOIN (SELECT `product_sorting.translation` . `product_sorting_id` , `product_sorting.translation` . `label` as `product_sorting.translation.label` FROM `product_sorting_translation` `product_sorting.translation` WHERE `product_sorting.translation` . `language_id` = ? ) `product_sorting.product_sorting_translation` ON `product_sorting.product_sorting_translation` . `product_sorting_id` = `product_sorting` . `id` WHERE `product_sorting` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"´ \x18 ·vGÉ‹\t\x17 DV;ûÍ "
b"""
\Ú\x06 .~GΔ\x15 d¼¾\x05 \n
«
"""
b"ëbxQRjE-¸Ùc™#é!° "
b"X`\r üN$N ©\x1F P\x1A ‚}8ž "
b"~sÌ+¤ÝJá‘\t dA\\x16 vJ "
b"–7JüB½A’¥Š\x1F r«—Gà "
b"\x06 jkîü~Kn‰)ÖL(ˆ¥\x1A "
b""?xÂbúL¿ŸÕ1œ1Q±& "
]
SELECT `product_sorting` . `id` as `product_sorting.id` , `product_sorting` . `locked` as `product_sorting.locked` , `product_sorting` . `url_key` as `product_sorting.key` , `product_sorting` . `priority` as `product_sorting.priority` , `product_sorting` . `active` as `product_sorting.active` , `product_sorting` . `fields` as `product_sorting.fields` , `product_sorting` . `created_at` as `product_sorting.createdAt` , `product_sorting` . `updated_at` as `product_sorting.updatedAt` , `product_sorting.translation.label` , `product_sorting.translation.label` as `product_sorting.label` FROM `product_sorting` LEFT JOIN (SELECT `product_sorting.translation` . `product_sorting_id` , `product_sorting.translation` . `label` as `product_sorting.translation.label` FROM `product_sorting_translation` `product_sorting.translation` WHERE `product_sorting.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `product_sorting.product_sorting_translation` ON `product_sorting.product_sorting_translation` . `product_sorting_id` = `product_sorting` . `id` WHERE `product_sorting` . `id` IN (0xB4A018B7768147C98B091744563BFBCD , 0x5CDA06202E7E47CE941564BCBE050AAB , 0xEB627851526A452DB8D9639923E921B0 , 0x58600DFC4E244E20A91F501A827D389E , 0x7E73CC2BA4DD4AE1910964415C16764A , 0x96374AFC42BD4192A58A1F72AB9747C3 , 0x066A6BEEFC7E4B6E8929D64C2888A51A , 0x223F78C262FA4CBF9FD5319C3151B126 );
Copy
35
0.11 ms
SELECT `category` . `id` , `category` . `auto_increment` FROM `category` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? )) LIMIT 1
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
]
SELECT `category` . `id` , `category` . `auto_increment` FROM `category` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0xC3057BB031634C669CD6DFB0D4ACBB15 )) LIMIT 1 ;
Copy
36
0.08 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `product_stream_id` as `category.productStreamId` FROM `category` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
]
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `product_stream_id` as `category.productStreamId` FROM `category` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0xC3057BB031634C669CD6DFB0D4ACBB15 ));
Copy
37
23.24 ms
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ) AND NOT (IFNULL (`product` . `is_closeout` , `product.parent` . `is_closeout` ) < = > ? AND `product` . `available` < = > ? ))) GROUP BY `product` . `display_group` ORDER BY MIN (`product` . `product_number` ) ASC , MIN (`product` . `id` ) ASC LIMIT 24 OFFSET 1848
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
true
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
null
true
false
]
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0xCD6592C636AE4BF38378B01A9B31E46D AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = 0xC3057BB031634C669CD6DFB0D4ACBB15 AND NOT (`product` . `display_group` < = > NULL ) AND NOT (IFNULL (`product` . `is_closeout` , `product.parent` . `is_closeout` ) < = > 1 AND `product` . `available` < = > 0 ))) GROUP BY `product` . `display_group` ORDER BY MIN (`product` . `product_number` ) ASC , MIN (`product` . `id` ) ASC LIMIT 24 OFFSET 1848 ;
Copy
38
18.02 ms
SELECT COUNT (* ) FROM (
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ) AND NOT (IFNULL (`product` . `is_closeout` , `product.parent` . `is_closeout` ) < = > ? AND `product` . `available` < = > ? ))) GROUP BY `product` . `display_group` ) total
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
true
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
null
true
false
]
SELECT COUNT (* ) FROM (
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0xCD6592C636AE4BF38378B01A9B31E46D AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = 0xC3057BB031634C669CD6DFB0D4ACBB15 AND NOT (`product` . `display_group` < = > NULL ) AND NOT (IFNULL (`product` . `is_closeout` , `product.parent` . `is_closeout` ) < = > 1 AND `product` . `available` < = > 0 ))) GROUP BY `product` . `display_group` ) total ;
Copy
39
55.50 ms
SELECT LOWER (HEX (`product.properties` . `id` )) as `properties.key` , COUNT (`product` . `id` ) as `properties.count` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `product_property` `product.properties.mapping` ON `product` . `properties` = `product.properties.mapping` . `product_id` AND `product` . `version_id` = `product.properties.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` LEFT JOIN `property_group_option` `product.properties` ON `product.properties.mapping` . `property_group_option_id` = `product.properties` . `id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ) AND NOT (IFNULL (`product` . `is_closeout` , `product.parent` . `is_closeout` ) < = > ? AND `product` . `available` < = > ? ))) GROUP BY `product.properties` . `id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
true
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
null
true
false
]
SELECT LOWER (HEX (`product.properties` . `id` )) as `properties.key` , COUNT (`product` . `id` ) as `properties.count` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `product_property` `product.properties.mapping` ON `product` . `properties` = `product.properties.mapping` . `product_id` AND `product` . `version_id` = `product.properties.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` LEFT JOIN `property_group_option` `product.properties` ON `product.properties.mapping` . `property_group_option_id` = `product.properties` . `id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0xCD6592C636AE4BF38378B01A9B31E46D AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = 0xC3057BB031634C669CD6DFB0D4ACBB15 AND NOT (`product` . `display_group` < = > NULL ) AND NOT (IFNULL (`product` . `is_closeout` , `product.parent` . `is_closeout` ) < = > 1 AND `product` . `available` < = > 0 ))) GROUP BY `product.properties` . `id` ;
Copy
40
15.02 ms
SELECT LOWER (HEX (`product.options` . `id` )) as `options.key` , COUNT (`product` . `id` ) as `options.count` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `product_option` `product.options.mapping` ON `product` . `id` = `product.options.mapping` . `product_id` AND `product` . `version_id` = `product.options.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` LEFT JOIN `property_group_option` `product.options` ON `product.options.mapping` . `property_group_option_id` = `product.options` . `id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ) AND NOT (IFNULL (`product` . `is_closeout` , `product.parent` . `is_closeout` ) < = > ? AND `product` . `available` < = > ? ))) GROUP BY `product.options` . `id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
true
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
null
true
false
]
SELECT LOWER (HEX (`product.options` . `id` )) as `options.key` , COUNT (`product` . `id` ) as `options.count` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `product_option` `product.options.mapping` ON `product` . `id` = `product.options.mapping` . `product_id` AND `product` . `version_id` = `product.options.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` LEFT JOIN `property_group_option` `product.options` ON `product.options.mapping` . `property_group_option_id` = `product.options` . `id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0xCD6592C636AE4BF38378B01A9B31E46D AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = 0xC3057BB031634C669CD6DFB0D4ACBB15 AND NOT (`product` . `display_group` < = > NULL ) AND NOT (IFNULL (`product` . `is_closeout` , `product.parent` . `is_closeout` ) < = > 1 AND `product` . `available` < = > 0 ))) GROUP BY `product.options` . `id` ;
Copy
41
0.49 ms
SELECT
parent . variant_listing_config as variantListingConfig ,
LOWER (HEX (child . id )) as id ,
LOWER (HEX (parent . id )) as parentId
FROM product as child
INNER JOIN product as parent
ON parent . id = child . parent_id
AND parent . version_id = child . version_id
WHERE child . version_id = ?
AND child . id IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"PÊ.TÝ\x1D GužÉÞ«ÁxNœ "
b",hŽy.5L›–äiÖ¹zš’ "
b"·³W/)\r I\x03 œ>\x19 µÓ R¥ "
b"R£\t mÀÞD\x1D £³ž#M–fë "
b"x\x18 7”ößBn¢ý\x03 ¥ý4:F "
b"%=îŒhxLì‚Kf\x14 S\x1E Š\x18 "
b"'\t N‘îGO»ÃÌ»X\W\x01 "
b"Àˆt¨˜\x02 D9»³º…§\x12 "; "
b"„B±7TxHE·\f uñr\R "
b"x(êÌ›ÕBÞ\x00 a\x12 )ÃÛû "
b"qÂ…’gØOŸƒ¬]Pœ‘kÕ "
b"$\v\x04\x05 Þ\x1F Jˆ—ƒjN²AÈH "
b"?m õ'VDo¶ÍX\v #,ÔÙ "
b"<£Õ ÆKIäŸàõ±›Ö¶r "
b"1?~dý´G\x12 †ŽxÕ{g@œ "
b"䋺>¸\x08 D6’ˆúJ\x1E\x1D N "
b"\x10\x11 ÷l\x07 !MM”—yR*L¯› "
b"µ\x14 ßÄ™CDÞ–‹\x13 ®mÕΦ "
b"¹\x1E Ž1CëF\»_\e Œ6•î¬ "
b"x«\x10\v °\x1D F¢†Ö\x19 I˜“<Å "
b"¶º\x08 S”’AÖ¥Q’|\x12 û§b "
b",¶þ\x1A d¸J®µÈb4—7%\x11 "
b"8è½§á(G+ëS$œIM "
b"µÉ»©Ý{@$š%Œ‡h||¡ "
]
SELECT
parent . variant_listing_config as variantListingConfig ,
LOWER (HEX (child . id )) as id ,
LOWER (HEX (parent . id )) as parentId
FROM product as child
INNER JOIN product as parent
ON parent . id = child . parent_id
AND parent . version_id = child . version_id
WHERE child . version_id = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425
AND child . id IN (0x50CA2E54DD1D47759EC9DEABC1784E9C , 0x2C688E792E354C9B96E469D6B97A9A92 , 0xB7B3572F290D49039C3E19B5D3A052A5 , 0x52A3096DC0DE441DA3B39E234D9666EB , 0x78183794F6DF426EA2FD03A5FD343A46 , 0x253DEE8C68784CEC824B6614531E8A18 , 0x27094E91EE474F90BBC3CCBB585C5701 , 0xC08874A898024439BBB3BA85A712223B , 0x8442B13754784845B70C75F190725C52 , 0x7828EACC9BD542C39E00611229C3DBFB , 0x71C2859267D84F9F83AC5D509C916BD5 , 0x240B0405DE1F4A8897836A4EB241C848 , 0x3F6DA0F52756446FB6CD580B232CD4D9 , 0x3CA3D520C64B49E49FE0F5B19BD6B672 , 0x313F7E64FDB44712868E78D57B67409C , 0xE48BBA3EB808443692AD88FA4A1E1D4E , 0x1011F76C07214D4D949779522A4CAF9B , 0xB514DFC4994344DE968B13AE6DD5CEA6 , 0xB91E8D3143EB465CBB5F1B8C3695EEAC , 0x78AB100BB01D46A286D6194998933CC5 , 0xB6BA0853949241D6A551927C12FBA762 , 0x2CB6FE1A64B84AAEB5C8623497372511 , 0x38E8BDA7E128472B90EB53249C499F4D , 0xB5C9BBA9DD7B40249A258C87687C7CA1 );
Copy
42
0.70 ms
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ))) AND (`product` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) GROUP BY `product` . `id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
10
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
true
b"PÊ.TÝ\x1D GužÉÞ«ÁxNœ "
b",hŽy.5L›–äiÖ¹zš’ "
b"·³W/)\r I\x03 œ>\x19 µÓ R¥ "
b"R£\t mÀÞD\x1D £³ž#M–fë "
b"x\x18 7”ößBn¢ý\x03 ¥ý4:F "
b"%=îŒhxLì‚Kf\x14 S\x1E Š\x18 "
b"'\t N‘îGO»ÃÌ»X\W\x01 "
b"Àˆt¨˜\x02 D9»³º…§\x12 "; "
b"„B±7TxHE·\f uñr\R "
b"x(êÌ›ÕBÞ\x00 a\x12 )ÃÛû "
b"qÂ…’gØOŸƒ¬]Pœ‘kÕ "
b"$\v\x04\x05 Þ\x1F Jˆ—ƒjN²AÈH "
b"?m õ'VDo¶ÍX\v #,ÔÙ "
b"<£Õ ÆKIäŸàõ±›Ö¶r "
b"1?~dý´G\x12 †ŽxÕ{g@œ "
b"䋺>¸\x08 D6’ˆúJ\x1E\x1D N "
b"\x10\x11 ÷l\x07 !MM”—yR*L¯› "
b"µ\x14 ßÄ™CDÞ–‹\x13 ®mÕΦ "
b"¹\x1E Ž1CëF\»_\e Œ6•î¬ "
b"x«\x10\v °\x1D F¢†Ö\x19 I˜“<Å "
b"¶º\x08 S”’AÖ¥Q’|\x12 û§b "
b",¶þ\x1A d¸J®µÈb4—7%\x11 "
b"8è½§á(G+ëS$œIM "
b"µÉ»©Ý{@$š%Œ‡h||¡ "
]
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 10 ) AND `product.visibilities` . `sales_channel_id` = 0xCD6592C636AE4BF38378B01A9B31E46D AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ))) AND (`product` . `id` IN (0x50CA2E54DD1D47759EC9DEABC1784E9C , 0x2C688E792E354C9B96E469D6B97A9A92 , 0xB7B3572F290D49039C3E19B5D3A052A5 , 0x52A3096DC0DE441DA3B39E234D9666EB , 0x78183794F6DF426EA2FD03A5FD343A46 , 0x253DEE8C68784CEC824B6614531E8A18 , 0x27094E91EE474F90BBC3CCBB585C5701 , 0xC08874A898024439BBB3BA85A712223B , 0x8442B13754784845B70C75F190725C52 , 0x7828EACC9BD542C39E00611229C3DBFB , 0x71C2859267D84F9F83AC5D509C916BD5 , 0x240B0405DE1F4A8897836A4EB241C848 , 0x3F6DA0F52756446FB6CD580B232CD4D9 , 0x3CA3D520C64B49E49FE0F5B19BD6B672 , 0x313F7E64FDB44712868E78D57B67409C , 0xE48BBA3EB808443692AD88FA4A1E1D4E , 0x1011F76C07214D4D949779522A4CAF9B , 0xB514DFC4994344DE968B13AE6DD5CEA6 , 0xB91E8D3143EB465CBB5F1B8C3695EEAC , 0x78AB100BB01D46A286D6194998933CC5 , 0xB6BA0853949241D6A551927C12FBA762 , 0x2CB6FE1A64B84AAEB5C8623497372511 , 0x38E8BDA7E128472B90EB53249C499F4D , 0xB5C9BBA9DD7B40249A258C87687C7CA1 )) GROUP BY `product` . `id` ;
Copy
43
9.69 ms
SELECT `product` . `id` as `product.id` , `product` . `version_id` as `product.versionId` , `product` . `parent_id` as `product.parentId` , `product` . `parent_version_id` as `product.parentVersionId` , COALESCE (`product` . `product_manufacturer_id` , `product.parent` . `product_manufacturer_id` ) as `product.manufacturerId` , COALESCE (`product` . `product_manufacturer_version_id` , `product.parent` . `product_manufacturer_version_id` ) as `product.productManufacturerVersionId` , COALESCE (`product` . `unit_id` , `product.parent` . `unit_id` ) as `product.unitId` , COALESCE (`product` . `tax_id` , `product.parent` . `tax_id` ) as `product.taxId` , COALESCE (`product` . `product_media_id` , `product.parent` . `product_media_id` ) as `product.coverId` , COALESCE (`product` . `product_media_version_id` , `product.parent` . `product_media_version_id` ) as `product.productMediaVersionId` , COALESCE (`product` . `delivery_time_id` , `product.parent` . `delivery_time_id` ) as `product.deliveryTimeId` , COALESCE (`product` . `product_feature_set_id` , `product.parent` . `product_feature_set_id` ) as `product.featureSetId` , COALESCE (`product` . `canonical_product_id` , `product.parent` . `canonical_product_id` ) as `product.canonicalProductId` , COALESCE (`product` . `canonical_product_version_id` , `product.parent` . `canonical_product_version_id` ) as `product.canonicalProductVersionId` , COALESCE (`product` . `cms_page_id` , `product.parent` . `cms_page_id` ) as `product.cmsPageId` , COALESCE (`product` . `cms_page_version_id` , `product.parent` . `cms_page_version_id` ) as `product.cmsPageVersionId` , `product.parent` . `price` as `product.price.inherited` , COALESCE (`product` . `price` , `product.parent` . `price` ) as `product.price` , `product` . `product_number` as `product.productNumber` , COALESCE (`product` . `restock_time` , `product.parent` . `restock_time` ) as `product.restockTime` , `product` . `auto_increment` as `product.autoIncrement` , COALESCE (`product` . `active` , `product.parent` . `active` ) as `product.active` , `product` . `available` as `product.available` , COALESCE (`product` . `is_closeout` , `product.parent` . `is_closeout` ) as `product.isCloseout` , `product` . `available_stock` as `product.availableStock` , `product` . `stock` as `product.stock` , `product` . `display_group` as `product.displayGroup` , `product.parent` . `variant_listing_config` as `product.variantListingConfig.inherited` , COALESCE (`product` . `variant_listing_config` , `product.parent` . `variant_listing_config` ) as `product.variantListingConfig` , `product` . `variant_restrictions` as `product.variantRestrictions` , COALESCE (`product` . `manufacturer_number` , `product.parent` . `manufacturer_number` ) as `product.manufacturerNumber` , COALESCE (`product` . `ean` , `product.parent` . `ean` ) as `product.ean` , COALESCE (`product` . `purchase_steps` , `product.parent` . `purchase_steps` ) as `product.purchaseSteps` , COALESCE (`product` . `max_purchase` , `product.parent` . `max_purchase` ) as `product.maxPurchase` , COALESCE (`product` . `min_purchase` , `product.parent` . `min_purchase` ) as `product.minPurchase` , COALESCE (`product` . `purchase_unit` , `product.parent` . `purchase_unit` ) as `product.purchaseUnit` , COALESCE (`product` . `reference_unit` , `product.parent` . `reference_unit` ) as `product.referenceUnit` , COALESCE (`product` . `shipping_free` , `product.parent` . `shipping_free` ) as `product.shippingFree` , `product.parent` . `purchase_prices` as `product.purchasePrices.inherited` , COALESCE (`product` . `purchase_prices` , `product.parent` . `purchase_prices` ) as `product.purchasePrices` , COALESCE (`product` . `mark_as_topseller` , `product.parent` . `mark_as_topseller` ) as `product.markAsTopseller` , COALESCE (`product` . `weight` , `product.parent` . `weight` ) as `product.weight` , COALESCE (`product` . `width` , `product.parent` . `width` ) as `product.width` , COALESCE (`product` . `height` , `product.parent` . `height` ) as `product.height` , COALESCE (`product` . `length` , `product.parent` . `length` ) as `product.length` , COALESCE (`product` . `release_date` , `product.parent` . `release_date` ) as `product.releaseDate` , COALESCE (`product` . `rating_average` , `product.parent` . `rating_average` ) as `product.ratingAverage` , `product.parent` . `category_tree` as `product.categoryTree.inherited` , COALESCE (`product` . `category_tree` , `product.parent` . `category_tree` ) as `product.categoryTree` , `product.parent` . `property_ids` as `product.propertyIds.inherited` , COALESCE (`product` . `property_ids` , `product.parent` . `property_ids` ) as `product.propertyIds` , `product.parent` . `option_ids` as `product.optionIds.inherited` , COALESCE (`product` . `option_ids` , `product.parent` . `option_ids` ) as `product.optionIds` , `product.parent` . `stream_ids` as `product.streamIds.inherited` , COALESCE (`product` . `stream_ids` , `product.parent` . `stream_ids` ) as `product.streamIds` , `product.parent` . `tag_ids` as `product.tagIds.inherited` , COALESCE (`product` . `tag_ids` , `product.parent` . `tag_ids` ) as `product.tagIds` , `product.parent` . `category_ids` as `product.categoryIds.inherited` , COALESCE (`product` . `category_ids` , `product.parent` . `category_ids` ) as `product.categoryIds` , `product` . `child_count` as `product.childCount` , COALESCE (`product` . `custom_field_set_selection_active` , `product.parent` . `custom_field_set_selection_active` ) as `product.customFieldSetSelectionActive` , `product` . `sales` as `product.sales` , `product` . `states` as `product.states` , `product.parent` . `cheapest_price` as `product.cheapestPrice.inherited` , COALESCE (`product` . `cheapest_price` , `product.parent` . `cheapest_price` ) as `product.cheapestPrice` , `product` . `created_at` as `product.createdAt` , `product` . `updated_at` as `product.updatedAt` , `product.manufacturer` . `id` as `product.manufacturer.id` , `product.manufacturer` . `version_id` as `product.manufacturer.versionId` , `product.manufacturer` . `media_id` as `product.manufacturer.mediaId` , `product.manufacturer` . `created_at` as `product.manufacturer.createdAt` , `product.manufacturer` . `updated_at` as `product.manufacturer.updatedAt` , `product.manufacturer.translation.name` , `product.manufacturer.translation.name` as `product.manufacturer.name` , `product.manufacturer.translation.link` , `product.manufacturer.translation.link` as `product.manufacturer.link` , `product.manufacturer.translation.description` , `product.manufacturer.translation.description` as `product.manufacturer.description` , `product.manufacturer.translation.customFields` , `product.manufacturer.translation.customFields` as `product.manufacturer.customFields` , (SELECT GROUP_CONCAT (HEX (`product.options.mapping` . `property_group_option_id` ) SEPARATOR '||' )
FROM `product_option` `product.options.mapping`
WHERE `product.options.mapping` . `product_id` = `product` . `id` ) as `product.options.id_mapping` , `product.unit` . `id` as `product.unit.id` , `product.unit` . `created_at` as `product.unit.createdAt` , `product.unit` . `updated_at` as `product.unit.updatedAt` , `product.unit.translation.shortCode` , `product.unit.translation.shortCode` as `product.unit.shortCode` , `product.unit.translation.name` , `product.unit.translation.name` as `product.unit.name` , `product.unit.translation.customFields` , `product.unit.translation.customFields` as `product.unit.customFields` , `product.deliveryTime` . `id` as `product.deliveryTime.id` , `product.deliveryTime` . `min` as `product.deliveryTime.min` , `product.deliveryTime` . `max` as `product.deliveryTime.max` , `product.deliveryTime` . `unit` as `product.deliveryTime.unit` , `product.deliveryTime` . `created_at` as `product.deliveryTime.createdAt` , `product.deliveryTime` . `updated_at` as `product.deliveryTime.updatedAt` , `product.deliveryTime.translation.name` , `product.deliveryTime.translation.name` as `product.deliveryTime.name` , `product.deliveryTime.translation.customFields` , `product.deliveryTime.translation.customFields` as `product.deliveryTime.customFields` , `product.cover` . `id` as `product.cover.id` , `product.cover` . `version_id` as `product.cover.versionId` , `product.cover` . `product_id` as `product.cover.productId` , `product.cover` . `product_version_id` as `product.cover.productVersionId` , `product.cover` . `media_id` as `product.cover.mediaId` , `product.cover` . `position` as `product.cover.position` , `product.cover` . `custom_fields` as `product.cover.customFields` , `product.cover` . `created_at` as `product.cover.createdAt` , `product.cover` . `updated_at` as `product.cover.updatedAt` , `product.cover.media` . `id` as `product.cover.media.id` , `product.cover.media` . `user_id` as `product.cover.media.userId` , `product.cover.media` . `media_folder_id` as `product.cover.media.mediaFolderId` , `product.cover.media` . `mime_type` as `product.cover.media.mimeType` , `product.cover.media` . `file_extension` as `product.cover.media.fileExtension` , `product.cover.media` . `uploaded_at` as `product.cover.media.uploadedAt` , `product.cover.media` . `file_name` as `product.cover.media.fileName` , `product.cover.media` . `file_size` as `product.cover.media.fileSize` , `product.cover.media` . `media_type` as `product.cover.media.mediaTypeRaw` , `product.cover.media` . `meta_data` as `product.cover.media.metaData` , `product.cover.media` . `config` as `product.cover.media.config` , `product.cover.media` . `path` as `product.cover.media.path` , `product.cover.media` . `private` as `product.cover.media.private` , `product.cover.media` . `thumbnails_ro` as `product.cover.media.thumbnailsRo` , `product.cover.media` . `file_hash` as `product.cover.media.fileHash` , `product.cover.media` . `created_at` as `product.cover.media.createdAt` , `product.cover.media` . `updated_at` as `product.cover.media.updatedAt` , `product.cover.media.translation.title` , `product.cover.media.translation.title` as `product.cover.media.title` , `product.cover.media.translation.alt` , `product.cover.media.translation.alt` as `product.cover.media.alt` , `product.cover.media.translation.customFields` , `product.cover.media.translation.customFields` as `product.cover.media.customFields` , `product.tax` . `id` as `product.tax.id` , `product.tax` . `tax_rate` as `product.tax.taxRate` , `product.tax` . `name` as `product.tax.name` , `product.tax` . `position` as `product.tax.position` , `product.tax` . `custom_fields` as `product.tax.customFields` , `product.tax` . `created_at` as `product.tax.createdAt` , `product.tax` . `updated_at` as `product.tax.updatedAt` , `product.translation.metaDescription` , `product.parent.translation.metaDescription` , COALESCE (`product.translation.metaDescription` , `product.parent.translation.metaDescription` ) as `product.metaDescription` , `product.translation.name` , `product.parent.translation.name` , COALESCE (`product.translation.name` , `product.parent.translation.name` ) as `product.name` , `product.translation.keywords` , `product.parent.translation.keywords` , COALESCE (`product.translation.keywords` , `product.parent.translation.keywords` ) as `product.keywords` , `product.translation.description` , `product.parent.translation.description` , COALESCE (`product.translation.description` , `product.parent.translation.description` ) as `product.description` , `product.translation.metaTitle` , `product.parent.translation.metaTitle` , COALESCE (`product.translation.metaTitle` , `product.parent.translation.metaTitle` ) as `product.metaTitle` , `product.translation.packUnit` , `product.parent.translation.packUnit` , COALESCE (`product.translation.packUnit` , `product.parent.translation.packUnit` ) as `product.packUnit` , `product.translation.packUnitPlural` , `product.parent.translation.packUnitPlural` , COALESCE (`product.translation.packUnitPlural` , `product.parent.translation.packUnitPlural` ) as `product.packUnitPlural` , `product.translation.customSearchKeywords` , `product.parent.translation.customSearchKeywords` , COALESCE (`product.translation.customSearchKeywords` , `product.parent.translation.customSearchKeywords` ) as `product.customSearchKeywords` , `product.translation.slotConfig` , `product.parent.translation.slotConfig` , COALESCE (`product.translation.slotConfig` , `product.parent.translation.slotConfig` ) as `product.slotConfig` , `product.translation.customFields` , `product.parent.translation.customFields` , COALESCE (`product.translation.customFields` , `product.parent.translation.customFields` ) as `product.customFields` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_manufacturer` `product.manufacturer` ON `product` . `manufacturer` = `product.manufacturer` . `id` AND IFNULL (`product` . `product_manufacturer_version_id` , `product.parent` . `product_manufacturer_version_id` ) = `product.manufacturer` . `version_id` LEFT JOIN `unit` `product.unit` ON `product` . `unit` = `product.unit` . `id` LEFT JOIN `delivery_time` `product.deliveryTime` ON `product` . `deliveryTime` = `product.deliveryTime` . `id` LEFT JOIN `product_media` `product.cover` ON `product` . `cover` = `product.cover` . `id` AND IFNULL (`product` . `product_media_version_id` , `product.parent` . `product_media_version_id` ) = `product.cover` . `version_id` LEFT JOIN `tax` `product.tax` ON `product` . `tax` = `product.tax` . `id` LEFT JOIN (SELECT `product.translation` . `product_id` , `product.translation` . `product_version_id` , `product.translation` . `meta_description` as `product.translation.metaDescription` , `product.translation` . `name` as `product.translation.name` , `product.translation` . `keywords` as `product.translation.keywords` , `product.translation` . `description` as `product.translation.description` , `product.translation` . `meta_title` as `product.translation.metaTitle` , `product.translation` . `pack_unit` as `product.translation.packUnit` , `product.translation` . `pack_unit_plural` as `product.translation.packUnitPlural` , `product.translation` . `custom_fields` as `product.translation.customFields` , `product.translation` . `slot_config` as `product.translation.slotConfig` , `product.translation` . `custom_search_keywords` as `product.translation.customSearchKeywords` FROM `product_translation` `product.translation` WHERE `product.translation` . `language_id` = ? ) `product.product_translation` ON `product.product_translation` . `product_id` = `product` . `id` AND `product.product_translation` . `product_version_id` = `product` . `version_id` LEFT JOIN (SELECT `product.parent.translation` . `product_id` , `product.parent.translation` . `product_version_id` , `product.parent.translation` . `meta_description` as `product.parent.translation.metaDescription` , `product.parent.translation` . `name` as `product.parent.translation.name` , `product.parent.translation` . `keywords` as `product.parent.translation.keywords` , `product.parent.translation` . `description` as `product.parent.translation.description` , `product.parent.translation` . `meta_title` as `product.parent.translation.metaTitle` , `product.parent.translation` . `pack_unit` as `product.parent.translation.packUnit` , `product.parent.translation` . `pack_unit_plural` as `product.parent.translation.packUnitPlural` , `product.parent.translation` . `custom_fields` as `product.parent.translation.customFields` , `product.parent.translation` . `slot_config` as `product.parent.translation.slotConfig` , `product.parent.translation` . `custom_search_keywords` as `product.parent.translation.customSearchKeywords` FROM `product_translation` `product.parent.translation` WHERE `product.parent.translation` . `language_id` = ? ) `product.parent.product_translation` ON `product.parent.product_translation` . `product_id` = `product.parent` . `id` AND `product.parent.product_translation` . `product_version_id` = `product.parent` . `version_id` LEFT JOIN (SELECT `product.manufacturer.translation` . `product_manufacturer_id` , `product.manufacturer.translation` . `product_manufacturer_version_id` , `product.manufacturer.translation` . `link` as `product.manufacturer.translation.link` , `product.manufacturer.translation` . `name` as `product.manufacturer.translation.name` , `product.manufacturer.translation` . `description` as `product.manufacturer.translation.description` , `product.manufacturer.translation` . `custom_fields` as `product.manufacturer.translation.customFields` FROM `product_manufacturer_translation` `product.manufacturer.translation` WHERE `product.manufacturer.translation` . `language_id` = ? ) `product.manufacturer.product_manufacturer_translation` ON `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product.manufacturer` . `id` AND `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product.manufacturer` . `version_id` LEFT JOIN (SELECT `product.unit.translation` . `unit_id` , `product.unit.translation` . `short_code` as `product.unit.translation.shortCode` , `product.unit.translation` . `name` as `product.unit.translation.name` , `product.unit.translation` . `custom_fields` as `product.unit.translation.customFields` FROM `unit_translation` `product.unit.translation` WHERE `product.unit.translation` . `language_id` = ? ) `product.unit.unit_translation` ON `product.unit.unit_translation` . `unit_id` = `product.unit` . `id` LEFT JOIN (SELECT `product.deliveryTime.translation` . `delivery_time_id` , `product.deliveryTime.translation` . `name` as `product.deliveryTime.translation.name` , `product.deliveryTime.translation` . `custom_fields` as `product.deliveryTime.translation.customFields` FROM `delivery_time_translation` `product.deliveryTime.translation` WHERE `product.deliveryTime.translation` . `language_id` = ? ) `product.deliveryTime.delivery_time_translation` ON `product.deliveryTime.delivery_time_translation` . `delivery_time_id` = `product.deliveryTime` . `id` LEFT JOIN `media` `product.cover.media` ON `product.cover` . `media_id` = `product.cover.media` . `id` LEFT JOIN (SELECT `product.cover.media.translation` . `media_id` , `product.cover.media.translation` . `alt` as `product.cover.media.translation.alt` , `product.cover.media.translation` . `title` as `product.cover.media.translation.title` , `product.cover.media.translation` . `custom_fields` as `product.cover.media.translation.customFields` FROM `media_translation` `product.cover.media.translation` WHERE `product.cover.media.translation` . `language_id` = ? ) `product.cover.media.media_translation` ON `product.cover.media.media_translation` . `media_id` = `product.cover.media` . `id` WHERE (`product` . `version_id` = ? ) AND (`product` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"PÊ.TÝ\x1D GužÉÞ«ÁxNœ "
b",hŽy.5L›–äiÖ¹zš’ "
b"·³W/)\r I\x03 œ>\x19 µÓ R¥ "
b"R£\t mÀÞD\x1D £³ž#M–fë "
b"x\x18 7”ößBn¢ý\x03 ¥ý4:F "
b"%=îŒhxLì‚Kf\x14 S\x1E Š\x18 "
b"'\t N‘îGO»ÃÌ»X\W\x01 "
b"Àˆt¨˜\x02 D9»³º…§\x12 "; "
b"„B±7TxHE·\f uñr\R "
b"x(êÌ›ÕBÞ\x00 a\x12 )ÃÛû "
b"qÂ…’gØOŸƒ¬]Pœ‘kÕ "
b"$\v\x04\x05 Þ\x1F Jˆ—ƒjN²AÈH "
b"?m õ'VDo¶ÍX\v #,ÔÙ "
b"<£Õ ÆKIäŸàõ±›Ö¶r "
b"1?~dý´G\x12 †ŽxÕ{g@œ "
b"䋺>¸\x08 D6’ˆúJ\x1E\x1D N "
b"\x10\x11 ÷l\x07 !MM”—yR*L¯› "
b"µ\x14 ßÄ™CDÞ–‹\x13 ®mÕΦ "
b"¹\x1E Ž1CëF\»_\e Œ6•î¬ "
b"x«\x10\v °\x1D F¢†Ö\x19 I˜“<Å "
b"¶º\x08 S”’AÖ¥Q’|\x12 û§b "
b",¶þ\x1A d¸J®µÈb4—7%\x11 "
b"8è½§á(G+ëS$œIM "
b"µÉ»©Ý{@$š%Œ‡h||¡ "
]
SELECT
`product` . `id` as `product.id` ,
`product` . `version_id` as `product.versionId` ,
`product` . `parent_id` as `product.parentId` ,
`product` . `parent_version_id` as `product.parentVersionId` ,
COALESCE (
`product` . `product_manufacturer_id` ,
`product.parent` . `product_manufacturer_id`
) as `product.manufacturerId` ,
COALESCE (
`product` . `product_manufacturer_version_id` ,
`product.parent` . `product_manufacturer_version_id`
) as `product.productManufacturerVersionId` ,
COALESCE (
`product` . `unit_id` , `product.parent` . `unit_id`
) as `product.unitId` ,
COALESCE (
`product` . `tax_id` , `product.parent` . `tax_id`
) as `product.taxId` ,
COALESCE (
`product` . `product_media_id` , `product.parent` . `product_media_id`
) as `product.coverId` ,
COALESCE (
`product` . `product_media_version_id` ,
`product.parent` . `product_media_version_id`
) as `product.productMediaVersionId` ,
COALESCE (
`product` . `delivery_time_id` , `product.parent` . `delivery_time_id`
) as `product.deliveryTimeId` ,
COALESCE (
`product` . `product_feature_set_id` ,
`product.parent` . `product_feature_set_id`
) as `product.featureSetId` ,
COALESCE (
`product` . `canonical_product_id` ,
`product.parent` . `canonical_product_id`
) as `product.canonicalProductId` ,
COALESCE (
`product` . `canonical_product_version_id` ,
`product.parent` . `canonical_product_version_id`
) as `product.canonicalProductVersionId` ,
COALESCE (
`product` . `cms_page_id` , `product.parent` . `cms_page_id`
) as `product.cmsPageId` ,
COALESCE (
`product` . `cms_page_version_id` ,
`product.parent` . `cms_page_version_id`
) as `product.cmsPageVersionId` ,
`product.parent` . `price` as `product.price.inherited` ,
COALESCE (
`product` . `price` , `product.parent` . `price`
) as `product.price` ,
`product` . `product_number` as `product.productNumber` ,
COALESCE (
`product` . `restock_time` , `product.parent` . `restock_time`
) as `product.restockTime` ,
`product` . `auto_increment` as `product.autoIncrement` ,
COALESCE (
`product` . `active` , `product.parent` . `active`
) as `product.active` ,
`product` . `available` as `product.available` ,
COALESCE (
`product` . `is_closeout` , `product.parent` . `is_closeout`
) as `product.isCloseout` ,
`product` . `available_stock` as `product.availableStock` ,
`product` . `stock` as `product.stock` ,
`product` . `display_group` as `product.displayGroup` ,
`product.parent` . `variant_listing_config` as `product.variantListingConfig.inherited` ,
COALESCE (
`product` . `variant_listing_config` ,
`product.parent` . `variant_listing_config`
) as `product.variantListingConfig` ,
`product` . `variant_restrictions` as `product.variantRestrictions` ,
COALESCE (
`product` . `manufacturer_number` ,
`product.parent` . `manufacturer_number`
) as `product.manufacturerNumber` ,
COALESCE (
`product` . `ean` , `product.parent` . `ean`
) as `product.ean` ,
COALESCE (
`product` . `purchase_steps` , `product.parent` . `purchase_steps`
) as `product.purchaseSteps` ,
COALESCE (
`product` . `max_purchase` , `product.parent` . `max_purchase`
) as `product.maxPurchase` ,
COALESCE (
`product` . `min_purchase` , `product.parent` . `min_purchase`
) as `product.minPurchase` ,
COALESCE (
`product` . `purchase_unit` , `product.parent` . `purchase_unit`
) as `product.purchaseUnit` ,
COALESCE (
`product` . `reference_unit` , `product.parent` . `reference_unit`
) as `product.referenceUnit` ,
COALESCE (
`product` . `shipping_free` , `product.parent` . `shipping_free`
) as `product.shippingFree` ,
`product.parent` . `purchase_prices` as `product.purchasePrices.inherited` ,
COALESCE (
`product` . `purchase_prices` , `product.parent` . `purchase_prices`
) as `product.purchasePrices` ,
COALESCE (
`product` . `mark_as_topseller` , `product.parent` . `mark_as_topseller`
) as `product.markAsTopseller` ,
COALESCE (
`product` . `weight` , `product.parent` . `weight`
) as `product.weight` ,
COALESCE (
`product` . `width` , `product.parent` . `width`
) as `product.width` ,
COALESCE (
`product` . `height` , `product.parent` . `height`
) as `product.height` ,
COALESCE (
`product` . `length` , `product.parent` . `length`
) as `product.length` ,
COALESCE (
`product` . `release_date` , `product.parent` . `release_date`
) as `product.releaseDate` ,
COALESCE (
`product` . `rating_average` , `product.parent` . `rating_average`
) as `product.ratingAverage` ,
`product.parent` . `category_tree` as `product.categoryTree.inherited` ,
COALESCE (
`product` . `category_tree` , `product.parent` . `category_tree`
) as `product.categoryTree` ,
`product.parent` . `property_ids` as `product.propertyIds.inherited` ,
COALESCE (
`product` . `property_ids` , `product.parent` . `property_ids`
) as `product.propertyIds` ,
`product.parent` . `option_ids` as `product.optionIds.inherited` ,
COALESCE (
`product` . `option_ids` , `product.parent` . `option_ids`
) as `product.optionIds` ,
`product.parent` . `stream_ids` as `product.streamIds.inherited` ,
COALESCE (
`product` . `stream_ids` , `product.parent` . `stream_ids`
) as `product.streamIds` ,
`product.parent` . `tag_ids` as `product.tagIds.inherited` ,
COALESCE (
`product` . `tag_ids` , `product.parent` . `tag_ids`
) as `product.tagIds` ,
`product.parent` . `category_ids` as `product.categoryIds.inherited` ,
COALESCE (
`product` . `category_ids` , `product.parent` . `category_ids`
) as `product.categoryIds` ,
`product` . `child_count` as `product.childCount` ,
COALESCE (
`product` . `custom_field_set_selection_active` ,
`product.parent` . `custom_field_set_selection_active`
) as `product.customFieldSetSelectionActive` ,
`product` . `sales` as `product.sales` ,
`product` . `states` as `product.states` ,
`product.parent` . `cheapest_price` as `product.cheapestPrice.inherited` ,
COALESCE (
`product` . `cheapest_price` , `product.parent` . `cheapest_price`
) as `product.cheapestPrice` ,
`product` . `created_at` as `product.createdAt` ,
`product` . `updated_at` as `product.updatedAt` ,
`product.manufacturer` . `id` as `product.manufacturer.id` ,
`product.manufacturer` . `version_id` as `product.manufacturer.versionId` ,
`product.manufacturer` . `media_id` as `product.manufacturer.mediaId` ,
`product.manufacturer` . `created_at` as `product.manufacturer.createdAt` ,
`product.manufacturer` . `updated_at` as `product.manufacturer.updatedAt` ,
`product.manufacturer.translation.name` ,
`product.manufacturer.translation.name` as `product.manufacturer.name` ,
`product.manufacturer.translation.link` ,
`product.manufacturer.translation.link` as `product.manufacturer.link` ,
`product.manufacturer.translation.description` ,
`product.manufacturer.translation.description` as `product.manufacturer.description` ,
`product.manufacturer.translation.customFields` ,
`product.manufacturer.translation.customFields` as `product.manufacturer.customFields` ,
(
SELECT
GROUP_CONCAT (
HEX (
`product.options.mapping` . `property_group_option_id`
) SEPARATOR '||'
)
FROM
`product_option` `product.options.mapping`
WHERE
`product.options.mapping` . `product_id` = `product` . `id`
) as `product.options.id_mapping` ,
`product.unit` . `id` as `product.unit.id` ,
`product.unit` . `created_at` as `product.unit.createdAt` ,
`product.unit` . `updated_at` as `product.unit.updatedAt` ,
`product.unit.translation.shortCode` ,
`product.unit.translation.shortCode` as `product.unit.shortCode` ,
`product.unit.translation.name` ,
`product.unit.translation.name` as `product.unit.name` ,
`product.unit.translation.customFields` ,
`product.unit.translation.customFields` as `product.unit.customFields` ,
`product.deliveryTime` . `id` as `product.deliveryTime.id` ,
`product.deliveryTime` . `min` as `product.deliveryTime.min` ,
`product.deliveryTime` . `max` as `product.deliveryTime.max` ,
`product.deliveryTime` . `unit` as `product.deliveryTime.unit` ,
`product.deliveryTime` . `created_at` as `product.deliveryTime.createdAt` ,
`product.deliveryTime` . `updated_at` as `product.deliveryTime.updatedAt` ,
`product.deliveryTime.translation.name` ,
`product.deliveryTime.translation.name` as `product.deliveryTime.name` ,
`product.deliveryTime.translation.customFields` ,
`product.deliveryTime.translation.customFields` as `product.deliveryTime.customFields` ,
`product.cover` . `id` as `product.cover.id` ,
`product.cover` . `version_id` as `product.cover.versionId` ,
`product.cover` . `product_id` as `product.cover.productId` ,
`product.cover` . `product_version_id` as `product.cover.productVersionId` ,
`product.cover` . `media_id` as `product.cover.mediaId` ,
`product.cover` . `position` as `product.cover.position` ,
`product.cover` . `custom_fields` as `product.cover.customFields` ,
`product.cover` . `created_at` as `product.cover.createdAt` ,
`product.cover` . `updated_at` as `product.cover.updatedAt` ,
`product.cover.media` . `id` as `product.cover.media.id` ,
`product.cover.media` . `user_id` as `product.cover.media.userId` ,
`product.cover.media` . `media_folder_id` as `product.cover.media.mediaFolderId` ,
`product.cover.media` . `mime_type` as `product.cover.media.mimeType` ,
`product.cover.media` . `file_extension` as `product.cover.media.fileExtension` ,
`product.cover.media` . `uploaded_at` as `product.cover.media.uploadedAt` ,
`product.cover.media` . `file_name` as `product.cover.media.fileName` ,
`product.cover.media` . `file_size` as `product.cover.media.fileSize` ,
`product.cover.media` . `media_type` as `product.cover.media.mediaTypeRaw` ,
`product.cover.media` . `meta_data` as `product.cover.media.metaData` ,
`product.cover.media` . `config` as `product.cover.media.config` ,
`product.cover.media` . `path` as `product.cover.media.path` ,
`product.cover.media` . `private` as `product.cover.media.private` ,
`product.cover.media` . `thumbnails_ro` as `product.cover.media.thumbnailsRo` ,
`product.cover.media` . `file_hash` as `product.cover.media.fileHash` ,
`product.cover.media` . `created_at` as `product.cover.media.createdAt` ,
`product.cover.media` . `updated_at` as `product.cover.media.updatedAt` ,
`product.cover.media.translation.title` ,
`product.cover.media.translation.title` as `product.cover.media.title` ,
`product.cover.media.translation.alt` ,
`product.cover.media.translation.alt` as `product.cover.media.alt` ,
`product.cover.media.translation.customFields` ,
`product.cover.media.translation.customFields` as `product.cover.media.customFields` ,
`product.tax` . `id` as `product.tax.id` ,
`product.tax` . `tax_rate` as `product.tax.taxRate` ,
`product.tax` . `name` as `product.tax.name` ,
`product.tax` . `position` as `product.tax.position` ,
`product.tax` . `custom_fields` as `product.tax.customFields` ,
`product.tax` . `created_at` as `product.tax.createdAt` ,
`product.tax` . `updated_at` as `product.tax.updatedAt` ,
`product.translation.metaDescription` ,
`product.parent.translation.metaDescription` ,
COALESCE (
`product.translation.metaDescription` ,
`product.parent.translation.metaDescription`
) as `product.metaDescription` ,
`product.translation.name` ,
`product.parent.translation.name` ,
COALESCE (
`product.translation.name` , `product.parent.translation.name`
) as `product.name` ,
`product.translation.keywords` ,
`product.parent.translation.keywords` ,
COALESCE (
`product.translation.keywords` ,
`product.parent.translation.keywords`
) as `product.keywords` ,
`product.translation.description` ,
`product.parent.translation.description` ,
COALESCE (
`product.translation.description` ,
`product.parent.translation.description`
) as `product.description` ,
`product.translation.metaTitle` ,
`product.parent.translation.metaTitle` ,
COALESCE (
`product.translation.metaTitle` ,
`product.parent.translation.metaTitle`
) as `product.metaTitle` ,
`product.translation.packUnit` ,
`product.parent.translation.packUnit` ,
COALESCE (
`product.translation.packUnit` ,
`product.parent.translation.packUnit`
) as `product.packUnit` ,
`product.translation.packUnitPlural` ,
`product.parent.translation.packUnitPlural` ,
COALESCE (
`product.translation.packUnitPlural` ,
`product.parent.translation.packUnitPlural`
) as `product.packUnitPlural` ,
`product.translation.customSearchKeywords` ,
`product.parent.translation.customSearchKeywords` ,
COALESCE (
`product.translation.customSearchKeywords` ,
`product.parent.translation.customSearchKeywords`
) as `product.customSearchKeywords` ,
`product.translation.slotConfig` ,
`product.parent.translation.slotConfig` ,
COALESCE (
`product.translation.slotConfig` ,
`product.parent.translation.slotConfig`
) as `product.slotConfig` ,
`product.translation.customFields` ,
`product.parent.translation.customFields` ,
COALESCE (
`product.translation.customFields` ,
`product.parent.translation.customFields`
) as `product.customFields`
FROM
`product`
LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id`
AND `product` . `parent_version_id` = `product.parent` . `version_id`
LEFT JOIN `product_manufacturer` `product.manufacturer` ON `product` . `manufacturer` = `product.manufacturer` . `id`
AND IFNULL (
`product` . `product_manufacturer_version_id` ,
`product.parent` . `product_manufacturer_version_id`
) = `product.manufacturer` . `version_id`
LEFT JOIN `unit` `product.unit` ON `product` . `unit` = `product.unit` . `id`
LEFT JOIN `delivery_time` `product.deliveryTime` ON `product` . `deliveryTime` = `product.deliveryTime` . `id`
LEFT JOIN `product_media` `product.cover` ON `product` . `cover` = `product.cover` . `id`
AND IFNULL (
`product` . `product_media_version_id` ,
`product.parent` . `product_media_version_id`
) = `product.cover` . `version_id`
LEFT JOIN `tax` `product.tax` ON `product` . `tax` = `product.tax` . `id`
LEFT JOIN (
SELECT
`product.translation` . `product_id` ,
`product.translation` . `product_version_id` ,
`product.translation` . `meta_description` as `product.translation.metaDescription` ,
`product.translation` . `name` as `product.translation.name` ,
`product.translation` . `keywords` as `product.translation.keywords` ,
`product.translation` . `description` as `product.translation.description` ,
`product.translation` . `meta_title` as `product.translation.metaTitle` ,
`product.translation` . `pack_unit` as `product.translation.packUnit` ,
`product.translation` . `pack_unit_plural` as `product.translation.packUnitPlural` ,
`product.translation` . `custom_fields` as `product.translation.customFields` ,
`product.translation` . `slot_config` as `product.translation.slotConfig` ,
`product.translation` . `custom_search_keywords` as `product.translation.customSearchKeywords`
FROM
`product_translation` `product.translation`
WHERE
`product.translation` . `language_id` = ?
) `product.product_translation` ON `product.product_translation` . `product_id` = `product` . `id`
AND `product.product_translation` . `product_version_id` = `product` . `version_id`
LEFT JOIN (
SELECT
`product.parent.translation` . `product_id` ,
`product.parent.translation` . `product_version_id` ,
`product.parent.translation` . `meta_description` as `product.parent.translation.metaDescription` ,
`product.parent.translation` . `name` as `product.parent.translation.name` ,
`product.parent.translation` . `keywords` as `product.parent.translation.keywords` ,
`product.parent.translation` . `description` as `product.parent.translation.description` ,
`product.parent.translation` . `meta_title` as `product.parent.translation.metaTitle` ,
`product.parent.translation` . `pack_unit` as `product.parent.translation.packUnit` ,
`product.parent.translation` . `pack_unit_plural` as `product.parent.translation.packUnitPlural` ,
`product.parent.translation` . `custom_fields` as `product.parent.translation.customFields` ,
`product.parent.translation` . `slot_config` as `product.parent.translation.slotConfig` ,
`product.parent.translation` . `custom_search_keywords` as `product.parent.translation.customSearchKeywords`
FROM
`product_translation` `product.parent.translation`
WHERE
`product.parent.translation` . `language_id` = ?
) `product.parent.product_translation` ON `product.parent.product_translation` . `product_id` = `product.parent` . `id`
AND `product.parent.product_translation` . `product_version_id` = `product.parent` . `version_id`
LEFT JOIN (
SELECT
`product.manufacturer.translation` . `product_manufacturer_id` ,
`product.manufacturer.translation` . `product_manufacturer_version_id` ,
`product.manufacturer.translation` . `link` as `product.manufacturer.translation.link` ,
`product.manufacturer.translation` . `name` as `product.manufacturer.translation.name` ,
`product.manufacturer.translation` . `description` as `product.manufacturer.translation.description` ,
`product.manufacturer.translation` . `custom_fields` as `product.manufacturer.translation.customFields`
FROM
`product_manufacturer_translation` `product.manufacturer.translation`
WHERE
`product.manufacturer.translation` . `language_id` = ?
) `product.manufacturer.product_manufacturer_translation` ON `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product.manufacturer` . `id`
AND `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product.manufacturer` . `version_id`
LEFT JOIN (
SELECT
`product.unit.translation` . `unit_id` ,
`product.unit.translation` . `short_code` as `product.unit.translation.shortCode` ,
`product.unit.translation` . `name` as `product.unit.translation.name` ,
`product.unit.translation` . `custom_fields` as `product.unit.translation.customFields`
FROM
`unit_translation` `product.unit.translation`
WHERE
`product.unit.translation` . `language_id` = ?
) `product.unit.unit_translation` ON `product.unit.unit_translation` . `unit_id` = `product.unit` . `id`
LEFT JOIN (
SELECT
`product.deliveryTime.translation` . `delivery_time_id` ,
`product.deliveryTime.translation` . `name` as `product.deliveryTime.translation.name` ,
`product.deliveryTime.translation` . `custom_fields` as `product.deliveryTime.translation.customFields`
FROM
`delivery_time_translation` `product.deliveryTime.translation`
WHERE
`product.deliveryTime.translation` . `language_id` = ?
) `product.deliveryTime.delivery_time_translation` ON `product.deliveryTime.delivery_time_translation` . `delivery_time_id` = `product.deliveryTime` . `id`
LEFT JOIN `media` `product.cover.media` ON `product.cover` . `media_id` = `product.cover.media` . `id`
LEFT JOIN (
SELECT
`product.cover.media.translation` . `media_id` ,
`product.cover.media.translation` . `alt` as `product.cover.media.translation.alt` ,
`product.cover.media.translation` . `title` as `product.cover.media.translation.title` ,
`product.cover.media.translation` . `custom_fields` as `product.cover.media.translation.customFields`
FROM
`media_translation` `product.cover.media.translation`
WHERE
`product.cover.media.translation` . `language_id` = ?
) `product.cover.media.media_translation` ON `product.cover.media.media_translation` . `media_id` = `product.cover.media` . `id`
WHERE
(`product` . `version_id` = ? )
AND (
`product` . `id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ?
)
)
Copy
SELECT `product` . `id` as `product.id` , `product` . `version_id` as `product.versionId` , `product` . `parent_id` as `product.parentId` , `product` . `parent_version_id` as `product.parentVersionId` , COALESCE (`product` . `product_manufacturer_id` , `product.parent` . `product_manufacturer_id` ) as `product.manufacturerId` , COALESCE (`product` . `product_manufacturer_version_id` , `product.parent` . `product_manufacturer_version_id` ) as `product.productManufacturerVersionId` , COALESCE (`product` . `unit_id` , `product.parent` . `unit_id` ) as `product.unitId` , COALESCE (`product` . `tax_id` , `product.parent` . `tax_id` ) as `product.taxId` , COALESCE (`product` . `product_media_id` , `product.parent` . `product_media_id` ) as `product.coverId` , COALESCE (`product` . `product_media_version_id` , `product.parent` . `product_media_version_id` ) as `product.productMediaVersionId` , COALESCE (`product` . `delivery_time_id` , `product.parent` . `delivery_time_id` ) as `product.deliveryTimeId` , COALESCE (`product` . `product_feature_set_id` , `product.parent` . `product_feature_set_id` ) as `product.featureSetId` , COALESCE (`product` . `canonical_product_id` , `product.parent` . `canonical_product_id` ) as `product.canonicalProductId` , COALESCE (`product` . `canonical_product_version_id` , `product.parent` . `canonical_product_version_id` ) as `product.canonicalProductVersionId` , COALESCE (`product` . `cms_page_id` , `product.parent` . `cms_page_id` ) as `product.cmsPageId` , COALESCE (`product` . `cms_page_version_id` , `product.parent` . `cms_page_version_id` ) as `product.cmsPageVersionId` , `product.parent` . `price` as `product.price.inherited` , COALESCE (`product` . `price` , `product.parent` . `price` ) as `product.price` , `product` . `product_number` as `product.productNumber` , COALESCE (`product` . `restock_time` , `product.parent` . `restock_time` ) as `product.restockTime` , `product` . `auto_increment` as `product.autoIncrement` , COALESCE (`product` . `active` , `product.parent` . `active` ) as `product.active` , `product` . `available` as `product.available` , COALESCE (`product` . `is_closeout` , `product.parent` . `is_closeout` ) as `product.isCloseout` , `product` . `available_stock` as `product.availableStock` , `product` . `stock` as `product.stock` , `product` . `display_group` as `product.displayGroup` , `product.parent` . `variant_listing_config` as `product.variantListingConfig.inherited` , COALESCE (`product` . `variant_listing_config` , `product.parent` . `variant_listing_config` ) as `product.variantListingConfig` , `product` . `variant_restrictions` as `product.variantRestrictions` , COALESCE (`product` . `manufacturer_number` , `product.parent` . `manufacturer_number` ) as `product.manufacturerNumber` , COALESCE (`product` . `ean` , `product.parent` . `ean` ) as `product.ean` , COALESCE (`product` . `purchase_steps` , `product.parent` . `purchase_steps` ) as `product.purchaseSteps` , COALESCE (`product` . `max_purchase` , `product.parent` . `max_purchase` ) as `product.maxPurchase` , COALESCE (`product` . `min_purchase` , `product.parent` . `min_purchase` ) as `product.minPurchase` , COALESCE (`product` . `purchase_unit` , `product.parent` . `purchase_unit` ) as `product.purchaseUnit` , COALESCE (`product` . `reference_unit` , `product.parent` . `reference_unit` ) as `product.referenceUnit` , COALESCE (`product` . `shipping_free` , `product.parent` . `shipping_free` ) as `product.shippingFree` , `product.parent` . `purchase_prices` as `product.purchasePrices.inherited` , COALESCE (`product` . `purchase_prices` , `product.parent` . `purchase_prices` ) as `product.purchasePrices` , COALESCE (`product` . `mark_as_topseller` , `product.parent` . `mark_as_topseller` ) as `product.markAsTopseller` , COALESCE (`product` . `weight` , `product.parent` . `weight` ) as `product.weight` , COALESCE (`product` . `width` , `product.parent` . `width` ) as `product.width` , COALESCE (`product` . `height` , `product.parent` . `height` ) as `product.height` , COALESCE (`product` . `length` , `product.parent` . `length` ) as `product.length` , COALESCE (`product` . `release_date` , `product.parent` . `release_date` ) as `product.releaseDate` , COALESCE (`product` . `rating_average` , `product.parent` . `rating_average` ) as `product.ratingAverage` , `product.parent` . `category_tree` as `product.categoryTree.inherited` , COALESCE (`product` . `category_tree` , `product.parent` . `category_tree` ) as `product.categoryTree` , `product.parent` . `property_ids` as `product.propertyIds.inherited` , COALESCE (`product` . `property_ids` , `product.parent` . `property_ids` ) as `product.propertyIds` , `product.parent` . `option_ids` as `product.optionIds.inherited` , COALESCE (`product` . `option_ids` , `product.parent` . `option_ids` ) as `product.optionIds` , `product.parent` . `stream_ids` as `product.streamIds.inherited` , COALESCE (`product` . `stream_ids` , `product.parent` . `stream_ids` ) as `product.streamIds` , `product.parent` . `tag_ids` as `product.tagIds.inherited` , COALESCE (`product` . `tag_ids` , `product.parent` . `tag_ids` ) as `product.tagIds` , `product.parent` . `category_ids` as `product.categoryIds.inherited` , COALESCE (`product` . `category_ids` , `product.parent` . `category_ids` ) as `product.categoryIds` , `product` . `child_count` as `product.childCount` , COALESCE (`product` . `custom_field_set_selection_active` , `product.parent` . `custom_field_set_selection_active` ) as `product.customFieldSetSelectionActive` , `product` . `sales` as `product.sales` , `product` . `states` as `product.states` , `product.parent` . `cheapest_price` as `product.cheapestPrice.inherited` , COALESCE (`product` . `cheapest_price` , `product.parent` . `cheapest_price` ) as `product.cheapestPrice` , `product` . `created_at` as `product.createdAt` , `product` . `updated_at` as `product.updatedAt` , `product.manufacturer` . `id` as `product.manufacturer.id` , `product.manufacturer` . `version_id` as `product.manufacturer.versionId` , `product.manufacturer` . `media_id` as `product.manufacturer.mediaId` , `product.manufacturer` . `created_at` as `product.manufacturer.createdAt` , `product.manufacturer` . `updated_at` as `product.manufacturer.updatedAt` , `product.manufacturer.translation.name` , `product.manufacturer.translation.name` as `product.manufacturer.name` , `product.manufacturer.translation.link` , `product.manufacturer.translation.link` as `product.manufacturer.link` , `product.manufacturer.translation.description` , `product.manufacturer.translation.description` as `product.manufacturer.description` , `product.manufacturer.translation.customFields` , `product.manufacturer.translation.customFields` as `product.manufacturer.customFields` , (SELECT GROUP_CONCAT (HEX (`product.options.mapping` . `property_group_option_id` ) SEPARATOR '||' )
FROM `product_option` `product.options.mapping`
WHERE `product.options.mapping` . `product_id` = `product` . `id` ) as `product.options.id_mapping` , `product.unit` . `id` as `product.unit.id` , `product.unit` . `created_at` as `product.unit.createdAt` , `product.unit` . `updated_at` as `product.unit.updatedAt` , `product.unit.translation.shortCode` , `product.unit.translation.shortCode` as `product.unit.shortCode` , `product.unit.translation.name` , `product.unit.translation.name` as `product.unit.name` , `product.unit.translation.customFields` , `product.unit.translation.customFields` as `product.unit.customFields` , `product.deliveryTime` . `id` as `product.deliveryTime.id` , `product.deliveryTime` . `min` as `product.deliveryTime.min` , `product.deliveryTime` . `max` as `product.deliveryTime.max` , `product.deliveryTime` . `unit` as `product.deliveryTime.unit` , `product.deliveryTime` . `created_at` as `product.deliveryTime.createdAt` , `product.deliveryTime` . `updated_at` as `product.deliveryTime.updatedAt` , `product.deliveryTime.translation.name` , `product.deliveryTime.translation.name` as `product.deliveryTime.name` , `product.deliveryTime.translation.customFields` , `product.deliveryTime.translation.customFields` as `product.deliveryTime.customFields` , `product.cover` . `id` as `product.cover.id` , `product.cover` . `version_id` as `product.cover.versionId` , `product.cover` . `product_id` as `product.cover.productId` , `product.cover` . `product_version_id` as `product.cover.productVersionId` , `product.cover` . `media_id` as `product.cover.mediaId` , `product.cover` . `position` as `product.cover.position` , `product.cover` . `custom_fields` as `product.cover.customFields` , `product.cover` . `created_at` as `product.cover.createdAt` , `product.cover` . `updated_at` as `product.cover.updatedAt` , `product.cover.media` . `id` as `product.cover.media.id` , `product.cover.media` . `user_id` as `product.cover.media.userId` , `product.cover.media` . `media_folder_id` as `product.cover.media.mediaFolderId` , `product.cover.media` . `mime_type` as `product.cover.media.mimeType` , `product.cover.media` . `file_extension` as `product.cover.media.fileExtension` , `product.cover.media` . `uploaded_at` as `product.cover.media.uploadedAt` , `product.cover.media` . `file_name` as `product.cover.media.fileName` , `product.cover.media` . `file_size` as `product.cover.media.fileSize` , `product.cover.media` . `media_type` as `product.cover.media.mediaTypeRaw` , `product.cover.media` . `meta_data` as `product.cover.media.metaData` , `product.cover.media` . `config` as `product.cover.media.config` , `product.cover.media` . `path` as `product.cover.media.path` , `product.cover.media` . `private` as `product.cover.media.private` , `product.cover.media` . `thumbnails_ro` as `product.cover.media.thumbnailsRo` , `product.cover.media` . `file_hash` as `product.cover.media.fileHash` , `product.cover.media` . `created_at` as `product.cover.media.createdAt` , `product.cover.media` . `updated_at` as `product.cover.media.updatedAt` , `product.cover.media.translation.title` , `product.cover.media.translation.title` as `product.cover.media.title` , `product.cover.media.translation.alt` , `product.cover.media.translation.alt` as `product.cover.media.alt` , `product.cover.media.translation.customFields` , `product.cover.media.translation.customFields` as `product.cover.media.customFields` , `product.tax` . `id` as `product.tax.id` , `product.tax` . `tax_rate` as `product.tax.taxRate` , `product.tax` . `name` as `product.tax.name` , `product.tax` . `position` as `product.tax.position` , `product.tax` . `custom_fields` as `product.tax.customFields` , `product.tax` . `created_at` as `product.tax.createdAt` , `product.tax` . `updated_at` as `product.tax.updatedAt` , `product.translation.metaDescription` , `product.parent.translation.metaDescription` , COALESCE (`product.translation.metaDescription` , `product.parent.translation.metaDescription` ) as `product.metaDescription` , `product.translation.name` , `product.parent.translation.name` , COALESCE (`product.translation.name` , `product.parent.translation.name` ) as `product.name` , `product.translation.keywords` , `product.parent.translation.keywords` , COALESCE (`product.translation.keywords` , `product.parent.translation.keywords` ) as `product.keywords` , `product.translation.description` , `product.parent.translation.description` , COALESCE (`product.translation.description` , `product.parent.translation.description` ) as `product.description` , `product.translation.metaTitle` , `product.parent.translation.metaTitle` , COALESCE (`product.translation.metaTitle` , `product.parent.translation.metaTitle` ) as `product.metaTitle` , `product.translation.packUnit` , `product.parent.translation.packUnit` , COALESCE (`product.translation.packUnit` , `product.parent.translation.packUnit` ) as `product.packUnit` , `product.translation.packUnitPlural` , `product.parent.translation.packUnitPlural` , COALESCE (`product.translation.packUnitPlural` , `product.parent.translation.packUnitPlural` ) as `product.packUnitPlural` , `product.translation.customSearchKeywords` , `product.parent.translation.customSearchKeywords` , COALESCE (`product.translation.customSearchKeywords` , `product.parent.translation.customSearchKeywords` ) as `product.customSearchKeywords` , `product.translation.slotConfig` , `product.parent.translation.slotConfig` , COALESCE (`product.translation.slotConfig` , `product.parent.translation.slotConfig` ) as `product.slotConfig` , `product.translation.customFields` , `product.parent.translation.customFields` , COALESCE (`product.translation.customFields` , `product.parent.translation.customFields` ) as `product.customFields` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_manufacturer` `product.manufacturer` ON `product` . `manufacturer` = `product.manufacturer` . `id` AND IFNULL (`product` . `product_manufacturer_version_id` , `product.parent` . `product_manufacturer_version_id` ) = `product.manufacturer` . `version_id` LEFT JOIN `unit` `product.unit` ON `product` . `unit` = `product.unit` . `id` LEFT JOIN `delivery_time` `product.deliveryTime` ON `product` . `deliveryTime` = `product.deliveryTime` . `id` LEFT JOIN `product_media` `product.cover` ON `product` . `cover` = `product.cover` . `id` AND IFNULL (`product` . `product_media_version_id` , `product.parent` . `product_media_version_id` ) = `product.cover` . `version_id` LEFT JOIN `tax` `product.tax` ON `product` . `tax` = `product.tax` . `id` LEFT JOIN (SELECT `product.translation` . `product_id` , `product.translation` . `product_version_id` , `product.translation` . `meta_description` as `product.translation.metaDescription` , `product.translation` . `name` as `product.translation.name` , `product.translation` . `keywords` as `product.translation.keywords` , `product.translation` . `description` as `product.translation.description` , `product.translation` . `meta_title` as `product.translation.metaTitle` , `product.translation` . `pack_unit` as `product.translation.packUnit` , `product.translation` . `pack_unit_plural` as `product.translation.packUnitPlural` , `product.translation` . `custom_fields` as `product.translation.customFields` , `product.translation` . `slot_config` as `product.translation.slotConfig` , `product.translation` . `custom_search_keywords` as `product.translation.customSearchKeywords` FROM `product_translation` `product.translation` WHERE `product.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `product.product_translation` ON `product.product_translation` . `product_id` = `product` . `id` AND `product.product_translation` . `product_version_id` = `product` . `version_id` LEFT JOIN (SELECT `product.parent.translation` . `product_id` , `product.parent.translation` . `product_version_id` , `product.parent.translation` . `meta_description` as `product.parent.translation.metaDescription` , `product.parent.translation` . `name` as `product.parent.translation.name` , `product.parent.translation` . `keywords` as `product.parent.translation.keywords` , `product.parent.translation` . `description` as `product.parent.translation.description` , `product.parent.translation` . `meta_title` as `product.parent.translation.metaTitle` , `product.parent.translation` . `pack_unit` as `product.parent.translation.packUnit` , `product.parent.translation` . `pack_unit_plural` as `product.parent.translation.packUnitPlural` , `product.parent.translation` . `custom_fields` as `product.parent.translation.customFields` , `product.parent.translation` . `slot_config` as `product.parent.translation.slotConfig` , `product.parent.translation` . `custom_search_keywords` as `product.parent.translation.customSearchKeywords` FROM `product_translation` `product.parent.translation` WHERE `product.parent.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `product.parent.product_translation` ON `product.parent.product_translation` . `product_id` = `product.parent` . `id` AND `product.parent.product_translation` . `product_version_id` = `product.parent` . `version_id` LEFT JOIN (SELECT `product.manufacturer.translation` . `product_manufacturer_id` , `product.manufacturer.translation` . `product_manufacturer_version_id` , `product.manufacturer.translation` . `link` as `product.manufacturer.translation.link` , `product.manufacturer.translation` . `name` as `product.manufacturer.translation.name` , `product.manufacturer.translation` . `description` as `product.manufacturer.translation.description` , `product.manufacturer.translation` . `custom_fields` as `product.manufacturer.translation.customFields` FROM `product_manufacturer_translation` `product.manufacturer.translation` WHERE `product.manufacturer.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `product.manufacturer.product_manufacturer_translation` ON `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product.manufacturer` . `id` AND `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product.manufacturer` . `version_id` LEFT JOIN (SELECT `product.unit.translation` . `unit_id` , `product.unit.translation` . `short_code` as `product.unit.translation.shortCode` , `product.unit.translation` . `name` as `product.unit.translation.name` , `product.unit.translation` . `custom_fields` as `product.unit.translation.customFields` FROM `unit_translation` `product.unit.translation` WHERE `product.unit.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `product.unit.unit_translation` ON `product.unit.unit_translation` . `unit_id` = `product.unit` . `id` LEFT JOIN (SELECT `product.deliveryTime.translation` . `delivery_time_id` , `product.deliveryTime.translation` . `name` as `product.deliveryTime.translation.name` , `product.deliveryTime.translation` . `custom_fields` as `product.deliveryTime.translation.customFields` FROM `delivery_time_translation` `product.deliveryTime.translation` WHERE `product.deliveryTime.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `product.deliveryTime.delivery_time_translation` ON `product.deliveryTime.delivery_time_translation` . `delivery_time_id` = `product.deliveryTime` . `id` LEFT JOIN `media` `product.cover.media` ON `product.cover` . `media_id` = `product.cover.media` . `id` LEFT JOIN (SELECT `product.cover.media.translation` . `media_id` , `product.cover.media.translation` . `alt` as `product.cover.media.translation.alt` , `product.cover.media.translation` . `title` as `product.cover.media.translation.title` , `product.cover.media.translation` . `custom_fields` as `product.cover.media.translation.customFields` FROM `media_translation` `product.cover.media.translation` WHERE `product.cover.media.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `product.cover.media.media_translation` ON `product.cover.media.media_translation` . `media_id` = `product.cover.media` . `id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`product` . `id` IN (0x50CA2E54DD1D47759EC9DEABC1784E9C , 0x2C688E792E354C9B96E469D6B97A9A92 , 0xB7B3572F290D49039C3E19B5D3A052A5 , 0x52A3096DC0DE441DA3B39E234D9666EB , 0x78183794F6DF426EA2FD03A5FD343A46 , 0x253DEE8C68784CEC824B6614531E8A18 , 0x27094E91EE474F90BBC3CCBB585C5701 , 0xC08874A898024439BBB3BA85A712223B , 0x8442B13754784845B70C75F190725C52 , 0x7828EACC9BD542C39E00611229C3DBFB , 0x71C2859267D84F9F83AC5D509C916BD5 , 0x240B0405DE1F4A8897836A4EB241C848 , 0x3F6DA0F52756446FB6CD580B232CD4D9 , 0x3CA3D520C64B49E49FE0F5B19BD6B672 , 0x313F7E64FDB44712868E78D57B67409C , 0xE48BBA3EB808443692AD88FA4A1E1D4E , 0x1011F76C07214D4D949779522A4CAF9B , 0xB514DFC4994344DE968B13AE6DD5CEA6 , 0xB91E8D3143EB465CBB5F1B8C3695EEAC , 0x78AB100BB01D46A286D6194998933CC5 , 0xB6BA0853949241D6A551927C12FBA762 , 0x2CB6FE1A64B84AAEB5C8623497372511 , 0x38E8BDA7E128472B90EB53249C499F4D , 0xB5C9BBA9DD7B40249A258C87687C7CA1 ));
Copy
44
0.21 ms
SELECT `name` , `type` FROM `custom_field` WHERE `active` = 1
SELECT `name` , `type` FROM `custom_field` WHERE `active` = 1 ;
Copy
45
48.35 ms
SELECT `product_price` . `id` as `product_price.id` , `product_price` . `version_id` as `product_price.versionId` , `product_price` . `product_id` as `product_price.productId` , `product_price` . `product_version_id` as `product_price.productVersionId` , `product_price` . `rule_id` as `product_price.ruleId` , `product_price` . `price` as `product_price.price` , `product_price` . `quantity_start` as `product_price.quantityStart` , `product_price` . `quantity_end` as `product_price.quantityEnd` , `product_price` . `custom_fields` as `product_price.customFields` , `product_price` . `created_at` as `product_price.createdAt` , `product_price` . `updated_at` as `product_price.updatedAt` FROM `product_price` WHERE (`product_price` . `version_id` = ? ) AND (((`product_price` . `product_id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ))))
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"\x10\x11 ÷l\x07 !MM”—yR*L¯› "
b"$\v\x04\x05 Þ\x1F Jˆ—ƒjN²AÈH "
b"%=îŒhxLì‚Kf\x14 S\x1E Š\x18 "
b"'\t N‘îGO»ÃÌ»X\W\x01 "
b",hŽy.5L›–äiÖ¹zš’ "
b",¶þ\x1A d¸J®µÈb4—7%\x11 "
b"1?~dý´G\x12 †ŽxÕ{g@œ "
b"8è½§á(G+ëS$œIM "
b"<£Õ ÆKIäŸàõ±›Ö¶r "
b"?m õ'VDo¶ÍX\v #,ÔÙ "
b"PÊ.TÝ\x1D GužÉÞ«ÁxNœ "
b"R£\t mÀÞD\x1D £³ž#M–fë "
b"qÂ…’gØOŸƒ¬]Pœ‘kÕ "
b"x\x18 7”ößBn¢ý\x03 ¥ý4:F "
b"x(êÌ›ÕBÞ\x00 a\x12 )ÃÛû "
b"x«\x10\v °\x1D F¢†Ö\x19 I˜“<Å "
b"„B±7TxHE·\f uñr\R "
b"µ\x14 ßÄ™CDÞ–‹\x13 ®mÕΦ "
b"µÉ»©Ý{@$š%Œ‡h||¡ "
b"¶º\x08 S”’AÖ¥Q’|\x12 û§b "
b"·³W/)\r I\x03 œ>\x19 µÓ R¥ "
b"¹\x1E Ž1CëF\»_\e Œ6•î¬ "
b"Àˆt¨˜\x02 D9»³º…§\x12 "; "
b"䋺>¸\x08 D6’ˆúJ\x1E\x1D N "
]
SELECT `product_price` . `id` as `product_price.id` , `product_price` . `version_id` as `product_price.versionId` , `product_price` . `product_id` as `product_price.productId` , `product_price` . `product_version_id` as `product_price.productVersionId` , `product_price` . `rule_id` as `product_price.ruleId` , `product_price` . `price` as `product_price.price` , `product_price` . `quantity_start` as `product_price.quantityStart` , `product_price` . `quantity_end` as `product_price.quantityEnd` , `product_price` . `custom_fields` as `product_price.customFields` , `product_price` . `created_at` as `product_price.createdAt` , `product_price` . `updated_at` as `product_price.updatedAt` FROM `product_price` WHERE (`product_price` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`product_price` . `product_id` IN (0x1011F76C07214D4D949779522A4CAF9B , 0x240B0405DE1F4A8897836A4EB241C848 , 0x253DEE8C68784CEC824B6614531E8A18 , 0x27094E91EE474F90BBC3CCBB585C5701 , 0x2C688E792E354C9B96E469D6B97A9A92 , 0x2CB6FE1A64B84AAEB5C8623497372511 , 0x313F7E64FDB44712868E78D57B67409C , 0x38E8BDA7E128472B90EB53249C499F4D , 0x3CA3D520C64B49E49FE0F5B19BD6B672 , 0x3F6DA0F52756446FB6CD580B232CD4D9 , 0x50CA2E54DD1D47759EC9DEABC1784E9C , 0x52A3096DC0DE441DA3B39E234D9666EB , 0x71C2859267D84F9F83AC5D509C916BD5 , 0x78183794F6DF426EA2FD03A5FD343A46 , 0x7828EACC9BD542C39E00611229C3DBFB , 0x78AB100BB01D46A286D6194998933CC5 , 0x8442B13754784845B70C75F190725C52 , 0xB514DFC4994344DE968B13AE6DD5CEA6 , 0xB5C9BBA9DD7B40249A258C87687C7CA1 , 0xB6BA0853949241D6A551927C12FBA762 , 0xB7B3572F290D49039C3E19B5D3A052A5 , 0xB91E8D3143EB465CBB5F1B8C3695EEAC , 0xC08874A898024439BBB3BA85A712223B , 0xE48BBA3EB808443692AD88FA4A1E1D4E ))));
Copy
46
0.28 ms
SELECT `unit` . `id` as `unit.id` , `unit` . `created_at` as `unit.createdAt` , `unit` . `updated_at` as `unit.updatedAt` , `unit.translation.shortCode` , `unit.translation.shortCode` as `unit.shortCode` , `unit.translation.name` , `unit.translation.name` as `unit.name` , `unit.translation.customFields` , `unit.translation.customFields` as `unit.customFields` FROM `unit` LEFT JOIN (SELECT `unit.translation` . `unit_id` , `unit.translation` . `short_code` as `unit.translation.shortCode` , `unit.translation` . `name` as `unit.translation.name` , `unit.translation` . `custom_fields` as `unit.translation.customFields` FROM `unit_translation` `unit.translation` WHERE `unit.translation` . `language_id` = ? ) `unit.unit_translation` ON `unit.unit_translation` . `unit_id` = `unit` . `id`
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
]
SELECT `unit` . `id` as `unit.id` , `unit` . `created_at` as `unit.createdAt` , `unit` . `updated_at` as `unit.updatedAt` , `unit.translation.shortCode` , `unit.translation.shortCode` as `unit.shortCode` , `unit.translation.name` , `unit.translation.name` as `unit.name` , `unit.translation.customFields` , `unit.translation.customFields` as `unit.customFields` FROM `unit` LEFT JOIN (SELECT `unit.translation` . `unit_id` , `unit.translation` . `short_code` as `unit.translation.shortCode` , `unit.translation` . `name` as `unit.translation.name` , `unit.translation` . `custom_fields` as `unit.translation.customFields` FROM `unit_translation` `unit.translation` WHERE `unit.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `unit.unit_translation` ON `unit.unit_translation` . `unit_id` = `unit` . `id` ;
Copy
47
5.13 ms
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = ? ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = ? ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x00\x00 [Ñ.ÞH˜²ŠÈ€²þ‹¤ "
b"\x00\x15 f>ô¾E±”DÆb8ÉÁu "
b"\x00 &ñê\x13 OH]…h©\x19 I\e ¦Ë "
b"\x00 *êélQF¯³UÀŒ1\x1F µ "
b"\x00 0`þæ=D‚³‘fzrlè "
b"\x00 <{5¥ûJO£›üE(9rÅ "
b"\x00 CVÚ³¸H\x15 ¿AA·ƒRï\x16 "
b"\x00 H\x03 ©½$"ôè\n €|Øšw¡ "
b"\x00 M»³\x10\x15 C,¼¬ø5œÝ\x10 º "
b"\x00 Q\r \x1F ôd¤\x03 ð‘ý"\t\t |t "
b"\x00 V\x10 %\x1E "E{¾Ë#ìå´\f ¢ "
b"\x00 h›hÙ\x1E K¬‰y×Δ\x03 žM "
b"\x00 k‚Tö\x0F E}²©õ‹´u\n "
b"\x00 v…\x02 yÊN+þWíÆ\x19 ²×\x08 "
b"\x00 ~úJ¢áIv¼L—A \x10\x03 ¶ "
b"\x00 ‚\x03 ›¨\x05 Eù°‘·\x1E ¹‹Ý§ "
b"\x00 Ž”âGÏO¬‚B•”8•\x1E\x04 "
b"\x00 Âg\x10 §jN•¿%VJ½”öe "
b"\x00 Ξô\x01 þÍ΂iW¶\x08 Ž\r è "
b"\x00 ίž!?Cr³úû“´oQ "
b"\x00 Þðîè×C•«R\r \x1D æn¹T "
b"\x00 ð\x11 å¿mI'–£K\e Í+4 "
b"\x00 õn\x04 „ÏEßTxK\x17 gLø "
b"\x00 ûå"/Jœœñù(¸Ó\x0E c "
b"\x00 þ]\x07 {ñGeœ@^jDH‘4 "
b"\x01\x0F +G™OŒº;ó+\x17 ¼åÖ "
b"\x01 0ó$+\x1D M‘†Ø‘i¢Æ,´ "
b"\x01 CÁ\x00 i€»\x15 ˆ†éqJ,wF "
b"\x01 c´-Á\x04 K\x0F ¦K»\x08 J0ü© "
b"\x01 ~\x0F ‹L{L…µrZ°Z_ɘ "
b"\x01 ˆÊ×5\x1D A"›Äé‘¶·Ï "
b"\x01 ˆã’m³eñb\x16 ²_÷’x "
b"\x01 ”õìˆSLÛ˜äUî\x08 ~\‹ "
b"\x01 §í³¿I@ ¹p>ÉeR/Ä "
b"\x01 µÂý€&Ouˆ%¨]wƒ"Ë "
b"\x01 ϼ»ML\x11 Ž»MÙ²Gm± "
b"\x01 ãj}5‚D‹¶ð£o©ã "
b"\x02 "X Æw\x18 Âðfèð•,Œ "
b"\x02 0É·RPKr¡Õ#áK¶\x04 "
b"\x02 6Q•T‘A»²\v\e EQ\x12 åç "
b"\x02 8{\x1A F\x1A Hž½*Î<Ð\t º\x18 "
b"\x02 L\x08 a\t í®_¼J,\x1C Åá· "
b"\x02 ˆzJnXCL§4•ò\x14 ’Ã "
b"\x02 ŽÂ#ÙïJT¾‡Ž¬½×Yÿ "
b"\x02 ‘çxP¼\x16 ÅeÔ«E‘>\r "
b"\x02 ¤öâÖ(E!¢\x19\x17 ¢"\x18 —M "
b"\x02 ´Rÿ-7\x05 $cUÀ/\x15 (Pø "
b"\x02 ½b”\x12 çN\x1C ‚¸%\x1E Ó$Žs "
b"\x02 ij5—Ö@®¿\x07 sçà*(A "
b"\x03 \r OÌŠ”L³#CÏž•ùý "
b"\x03\x11 T\x01 ú8DÀƒ*\x1E ßçÉ\x14 » "
b"\x03 $\x7F\x13 \r ÝN$¾3¹‘Å£àý "
b"\x03 -=Á¿Ê$|slN\x0E ÞT§i "
b"\x03 -CÚÆ½Düƒáý9Ý5£\x05 "
b"\x03 4\x01 þ\x02 &A’¦-c£üG9 "
b"\x03 S×KÊ'@œŽ±*7R¤Ø” "
b"\x03 wðqs\x1D 4ƒ×xMñuA\x06 - "
b"\x03 }¢Ó¿KSž\x1D owT娨 "
b"\x03 G³4\x17 Bñ¦}à£%ʇ… "
b"\x03 ÒŒ\x05 Ž^ûáå‚Ô6ˆÒ>A "
b"\x03 ðS”¼JE\x15 4È8^»\x19 ª "
b"\x03 õF\x0F •SD²€ÔÇ\x1E &˜»Ë "
b"\x04\x02 G…JTLÞ°¢n PM\x05 æ "
b"\x04\x1A\x05 T@yèßÁ<tw/FÜ, "
b"\x04 &|÷/¾I\x04 “ˆÐO£p\x1F "
b"\x04 H–œíI@½£~̙ɯ\x10 ‘ "
b"\x04 KZÅ\x15 ˜òMáì\x12 `c\x1D XÝ "
b"\x04 u,ö¡‡uÔõ\x08 šl@‘ "
b"\x04 Ž\x1C í\x1E «N‡£\v ‹AX„ç\x1C "
b"\x04 ¹\x19 ‡*<@MžD{v\x1A cð3 "
b"\x04 ¼r“ÙOH™ ñ9gÿIò "
b"\x04 ø¾1ÒCñœ‰úz^WßN "
b"\x04 ÕZlo2Ló»ž\x03 hZü·» "
b"\x04 ü±\x07 =´N\x1C Ž¢ãïPºb\x07 "
b"\x05 !~ÈñnH\x11 ¯u0)îœC "
b"\x05 ,; 5Z%%Éýy\x1E oË "
b"\x05 YzJ„eJ–°)½¤ˆ\x04\x0F M "
b"\x05 uü.ßüCä†wOQ¦-S "
b"\x05 ƒâz‚Hg±nZÓ\x17 VŽ< "
b"\x05 ¯»æ\x11 DÃÕ»à (öˆ*õ "
b"\x05 ±"\x11 E«M‚fµ±\x10 ×'a "
b"\x05 ¸\x01 °ÅqO‚–“ã·x…Ë "
b"\x05 Ô·\x1F ~€H} óäq¦P"¿ "
b"\x05 âwyÓJí¨™ïÒ·$•G "
b"\x06\x02 v9\x17 5LXµ{yI\x05 )_¯ "
b"\x06\x1C\x02 Ó<@E»—Y`-·ö¤ "
b"\x06 84z‚I޾ýÒµðXDT "
b"""
\x06 \HB‚\n
Fů\x14\x15 ¡°\x1E 15
"""
b"\x06 bü˜<䶃%€h{Áb$ "
b"\x06 v÷íæ<BF—Y°‘ îž "
b"\x06 yÀD$”JŒ ÈO*\x1C ‰ÀÙ "
b"\x06 “Æw[#OX‘¹u\x1A ‡\x03 £« "
b"\x06 ¹Ðô€Ñ€>G¶\x18 Dœ\x1F xª "
b"\x06 Ä03é(Aî¹9ONN…«K "
b"\x06 Ñé¼H+ñæ¸ÊGÇj‘ºN "
b"\x06 æd•ƒxF\x1D ±\f i\x11\x1E W\x1A ! "
b"\x06 é*¾EKM¾`£¥"‰¾ "
b"\x06 ê¦\x15\x0F ¢B\x1E ‚ñh—œÜâ "
b"\x07 /8±&ù@t€tɶØÄv¦ "
b"\x07 BK\x1C í¾/§\x05 3BØ>Wå\x18 "
b"\x07 U¾\x14\t 'HDÒýjâ§$½ "
b"\x07 hôF(\e eUùš¯ñ^ÎRÚ "
b"\x07 u\x08 ~Â\x1D MÈ®c\±1²\x00 £ "
b"\x07 ñš‡å@>¶|âuî\x06 ÉH "
b"\x07 ¥ïüÙ\x00 KV¼¯Å=C—ˆ; "
b"\x07 ×®\x07 B/H*€8ð\x13 ½_DQ "
b"\x07 à´\x0E œ\x0F @U©\x07 jƒ\f –æÒ "
b"\x07 ákCnަö–Z\x02 ¯u\x1C º "
b"\x07 âPÊΚI\x1E ²ñ?\x10 F%Ùã "
b"\x07 çrAJº•ß :›ôdÏÁý "
b"\x08\x12 eŽK3H\x16 ¸0\x16 zÀ_oz "
b"\x08\x13 =ÝÝ¢3\ê^ß~òšüv "
b"\x08 9õpá\v B¾Ž\x05\x04 ™Byƒì "
b"\x08 OB[\x7F 9xçæ,Ük\x07 ¦(y "
b"\x08 z$AÊHGR³GŸc$ñÏu "
b"\x08 Áˆ†´M$¤kCÕ÷ \x7F "
b"\x08 ʤw2œG莿\x1E\x13 ²\x18 ‹° "
b"\x08 Ð\x03 ñ\bÆz\x08 •&Á0Sª+ "
b"\x08 éq;ÑAEw¹rc\v fÈèß "
b"\t\t G\t `„1Ç\x1A\x07 šZLhE\x07 "
b"\t\x15 îo)<Lö¨å¯…!þïk "
b"\t\x18 sdïÓI?¨^\x1E D¢.øä "
b"\t /°‚¦nL÷¥\x16 F\x08 }j´Ÿ "
b"\t 2à\x04 »MP€L\x03\x10 ÷}pM "
b"\t \x1D ð\x1A €´Ë\x07 ¿zíè\x0F c "
b"\t ب\x1F ʇK´¾ÙÑi3€û\x13 "
b"\t ãïÄu›—iq™gº MϪ "
b"\t í¸žH\v Nõ…\x15 ¯år®[ "
b"""
\n
\e ©c1¶\x03 ÎuR/(»\x16 ÓD
"""
b"""
\n
1\x12 e¡k@3“h¬–L\x1C ¥2
"""
b"""
\n
G3#sÛJE´Acà.K9½
"""
b"""
\n
WþûØ\e Mƒ\x06 Ä‚ñ{xA
"""
b"""
\n
Y\x0E 2ô\x0F HÀ›\n
Ùvh˜p
"""
b"""
\n
tJìh\x1D Fj¤L\x16 ÅÙªê\x1E
"""
b"""
\n
—\x07 J“ß@?€\x10 .\e N˜\x17 ^
"""
b"""
\n
™Y¤†[£Pá×\v P‰ù§(
"""
b"""
\n
#Z4åMö¸)r\f\x07 u=
"""
b"""
\n
1ލ:IÅW®%ÔƒøÆ
"""
b"""
\n
}–-\x0F ²\x1A ¿\x0E Mx‰Pü6
"""
b"""
\n
Ü—&\e Xɽ\x01 ‰èúþßî
"""
b"""
\n
òF%¦ó3¯ã\x07 ”D\x10 ¤3Ž
"""
b"\v\x1C %!˜ØOªõ\x10 eåÿº& "
b"\v $ ndÇJ¹·à%\x1E ¬ˆü± "
b"\v h"Ò™ø•„@‘Ùõö¾~ "
b"\v ’\t —Ö–\v ³«ZlZ¯\x05 t "
b"\v Ìš\e\x14 A'Áí\x13 ž†›ƒm "
b"\v ñ,—À\x05 ˜\x13 $U Zï¿2é "
b"\v õŸîeZK9¯qÉyÜ\x17 P( "
b"\v ù`@’×HÚ™\<<_—²Ë "
b"\f 9\e\x01 ü*J\x03 ¨º\x13 §¥•Ø· "
b"\f _ç½b\x02 ¬¬Ü˜.\x04 †\x16\x1E è "
b"\f b6Æ #CÖ¾ú袃W[» "
b"\f kܲgÐbž\x07 xÈWíºìÖ "
b"\f uÈ;ª\x01 @‡€‹®'£½úq "
b"\f ©\x12 äaßGÅ\r °‹i눪 "
b"\f ønÚŒ.H\x10 ½Žä)ïÔ›a "
b"\r ++!Ã7òa\x16 (å"âÈ#‚ "
b"\r mf(¸f è¥\x1A E+\x08 oXô "
b"\r t{é]ŽFù³íÆŽaŒ\x11 ž "
b"\r ɧoˆ«\x15\x0F êO¥ÎPÌBH "
b"\r ×êN5ÎL¥“tÂPš\x1C\x1D 6 "
b"\r Ú\x02 ©<ÿ$$•\r ñ{\x1E SÛ "
b"\x0E\x11 Ö\x15\x19 °Bv\x05 v©$DJª "
b"\x0E .eB’¶B\x02 ‰zn\x05 `~ü/ "
b"\x0E >˜€ŽâÖÔŒ‘Î\x00 çØv* "
b"\x0E WïT\x1C\x17 C,¬Nµ\x19 Þ9òÇ "
b"\x0E ]Ã\x13 I\x07 Hà‚1\x1F )ÿ*¾! "
b"""
\x0E kM¹\x1E \n
M/A\f í°\x06 A@
"""
b"\x0E xâ”l@¥:kݪ¢L\x7F "
b"\x0E {\x08 ¼\x05 ùD\x08 ªêÅr\v Å\x11 — "
b"\x0E ~\x0E ;©ß¸\x04 z\x03 F}¹ÈŸA "
b"\x0E €¤fÌ,C’¢LQ\x13 ²ºŸ— "
b"\x0E …H\x0E 0M+¤A\x18 (ŽŒa\x12 "
b"\x0E Žº}NôLœ£@:ôÛØp% "
b"\x0E ÚñÛ\x14 „F‰Ž;™tl\x0E à "
b"\x0F\x03 ”Ò|Â\t ÿ2‹æ\x18 k(\x1C "
b"\x0F 2õ±BSN2¿\x1A ¥pô\x19 .\x19 "
b"\x0F 6yïpý:g\x06\x18 v¬U\r 0Î "
b"\x0F 8aåxɶU\x00 Æ‚\x04 OÉ\x1E "
b"\x0F A¿@aù\r p£¾3„óWä’ "
b"\x0F N\x11 ØÊÑO>¤\x1A Î?\x13 ëP\ "
b"\x0F {bq¥FJô“Y‰ø…J(¼ "
b"""
\x0F \n
ö†r5‚ð¤V /p
"""
b"\x0F ®¦1žA•£i+\x03 !xÿ´ "
b"""
\x10 /Š©1 ðÄŒ\x07 W\n
’Ž\x1F
"""
b"\x10 MÄ\x14 X`B^¥1\S@õuË "
b"\x10 †áÁÖðEA´CÍZ¸%¿c "
b"\x10 •¤\x0E X”;†/ÜF\x16 г "
b"\x10 İ.èþCÉ„QÛ¡O\x16 Jr "
b"\x10 ÚtŸœé¼5:ˆUü!4\x1F "
b"\x10 Ý*À‘ñ§šQ[ì!/_ªò "
b"\x11\x01 =+T!H–©6ÔÂøl€š "
b"\x11\x01 èEA$Ä]^¬\x18 ½€ƒ\f\x18 "
b"\x11\x04 £\x1A šüET=ï4v\x19 ¶ë "
b"\x11\x14 ùv\x18\x0F I|»–Ö·o×™' "
b"\x11\x1A ;»+sÂ\x1F ÖYàVaósé "
b"\x11 IAç"FG¢®µÈ}ú¢\x01 Ÿ "
b"\x11 –\v ŠApLT¹³±\x1E\f ÂAó "
b"\x11 –¯OÐ\x1D ©×TmÛšnŒ8ß "
b"\x11 š°A–ø@¾JmÐ(“F "
b"\x11 _¬™÷MNŠVZËØ\x0F\x12 å "
b"\x11 ¶\v m\x03 !Hj”3,\x01 Ó•úÚ "
b"\x11 ÂãÃ\x0F äßÖ)ê2ñöŒ\x08 U "
b"\x11 ×è\x1F ÌIF’«^\x15 lfO^k "
b"\x11 æ€4z½Ot„Eêî\x1D ìLõ "
b"\x12\x12 ¢è5ù2‡ÂÀH3KØ\x1E "
b"\x12 öÔÖ.\x16 H\x0F \x08 À3ƒÌã "
b"\x13 \r ±]ÞéGÏŸ\x13 ª\v ÉW´´ "
b"\x13 .\x07\x16 Òý°J™‰\x16 >Dâ×X "
b"\x13 2\x18 ËÏH-þû\x18 ø¤Bb "
b"\x13 F-75¥O&‹[ÕvÇ$\x08\v "
b"\x13 VqÍ‹š§Îñl(Ce\x1D T/ "
b"\x13 •¾9Ka‡\x19 .,hµfŽ6· "
b"\x13 ww²;o.9çÒ;ÀÙÕû "
b"\x13 Ó´AL(A~¼ïá\x7F ôˆÿá "
b"\x13 þ\x03 »u;H\x01 ž#Å<l’B "
b"\x14\x1F ´C‡\x7F D ¥ªnp=\x01 µú "
b"\x14 _¢Ø{5CB®\x0F ä\x0F f\x06 -µ "
b"\x14 £§†…5BÓ™’ßsì\v 8â "
b"\x14 ¦TÊ\t Ã÷§D¯ç½Wm±A "
b"\x14 ¾å™\x08 ÒqUYˆˆ“Äà´r "
b"\x15\x13 Á{ÞsW@\x1E\x04 þv¹¨3Ø "
b"\x15 P™Ž\x14 gF\x03 o÷Æ××Ìd\x16 "
b"\x15 ZÅ'`-Iÿ´ã\x19\x02 ì¹Å$ "
b"\x15 p\x17\x0E YƒV\e ½WÑY¯\x1F ä` "
b"\x15 …\x18\x18\x13 &Ь”\x04 ^zEÝï< "
b"\x15 –¯ë‡\x15 B\x00 žÉÏŽˆ\x1F /† "
b"\x15 ²^SgN:§>è^+Bd% "
b"\x15 ȺtÃgCy¹ºr³cС0 "
b"\x15 Ñ}žFrCc”Ü¢ÓÒcû$ "
b"\x15 ÜÆ\x14 ~gK{‘mUaî˜\x15 ƒ "
b"\x15 éñîêc'¿Ä\x13 ˆ@Ü[Î) "
b"\x16 <ø\x17 ]JS¼\x08 Ì1ñ[\x00 "
b"""
\x16 Vþ)McHð¡\n
\x01 ü¢q\x04 ã
"""
b"\x16 l+(ÜšºÎÄÃu~•\x1A K) "
b"\x16 xàGCù6¡Lš\x04 åñ‚Žô "
b"\x16 |9Í\x11 S\x04\x1F m“ñ\x13 £]®H "
b"\x16 Žw<&(®’äå)ÿ…G†Õ "
b"\x16 ÍžºÉ\x7F GdM~B\x05 À¯^ "
b"\x16 óµi8X@Ïžoc8\x02 zÓÑ "
b"\x17\x17 ÈbJvFì©¥ŠW\x19 ¦y "
b"\x17\x1F ¬ð8!D*´\x18 ñ++ÊU "
b"\x17 2ü…!”Dôž›¨*¶ºÁ™ "
b"\x17 a\x1C ¹7\x1C @v³™\x15 ›á8!« "
b"\x17 lGòŸ^ ¶¬\x08 …É-]×Þ "
b"\x17 †Íöï¸CÔŒè\t ÑÖ¨MÙ "
b"\x17 Ƽv…ôò \x19 ¯ðP\x0E ŸŒ' "
b"""
\x17 Í‹Î\n
ŽOñŠNY&ê¢![
"""
b"\x17 ïƒer\x08 ¶‰¤Bq¦Ç˜Ï‹ "
b"\x17 õ\x05 ´38ÓŸwì\x01 ãš‹\x06 ƒ "
b"\x18\x1E w[\x1D 5\x10 OTUW¤\x17\x19 N~ "
b"\x18 ,fO_!HÖª¾³Ý\x1D T\x08 y "
b"\x18 v¿/ü\x15 D_œî.îl¸Yw "
b"\x18 ¬‡²I<"SèÏlBwèZÍ "
b"\x18 ¯âˆCBÏ—4õ\x01 á\x04 €\x05 "
b"\x18 Ñ\x7F\x12 Î\x05 Cå©+̆•Òë "
b"\x18 è4÷ÙRŠ\x0F ´Q—ƒ\v w\x14 a "
b"\x19\x1E |h\x08 øJD¢\x03 Ûã©©Ýn "
b"\x19 :Ùì\x07\x02 Mý¢.Ø_è™\e ° "
b"\x19 ÖïGÆËY”bLF®¤‘ Í "
b"\x19 ïŠÑK³\J¸\x05 Eì=’\x7F * "
b"\x1A\e £¼†ÊMû‰b\x1F Ä•\x1A Z× "
b"\e 'Œ†³éHЏë$\x07\x11 “ò¼ "
b"\e Ž×\x00\x1E ÓD‰ªåÈ:\x02\x15 @° "
b"\e ØãÞWeB\x12 ¹²\x01 >ó¥`\x05 "
b"\x1C\t ‘çôHF]»\x02 W©©}\x0E ä "
b"\x1C 3ã»”‹¬\x01\x19 nÿ\x10 #ör> "
b"\x1C gfF²9\ý6þê›0udÏ "
b"\x1C Ž\x08 œPzB\x03\x01 Þ½è˜õ\x7F Q "
b"\x1C ÷$‘%êF\x15 ìis2e6 "
b"\x1D\x06 ŠìÐ\x01 B\r ‰{ô×)‹ÒP "
b"\x1D P*èN ~\x18 ¥V\x04 ,㯒 "
b"\x1D §\x00 éÛá\x17 2[W\x04 »V\x05 «¦ "
b"\x1D §q<ŒâX³“\x08 ±¢`Õ\x11\x0F "
b"\x1D ÀÇ\x05 ÖIG\x1E €‘C\x07 ªþ£\x0E "
b"\x1E 1‡¶|0XùJ×(×\x7F 1'á "
b"""
\x1E ?ße3É\n
ø\x0E ΋§‘¿fÎ
"""
b"\x1E W¯ŒÔ/O«¨Ý\x00 ØÏ1ɰ "
b"\x1E ^¸G@?A]ŽTŒ'O¸áØ "
b"\x1E mBœ\x7F žYƒÉ\x1D BN‰ùÔ "
b"\x1E †Üri½\r É\x1E R@ýŽ.\t ¹ "
b"\x1E ë º¼ÐB‹¸Yb[9÷Uù "
b"\x1E õרÌÑF¼‚\x17 ¯Y¾ÔŠ "
b"\x1F 1Ú1ðÿ\x01 C\x11\x18 ÙèPc" "
b"\x1F \IÒ…kGn›s“ëØ#h7 "
b"\x1F f\x00 >BzKò€l.t%hÌg "
b"\x1F §(\f 1†JŸ¿CV0\x0F à®s "
b"\x1F ÷\x1D f´¥Kk«ª6š\x14\x0E …\x1A "
b" 9\x0F ¸Oßbô\v òTú ©Ò "
b" 9§ "\x1C Ž‘sK^\x0E íU`û "
b" –¼ú\x1A Hf™Ð\x04 Ð|ø‚\x1F Ê "
b"!\x11 8…¹ÁGEGÓÒ<òæ]ˆ "
b"!G!…Å\x12 O\x1F ‡\x16 hš\x13 å\x04 m "
b"!nÒLÒ\x01 ¾¤Q\x1A Rßœ\x13\x05 y "
b"!~DZ-FCC°6ÌûŒž\x1D "
b"!•¹;\x08 E׳ݻ\x11 X išÊ "
b"!Ÿþ/I³G\x1C ‚”OL`\v ¿á "
b""P9\x19 ÉŠFJ®m3²+馎 "
b""^`]\x00 kKk¾\x14 '¢þþq "
b"""
"a†\x15 ·HBö¥ÀTe‡Ú\n
Ù
"""
b""•!Ï„íH¡ºFÎ_\x17 ôìÉ "
b""éÂyÊòD¨…±ÎÉê-éÕ "
b"""
"öN\n
}\e J†¶W°ú…CE–
"""
b"#T?á&|0ZkD“%SGL "
b"#išÂÆWD䄵᪴϶“ "
b"#z3\x1C i¼JÖ•2ä\x03\x0E\x05 ä\x1C "
b"#ŠNñ%\x10 H#¼}{tQ|Nv "
b"#Åv.D°Dš²Š\f b+f~P "
b"#Ëð\x0F aÓNc¸X„\x11 °³g\n "
b"$\x03 †'Œö_ÑOxYˆ(ZbŒ "
b"$JHÙ9û@´€¹÷¶ÂÇŠO "
b"$^v\x1F ' M\x19 ¼È¤š¨ÐßL "
b"$\x7F ›¡pCk\r €Ý\x1F Î\x06 ¥û_ "
b"$†äþ\x18 :<Þ5½‰U°7|… "
b"$#b<JZ«i\x00 Cç3ˆ "
b"$åQl >¦Œ‡ïÃZ`\t u "
b"%\x12 NDò\v K¤µ\x19 ¯2G\x1E\x19 Ë "
b"%VÒ\x05 ÔZ/=™YTçÃH„â "
b"%læy£cO†‹hë¨ !~ "
b"""
%o\x05 J{JM\x06 ®¯,Ih¬\n
Ï
"""
b"%·r)Ü\x06 IÓ£µ{°\x17 n÷8 "
b"%ÀG×Ù4HÖ¯#£A§ú\x1A X "
b"&\x01 Ÿ“ÈÞ%I¬`¾ãŒàn® "
b"&\x18\x12 _ Ž\x12 ¤Ðdv.ßÖt» "
b"&xÄv §ºcýUõÂú\x16 ³Ô "
b"&\x7F w¢Y…Jc—q\x07 %\e þ§ó "
b"&•\x1D âžè‘|+kxð¦ì¿„ "
b"&™]îæPKF\x18\x1C 8Hp\x18 x) "
b"&æAäÑGF;šè5§‘i:É "
b"&í\»\v ªíHVr=Žo–_à "
b"&ýµå.\v Kk¼ƒX!û¥\x19 ý "
b"&ýÎæ›wKh[#\t >óè7 "
b"'Vþ%ñ\x1A E3 Òà\x1F\e L✠"
b"'e!áÀEA¡¿Ä9U/MŽ– "
b"'pÊÔý‚MtªŒO#ãÛNœ "
b"'ŽTuVºKÍœ+ÓŒ½¹q‡ "
b"'8ŒhÿL\x05 ˜qó‚-¡VÑ "
b"'¬&\x04 <öGœå÷‰GЉ\e "
b"'°7ƒØý'Ð\x11 ŽFžéu¨\x03 "
b"'»Œ!t§Êdi\x02 ¾¤f\x17 W¾ "
b"(\v U´T`NfŽÁ¼d±\x12 ÁÔ "
b"(\x11 µõõXõ¡\x0F w\f Ž¥cÎ# "
b"((K.Lj\x13 ?‚Oó!SàBÉ "
b"()ž±òjK\x00 ƒ\x7F\x0E ð‘J\x13\x06 "
b"(}AWx\f …p†KW1¥\t :… "
b"( åÉ=àI§R}\x1F û•7\f "
b"(´«å /f»[øÿ\x17\x17 wU; "
b"(¶ká®6DdWJ\x19\f baíü "
b"(çÔËö-æ~A¾”¥Ñ› "
b")\x1F L÷øGB©˜€† E\x11 | "
b")#<'¬^A£šðJº6[Ú= "
b")4¦ã–#Nr˜%pøèÊ>á "
b")`).m<K‡ÓÐ¥B/ž\x04 "
b"){þUM\x10 K\x1A ‘ Õ\x00\x05 +Ëç "
b")ƒ¿ëRzM\x0E ½\f ó\x1A +"Ɖ "
b")Ž4è{-Nq¸ex½]\x08 ‘d "
b")“Åp-\x17 JÁ±"á\x00 ï;Ó‘ "
b")Õî\x02 —úÝl1÷„嬺¨Ó "
b"*!\x0F ↹ 7%‹~AY`GÍ "
b"*m\x05 Y–õxzxC"WÒa“ "
b"*ÑßpÅÝJA™K-X\x0E ÂÕ "
b"+\x07 ý Å(O¶³íç¸Í'˜ "
b"+n•Kÿ:ÕQ:r2\x1C 6…\ "
b"+\e ´Ùåõ\x7F žÝâä\x16 ÌH\x10 "
b",\x08 ¥\x00 ÞÚM\x1E ª>\x1D AEÂ)} "
b",$\t ›ó\r E]K?³PË2»/ "
b",rE[\x11 "CE+¸³ÆoL "
b",\x0E b\x15 éC\¯ú›«X:‰ð "
b"-\x17 LlÒ\x1A @Óæ qZÏœÞ "
b"-?\x1C\x10 0ãLó¼÷û–ê\x03 Õ, "
b"-H¯q©‘D̺\e }P¢OøF "
b"-R0ÔSPLF¡€wC"Y\x11\x18 "
b"-Sn¹:4ê™ØÛá\x1C úÕz "
b"-tþL—Ü@>ºŽC)û"{Y "
b"-{‚\t õ\x19 8¨Ð b¿"-f "
b"""
-ŽûoýûLÒ‹ÔwÖi\n
AŠ
"""
b"-•(\\x1A õHø¥4‚ÝŽš\x07 ¯ "
b"-˜|\¦|þtì!¥= "
b"-ïb\x1D Ù0"Äó–\x02 ¿\x06 Üx "
b"-ÃéöÎvõPÀÈûÄb\x00 :X "
b"-ÕVi”\x08 ¢‚J¦V”ïQ“ "
b".ˆL±¶\x13 HŽÝ?-Y\x1C Gíþ "
b".™|!\x7F `J¶—‚Ž‘O}ú "
b".ÝTÑ5MLƪ¨†@@4sJ "
b"/<mc\x00 Þ\x01 ¦q\x00 ØG-¡Û% "
b"/M+!5\x03 <`\x08 c÷áy¥88 "
b"/sˆ",\x11 N®–8H³AUè8 "
b"/Õ4’}Ƀ§\x12 )êûˆá8³ "
b"/ßH\x07 fé¥\x0F ëíÿ»ì/F "
b"0/Xï¥_àß\x02 ”Gv+¡K³ "
b"0H€cÎRNE¼[Üœ\x01 ´èä "
b"0W:ð9}I\‹t—C_\x02 øÙ "
b"0o]ÕL'ÚÍ=¡´l\v ·Ó€ "
b"0ê³L\x1E Hœ¢¨·ßÙ\x0E kò "
b"0ùš•—lE\x1F ‰\x03 smk÷`1 "
b"""
1\x14\x1A ‚\n
‘@…¢\r @\v “\x01 :L
"""
b"1:4$Ç$_ô‘\x07 Ýú#·³\x1E "
b"1]¦/ÜÖG\x14 ¨ÊßÌ´Z‘‚ "
b"1¥\x13 ø$\x04\x1A µ\x05 Cÿ\f ÷\x1F 8 "
b"1È\x12 ¹¥Eèíû´;-öDf\x18 "
b"1Þ¾¡þƒºß,ˆ·JÍQGj "
b"1ég›Ü\x00 (3¯\x03 ß8¥ýöž "
b"2C„/maÄò¨\x11 Ö£\x04 Ì“å "
b"2T‡\x13\x0F yA Œ\r ÔŒ¯î×+ "
b"2‚\x0F ™€ÚBÒ‚Uó\x07 …Ã‘Û "
b"2¬AóNó„«Ö\v |q¡´}b "
b"2¹«ÎSpL·®–>$ª‡\x15 ü "
b"2ߤÑçMÇŽ¨¬e\x03\x10 Fó "
b"2û)ß ï…W=~!\x14 W·ñ "
b"2ÿ\x0F \r ŒŽK»©.žÚ(—¬& "
b"3=³,&<J¶–L\x06 àt»“\x13 "
b"3w³Ë\x06\v —¬w á\x04 ñ»ÖÙ "
b"3ɪq”õI\r ¥ß‚ó_0›: "
b"3úRåý¢Jq·r4á$˜4d "
b"4P°¥Ž(L¹¼~d®ÄóS/ "
b"4d\e\x00 à¸Lì¾;ð_˜-³m "
b"4¤^5‘\f Jä\e œ69z¾Ž "
b"4«'yLïD{”a\x10 JÃP×\x1E "
b"4«7Ù"Ò¥/516xM\x0E D± "
b"4µ–?×ÒCµ¥8I±\x10 Ô1$ "
b"""
5Jȼx,@\n
ŠHN@Ë#Gk
"""
b"5l\x08 ;\x17 ÝD÷¥æ_Á.\x00 ªK "
b"5p‰Æd\r @µ†íZp2$M” "
b"6XLçuw°úX†óíÁÍ»- "
b"6†Ï\x0E S¤H\x13 ¥\x0F óiò6-: "
b"6žchôèD\x18 \x02 É\x17 ·\x03\x01 "
b"6¥š7uaë+_¦ls‰w„\x00 "
b"7x”Ô5\x16 @Œ ‹Oü•q\r = "
b"7«\x1C ÿ5\x04 e.k ,OEøË "
b"""
7ãþ\x01\e Î\n
\x07 S½½3™ÚÍ©
"""
b"8\x01 öEš»=·fØ„òDÃ!è "
b"8Q0[dû§é8+¾zdpüz "
b"8XAš¾R5š {H‰O·ìï "
b"8è·‰\x11 Ï\r ×B<!á;ÉA "
b"9Þÿϳ"K7„+|ôs©4† "
b"9ìm«ŽF=ŒÚ\x0F ø:äŠ "
b":\x1F ë:Z6C–—Ê;Ïn¥\v ¸ "
b":Ï~V\x08\x12 m›\x1C UuF:\x14 ¾¯ "
b":çx©Q¬>p\e =£LÉÕdˆ "
b":죑\x11 ûºÙK’UEËË³Æ "
b":óÅÒÆ\x13 Ci¶»¯{|w\t à "
b";\v µN¼\x15 Z?·-\x04\x06 ^î\x1A t "
b";AŽ\x04 ¼œ‚\x17 pKÿ’Oêex "
b";[\x1E Þ1xE\x13 ‡3Ê¢ÞÍ{$ "
b";‡ú 2ÔLb¹ª…C5n£Y "
b";‰güw·‘\x13 E\x08 ƒ\x03\x10 çÍÝ "
b";´\x00 ^ã¾Nò¡\r =‘~ð Ê "
b";éÑmA Rü\x14 s>•çk\x14 "
b"<\v €ƒ»ÉL.¿T4LôÙ+„ "
b"<("\x7F kìT;p ¥ÔxŠcß "
b"<1ÿ\x00 PîJ\x10 „/¡\n \x06 ”L "
b"<~KÅ\x02\x08 T„W¬\x1F S;6 "
b"<¼¢7‡1I}Ð7½Û®\x12 "
b"<Ÿ\x10 îÇ\x1E p5AL\x7F ¬‹ö±â "
b"<¶RÎl=Hu“v-…êš±… "
b"<Ìz;1©@Ê¿]\x1A »”\x00\x1D Ý "
b"<Ѫ\x00\x19 ã:cþ¶\x13 Ú‚\\\x1D "
b"<åc½\x1E ¼N4ƒ?ÛMTŒö¦ "
b"=\x1D )Ô\x15 µ§É5ŒÉ“}JÈ‘ "
b"=9™Ê¯Rˆx\x1C\x00 qŽ\x18 †¯» "
b"=>{\x18 E.¿¼\x0F i>1C\x07 •h "
b"=bqêŠØ\x12 +}?Ò& —à| "
b"=h…H8¶û}€wA!™¾Té "
b">:3ìfõr>Îݶv\x1A _R "
b">gç\x03 ÷ïFê»UþÛniÐ\x0E "
b">\x11 1¢{Mï«rrßÕ7^\x03 "
b">“ªª\x19 Z) fÈÒÜøZƒ5 "
b">¥ ?™ÕL’žNÛ\e %jì\x01 "
b"""
>¦þ~_C\n
»îTÏK‘\x11 <
"""
b">Ã\x17 *pk\x16 jöDÓ\x19 Ý‚Cï "
b">ÜäÓH£3ùÔé³T*ÁÈn "
b"?ƒ h\x0E ²GX®Ðx\x01 Hêã "
b"?ŽEÇQè\x1C «Ð’JEºü8ì "
b"?‘æ$$*IOƒ¤I\x0E +7á\x08 "
b"?¼ðï_êWÑ¿ôfï:ˆÕ "
b"?Ø‚–»˜ÕTWÉÿ\x1F ΈH¯ "
b"?ý’´Ã”E‹µ&›ÌÐRˆ\f "
b"@'þË×èEуfnãsØM\r "
b"@ZFé©›OǼ&Ý\x08 oöȺ "
b"@™]\x18 s‘L4®UÌð:xš‘ "
b"AŠ\x06 \r ]‡I¢¶3ªÖiP@Å "
b"A’‡\x11 ÞØNæ‡ÏIøçêR\x16 "
b"AÒ8\x07 OO\x03 ³àt×¢Õ$- "
b"AÖHu(£ÅظGÅ~d!² "
b"Aø\x04 |_4\x10 E·.\x06 Ä} "
b"B\x0E ÏÜÎHÔF_É5\x12 §\e "
b"B\x1F\x0E T_Aìèø \x12 }èæ\x10 "
b"B0\x18 ç§II!Н\x04 P‚—\x15 U "
b"B¤\x19\e §z\e „…\x0F\x07 f7\x04 n? "
b"C\x1F\x1A <ïCE-©|H‚2gúL "
b"CYJ¢õïÐ7-nëß?‹þ~ "
b"CÌ5è\x06 >H\x19 œ81Qj\x1F ¿— "
b"Cö.ë\x1F ³\t ëL~¹–—’ȧ "
b"D\x16 8;»ýMŠ‘¢´.0±\x15 … "
b"D#S]JZI‹\86¼-\x04 »o "
b"DAÿ’cSIÄ•Uþ\r §\x0F Z@ "
b"D_þFd—Lö‰ðÒåc]\x0F "
b"DˆË)IÃJˆž4Qÿ›¦\v b "
b"DœW’/AFcªÜ©\x17\x1D <\t "
b"DÊi}¶gF‘„ã'[\f ÝFœ "
b"Dóf*{J·kcä@1º\x14\x06 m "
b"Dú¬¾\x0F ª›\t lÚf—bJ\x06 "
b"E\x19 ÞY\x13 Qž\x18\t §‘(\x06 ^á\x7F "
b"Ehp0•ØE\x15 ´+¦ÜÔ®÷\x7F "
b"EwÃ>Û\x0E C[µáûïŸ-æ< "
b"E 2·ñÿ@]¯«7Ĩ\x0F ‰é "
b"E³L¤-¢K\x0E » +N\x03 B$ "
b"EÃn²ÒÜB°´r.Å\x02 $Læ "
b"F\x0E ú‚®¶Dð£è²3u—77 "
b"F\e [¨¸t]{£\x04 ¤ì0!A} "
b"""
F:y%q\x10 •2{\n
v–“¬K
"""
b"Fr»\e ©Å"ÖÝ×I:U*¨œ "
b"F‹ï\Šæ\x02 G¾5ë\x17 à €æ "
b"F¼^”ÓÒ†‹X=ÕœJSæÌ "
b"G\v NZögGC H!êM4€ "
b"G&v\x0F ’º@\|†n“˜P "
b"Gm"X\x1C ¶^C]f¥6¯4‰d "
b"G«íÉ…Òõ5ë#t0`b# "
b"GÁ²¶ÂwIa•C>\x05\x01 ììÇ "
b"GÞ˜‹EP\r z\x06 W\x03 H0¹Ç "
b"GæÐ\x0E =¸œ…¥™\r ä\x07 ¼á "
b"G÷š\f M…7~Jé¢Ô¤Ç÷ "
b"H9˜4}/¸¨cª\r ÈÞ\x14 ? "
b"HžŒ@áA …æl¦Åô\x01 u\x11 "
b"HÑ¢÷\x1D *H\x12 ŒX0\x02 ³w\x15 ‘ "
b"Iz*ü\x1F ÆDàŠ\x01 –ý\x03 Z> "
b"Iƒ ¥ä;C‰ªë0¨ÏÊ( "
b"IœuºŒ±¶©ÿ\x19 ŽØåÝÔ "
b"IœÒ‘Hº¿ÖŠTe¤Î "
b"J\x14 ô\x13 +ÁKáµ\x07 Wc:‘xˆ "
b"J-X:±\x06 böü‘(DõÔ^ "
b"J1\x12 ða ŒëÒU<8•«ó± "
b"JO‰ä\x07 @ÓdÓ\x1A «îšI\x18 "
b"Jrfëè.G޹&\x0F rƒ» "
b"JuOà&¦ˆ\x7F |\x14 cVÎ`è% "
b"J™}\r }÷Am¥4\x12 hª6… "
b"JÆ\x07 8ß.Að«M ~ø¡Cè "
b"JÝÜ<ù…F\x01 †çh S¸úª "
b"Jßµ\x14 S GŒí¬¢R\x19 l; "
b"K\x04 0FÍ0åKÆöŽcÎ`n "
b"K\r iG%™¡ÊxŒð•\x0E ¾ "
b"K09|Í)F¦´¬%\x17 }Á$ "
b"KГ\e 5‚ÊÉ—Ó‘\x1F –.° "
b"""
KòXZÑ\n
7€E\v -ý8#mñ
"""
b"LEiw\x0F ÅA©QCã°,\e\x05 "
b"Lµ\r HMß&Ü\x13 6ÉF²þè< "
b"LÚïþªL{ªE½'[.R“ "
b"M5x\x04 {\t N·ªÈ#m!9Üy "
b"M¯\x14 «P,ãÀ¦\x03 Oy\v ´©È "
b"MÔ‘Í\x10 õH‡ŽM˜os᪊ "
b"N\x04\x00\v ÜqQµê¦¸\x10 1¬ "
b"N\x05 í#`ô•\x15 nË\x02 Q\x16 é "
b"NX*q\x14 ;úÄN„XŽ”·¢P "
b"N™ë·\x0E PDoŸ#Ò@RgiÙ "
b"Nè\x1D ìP\x13 (@Æ`Ò¤ÎD÷ "
b"Os¥J\x16 ã¸y<Çâ\x0E\x08\x05 /H "
b"OÕ\x1D °3«Ki™\x08 Þ\x1D ùÛê= "
b"PD(¥ÿ}KÔ©¥}àå¡âi "
b"PGY†?Ú_Ó1ôŽáãµzv "
b"Pd£Ì&½§·ˆ>‚Ð!¡ØË "
b"Pj²\x1D „A+y×G®XÝÉÊ• "
b"P†=\x1C ù\x03 H°ªvMÍÔe‚\x0E "
b"P¤^z¼wb{ñò&UüÉ# "
b"""
Q+\f \n
F§©'q\x13 €³r½^
"""
b"Q9O\x0E\x08 sD\x06 ¸—á†íÁ/z "
b"Q:éÕ\x1C ¿®Zž±½\x07 ëeW "
b"Q`+Ý\f AHî…åûŽR ? "
b"Q›sj+\x1E JC®\x10 ÞQþÇ\x1A ^ "
b"QÐÎ=¡ÊA\x0E ޱ 5\x01 5wI "
b"R)›\x01 YÖD\x02 „¦\x03 èæË¢Ì "
b"S\x04 €‘ô-G\x1C —\x15 ¼Èh6\x05\x15 "
b"S3½U]IAâ†B¥ï‰´ƒk "
b"""
S8`¾\x1A ~B¸¬»\t \n
?&
"""
b"S¦ÃÿsÎnüK?÷"ø "
b"Sª¢\x0E RkXYMû\x02 +:_ "
b"Søf\x7F \ëKŽ¢U7b«˜]™ "
b"T|\x0E £_‡Ož³ƒÿ}\e ë "
b"""
Tù8yKO\n
”g·æs”Ýs
"""
b"TÙ8sÆ‹Â\x13 .àÁ±\x08 ?Î "
b"U\v Îb™hA®“l\x1D ¿\t rÑ\ "
b"U\x18\t {1o\x04 ]ËÌŸSP.Vù "
b"URƘ$EnްtíïÃÐz "
b"UsCè(iÅ#æåÃ'B\x17 Ö= "
b"U{O\»DF:¨"3åüËÜ "
b"U‰\g##B\x15 ŽnA,l‡kN "
b"U²w}Ù£OÈšÆN\x0F\x03 &+o "
b"U¹•\x7F -]EÀ™\x1D ¹\x12 ÖnO\x7F "
b"V\x02\x15 ª(\x17 m'JR]”špµ¦ "
b"V\x08 rTŒ“Ns\x18\x07 ¢å\x1D d« "
b"V\x15\x19\x00 Û†jã/Ó\x1D\x08 ê{žÌ "
b"VcÐö³oMR£Ã½ <\v\x1E é "
b"Vý\x0F )Eß@ߣ.®ÀpœâI "
b"W|Ü\x17 ‹ÈMg¢A:¨F% "
b"WŠmgªCü”ô®éý‡\x15\x01 "
b"W^<ºçÒÍESÅyÏöˆš "
b"Wþ\r Dõ\x15 ±…î\t DP\x16 %& "
b"W—Ýc@\x17\x11 Æ\x1C ªÔˆëAQ\x15 "
b"W®0\x1C "ô½ôòBNØ:\x1E Ô "
b"WíU§ýpK<¶ä²QŽ\x12 ]\x12 "
b"X(òì•ÍGø–›8i>\x7F èñ "
b"XD\x13 ÆÝvFJ§\x14 ˆ*ÞˆÓ "
b"XÓmŽÿÃÙ'—HÄ¥¹…§n "
b"""
XêbWO5Ê\x04 FNÇüñ\n
—"
"""
b"Xú3k*L\x0E ˆ=ÄÔ\x18 a "
b"Y\f F®SE\x05 ¥9W0ç7ô "
b"Y'\x13 £›BYxœçŽ\x12 P¦F\x16 "
b"YAÓ”}?\x0F Á\x0F wê„$>ë\x01 "
b"YMßX5èC‡„é1|¦f[\x15 "
b"YP“‚8ûª\x10 Q:?@Aû3½ "
b"Yö;„–²`Øö³™þ5\x1A û9 "
b"Y÷OÛE}J\x1E ™•Ð\x1C §Î\x08 @ "
b"Z0 ¥M\t LŒ’\x15 Ï 2Šˆž "
b"ZHÞZÌOM‡²)f4RÜ\f @ "
b"Z]íý`ãÛ·®Ð\x0F\x10 ž‡®\v "
b"Z¯¶Ò½\x11 c˵So“¢r "
b"ZªÄ[•¥J\x1F ¶Hžq\x18 ¾2M "
b"ZªÉŒ\x12\x15 H,¡©\x07 ’ñ³þ "
b"ZæPÉA×w½Ÿ)2¥U¾ZA "
b"[l°ŽÏ\x05 Jà»Óû7åÊãn "
b"[Ä\x17 |u°¶:”\x18 ¹\x1E Š\x07 B "
b"[Ç\x0F B¨\x05 N\v ¿¯iIC\x03 Ý "
b"""
\K1\n
lâF9¯C¥y=Ú¹B
"""
b"\q\x1C ä\>BC…Ó\x0E ÁÙx]T "
b"\Ž\x11 ¼WB™\ï÷1ɰƒ ä "
b"\´ZÇ\x00 †ÄVõL[<(ì\x15 Á "
b"\µglå\x14 L‘£®\x1C\x00 (w\x02 f "
b"\ÀF£\x03 AHî¡Ê•\x03 ¡ð,¾ "
b"\ùEB\x00 Ã2…Dz\x05 슶3¥ "
b"]$ˆk—ØJ\f ¶BŽú|Çâ^ "
b"]Ctìê©vþØ*íÄ•½£ "
b"""
]n¼W¬6ƒ{âd \n
Ë)ín
"""
b"]G\x07 (DO‹ŒÀ3è¼ÄÆX "
b"]‘ß¼¸ '6?\x06 Š—“ÕF8 "
b"] bm\r ž\f 7rUÿ·_°“0 "
b"]É\x0E RGM†³ÒÙqk’\x05 ä "
b"]ݨ´ÿØ\x1F ÿš«µx ñ\ "
b"]ñó½ÄÍMyœ•Sú*êµg "
b"]ù\x08 ô5f\x13 hŽ4×b6ñ™¿ "
b"]þòƒXÍG‹Žn×#ºíÌ "
b"^\x07 ß\r Ã!N˜‚8:ÿ‹\x10\x1C ñ "
b"^\x19\x18 íÿý\x7F ’y’¶¯\x10\x1F »· "
b"^35š%K®Mç‘"I#-ÀÕ "
b"^W„†%‘O¡»\x06 „Ó?…v "
b"^¥UY6\x11\e I–âMdG\e "
b"^ÈÀĺZOc¸œ©-¬ËÇÈ "
b"^Êvl]É\x11 ñ\x11 ìüc[Ã(Ž "
b"_\x10 :g»tN;ŽS mˆD|Ÿ "
b"_®É1Ò¥@ðŽ{ÖéO+\x00 Ú "
b"""
_×§»yª\f í\n
¤c\e 9®¹-
"""
b"`\r ‹p•MÄ•\x17 †\x16 EZQ* "
b"`YÝ1ÍÃL„’\x18 ²7ÒŽâ\x1A "
b"`|\x1F èäkG§ŠëÔV#›È\x14 "
b"`“F$>¥š°\x0E í$}?{ ¶ "
b"`™¢NædN§°Giá`'¶. "
b"`ùÅ’8DC¹Ëª\x1C (Üiî "
b"`¤üX`\x05 ùz\x1E \Á2 ;6 "
b"`˱ң7\x04 ƒÿHU\x1C ¾c« "
b"a\x18 "\x14 N‡CnX™Ñ14â÷ "
b"af>'g¬F„‘\x05 Ž}²˜\x14 "
b"anì³\v ŽC€¾\x07 {oà]-ø "
b"aŽÒʨ¨y;\x1E\x18 ‰*†I©ð "
b"b\x1D ÷ã‘ÈKË»:/;t\x13 LÍ "
b"b-K\x16 }*ñgÅ™etwꯜ "
b"bwt†¡[È\x07\x12 oûTà`§\x19 "
b"bÇ\x01 Z€Ll´F@±Ã¤V: "
b"bò©\x0E ü\x04\x1A Ö”—\x1C ·Ê0\x1F ¤ "
b"c\x1C\x03 ÑÖºHòžŽ\x00\x7F —úË "
b"cYó5ß°D åØóÿ\x03 Í| "
b"d\x02 "ÿðõEtŽ\x1C Í\x18 ¶Ö÷¨ "
b"d\t Bb`~5ØR\x19 k"³ßß "
b"d)©ù£fG˜ª\x12 ‚¬50Ù "
b"dmUª\x1C ë'çÖ;\x10\x1C s-\x7F × "
b"dÍõªöðKº…B!a¨)±k "
b"e\x08 kyI\x19 BœrCcÁõØ "
b"e*\x06 ÖÕ¼÷\x00 RKB6\x02 Æä\x0E "
b"e,…+\x08 h’¨ÖS’íºÏ+ "
b"e\x7F [Dûn…^M?,\e\v {V< "
b"eßÃ$Ä]F½jÙØŒÕ "
b"eýáu‚<G„¢2.8SƤO "
b"fIÑjÅ€^P4çóåSéœ( "
b"fŒ¶ÏYðJ\x1A ˜#vGà\x18 ‰) "
b"fɉÂO\r EPfˆ\x05 ž¥\e \r \x06 "
b"fÕ5\x15 /;MþŽ›7\x0F æÉH» "
b"fÖB¸Ÿtœ#¢á;\x1D =“”U "
b"g\x10 =ÍTkFó‰\Dª\x00 “xÕ "
b"g)K\t Ké‚ÁH\r ¨¸*®¢Ñ "
b"g-À\x0E\x06 Ú³%ð]e ¦X\x1E ¦ "
b"gF§ÕôV\r EIªç\e ïé "
b"gH‡/´$84·á(\f rĉP "
b"g¿”§0âA\x07 –ë\x17 ˆˆÅ}; "
b"gð:ïì÷M/—\x08 ›üfA\x14 î "
b"göi%ãI\x00 ”\x13 Ur5ãÇô "
b"gÿo+u¶C\x03 ¢ÈÑÑ\x15 Ká "
b"h* \x00 òØ\x08 FÐÍné‹\x06 Œ@ "
b"h8\x06 hl-ApÆC–‡\x0E\x18 A7 "
b"hQŦ@¯G±g›vvÎ^M; "
b"i\x17\x08 ¤‚ãJ÷ˆr0朗Q\x02 "
b"i\x1D €Ž.˜¹á¹\x03 Œà+\x18 Ãþ "
b"i0bLÕ\x17 L8˜\f x£*ZÌö "
b"i7V?*`H=“þ}&0›7 "
b"i{åßÏé³¶\¶Oølu\x1E "
b"iô‡‰áYNxº8À‘5PTt "
b"j;ïÂ\x01 C¹´²ÐÅ\x14 z5¼ "
b"jA’iUþIu‡ñ&¾(\x10 XØ "
b"jž\x1C ¯ÿöJq‘u§J“²Ê\x12 "
b"jȱ}RßMB¼\x06\x18 _]a;` "
b"jàXÞ\x16 {¡ù«{Õ¬n³ÎÞ "
b"jêT'i:éøµÉŽGAe£j "
b"k\r 9¾Â;¨c¿+\x04\x12\x1F ÷\e "
b"k/V¡è’IÞ©ºÉA\f ÏA\x06 "
b"""
knÆb™Ž\n
4&|ºÙ\x15 MÞ´
"""
b"k{)?H[NŒGy\x00 Þ\v Í "
b"k¹õ\x0E ¯˜@ˆ»¿%wÚäøZ "
b"kÊ/C?ò\x1D úwŽ¿¢dwžÎ "
b"kîš\x15 ûgÕ\x7F s,?\x17 þ\x0E "
b"l"Óü5ÚKt‘ò6Ÿ\*\x17 ü "
b"l2\v B†ƒü\ˆ[u’Á©¹ "
b"lì\x1C wÃÕgr5Fqª›û "
b"m\x0F\x18 ,é\x10 Ï:“ˆ’/¸z¶ "
b"m\x19 tŽg¹Jo¼©dü\f îÅ5 "
b"m\e ÚÐeÍEÔ´_žš†ÙÓh "
b"m:+·Z\x07 Er•\r \x18\x10 /è!¤ "
b"m<ì 9&Geš’\x01 “·{÷˜ "
b"mGdÑ\x00 ÞAéœ[X\x19 ' ¡t "
b"m„¨–ü)LE´ˆºSIcYh "
b"mÛqä•\n L˜‚÷nÝË}Û\x00 "
b"mîL.ÏÚHßÚò.”¤\x16 Å "
b"n^\x03 Pã/@ŸŸ\x00 ê'|\x13 þ( "
b"nyS‘¶OÿŠƒ¾gÿý\x01 $ "
b"nžÈ\x03 bœ:êÀúÀ¨Ñµ\x08 3 "
b"nä`\x12\x01\v £G™J-Çd½> "
b"nö‚eéŽ0Ú‡,aGB•å\x17 "
b"o\x1F\x12 è&]@µŽd~e[’ÜV "
b"o'ì\x10 n¯AÐÃtt™C`_9 "
b"""
oA&1žÇF˃Ät\x03 \n
T\x0F ü
"""
b"o|y‘£qÓ“&\x1E v$ÂïU» "
b"oÂNS\x1C A{œ\x04 H/Þ9Ö "
b"oÞÇ\x02 ÀÓß’MòOúLž´Õ "
b"oáK?5\x12 N~ˆ$\x1A\x1D ¨XZr "
b"oÿª©ªæ¶’¹*¯"M\v ÆH "
b"p\x1C WúDì@\x14 ›ŸÆD?ö® "
b"p(¡º\x19 àC`Š\x19 ¸¶9ª`ã "
b"p9u¾&!\x02 :\x00 Dh¨\v C: "
b"pC `ߤDö¸ƒ_i×Îñ "
b"pTã×ÜFGv¬Ì™\x1E KZÓÓ "
b"pÁý]˜<Cj³úî\x16 Á^R\x1E "
b"p×çˆëoG„\Ðd\x03\x04 · "
b"pÞš\x11 :cD\x13 ¤\x1F ò\v ¢y=Î "
b"""
pß@•–\n
JÒ£f…<§¶ì\x08
"""
b"qh„Ã\x07 2µ^In¶ƒÊ½\x19 "
b"qz?\x1F qÂM( Àì6ð)oW "
b"q„âLçÏb‚wÿwô=`Â\x1F "
b"q‡\x16 QÉÄIΖŸÞ&‘¢þ² "
b"q”ïIå'D´£_hº”-\x04 P "
b"q•°\x1A ƒŽ&\x0E\x06\x03 aKJž^» "
b"r\x04 ˆb¥¯At£3tˆRcí\x15 "
b"r\x16 Õ\x15 7¤KÇŽ€gD”_¯Ü "
b"""
r7fCïW\x7F \n
=ðbèq{¨Ä
"""
b"r;»Æn AãÒD\x1E —)‰Òf "
b"rXá\r >XKj R÷Ã¥¤\x0F > "
b"rvFè²ÚFr¬ÔòëJ;j« "
b"rŸêÐ*‘ì`«Z'¿\\x04 mp "
b"r§®lá<AH˜`\x14\x13 f5f0 "
b"""
rÌ \n
=Ó\t Ñn†öœö©yÆ
"""
b"s\v ÷ë§×Bnˆ\x7F\x12 9ů\v Š "
b"s)XPg\x15 Ln•=ÈkÁó</ "
b"sE\x19 øÆ+Jþ¼0\x18 Ô|«jµ "
b"su¹í•·Heƒu\x18\x01 >\x19 œ† "
b"s¯7 Ò\x16 ªE²ÿ‹Ž¿×y• "
b"t\x06 dêr&LH‹$\x11 6š¸ˆ— "
b"t&¯ZT\v ¶\x05 Ù¾µoøHà "
b"tL\x01 ýÛpìj@\x04 ÐFrB\x01 ö "
b"t°K·eã\x06 µ\x03 *x»ù@} "
b"t´Â¡™×A¶š\\x16 2æ»\x04 t "
b"u0·\x00 ¢¶«ê7ÌKA™W\x0F b "
b"ube»Uë¶\t hÅëd\x06 8?® "
b"u£oš£F"\x1F üÛ“Ä:ÖiI "
b"uÈÍ\x07 ÁbDú‚yˆcâyéî "
b"uÞÿ\x03 íäK\x06 ¨‰lacJÏ" "
b"v4}ÑxKQ¨ÏˆYRéO "
b"vsE~]\t Iß‹¯ía<$x] "
b"v½«œ\x05 †A\x18 §0×Û[€_` "
b"vË\x10 G†eG§´ \x13 Ïù|\x01 / "
b"vÛÌÚYE\v ½Kd½?4W "
b"w.EѶC éÕãDÄßÞ‡ "
b"w[àa>VN\x7F ªM#Æ™ï‹ "
b"wcƒŠ?\x12 Zê½¼–Ébˆ è "
b"x +\v p\e ˆU•¬\x14 ]]øm "
b"xV\x12 ê9\Jà»ûpÕ\x19 YZµ "
b"xyxØÑµNöŸ\x01 »®u0ÚÍ "
b"xÏO\x7F ¸l¯ \r }u\x16\x1E\x10 Ñ\x07 "
b"xÜ\x17\x00 *\x1D BÝ€k\x06 C'QÏó "
b"ygøÏ÷\x06 &éàä[çjbL” "
b"y²ÁUüÏZEGø9g\x19 ÎùU "
b"yÛ\x7F `ß;Dq€«Œ¬3øy "
b"z\x05 ¦o=jŠ‚ÆÖz"\x10 `ýr "
b"z\r çÕ¹Wv®+Wc^»2 "
b"z¼,y\x05\t FH¸\x12 ?ÂÏ|¨y "
b"zä¡°0Lœ±>\x06 gIrÅ\x1D "
b"zòœ×pa(.R\x02 î\x13 ¤¸û "
b"{$‚K'u[QE’\r sç”È\x15 "
b"{F\x1D\x02 ãrJ\v ‚æc\x1E "²äâ "
b"{¦¢¡'ów=,ŠÓ®N»› "
b"{èaÕ:\x01 @i¾‚®x\x12 >Ý "
b"""
|\x01 ü.·¹~ºi\x06\x05 \n
\x01 ü«™
"""
b"|[ðÅ)6ª\x01 ¸¾\x04 T\x18 :0› "
b"|„IþzÓÿµo\x1D IÖ\x10 sç" "
b"|Ÿ\x1D 6®RD#Šál(ƒ´!˜ "
b"|À¸*µeþ3\x19 $\e ‹\x1C ²He "
b"}\x1E ‚äYŒÉ(%Ÿò`“ñÜ| "
b"}=é\x05 6\e Kó‡»ÚÔwÔ€\t "
b"}YYË0¿A~”ÔÌ\x15 \äü "
b"}]\x03 ‡hHƒ¶EˆÔuéݱ "
b"}g\x13 uú¨Cò€<u>yã¶\x17 "
b"}r¿xØáNHº#øÍÀÍåZ "
b"}¬“·\x13 CAô°f\x07 Ƨ¶°\x04 "
b"}Ñä\x1E “iÈÙËÝôe°8-p "
b"}ý©A×¥D„[YWø†€ F "
b"~\x13 <sÒÌ@©¯´Ôˆ¦‡\x08  "
b"~S\f ’b_Nß±\e h÷\r GcÇ "
b"~Ægõojî\x11 »\x00 @Å_Ýù# "
b"\x7F |U߉*M\x17 …\x08 g\x06 15! "
b"\x7F ¡a…‰‡î\x19 <‹\x11 M\x10 Q~\x16 "
b"€}ElN\x15 ¡(àlÛäÙÒ+Ž "
b"€ÖÍ””eC ¢Nu¦Õ/ "
b"€Þ‘™NáAz–±i\v JÄEƒ "
b"\x0E ꨆãn€Þ•)\x13 Å;ò÷ "
b":[³0KCò³0y/Ð’·\x11 "
b"D•¯šëDûŒæŠé\f 1® "
b"ÒŠ\x1E ™” ë\x1C t\x06 ü\x03 ö×ã "
b"‚U˜ªÊøíTê)\x05 KÖÍ 3 "
b"‚h´xúOÑ·ÿg¤\v ÇZ€ "
b"‚û»7LÍ\x1D °_÷–3uß "
b"ƒ9°†–4Gâ§ìå½Tæu "
b"ƒC]¬F\f E6Œâ^¥gû.\x18 "
b"ƒXmpúeývô)ÀóŠ3ö” "
b"ƒhAL\x17 ¶õû§‚‡Ì&€Fâ "
b"ƒ{Î[ØÒHÒ‹\x08 •<Š\x19 Ç× "
b"""
ƒ€©\n
\x1F J© H½\x06 ™êÅØ¼
"""
b"ƒ\x04 X½[HÌ›‘Ñò\x10\x07 ýZ "
b"ƒ¸Å!\x13\x1A A\x10 ¿bœ†çÍ– "
b"„H'g¹Ðúl\x00\x06 Š¡.sÆ "
b"„K\x07 \óõŠŒ&ñ—òÁ£Àö "
b"„U~ßcBÒÅÅ¡^\r K± "
b"„Û—¤‘yAS™kv\•ƒñ "
b"""
„÷=„$ØN\x1F ¼KE\n
\f\x1F {È
"""
b"…\x05\x15 ¸âàDR½\x02 Ý8ƒ<–¡ "
b"…\t z\x0F\x17 ‘‹Y&Ý·‹Þö¡ "
b"…!\x07 ™)Ï|ø'SU¨Ü&\x02 Ú "
b"…RA&ºUj¹ƒôðA© ´¼ "
b"…iNSî[|«Zx´\x1C ÝÙé& "
b"…n5ÚÏÍFð§ÆéþLc2z "
b"…Ž\v béwÐ\x1C ~ÈZûFˆ\x06\x1A "
b"…Ï\x05\x7F\x10 J! pìñ¤ñnæ "
b"…Î\x0E ,Œ#Gy¹m+ÊÉÑ\x00 H "
b"†\x12 }M„ËDq²m¼eØŽ_\r "
b"†\x13\x00 ÷/B|›`¸ø Î\x1C "
b"†_liD wxÿB\x15 š0~¯ "
b"†’;ÒÕ\x06 –‚áë/0šWþÓ "
b"‡_Óú¶ÃB³¡Â¢0é¯ï© "
b"‡k¶Æcñ@/Œ«Ñ]¬—ãr "
b"‡¶4u=ß.OÌ\x14 7Î\x02 6\x11\x19 "
b"ˆ\x10 JlÇ„K}·P\v\x12 ŒY\x17 î "
b"ˆ¶¬\x07 ¡M!6\x13 µO¶ÃL%\r "
b"ˆ¿ð@m;I¸aˆUòŠ’C "
b"‰+ž¾é\x10 I5…•è¶Oµk2 "
b"‰.¢~ˆ0nU#"‚ŸÑý…¾ "
b"‰\ubíîC•\x04 Ho\r y "
b"‰aÚâiÊHÿ˜\x10 ™ÞàéX\ "
b"‰™2NË 6=—3wï~NÕ1 "
b"б¬cO\L÷…P\x1A ˜f\x18 à† "
b"ŠÀt*¼%Mq™0¾W\r ¸o¦ "
b"ŠÚÊÜisïÂÁÖüH…M "
b"Šönâ¹¹^\x11\x01 Ö©UO"jÒ "
b"‹\x0F -}'ôm¤Äuç)Ì\x07 r\x10 "
b"‹#1JƒÿINž[\x12 úí\x13 [ñ "
b"‹45m\e ÕDÙ˜‡ãké\v ¸\x04 "
b"‹5\x07 8ÄHÀ• +]½Fm "
b"‹H‘§\x17 ÆÆ¹\x07\x10 PÔ¸4\x10 "
b"‹žàbÂûE⣉\e éÅsQq "
b"‹²¬9ÖU⡽’=Fjí« "
b"‹ÐN^‹[K÷RQËÑ \x17 \è "
b"‹ÚÎ>"¶OS”j³Ûù^\v ) "
b"‹þ”³¶¤OƒTsºi´ŠÑ "
b"Œ\x06 ’ã†;þ^\x00 ‚¬Âûêñ[ "
b"Œ?\f\x08 N.Hu¯9‚u)B\x7F " "
b"""
Œ@O¯åŽE¡Ô\n
Óa,Æ\t
"""
b"Œqéó\x00 03¯"®W \t ¦Êi "
b"ŒrÖŒM§NUºH”\x06 `#†+ "
b"ŒNû#ßEN·\x10 óˆØ„Ô\x0E "
b"Œí5Ú5úC9†õÎ\x01\x07 2/h "
b"Ž\x10\x04 ²d?K‰˜ûùD\f\x0F\x0E - "
b"Ž@žÂ\x02 ÑBt¢z3\x1A ™Ê+ "
b"Žkbǵ\r _ºO\f 'ï»\x1F ¦R "
b"\x16 Fíqv‡á¢¬Ùl¹zû "
b"h`ù\v hl¹Z³á\x06 †¬@ "
b"Ž|á/#{¥i¤‚“ü\x0F ¿¿ "
b"Žðjg[õKõ·Hâ»Õò\x16\x16 "
b"\x07 ü,›.\x12 ‰û\x11 rPïer "
b"\x08 ƒ‚æÎÄÑ&U\x7F\t u«\x04 L "
b"Ê\x1C ú~…I\t †nuãíú\t “ "
b"""
Ò\x05\x1A þž& \n
1´QžÒ\x16
"""
b"áD÷Ìû@T„Û˜Ü]½ýÊ "
b"èÏá(J\x19 œ!\v ùÁmƒS "
b"û,BžáL’™wlœ(טí "
b"+ÑMS)MF¯¾‘DW«\x18 ¸ "
b"ƒóøŒ\x02 C]±ß/r\r IÉð "
b"É0WΕB)¿Ý[TÁàq¾ "
b"‘\x1E .ô¦[JnœáGËBìo[ "
b"‘[V\x00 žNÂŽßø\v Oûn¥ "
b"‘„Òýî²O&°ÛïrSJ\x07 Ä "
b"‘ÌäöÑ”\x1D T†{@´”Jk] "
b"’\x00\x1C ,&\x16 H\x00 ³\x1D ÷\x15\x14 ¹ï "
b"’$ɘ†í±¬LJ”¨]§Lë "
b"’M\t Øw\HY†FvªÛ\x7F\x1E M "
b"’Q§îÐ=“XêNœ•\x01\x07 "
b"’zÜöm!J[›\x04 ´¸\x11 KŽ] "
b"’õD9{\x15 ߦµ\x14\x11\x7F ‘,\x06 ‹ "
b"“7\x1E ÜÌâLÖ®×\x16 ”S\x02 Ë› "
b"“Grº\f mìÙ\f "’³rÒ "
b"“³W} J{®‹\x05 ¿ýîÑ "
b"“´Q!æpTüù×\x01 3u{3 "
b"""
“ÖC\n
ëí\n
ŒTÈfň\t —\x1E
"""
b"”yÒ:Ü\x7F MŠžýLÉ»Cn\x00 "
b"”˜œ\x13 €´K3˜-\‰\x11 Q†Ž "
b"”¨áü{\x18 @S½>\x7F <êG—é "
b"”¾½7hèNšæRGA9‘ˆ "
b"”È‹ï–#´7¢(ñy†#U\x08 "
b"•\x01 Yìç\x11 Eg¢\x7F sªøVç\x16 "
b"""
•\x0E æÇ{®NŽý\n
\x7F kÞÀæ
"""
b"""
•i\x02 \n
Qª}d*@´ŽÒ!ð
"""
b"•¡\v ÿ]íÔ•ëö²ÁŽ=Ñ "
b"•¤«ôÝôO)°°\x08 Ž“«(\e "
b"•Ëø+WèOö—-ÆÔa×È "
b"•èU21\f GÊŒ\x12 í)‘T”\x1A "
b"–K\x0E\x07 _‹Ñ@ÍŽO>Žá\x02 _ "
b"""
–怌ômK\x14 ‘F\n
²Þo\x13 C
"""
b"—\x03 ‚=V³E¤ž/\L‚©Z "
b"—9»-\t …Š6dóÆ)uê¶« "
b"—VÆ4ÖjM”¦Öúñá\x11 Ñè "
b"—oà¡l®ôÊvn’ bíýt "
b"—Ží¡ä'F\t ŽE‰rîÅ…ö "
b"""
—>ç\x10 \n
Fš™tS7\x10 SœA
"""
b"—¢da-$¯M©ÙL§Ž/ ˆ "
b"—³¹:”ŠúàÀ\x0E 7>#·Òµ "
b"˜-Õ\x1D «óO«\e ó~õ\v B "
b"˜ê®l\x1F øL\x15 ¨¦=íJ˜Â "
b"˜ëÏèŽÜǸ•i8\x1C ¬!x "
b"™$¢tŠbÿ"éI9$³ÊZÀ "
b"™5®\x1D\x01 áDž„Å¡.xªÃ] "
b"™9QU¯"¡å\x16 XL*ÿïµ "
b"™=\x10 ¬‘‰Nþ°®T:h–^\x03 "
b"™??7³±N«‚•†\x1E ßÝýš "
b"™GÊúÕi¥/\x08\f\x00 _¾\v\x08 0 "
b"™X\x14 k™£H\x12 °uñà\x11 Ôp& "
b"™ypð€‰J\•Nû-HÎX6 "
b"™¹\§\v ¯O.œ½—»‰6Ô "
b"™Ñ«ÜÉ›J̰N˜ˆ\x05 Á¾î "
b"™üØ:g\x00 é4\x0E 3®ˆÆ<Y "
b"š*\x07 ¦ÏÊIª¢7Oaï.t "
b"šWX5êN¬ŠWhÍåÁ "
b"š”¤˜©\f ¥öFÓÚö\x13\x12 ã\x01 "
b"šë›è ?KaS?ïeôûü "
b"ší\x12 X^–N^Ÿ¨¦\f –šc— "
b"›\x12 ªÔ´ˆHYµëƒ\x14 âî\t ´ "
b"›@½Ž%\x07 @¨ŽÌþ\r Da3 "
b"›I‰ék¸Ië©u$EÕà) "
b"›vj»£\e »)\x1A îò\x18 bEõ¯ "
b"›Ø\x1A )¡™JºŠ¨\x7F éP¼J "
b"›æ¶›|ÏG´›fšÝ>ÀYA "
b"›üÈè\x16 ŒÉˆBÂ/eUV>X "
b"œ[ý\x1E OO¥®ÏJˆF¥\x15 @ "
b"œÜ\v Ñ*’Gh†ºÓÁ\x18 äAÝ "
b"ZŽ—Âm»É:ÅB\x1E d\v 4 "
b"Ž\x02 ÆH¡\x08 #ä5æÃ2k¸ "
b"žDZ³Ò´WõºG£l\x01 ãÓK "
b"žbÂaÚg@òªF’ØœhV\x06 "
b"žd;Æ"pB°\x00 ¾\x1F Õ\x06 B£¦ "
b"žãÍ.[g_ŒªU`\x16 4\x17 Ëú "
b"žîJ\x03 ‘ñM`ˆÀá´¿›ˆ\x18 "
b"žî¿=Ô—ygv_Y¼°à•= "
b"Ÿ\x12 OüÎkD¹¡\x1E\v æDª "
b"Ÿ=T‡Pãi}|Ÿ³8¡\x7F :x "
b"ŸFa(Q\x06 ³qü»Ö\e JÃÆ\x03 "
b"ŸzI&JËG6”ÄŽ˜ñêOä "
b"ŸƒÑ3›yb%k7æòzEí• "
b"„\f …Æv\x15 Ó!UÈónž£ "
b"Ć19ÇI©–ŽG=\x17 #º "
b"ŸÅ0áteB+ŽˆN+\x16\e ä7 "
b" \r ~ޤ\x18 @8Šû±-6lÝ" "
b" \x10 û<žèæÓíÌ„—\x16 Œ "
b" @Œ†Wð.ßD°Wú0 T\x16 "
b" H1\e ±™•õÑõŸ™w†Õ¢ "
b" ‘›¹ÛôG\x7F ƒ¤/\x17 0ªÒ8 "
b" ÞFø°G맯ômû8bñ\x02 "
b"¡#\x11 Y¯›9ð*,Œ3Ã(+m "
b"¡Z±ôCîI’‹Ú ÿ\x00\x0E gð "
b"¡`Áõ®^Hh\x1C (G¦Yfv "
b"¡ˆeYý^E€‡\x14 {‚\x7F Äx’ "
b"¡µ@ôú\x16 rð•cîma´\x12 , "
]
SELECT
`property_group_option` . `id` as `property_group_option.id` ,
`property_group_option` . `property_group_id` as `property_group_option.groupId` ,
`property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` ,
`property_group_option` . `media_id` as `property_group_option.mediaId` ,
`property_group_option` . `created_at` as `property_group_option.createdAt` ,
`property_group_option` . `updated_at` as `property_group_option.updatedAt` ,
`property_group_option.media` . `id` as `property_group_option.media.id` ,
`property_group_option.media` . `user_id` as `property_group_option.media.userId` ,
`property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` ,
`property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` ,
`property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` ,
`property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` ,
`property_group_option.media` . `file_name` as `property_group_option.media.fileName` ,
`property_group_option.media` . `file_size` as `property_group_option.media.fileSize` ,
`property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` ,
`property_group_option.media` . `meta_data` as `property_group_option.media.metaData` ,
`property_group_option.media` . `config` as `property_group_option.media.config` ,
`property_group_option.media` . `path` as `property_group_option.media.path` ,
`property_group_option.media` . `private` as `property_group_option.media.private` ,
`property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` ,
`property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` ,
`property_group_option.media` . `created_at` as `property_group_option.media.createdAt` ,
`property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` ,
`property_group_option.media.translation.title` ,
`property_group_option.media.translation.title` as `property_group_option.media.title` ,
`property_group_option.media.translation.alt` ,
`property_group_option.media.translation.alt` as `property_group_option.media.alt` ,
`property_group_option.media.translation.customFields` ,
`property_group_option.media.translation.customFields` as `property_group_option.media.customFields` ,
`property_group_option.translation.name` ,
`property_group_option.translation.name` as `property_group_option.name` ,
`property_group_option.translation.position` ,
`property_group_option.translation.position` as `property_group_option.position` ,
`property_group_option.translation.customFields` ,
`property_group_option.translation.customFields` as `property_group_option.customFields`
FROM
`property_group_option`
LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id`
LEFT JOIN (
SELECT
`property_group_option.translation` . `property_group_option_id` ,
`property_group_option.translation` . `name` as `property_group_option.translation.name` ,
`property_group_option.translation` . `position` as `property_group_option.translation.position` ,
`property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields`
FROM
`property_group_option_translation` `property_group_option.translation`
WHERE
`property_group_option.translation` . `language_id` = ?
) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id`
LEFT JOIN (
SELECT
`property_group_option.media.translation` . `media_id` ,
`property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` ,
`property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` ,
`property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields`
FROM
`media_translation` `property_group_option.media.translation`
WHERE
`property_group_option.media.translation` . `language_id` = ?
) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id`
WHERE
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
Copy
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (0x00005BD12EDE4898B28AC880B2FE8BA4 , 0x0015663EF4BE45B19444C66238C9C175 , 0x0026F1EA134F485D8568A919491BA6CB , 0x002AEAE96C514690AFB355C08C311FB5 , 0x003060FEE63D4482B391667A726CE820 , 0x003C7B35A5FB4A4FA39BFC45283972C5 , 0x004356DAB3B84815BF4141B78352EF16 , 0x004803A9BD2422F4E80A807CD89A77A1 , 0x004DBBB31015432CBCACF8359CDD10BA , 0x00510D1FF464A403F091FD2209097C74 , 0x005610251E22457BBECB23ECE5B40CA2 , 0x00689B68D91E4BAC8979D7CE94039E4D , 0x006B8254F60F457DB2A9F58BB4750AA0 , 0x0076850279CA4E2BFE57EDC619B2D708 , 0x007EFA4AA2E14976BC4C9741A01003B6 , 0x0082039BA80545F9B091B71EB98BDDA7 , 0x008E94E247CF4FAC8242959438951E04 , 0x00C26710A76A4E95BF25564ABD94F665 , 0x00CE9EF401FECDCE826957B6088E0DE8 , 0x00CEAF9E213F4372B3FAFBAD93B46F51 , 0x00DEF0EEE8D74395AB520D1DE66EB954 , 0x00F011E5BF6D492796A34B1BCD2B348F , 0x00F56E0484CF45DF9D54784B17674CF8 , 0x00FBE5228F2F4A9C9CF1F928B8D30E63 , 0x00FE5D077BF147659C405E6A44489134 , 0x010F2B9D47994F8CBA3BF32B17BCE5D6 , 0x0130F3242B1D4D9186D89169A2C62CB4 , 0x0143C1006980BB158886E9714A2C7746 , 0x0163B42DC1044B0FA64BBB084A30FCA9 , 0x017E0F8B4C7B4C85B5725AB05A5FC998 , 0x0188CAD7351D4122909BC4E991B6B7CF , 0x0188E392906DB365F16216B25FF79278 , 0x0194F5EC88534CDB98E455EE087E5C8B , 0x01A7EDB3BF4940A0B9703EC965522FC4 , 0x01B5C2FD80264F758825A85D778322CB , 0x01CF9DBCBB4D4C118DBB4DD9B2476DB1 , 0x01E36A7D3582448BB6F0A36FA99D90E3 , 0x02225820C677189DC2F066E8F0952C8C , 0x0230C9B752504B72A1D5AD23E14BB604 , 0x02365195549141BBB20B1B455112E5E7 , 0x02387B1A461A489EBD2ACE3CD009BA18 , 0x024C086109EDC2AE5FBC4A2C1CC5E1B7 , 0x02887A4A6E58434CA73495F2148192C3 , 0x028DC223D9EF4A54BE878DACBDD759FF , 0x0291E77850BC16C565D4AB9045913E0D , 0x02A4F6E2D6284521A21917A22218974D , 0x02B452FF2D3705246355C02F152850F8 , 0x02BD629412E74E1C82B8251ED3248E73 , 0x02C4B33597D640AEBF0773E7E02A2841 , 0x030D4FCC8A944C9DB32343CF9E95F9FD , 0x03115401FA3844C0832A1EDFE7C914BB , 0x03247F130DDD4E24BE33B991C5A3E0FD , 0x032D3DC1BFCA247C736C4E0EDE54A769 , 0x032D43DAC6BD44FC83E1FD39DD35A305 , 0x033401FE02264192A62D63A3FC4739C2 , 0x0353D74BCA27409C8DB12A3752A4D894 , 0x0377F071731D3483D7784DF17541062D , 0x037DA2D3BFAD4B539E1D6F7754E5D8D8 , 0x038F47B3341742F1A67DE0A325CA8785 , 0x03D28C058D5EFBE1E582D43688D23E41 , 0x03F05394BC4A4515AD34C8385EBB19AA , 0x03F5460F955344B280D4C71E2698BBCB , 0x040247854A544CDEB0A26EA0504D05E6 , 0x041A05544079E8DFC13C74772F46DC2C , 0x04267CF72FBE49049388D04FA39D701F , 0x0448969CED4940BDA37ECC99C9AF1091 , 0x044B5AC51598F24DE1EC1260631D58DD , 0x04752CF6A18F8775D4F5089A6C40918F , 0x048D1CED1EAB4E87A30B8B415884E71C , 0x04B919872A3C404D9E447B761A63F033 , 0x04BC7293D9904F4899A0F13967FF49F2 , 0x04C3B8BE31D243F19C89FA7A5E57DF4E , 0x04D55A6C6F324CF3BB9E03685AFCB7BB , 0x04FCB1073DB44E1C8DA2E3EF50BA6207 , 0x05217EC8F16E4811AF753029EE8F9C43 , 0x052C3BA0355A25259DC389FD791E6FCB , 0x05597A4A84654A96B029BDA488040F4D , 0x0575FC2EDFFC43E486774F51A6AD2D53 , 0x0583E27A82814867B16E5AD317568D3C , 0x05AFBBE61144C3D5BBE0A028F6882AF5 , 0x05B1221145AB4D829D66B5B110D72761 , 0x05B801B0C5714F829693E3B77885CB20 , 0x05D4B71F7E80487DA0F3E471A65022BF , 0x05E27779D39D4AEDA899EFD2B7249547 , 0x0602763917354C58B57B794905295FAF , 0x061C02A0D33C4045BB9759602DB7F6A4 , 0x0638347A9F82498DBEFDD2B5F0584454 , 0x065C4842820A46C5AF1415A1B01E3135 , 0x0662FC98903CE4B6832580687BC16224 , 0x0676F7EDE63C42469759B0819120EE9E , 0x0679C04424944A8CA0C84F2A1C89C0D9 , 0x0693C6775B234F5891B9751A8703A3AB , 0x06B9D0F480D1803E47B618449C1F78AA , 0x06C43033E92841EEB9394F4E4E85AB4B , 0x06D1E9BC482BF1E6B8CA47C76A91BA4E , 0x06E664958378461DB10C69111E571A21 , 0x06E92AC2BE454B4DBE60A39DA52289BE , 0x06EAA6150FA2421E82F168979CDCC3A2 , 0x072F38B126F940748074C9B6D8C476A6 , 0x07424B1CEDBE2FA7053342D83E57E518 , 0x0755BE1409274844D2FD6AE2A7249DBD , 0x0768F446281B6555F99AAFF15ECE52DA , 0x0775087EC21D4DC8AE635CB131B200A3 , 0x0790F19A87E5403EB67CE275EE06C948 , 0x07A5EFFCD9004B56BCAFC53D4397883B , 0x07D7AE07422F482A8038F013BD5F4451 , 0x07E0B40E9C0F4055A9076A830C96E6D2 , 0x07E16B436E8DA6F6965A02AF751C8FBA , 0x07E250CACE9A491EB2F13F104625D9E3 , 0x07E772414ABA95DF203A9BF464CFC1FD , 0x0812658D4B334816B830167AC05F6F7A , 0x08133DDDDDA2335CEA5EDF7EF29AFC76 , 0x0839F570E10B42BE8D050499427983EC , 0x084F425B7F3978E7E62CDC6B07A62879 , 0x087A2441CA484752B3479F6324F1CF75 , 0x08C18886B48F4D24A4816B43D5F7A07F , 0x08CAA477329C47E88DBF1E13B2188BB0 , 0x08D003F15C62C67A089526C13053AA2B , 0x08E9713BD1414577B972630B66C8E8DF , 0x09094709608431C71A079A5A4C684507 , 0x0915EE6F293C4CF6A8E5AF8521FEEF6B , 0x09187364EFD3493FA85E1E44A22EF8E4 , 0x092FB082A66E4CF7A51646087D6AB49F , 0x098132E004BB4D50804C0310F77D704D , 0x09AD1DF01A8180B4CB07BF7AEDE80F63 , 0x09D8A81FCA874BB4BED9D1693380FB13 , 0x09E3EFC4759B9769719967BAA04DCFAA , 0x09EDB89E480B4EF58515AFE572AE5BC2 , 0x0A1BA96331B603CE75522F28BB16D344 , 0x0A311265A16B40339368AC964C1CA532 , 0x0A47332373DB4A45B44163E02E4B39BD , 0x0A57FEFBD81B4D9D8306C482F17B7841 , 0x0A590E32F40F48C0909B0AD976689870 , 0x0A744AEC681D466AA44C16C5D9AAEA1E , 0x0A97074A93DF403F80102E1B4E98175E , 0x0A9959A4865BA350E1D70B5089F9A728 , 0x0AAD235A34E54DF6B88F29720C07753D , 0x0AAD318DA83A49C58157AE25D483F8C6 , 0x0AAD7D962D0FB21ABF0E4D788950FC36 , 0x0ADC97261B58C9BD0189E8FAFEDFC3AE , 0x0AF24625A6F333AFE307944410A4338E , 0x0B1C252198D84F90AAF51065E5FFBA26 , 0x0B24A06E64C74AB9B7E0251EAC88FCB1 , 0x0B6822D29099F895844091D9F5F6BE7E , 0x0B920997D6968F0BB3AB5A6C5AAF0574 , 0x0BCCC29A1B144127C1ED139E869B836D , 0x0BF12C97C00598132455205AEFBF32E9 , 0x0BF59FEE655A4B39AF71C979DC175028 , 0x0BF9604092D748DA995C3C3C5F97B2CB , 0x0C391B01FC2A4A03A8BA13A7A595D8B7 , 0x0C5FE7BD6202ACACDC982E0486161EE8 , 0x0C6236C6202343D6BEFAE8A283575BBB , 0x0C6BDCB267D0629E0778C857EDBAECD6 , 0x0C75C83BAA014087808BAE27A3BDFA71 , 0x0CA912E461DF47C58F0DB08B69EB88AA , 0x0CF86EDA8C2E4810BD8DE429EFD49B61 , 0x0D2B2B21C337F2611628E522E2C82382 , 0x0D6D6628B866A0E8A51A452B086F58F4 , 0x0D747BE95D8E46F9B3EDC68E618C119E , 0x0DC9A76F88AB150FEA4FA5CE50CC4248 , 0x0DD7EA4E35CE4CA59374C2509A1C1D36 , 0x0DDA0290A93CFF2424950DF17B1E53DB , 0x0E11D61519B042769D0576A924444AAA , 0x0E2E654292B64202897A6E05607EFC2F , 0x0E3E98808EE2D6D48C91CE00E7D8762A , 0x0E57EF541C17432CAC4EB519DE39F2C7 , 0x0E5DC313490748E082311F29FF2ABE21 , 0x0E6B4D8FB91E0A4D2F410CEDB0064140 , 0x0E78E2946C8140A58E3A6BDDAAA24C7F , 0x0E7B08BC05F94408AAEAC5720BC51197 , 0x0E7E0E3BA9DFB8047A03467DB9C89F41 , 0x0E80A466CC2C4392A24C5113B2BA9F97 , 0x0E85480E308E4D2BA44118288D8C6112 , 0x0E8EBA7D4EF44C9CA3403AF4DBD87025 , 0x0EDAF1DB14844689818D3B99746C0EE0 , 0x0F03C294D27CC209FF328BE6186B281C , 0x0F32F5B142534E32BF1AA570F4192E19 , 0x0F3679EF70FD3A67061876AC550D30CE , 0x0F38AD61E578C9B65500C682044FC91E , 0x0F41BF4061F90D70A3BE3384F357E492 , 0x0F4E11D8CAD14F3EA41ACE3F13EB505C , 0x0F7B6271A5464AF4935989F8854A28BC , 0x0F9F0AF6867235C282F0A48F56A02F70 , 0x0FAEA6319E8F4195A3692B032178FFB4 , 0x102F8AA98E3120F0C48C07570A928D1F , 0x104DC4145860425EA5315C5340F575CB , 0x1086E1C1D6F04541B443CD5AB825BF63 , 0x1095A40E8E58943B862FDC468116D0B3 , 0x10C4B02EE8FE43C98451DBA14F164A72 , 0x10DA749F9CE9BC353A8855FC21341FAD , 0x10DD2AC091F1A79A515BEC212F5FAAF2 , 0x11013D2B54214896A936D4C2F86C809A , 0x1101E8454124C45D5EAC18BD80830C18 , 0x1104A31A9AFC45543DEF34768119B6EB , 0x1114F976180F497CBB96D6B76FD79927 , 0x111A3BBB2B73C21FD659E05661F373E9 , 0x114941E7224647A2AEB5C87DFAA2019F , 0x11960B8A41704C54B9B3B11E0CC241F3 , 0x1196AF4FD01DA9D7546DDB9A6E8C38DF , 0x119AB04196F840BE814A6DD0288E9346 , 0x119D5FAC99F74D4E8A565ACBD80F12E5 , 0x11B60B6D0321486A94332C01D395FADA , 0x11C2E3C30FE4DFD629EA32F1F68C0855 , 0x11D7E81FCC494692AB5E156C664F5E6B , 0x11E680347ABD4F748445EAEE1DEC4CF5 , 0x1212A2E835F93287C2C38048334BD81E , 0x12F6D4D62E16480F8F08C03383CC81E3 , 0x130DB15DDEE947CF9F13AA0BC957B4B4 , 0x132E0716D2FDB04A9989163E44E2D758 , 0x13328F18CBCF482D81FEFB18F8A44262 , 0x13462D3735A54F268B5BD576C724080B , 0x135671CD8B9AA7CEF16C2843651D542F , 0x1395BE394B6187192E2C68B5668D36B7 , 0x139D7777B23B6F2E39E7D23BC0D9D5FB , 0x13D3B4414C28417EBCEFE17FF488FFE1 , 0x13FE03BB753B48019E23C5AD3C6C9242 , 0x141FB443877F44A0A5AA6E703D01B5FA , 0x145FA2D87B354342AE0FE40F66062DB5 , 0x14A3A786853542D39992DF73EC0B38E2 , 0x14A654CA09C3F7A744AFE7BD576DB141 , 0x14BEE59908D2715559888893C4E0B472 , 0x1513C17BDE7357401E04FE76B9A833D8 , 0x1550998E146746036FF7C6D7D7CC6416 , 0x155AC527602D49FFB4E31902ECB9C524 , 0x1570170E5983561BBD57D159AF1FE460 , 0x158518181326D0AC94045E7A45DDEF3C , 0x1596AFEB871542009EC9CF8D881F2F86 , 0x15B2AD5E53674E3AA73EE85E2B426425 , 0x15C8BA74C3674379B9BA72B363D0A130 , 0x15D17D9E4672436394DCA2D3D263FB24 , 0x15DCC6147E674B7B916D5561EE981583 , 0x15E9F1EEEA6327BFC4138840DC5BCE29 , 0x163CF89F175D4A53BC08CC31F15B0090 , 0x1656FE294D6348F0A10A01FCA27104E3 , 0x166C2B28DC9ABACEC4C3757E951A4B29 , 0x1678E04743F936A14C9A04E5F1828EF4 , 0x167C39CD1153041F6D93F113A35DAE48 , 0x168D773C2628AE92E4E529FF854786D5 , 0x16CD9EBAC97F4764904D7E4205C0AF5E , 0x16F3B569385840CF9E6F6338027AD3D1 , 0x1717C8624A7646EC8FA9A58A5719A679 , 0x171FACF03821442AB41881F12B2BCA55 , 0x1732FC85219444F49E9BA82AB6BAC199 , 0x17611CB9371C4076B399159BE13821AB , 0x176C47F29F5E20B6AC0885C92D5DD7DE , 0x1786CDF6EFB843D48CE809D1D6A84DD9 , 0x17C6BC7685F4F22019AFF0500E9F8C27 , 0x17CD8BCE0A8E4FF18A4E5926EAA2215B , 0x17EF83657208B689A44271A6C798CF8B , 0x17F505B43338D39F77EC01E39A8B0683 , 0x181E775B1D35104F545557A417194E7E , 0x182C664F5F2148D6AABEB3DD1D540879 , 0x1876BF2FFC15445F9CEE2EEE6CB85977 , 0x18AC87B2493C2253E8CF6C4277E85ACD , 0x18AFE288814342CF9734F501E1048005 , 0x18D17F12CE0543E5A92BCC8695D2EB81 , 0x18E834F7D9528A0FB45197830B771461 , 0x191E7C6808F84A44A203DBE3A9A9DD6E , 0x193AD9EC07024DFDA22ED85FE8991BB0 , 0x19D6EF47C6CB5994624C46AEA491A0CD , 0x19EF8AD14BB35C4AB80545EC3D927F2A , 0x1A1BA3BC86CA4DFB89621FC4951A5AD7 , 0x1B278C86B3E9488AB8EB24071193F2BC , 0x1B8ED7001ED34489AAE5C83A021540B0 , 0x1BD8E3DE57654212B9B2013EF3A56005 , 0x1C0991E7F448465DBB0257A9A97D0EE4 , 0x1C33E3BB948BAC01196EFF1023F6723E , 0x1C676646B2395CFD36FEEA9B307564CF , 0x1C8D089C507A420301DEBDE898F57F51 , 0x1CF7249125EA46158EEC699073326536 , 0x1D068AECD001420D897BF4D7298BD250 , 0x1D502AE84E207E18A556042CE3AF9290 , 0x1DA700E9DBE117325B5704BB5605ABA6 , 0x1DA7713C8CE258B39308B1A260D5110F , 0x1DC0C705D649471E80914307AAFEA30E , 0x1E3187B67C3058F94AD728D77F3127E1 , 0x1E3FDF6533C90AF80ECE8BA791BF66CE , 0x1E57AF8CD42F4FABA8DD00D8CF31C9B0 , 0x1E5EB847403F415D8E548C274FB8E1D8 , 0x1E6D429C7F9E5983C91D20424E89F9D4 , 0x1E86DC7269BD0DC91E5240FD8D2E09B9 , 0x1EEB20BABCD0428BB859625B39F755F9 , 0x1EF5D7D8CCD146BC8217AF59BED4818A , 0x1F31DA31F0FF01431118D9ADE8506322 , 0x1F5C49D2856B476E9B7393EBD8236837 , 0x1F66003E427A4BF2806C2E742568CC67 , 0x1FA7280C31864A9FBF4356300FE0AE73 , 0x1FF71D66B4A54B6BABAA369A140E851A , 0x20390FB84FDF62F40BF25490FA20A9D2 , 0x2039A720221C8D91734B5E0EED5560FB , 0x2096BCFA1A486699D004D07CF8821FCA , 0x21113885B9C1474547D3D23CF2E65D88 , 0x21472185C5124F1F8716689A13E5046D , 0x216ED24CD201BEA4511A52DF9C130579 , 0x217E445A2D464343B036CCFB8C9E1DA0 , 0x2195B93B0845D7B3DDBB1158A0699ACA , 0x219FFE2F49B3471C82944F4C600BBFE1 , 0x22503919C98A464AAE6D33B22BE9A68D , 0x225E605D006B4B6BBE1427A2FEFE8171 , 0x22618615B74842F6A5C0546587DA0AD9 , 0x229521CF84ED48A1BA46CE5F17F4ECC9 , 0x22E9C279CAF244A885B1CEC9EA2DE9D5 , 0x22F64E0A7D1B4A86B657B0FA85434596 , 0x23543FE1267C308F5A6B44932553474C , 0x23699AC2C65744E484B5E1AAB4CFB693 , 0x237A331C69BC4AD69532E4030E05E41C , 0x238A4EF125104823BC7D7B74517C4E76 , 0x23C5762E44B0449AB28A0C622B667E50 , 0x23CBF00F61D34E63B8588411B0B3670A , 0x240386278CF65FD14F785988285A628C , 0x244A48D939FB40B480B9F7B6C2C78A4F , 0x245E761F27A04D19BCC8A49AA8D0DF4C , 0x247F9BA170436B0D80DD1FCE06A5FB5F , 0x2486E4FE183A3CDE35BD8955B0377C85 , 0x24902362813C4A5AAB690043E78F3388 , 0x24E5516CA03EA68C87EFC35AAD600975 , 0x25124E44F20B4BA4B519AF32471E19CB , 0x2556D205D45A2F3D995954E7C34884E2 , 0x256CE679A3634F86AD8B68EBA8A0217E , 0x256F054A7B4A4D06AEAF2C4968AC0ACF , 0x25B77229DC0649D3A3B57BB0176EF738 , 0x25C047D7D93448D6AF23A341A7FA1A58 , 0x26019F93C8DE2549AC60BEE38CE06EAE , 0x2618125F208D12A4D064762EDFD674BB , 0x2678C47620A7BA63FD55F5C2FA16B3D4 , 0x267F77A259854A63977107251BFEA7F3 , 0x26951DE29EE8917C2B6B78F0A6ECBF84 , 0x26995DEEE6504B46181C384870187829 , 0x26E641E4D147463B9AE835A791693AC9 , 0x26ED5CBB0BAAED4856723D8D6F965FE0 , 0x26FDB5E52E0B4B6BBC835821FBA519FD , 0x26FDCEE69B774B689D5B23093EF3E837 , 0x2756FE25F11A4533A0D2E01F1B4CE29C , 0x276521E1C04541A1BFC439552F4D8D96 , 0x2770CAD4FD824D74AA8C4F23E3DB4E9C , 0x278D547556BA4BCD9C2BD38CBDB97187 , 0x278F388C68FF4C059871F3822DA156D1 , 0x27AC26043CF647C29CE5F78947D0891B , 0x27B03783D8FD27D0118D469EE975A803 , 0x27BB8C2174A7CA646902BEA4661757BE , 0x280B55B454604E668DC1BC64B112C1D4 , 0x2811B5F5F558F5A10F770C8DA563CE23 , 0x28284B2E4C6A133F824FF32153E042C9 , 0x28299EB1F26A4B00837F0EF0914A1306 , 0x287D4157780C8570864B5731A5093A85 , 0x28A0E5C93DE049C2A7527D1FFB95370C , 0x28B4ABE5A02F66BB5BF8FF171777553B , 0x28B66BE1AE364464574A190C6261EDFC , 0x28E7D4CBF6902D9DE67E41BE94A5D19B , 0x291F4C8FF7F84742A99880862045117C , 0x29233C27AC5E41A39AF04ABA365BDA3D , 0x2934A6E396234E72982570F8E8CA3EE1 , 0x2960292E6D3C4B8790D3D0A5422F9E04 , 0x297BFE554D104B1A91A0D500052BCBE7 , 0x2983BFEB527A4D0EBD0CF31A2B22C689 , 0x298E34E87B2D4E71B86578BD5D089164 , 0x2993C5702D174AC1B122E100EF3BD391 , 0x29D5EE0297FADD6C31F784E5ACBAA8D3 , 0x2A210FE286B92037258B7E41596047CD , 0x2A6D055996F5787A788F432257D26193 , 0x2AD1DF70C5DD4A41994B2D90580EC2D5 , 0x2B07FD20C5284FB6B3EDE7ADB8CD2798 , 0x2B6E954BFF813AD5513A72321C36855C , 0x2B901BB4D9E5F57F9EDDE2E416CC4810 , 0x2C08A500DEDA4D1EAA3E1D4145C2297D , 0x2C24099BF30D455D4B3FB350CB32BB2F , 0x2C72455B112243459D2BB8B38FC66F4C , 0x2C9D0E6215E9435CAFFA9BAB583A89F0 , 0x2D174C6CD21A40D38FE620715ACF9CDE , 0x2D3F1C1030E34CF3BCF7FB96EA03D52C , 0x2D48AF71A99144CCBA1B7D50A24FF846 , 0x2D5230D453504C46A180774322591118 , 0x2D536EB93A34EA99D8DBE11C9DFAD57A , 0x2D74FE4C97DC403EBA8E4329FB227B59 , 0x2D7B820920F51938A8D02062BF222D66 , 0x2D8EFB6FFDFB4CD28BD477D6690A418A , 0x2D95285C1AF548F8A53482DD8D9A07AF , 0x2D987CAD5CA67CFEEEA59174EC21A53D , 0x2DC3AF621DD93022C4F39602BF06DC78 , 0x2DC3E9F6CE76F550C0C8FBC462003A58 , 0x2DD556699408A2824AA65694EF9D5193 , 0x2E884CB1B613488EDD3F2D591C47EDFE , 0x2E997C217F604AB68197828D914F7DFA , 0x2EDD54D1354D4CC6AAA886404034734A , 0x2F3C6D6300DE01A67100D8472DA1DB25 , 0x2F4D2B2135033C600863F7E179A53838 , 0x2F7388222C114EAE963848B34155E838 , 0x2FD534927DC983A71229EAFB88E138B3 , 0x2FDF480766E9A50FEBEDFFBB8FEC2F46 , 0x302F58EFA55FE0DF029447762BA14BB3 , 0x30488063CE524E45BC5BDC9C01B4E8E4 , 0x30573AF0397D495C8B7497435F02F8D9 , 0x306F5DD54C27DACD3DA1B46C0BB7D380 , 0x30EAB34C8F1E489CA2A8B7DFD90E6BF2 , 0x30F99A95976C451F8903736D6BF76031 , 0x31141A820A914085A20D400B93013A4C , 0x313A3424C7245FF49107DDFA23B7B31E , 0x315DA62FDCD64714A8CADFCCB45A9182 , 0x31A513ADF824041AB50543FF0CF71F38 , 0x31C812B9A545E8EDFBB43B2DF6446618 , 0x31DEBEA1FE83BADF2C88B74ACD51476A , 0x31E9679BDC002833AF03DF38A5FDF69E , 0x3243842F6D61C4F2A811D6A304CC93E5 , 0x325487130F7941A08C0DD48CAFEED72B , 0x32820F9980DA42D28255F30785C391DB , 0x32AC41F34EF384ABD60B7C71A1B47D62 , 0x32B9ABCE53704CB7AE963E24AA8715FC , 0x32DFA4C391E74DC78DA8AC65031046F3 , 0x32FB29DF20EF85573D7E21142057B7F1 , 0x32FF0F0D8C8E4BBBA92E9EDA2897AC26 , 0x333DB32C263C4AB6964C06E074BB9313 , 0x3377B3CB060B97AC77A0E104F1BBD6D9 , 0x33C9AA7194F5490DA5DF82F35F309B3A , 0x33FA52E5FDA24A71B77234E124983464 , 0x3450B0A58E284CB9BC7E64AEC4F3532F , 0x34641B00E0B84CECBE3BF05F982DB36D , 0x34A45E35910C4AE4901B9C36397ABE8D , 0x34AB27794CEF447B9461104AC350D71E , 0x34AB37D922D2A52F353136784D0E44B1 , 0x34B5963FD7D243B5A53849B110D43124 , 0x354AC8BC782C400A8A484E40CB23476B , 0x356C083B17DD44F7A5E65FC12E00AA4B , 0x357089C6640D40B586ED5A7032244D94 , 0x36584CE77577B0FA5886F3EDC1CDBB2D , 0x3686CF0E53A44813A50FF369F2362D3A , 0x369E6368F4E844188E028FC917B70301 , 0x36A59A377561EB2B5FA66C7389778400 , 0x377894D43516408CA08B4FFC95710D3D , 0x37ADAB1CFF3504652E6BA02C4F45F8CB , 0x37E3FE011BCE0A0753BDBD3399DACDA9 , 0x3801F6459ABB3DB766D884F244C321E8 , 0x3851305B64FBA7E9382BBE7A6470FC7A , 0x3858419ABE52359AA07B48894FB7ECEF , 0x38E8B7891120CF0DD7423C21E13BC941 , 0x39DEFFCFB3224B37842B7CF473A93486 , 0x39EC6D8FAB8D463D8CDA0FF89F3AE48A , 0x3A1FEB3A5A36439697CA3BCF6EA50BB8 , 0x3ACF7E5608126D9B1C5575463A14BEAF , 0x3AE778A951AC3E701B3DA34CC9D56488 , 0x3AECA39111FBBAD94B925545CBCBB3C6 , 0x3AF3C5D2C6134369B6BBAF7B7C7709E0 , 0x3B0BB54EBC155A3FB72D04065EEE1A74 , 0x3B418E04BC9C8217704BFF924FEA6578 , 0x3B5B1EDE317845138733CAA2DECD7B24 , 0x3B87FAA032D44C62B9AA8543356EA359 , 0x3B8967FC77B791134508830310E7CDDD , 0x3BB4005EE3BE4EF2A10D3D917EF020CA , 0x3BE9D16D41A052FC14733E95E79D6B14 , 0x3C0B8083BBC94C2EBF54344CF4D92B84 , 0x3C28227F6BEC543B7020A5D4788A63DF , 0x3C31FF0050EE4A10842FA10A0681944C , 0x3C7E4BC59D8E0208548457AC1F533B36 , 0x3C8EBCA2378731497DD037BDDB81AE12 , 0x3C9F10EEC71E7035414C7FAC8BF6B1E2 , 0x3CB652CE6C3D487593762D85EA9AB185 , 0x3CCC7A3B31A940CABF5D1ABB94001DDD , 0x3CD1AA0019E33A63FEB613DA825C5C1D , 0x3CE563BD1EBC4E34833FDB4D548CF6A6 , 0x3D1D29D415B5A7C9358CC9937D4AC891 , 0x3D3999CAAF5288781C00718D1886AFBB , 0x3D3E7B18452EBFBC0F693E3143079568 , 0x3D6271EA8AD8122B7D3FD2262097E07C , 0x3D68854838B6FB7D8077412199BE54E9 , 0x3E3A33EC66F5723ECEDDC2B6761A5F52 , 0x3E67E703F7EF46EABB55FEDB6E69D00E , 0x3E901131A27B4DEFAB7272DFD5375E03 , 0x3E93AAAA195A292066C8D2DCF85A8335 , 0x3EA5A03F99D54C929E4EDB1B256AEC01 , 0x3EA6FE7E905F430ABBEE54CF4B91113C , 0x3EC3172A706B166AF644D319DD8243EF , 0x3EDCE4D348A333F9D4E9B3542AC1C86E , 0x3F83A0680EB24758AED0AD780148EAE3 , 0x3F8D45C751E81CABD0924A45BAFC38EC , 0x3F91E624242A494F83A4490E2B37E108 , 0x3FBCF0EF5FEA57D1BFF49D66EF3A88D5 , 0x3FD88296BB98D55457C9FF1FCE8848AF , 0x3FFD92B4C394458BB5269BCCD052880C , 0x4027FECBD7E845D183666EE373D84D0D , 0x405A46E9A99B4FC7BC26DD086FF6C8BA , 0x40995D1873914C34AE55CCF03A789A91 , 0x418A060D5D8749A2B633AAD6695040C5 , 0x41928711DED84EE687CF49F8E7EA5216 , 0x41D2389D074F4F03B3E074D7A2D5242D , 0x41D6487528A3C5D8B847C57E649021B2 , 0x41F8047C9D5F9D341045B72E06C4AD7D , 0x420ECF8FDCCE9048D4465FC93512A71B , 0x421F0E545F41ECE8F8A0A0127DE8E610 , 0x423018E7A74949218AAF045082971555 , 0x42A4191BA77A1B84850F076637046E3F , 0x431F1A3CEF43452DA97C48823267FA4C , 0x43594AA2F5EFD0372D6EEBDF3F8BFE7E , 0x43CC35E8063E48199C3831516A1FBF97 , 0x43F62EEB1FB309EB4C7EB9969792C8A7 , 0x4416383BBBFD4D8A91A2B42E30B11585 , 0x4423535D4A5A498B5C3836BC2D04BB6F , 0x4441FF92635349C49555FE0DA70F5A40 , 0x445FFE4664974CF689F0D2E5635D0F20 , 0x4488CB2949C34A889E3451FF9BA60B62 , 0x449C57922F414663AADCA98F171D3C09 , 0x44CA697DB667469184E3275B0CDD469C , 0x44F3662A7B4AB76B63E44031BA14066D , 0x44FAACBE0FAA9BAD096CDA6697624A06 , 0x4519DE5913519E1809A79128065EE17F , 0x4568703095D84515B42BA6DCD4AEF77F , 0x4577C33EDB0E435BB5E1FBEF9F2DE63C , 0x45A032B7F1FF405DAFAB37C4A80F89E9 , 0x45B34CA42DA24B0EBBA0A02B4E034224 , 0x45C36EB2D2DC42B0B4722EC502244CE6 , 0x460EFA82AEB644F0A3E8B23375973737 , 0x461B5BA8B8745D7BA304A4EC3021417D , 0x463A7925711095327B0A769693AC4B9D , 0x4672BB1BA9C522D6DDD7493A552AA89C , 0x468BEF5C8AE60247BE35EB17E0A080E6 , 0x46BC5E94D3D2868B583DD59C4A53E6CC , 0x470B4E5AF6674743A0489021EA4D3480 , 0x4726760F92BA405C9D7C866E9398508F , 0x476D22581CB65E435D66A536AF348964 , 0x47ABEDC985D2F535EB23749030606223 , 0x47C1B2B6C277496195433E0501ECECC7 , 0x47DE988B45500D7A0657034830B9C781 , 0x47E6D00EA03DB89C85A5990DE407BCE1 , 0x47F79A0C4D8537AD7E4AE9A2D4A4C7F7 , 0x48398F98347D2FB8A863AA0DC8DE143F , 0x489E8C40E141A085E66CA6C5F4017511 , 0x48D1A2F71D2A48128C583002B3771591 , 0x497A2AFC1FC644E0908A0196FD035A3E , 0x498320A5E43B4389AA8FEB30A8CFCA28 , 0x499C75BA8CADB1B6A9FF198DD8E5DDD4 , 0x499F9CD2918148BABFD68A549F65A4CE , 0x4A14F4132BC14BE1B50757633A917888 , 0x4A2D583AB10662F6FC91902844F5D45E , 0x4A3112F061A08CEBD2553C3895ABF3B1 , 0x4A4F89E40740D364D38F1AABEE9A4918 , 0x4A7266EBE82E478DB98F268E0F7283BB , 0x4A754FE026A6887F7C146356CE60E825 , 0x4A997D0D7DF7416DA53412AD68AA3685 , 0x4AC60738DF2E41F0AB4DA07EF8A143E8 , 0x4ADDDC3CF985460186E7682053B8FAAA , 0x4ADFB5145320478CEDACA252199D6C3B , 0x4B04304681CD30E54BC6F68D63CE606E , 0x4B0D8F69472599A1CA788CF0950EA0BE , 0x4B30397CCD2946A6B4AC25177DC12481 , 0x4BD0931B9D3582CAC997D3911F962EB0 , 0x4BF2585AD10A3780450B2DFD38236DF1 , 0x4C4569770FC5418FA95143E3B02C1B05 , 0x4CB50D484DDF26DC1336C946B2FEE83C , 0x4CDA81EFFEAA4C7BAA45BD275B2E5293 , 0x4D3578047B094EB7AAC8236D2139DC79 , 0x4DAF14AB502CE3C0A6034F790BB4A9C8 , 0x4DD491CD10F548878D4D986F73E1AA8A , 0x4E04000B9FDC718151B5EAA6B81031AC , 0x4E05A0EDAD2360F495156ECB025116E9 , 0x4E582A71143BFAC44E84588D94B7A250 , 0x4E99EBB70E50446F9F23D240526769D9 , 0x4EE81DEC9D50132840C660D2A4CE44F7 , 0x4F73A54A16E3B8793CC7E20E08052F48 , 0x4FD51DB033AB4B699908DE1DF9DBEA3D , 0x504428A5FF7D4BD4A9A57DE0E5A1E269 , 0x504759863FDA5FD331F48EE1E3B57A76 , 0x5064A3CC26BDA7B7883E82D021A1D8CB , 0x506AB21D84412B79D747AE58DDC9CA95 , 0x50863D1CF90348B0AA764DCDD465820E , 0x50A4905E7ABC77627BF1F22655FCC923 , 0x512B0C0A46A7A92771139080B372BD5E , 0x51394F0E08734406B897E186EDC12F7A , 0x513AE9D51CBFAE9D5A9EB1BD07EB6557 , 0x51602BDD0C4148EE85E5C3BB8E52A03F , 0x519B736A2B1E4A43AE10DE51FEC71A5E , 0x51D0CE3DA1CA410E8EB1203501357749 , 0x52299B0159D6440284A603E8E6CBA2CC , 0x53048091F42D471C9715BCC868360515 , 0x5333BD555D4941E28642A5EF89B4836B , 0x533860BE1A7E42B8ACBB090A9DAD3F26 , 0x53A6C3EF9B86FF73CE6EFC4B3FF722F8 , 0x53AAA20E8E526B58594DFB02902B3A5F , 0x53F8667F5CEB4B8EA2553762AB985D99 , 0x547C0EA35F874F9EB383ADFF7D1BADEB , 0x549DF938794B4F0A9467B7E67394DD73 , 0x54D93873C68BC2132EE0C1B1083FCE9D , 0x550BCE62996841AE936C1DBF0972D15C , 0x5518097B316F045DCBCC9F53502E56F9 , 0x5552C6989D24456E8DB074EDEFC3D07A , 0x557343E82869C523E6E5C3274217D63D , 0x557B4F5CBB44463AA82233E5FCCBDC9D , 0x55895C67232342158D6E412C6C876B4E , 0x55B2777DD9A34FC89AC64E0F03262B6F , 0x55B9957F2D5D45C0991DB912D66E4F7F , 0x560215AA28176D274A525D949A70B5A6 , 0x560872548C934E738F1807A2E51D64AB , 0x56151900DB866AE32FD31D08EA7B9ECC , 0x5663D0F6B36F4D52A3C3BDA03C0B1EE9 , 0x56FD0F2945DF40DFA32EAEC0709CE249 , 0x577CDC178BC84D67A281413AA846259F , 0x578AAD6D67AA43FC94F4AEE9FD871501 , 0x578F5E3CBAE7D2CD4553C579CFF6889A , 0x5790FE0D44F515B185EE094450162526 , 0x5797DD63401711C61CAAD488EB415115 , 0x57AE8F301C22F4BDF4F2424ED83A1ED4 , 0x57ED55A7FD704B3CB6E4B2518D125D12 , 0x5828F2EC95CD47F8969B38693E7FE8F1 , 0x584413C6DD76464AA78F14882ADE88D3 , 0x58D36D8EFFC3D9279748C4A5B985A76E , 0x58EA62574F35CA04464EC7FCF10A9722 , 0x58FA90336B2A4C0E8E88813DC4D41861 , 0x590C9D46AE5345058FA5395730E737F4 , 0x592713A39B4259789CE78E1250A64616 , 0x5941D3947D3F0FC10F77EA84243EEB01 , 0x594DDF5835E8438784E9317CA6665B15 , 0x5950938238FBAA10513A3F4041FB33BD , 0x59F63B8496B260D8F6B399FE351AFB39 , 0x59F74FDB457D4A1E9995D01CA7CE0840 , 0x5A30A0A54D094C8C9215CF20328A889E , 0x5A48DE5ACC4F4D87B229663452DC0C40 , 0x5A5DEDFD60E3DBB7AED00F109E87AE0B , 0x5A81AFB6D2BD1163CB8EB5536F93A272 , 0x5AAAC45B95A54A1FB6489E7118BE324D , 0x5AAAC98C1215482CA1A90792F1B3FEA0 , 0x5AE650C941D777BD9F2932A555BE5A41 , 0x5B6CB08DCF054AE0BBD3FB37E5CAE36E , 0x5BC4177C9075B0B63A9418B91E8A0742 , 0x5BC70F42A8054E0BBFAF6949AD4303DD , 0x5C4B310A6CE24639AF43A5793DDAB942 , 0x5C711CE45C3E424385D30EC1D9785D54 , 0x5C8D11BC5742995CEFF731C9B083A0E4 , 0x5CB45AC70086C456F54C5B3C28EC15C1 , 0x5CB5676CE5144C91A3AE1C0028770266 , 0x5CC046A3034148EEA1CA9503A1F02CBE , 0x5CF9454200C33285447A05EC8AB633A5 , 0x5D24886B97D84A0CB6428DFA7CC7E25E , 0x5D4374ECEAA976FED82AEDC495BD90A3 , 0x5D6EBC57AC36837BE264200ACB29ED6E , 0x5D8F470728444F8B8CC033E8BCC4C658 , 0x5D91DFBCB8A027363F068A9793D54638 , 0x5DA0626D0D9E0C377255FFB75FB09330 , 0x5DC98F0E52474D86B3D2D9716B9205E4 , 0x5DDDA8B4FFD81FFFAD9AABB57820F15C , 0x5DF1F3BDC4CD4D799C9553FA2AEAB567 , 0x5DF908F4356613688E34D76236F199BF , 0x5DFEF28358CD479D8B8D6ED723BAEDCC , 0x5E07DF0DC3214E9882383AFF8B101CF1 , 0x5E1918EDFFFD7F927992B6AF101FBBB7 , 0x5E33359A254BAE4DE7912249232DC0D5 , 0x5E57848625914FA1BB062084D33F8576 , 0x5EA5555936111B4996E29D4D6481471B , 0x5EC8C0C4BA5A4F63B89CA92DACCBC7C8 , 0x5ECA766C5DC911F111ECFC635BC3288E , 0x5F103A67BB744E3B8E53206D88447C9F , 0x5FAEC931D2A540F08E7BD6E94F2B00DA , 0x5FD7A7BB79AA0CED0AA4631B39AEB92D , 0x600D8B70954DC49517AD8616455A512A , 0x6059DD31CDC34C849218B237D28EE21A , 0x607C1FE8E46B47A78AEBD456239BC814 , 0x609346243EA59AB00EED247D3F7B20B6 , 0x6099A24EE6644EA7B04769E16027B62E , 0x609DF9C592384443B9CBAA1C28DC69EE , 0x60A4FC586005F9AD7A1E5CC132A03B36 , 0x60CBB1D2A3370483FF48551C9DBE63AB , 0x611822144E87436E815899D13134E2F7 , 0x61663E2767AC468491058D7DB2981490 , 0x616EECB30B8D4380BE077B6FE05D2DF8 , 0x618ED2CAA8A8793B1E18892A8649A9F0 , 0x621DF7E391C84BCBBB3A2F3B74134CCD , 0x622D4B167D2AF167C599657477EAAF9C , 0x62777486A15BC807126FFB54E060A719 , 0x62C701815A804C6CB44640B1C3A4563A , 0x62F2A90EFC041AD694971CB7CA301FA4 , 0x631C03D1D6BA48F29E8E007F97FACB20 , 0x6359F335DFADB04420E5D8F3FF03CD7C , 0x640222FFF0F545748E1CCD18B6D6F7A8 , 0x64094262607E35D852196B8F22B3DFDF , 0x6429A9F9A3664798AA9D1282AC3530D9 , 0x646D55AA1CEB27E7D63B101C732D7FD7 , 0x64CDF5AAF6F04BBA85422161A829B16B , 0x65086B794919428F9C9F724363C1F5D8 , 0x652A06D6D5BCF700524B423602C6E40E , 0x652C852B086892A8D65392EDBACFAD2B , 0x657F5B44FB6E855E4D3F2C1B0B7B563C , 0x65DFC324C45D46C2BD9F6A81D9D88CD5 , 0x65FDE175823C4784A2322E3853C6A44F , 0x6649D16AC5805E5034E7F3E553E99C28 , 0x668CB6CF59F04A1A98237647E0188929 , 0x66C989C24F0D45506688059EA51B0D06 , 0x66D535152F3B4DFE8D9B370FE6C948BB , 0x66D642B89F749C23A2E13B1D3D939455 , 0x67103DCD546B46F3895C44AA009378D5 , 0x67294B094BE982C1480DA8B82AAEA2D1 , 0x672DC00E06DAB325F05D65A0A6581EA6 , 0x6746A7D5F4568F0D4549AA9DE71BEFE9 , 0x6748872FB4243834B7E1280C72C48950 , 0x67BF94A730E2410796EB178888C57D3B , 0x67F03AEFECF74D2F97089BFC664114EE , 0x67F6698125E349009413557235E3C7F4 , 0x67FF6F2B75B64303A2C8D1D1154BE120 , 0x682AA000F2D80846D0CD6EE98B068C40 , 0x683806686C2D4170C64396870E184137 , 0x6851C5A640AF47B1679B7676CE5E4D3B , 0x691708A482E34AF7887230EFA4A95102 , 0x691D808D2E98B9E1B9038CE02B18C3FE , 0x6930624CD5174C38980C78A32A5ACCF6 , 0x6937563F2A60483D93FE817D26309B37 , 0x697BE590DFCFE9B3B65CB64FF86C751E , 0x69F48789E1594E78BA38C09135505474 , 0x6A3BEF9DC20143B9B4B2D0C5147A35BC , 0x6A41926955FE497587F126BE281058D8 , 0x6A9E1CAFFFF64A719175A74A93B2CA12 , 0x6AC8B17D52DF4D42BC06185F5D613B60 , 0x6AE058DE167BA1F9AB7BD5AC6EB3CEDE , 0x6AEA5427693AE9F8B5C98D474165A36A , 0x6B0D39BEC23B9DA863BF2B04121FF71B , 0x6B2F56A1E89249DEA9BAC9410CCF4106 , 0x6B6EC662998D0A34267CBAD9154DDEB4 , 0x6B7B293F485B4E8C8E479D7900DE0BCD , 0x6BB9F50EAF984088BBBF2577DAE4F85A , 0x6BCA2F433FF21DFA778EBFA264779ECE , 0x6BEE9A15FB67D57F81732C9D3F17FE0E , 0x6C22D3FC35DA4B7491F2369F5C2A17FC , 0x6C320B428683FC5C885B7592C1A9B9A0 , 0x6CEC1C8E77C3D56772354671AA909BFB , 0x6D0F182CE910CF9D3A9388922FB87AB6 , 0x6D19748D67B94A6FBCA964FC0CEEC535 , 0x6D1BDAD065CD45D4B45F9E9A86D9D368 , 0x6D3A2BB75A074572950D18102FE821A4 , 0x6D3CECA0392647659A920193B77BF798 , 0x6D4764D100DE41E99C5B581927A0A174 , 0x6D84A896FC294C45B488BA5349635968 , 0x6DDB71E4950A4C9882F76EDDCB7DDB00 , 0x6DEE4C2ECFDA48DF81DAF22E94A416C5 , 0x6E5E0350E32F409F9F00EA277C13FE28 , 0x6E795391B6AD4FFF8A83BE67FFFD0124 , 0x6E9EC803629C3AEAC0FAC0A8D1B50833 , 0x6EE4AD6012010BA347994A2DC764BD3E , 0x6EF68265E98D30DA872C61474295E517 , 0x6F1F12E8265D40B58D647E655B92DC56 , 0x6F27EC106EAF41D0C374749943605F39 , 0x6F4126319EC746CB83C474030A540FFC , 0x6F7C7991A371D393261E7624C2EF55BB , 0x6F9DC24E531C417B9C04482FDE39D69F , 0x6FDEC702C0D3DF924DF24FFA4C9EB4D5 , 0x6FE14B3F35124E7E88241A1DA8585A72 , 0x6FFFAAA9AAE6B692B92AAF224D0BC648 , 0x701C57FA44EC40149B9FC6443FF6AEA0 , 0x7028A1BA19E043608A19B8B639AA60E3 , 0x70397581BE2621023A004468A80B433A , 0x70432060DFA444F690B8835F69D7CEF1 , 0x7054E3D7DC464776ACCC991E4B5AD3D3 , 0x70C1FD5D983C436AB3FAEE16C15E521E , 0x70D7E788EB6F47849F5C90D0640304B7 , 0x70DE9A113A634413A41FF20BA2793DCE , 0x70DF4095960A4AD2A366853CA7B6EC08 , 0x716884C30732B5905E496EB683CABD19 , 0x717A3F1F71C24D28A0C0EC36F0296F57 , 0x7184E24CE7CF628277FF77F43D60C21F , 0x71871651C9C449CE969FDE2691A2FEB2 , 0x7194EF49E52744B4A35F68BA942D0450 , 0x7195B01A838E260E0603614B4A9E5EBB , 0x72048862A5AF4174A33374885263ED15 , 0x7216D51537A44BC78E806744945FAFDC , 0x72376643EF577F0A3DF062E8717BA8C4 , 0x723BBBC66EA041E3D2441E972989D266 , 0x7258E10D3E584B6AA052F7C3A5A40F3E , 0x727646E8B2DA4672ACD4F2EB4A3B6AAB , 0x729FEAD02A91EC60AB5A27BF5C046D70 , 0x72A7AE6CE13C41489860141366356630 , 0x72CCA00A3DD309D16E86F69CF6A979C6 , 0x730BF7EBA7D7426E887F1239C5AF0B8A , 0x7329585067154C6E953DC86BC1F33C2F , 0x734519F8C62B4AFEBC3018D47CAB6AB5 , 0x7375B9ED95B74865837518013E199C86 , 0x73AF3720D216AA45B2FF8B8DBFD77995 , 0x740664EA72264C488B2411369AB88897 , 0x7426AF5A540BB60581D9BEB56FF848E0 , 0x744C01FDDB70EC6A4004D046724201F6 , 0x74B04BB765E306B5032A8178BBF9407D , 0x74B4C2A199D741B69A5C1632E6BB0474 , 0x7530B700A2B6ABEA37CC4B4199570F62 , 0x756265BB55EBB60968C5EB6406383FAE , 0x75A36F9AA346221FFCDB93C43AD66949 , 0x75C8CD07C16244FA82798863E279E9EE , 0x75DEFF03EDE44B06A8896C61634ACF22 , 0x76347D9DD1784B51A8CF885952E9AD4F , 0x7673457E5D0949DF8BAFED613C24785D , 0x76BDAB9C05864118A730D7DB5B805F60 , 0x76CB1047866547A7B4A013CFF97C012F , 0x76DBCCDA8E59450BBD4B64BD903F3457 , 0x772E45D1B643C220E9D5E344C4DFDE87 , 0x775BE0613E564E7FAA4D23C6999DEF8B , 0x7763838A3F125AEABDBC96C9628820E8 , 0x78202B0B20701B885595AC145D5DF86D , 0x785612EA395C4AE0BBFB70D519595AB5 , 0x787978D8D1B54EF69F01BBAE7530DACD , 0x78CF4F7FB86CAF200D7D75161E10D107 , 0x78DC17002A1D42DD806B06432751CFF3 , 0x7967F8CFF70626E9E0E45BE76A624C94 , 0x79B2C155FCCF5A4547F8396719CEF955 , 0x79DB7F60DF3B447180AB8CAC8133F879 , 0x7A05A66F3D6A8A82C6D67A221060FD72 , 0x7A0DE7D5B95776AE8F2B57635EBB3281 , 0x7ABC2C7905094648B8123FC2CF7CA879 , 0x7AE4A1B030AD4C9CB13E06674972C51D , 0x7AF2C29CD77061282E5202EE13A4B8FB , 0x7B24824B27755B5145920D73E794C815 , 0x7B461D02E3724A0B82E6631E22B2E4E2 , 0x7BA6A2A127F3773D2C8AD3AE4EBB909B , 0x7BE861D53A014069BE829DAE78123EDD , 0x7C01FC2EB7B97EBA6906050A01FCAB99 , 0x7C5BF0C52936AA01B8BE0454183A309B , 0x7C8449FE7AD3FFB56F1D49D61073E722 , 0x7C9F1D36AE5244238AE16C2883B42198 , 0x7CC0B82AB565FE3319241B8B1CB24865 , 0x7D1E82E4598CC928259FF26093F1DC7C , 0x7D3DE905361B4BF387BBDAD477D48009 , 0x7D5959CB30BF417E94D4CC9D155CE4FC , 0x7D5D9D0387684883B64588D475E9DDB1 , 0x7D671375FAA843F2803C753E79E3B617 , 0x7D72BF78D8E14E48BA23F8CDC0CDE55A , 0x7DAC93B7134341F4B06607C6A7B6B004 , 0x7DD1E41E9369C8D9CBDDF465B0382D70 , 0x7DFDA941D7A544845B5957F88680A046 , 0x7E133C73D2CC40A9AFB4D488A68708C2 , 0x7E530C92625F4EDFB11B68F70D4763C7 , 0x7EC667F56F6AEE11BB0040C55FDDF923 , 0x7F7C55DF892A4D17850867068F313521 , 0x7FA161858987EE193C8B114D10517E16 , 0x807D456C4E15A128E06CDBE4D9D22B8D , 0x80D6CD94946543A0A29F4E75A6D52F81 , 0x80DE91994EE1417A96B1690B4AC44583 , 0x810EEAA886E36E80DE952913C53BF2F7 , 0x813A5BB3304B43F2B330792FD092B711 , 0x814495AF9AEB44FB8CE68AE90C31AE8F , 0x81D28A1E9994A0EB1C7406FC03F6D7E3 , 0x825598AACAF8ED54EA29054BD6CD2033 , 0x8268B49078FA4FD1B7FF67A40BC75A80 , 0x8281FBBB374CCD1DB05FF7963375ADDF , 0x8339B086963447E2A7ECE5BD54E67520 , 0x83435DAC460C45368CE25EA567FB2E18 , 0x83586D70FA65FD76F429C0F38A33F694 , 0x8368414C17B6F5FBA78287CC268046E2 , 0x837BCE5BD8D248D28B08953C8A19C7D7 , 0x8380A90A1F4AA9A048BD0699EAC5D8BC , 0x83AD0458BD5B48CC9B91D1F21007FD5A , 0x83B8C521131A4110BF629C86E7CD8F96 , 0x84482767B9D0FA816C00068AA12E73C6 , 0x844B075CF3F58A8C26F197F2C1A3C0F6 , 0x8455817EDF8E6342D2C5C5A15E0D4BB1 , 0x84DB97A491794153996B765C959D83F1 , 0x84F73D8424D84E1FBC4B450A0C1F7BC8 , 0x850515B8E2E04452BD02DD38833C96A1 , 0x85097A0F17918B5926ADDDB78BDEF6A1 , 0x8521079929CF7CF8275355A8DC2602DA , 0x85524126BA556AB983F4F041A9A0B4BC , 0x85694E53EE5B7CAB5A78B41CDDD9E926 , 0x856E35DACFCD46F0A7C6E9FE4C63327A , 0x858E0B62E977D01C7EC85AFB4688061A , 0x858FCF057F104A21A070ECF1A4F16EE6 , 0x85CE0E2C8C234779B96D2BCAC9D10048 , 0x86127D4D84CB4471B26DBC65D88D5F0D , 0x861300F72F90427C8F9B60B8F8A0CE1C , 0x865F6C69AD44207778FF42159A307EAF , 0x86923BD2D5069682E1EB2F309A57FED3 , 0x875FD3FAB6C342B3A1C2A230E9AFEFA9 , 0x876BB6C663F1402F8CABD15DAC97E372 , 0x87B634753DDF2E4FCC1437CE02361119 , 0x88104A6CC7844B7DB7500B128C5917EE , 0x88B6AC07A14D213613B54FB6C34C250D , 0x88BFF0406D3B4990B8618855F28A9243 , 0x892B9EBEE91049358595E8B64FB56B32 , 0x892EA27E88306E552322829FD1FD85BE , 0x895C7562EDEE43959D9D0448AD6F0D79 , 0x8961DAE269CA48FF981099DEE0E9585C , 0x8999324ECBA0363D973377EF7E4ED531 , 0x8AB1AC634F5C4CF785501A986618E086 , 0x8AC0742ABC254D719930BE570DB86FA6 , 0x8ADAADCADC6973EFC2C1D6FC48854D8F , 0x8AF66EE2B9B95E1101D6A9554F226AD2 , 0x8B0F2D7D27F46DA4C475E729CC077210 , 0x8B23314A83FF494E9E5B12FAED135BF1 , 0x8B34356D1BD544D99887E36BE90BB804 , 0x8B358F0738C448C095A02B5D90BD466D , 0x8B4891A717ADC6C6B9071050D4B83410 , 0x8B9EE062C2FB45E2A3891BE9C5735171 , 0x8BB2AC39D655E2A1BD923D466AEDAB9D , 0x8BD04E5E8B5B4BF75251CBD120175CE8 , 0x8BDACE3E22B64F53946AB3DBF95E0B29 , 0x8BFE94B3B6A44F81835473BA69B48AD1 , 0x8C0692E3863BFE5E0082ACC2FBEAF15B , 0x8C3F0C084E2E4875AF39827529427F22 , 0x8C404FAFE58D45C2A1D40AD3612CC609 , 0x8C71E9F3003033AF22AE572009A6CA69 , 0x8C72D68C4DA74E55BA4894066023862B , 0x8C8F4EFB23DF454EB710F388D884D40E , 0x8CED35DA35FA433986F5CE0107322F68 , 0x8D1004B2643F4B8998FBF9440C0F0E2D , 0x8D409EC202D14274A27A339F1A99CA2B , 0x8D6B62C7B50D5FBA4F0C27EFBB1FA652 , 0x8E1646ED717687E19DA2ACD96CB97AFB , 0x8E6860F90B686CB95A81B3E10686AC40 , 0x8E7CE12F237BA569A48293ADFC0FBFBF , 0x8EF06A675BF54BF5B748E2BBD5F21616 , 0x8F07FC2C9B2E1289FB1172509DEF6572 , 0x8F088382E6CEC4D126557F0975AB044C , 0x8FCA1CFA7E854909866E75E3EDFA0993 , 0x8FD2051AFE9E26A00A31C2B4519ED216 , 0x8FE144F7CCFB405484DB98DC5DBDFDCA , 0x8FE8CFE1AD284A199C210BF9C16D8353 , 0x8FFB2C429EE14C9299776C9C28D798ED , 0x902BD14D53294D46AFBE914457AB18B8 , 0x9083F3F88C02435DB1DF2F720D49C9F0 , 0x90C93057CE954229BFDD5B54C1E071BE , 0x911E2EF4A65B4A6E9CE147CB42EC6F5B , 0x915B56009E8F4EC28DDFF80B4FFB6EA5 , 0x9184D2FDEEB24F26B0DBEF72534A07C4 , 0x91CCE4F6D1941D54867B40B4944A6B5D , 0x92001C2C26164800B31DF715148FB9EF , 0x9224C99886EDB1AC4C4A94A85DA74CEB , 0x924D09D8775C4859864676AADB7F1E4D , 0x9251A7EED03D9358EA4E9C8F9F950107 , 0x927ADCF66D214A5B9B04B4B8114B8D5D , 0x92F544397B15DFA6B514117F912C068B , 0x93371EDCCCE24CD6AED716945302CB9B , 0x934772BA0C8E6DEC9DD90C2292B372D2 , 0x93B3577D20AD4A7BAE8B05BFFDEE81D1 , 0x93B45121C3A67054FCF9D70133757B33 , 0x93D6430AEBED0A8C54C866C58809971E , 0x9479D23ADC7F4D8A9EFD4CC9BB436E00 , 0x94989C1380B44B33982D5C891151868D , 0x94A8E1FC7B184053BD3E7F3CEA4797E9 , 0x94BEBD3768E84EC29AE6524741399188 , 0x94C88BEF9623B437A228F17986235508 , 0x950159ECE7114567A27F73AAF856E716 , 0x950EADE6C77BAE4E8DFD0A7F6BDEC0E6 , 0x956902AD0A51AA7D642A40B48DD221F0 , 0x95A10B9FFF5DEDD495EBF6B2C18D3DD1 , 0x95A4ABF4DDF44F29B0B0088D93AB281B , 0x95CBF82B57E84FF6972DC6D461D79DC8 , 0x95E85532310C47CA8C12ED299154941A , 0x964B0E075F8BD140CD8D4F3E8DE1025F , 0x96E6808CF46D4B1491460AB2DE6F1343 , 0x9703823D56B345A49EAD2F5C4C82A95A , 0x9739BB2D09858A3664F3C62975EAB6AB , 0x9756C634D66A4D94A6D6FAF1E111D1E8 , 0x976FE0A16CAEF4CA766E92A062EDFD74 , 0x978EEDA1E42746098E458972EEC585F6 , 0x97903EE7100A469A9974533710539C41 , 0x97A264612D24AF4DA9D94CA78D2F2088 , 0x97B3B93A948AFAE0C00E373E23B7D2B5 , 0x982DD51DABF34F8EAB1BF37E8FF50B42 , 0x98EAAE6C1FF84C15A8A63DED4A98C2A0 , 0x98EBCFE88DDCC7B89569381C9FAC2178 , 0x9924A2748A62FF22E9493924B3CA5AC0 , 0x9935AE1D01E1449E84C5A12E78AAC35D , 0x99395155AF9022A1E516584C2AFFEFB5 , 0x993D10AC91894EFEB0AE543A68965E03 , 0x993F3F37B3B14EAB8295861EDFDDFD9A , 0x9947CAFAD569A52F080C005FBE0B0830 , 0x9958146B99A34812B075F1E011D47026 , 0x997970F080894A5C954EFB2D48CE5836 , 0x99B95CA70BAF4F2E9CBD97BB893681D4 , 0x99D1ABDCC99B4ACCB04E988805C1BEEE , 0x99FCD83A6700E9340E33AE88C63C8F59 , 0x9A2A07A6CFCA49AAA2374F9061EF2E74 , 0x9A57583590EA4E9FAC8A5768CDE590C1 , 0x9A94A498A90CA5F646D3DAF61312E301 , 0x9AEB9BE8203F4B6190533FEF65F4FBFC , 0x9AED12585E964E5E9FA8A60C969A6397 , 0x9B12AAD4B4884859B5EB8314E2EE09B4 , 0x9B40BD8D250740A88D8ECCFE0D446133 , 0x9B4989E96BB849EB9DA9752445D5E029 , 0x9B766ABBA31BBB291AEEF2186245F5AF , 0x9BD81A29A1994ABA8AA87FADE950BC4A , 0x9BE6B69B7CCF47B49B669ADD3EC05941 , 0x9BFCC8E8168CC98842C22F6555563E58 , 0x9C5BFD901E4F4FA5AECF4A8846A51540 , 0x9CDC0BD12A92476886BAD3C118E441DD , 0x9D5A8D97C28F6DBBC93AC5421E640B34 , 0x9D8F8D02C648A10823E435E6C3326BB8 , 0x9E445AB3D2B457F5BA47A36C01E3D34B , 0x9E62C261DA6740F2AA4692D89C685606 , 0x9E643BC6227042B000BE1FD50642A3A6 , 0x9EE3CD2E5B675F8CAA5560163417CBFA , 0x9EEE4A0391F14D6088C0E1B4BF9B8818 , 0x9EEEBF3DD4977967765F59BCB0E0953D , 0x9F12AD4FFCCE6B44B9A1AD1E0BE644AA , 0x9F3D548750E3697D7C9FB338A17F3A78 , 0x9F4661285106B371FCBBD61B4AC3C603 , 0x9F7A49264ACB473694C48E98F1EA4FE4 , 0x9F83D1339B7962256B37E6F27A45ED95 , 0x9F840C85C67615D3215590C8F36E9EA3 , 0x9FC4863139C749A9968D9F473D1723BA , 0x9FC530E17465422B8E884E2B161BE437 , 0xA00D7E8DA41840388AFBB12D366CDD22 , 0xA0108FFB3C9EADE8E6D3EDCC8497168C , 0xA0408C8657F02EDF44B057FA30205416 , 0xA048311BB19995F5D1F59F997786D5A2 , 0xA0919BB9DBF4477F83A42F1730AAD238 , 0xA0DE46F8B047EBA7AFF46DFB3862F102 , 0xA1231159AF9B39F02A2C8C33C3282B6D , 0xA15AB1F443EE49928BDAA0FF000E67F0 , 0xA160C1F5AE5E48681C2847A69D596676 , 0xA1886559FD5E458087147B827FC47892 , 0xA1B540F4FA1672F09563EE6D61B4122C );
Copy
48
2.53 ms
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = ? ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = ? ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"/»_ââšMpªXTÎ|ãâ\v "
b"¡¸mL©FAP‰É«õÛ[\x04 "
b"¢TLßô0\f\x18 ËÂvø\x00 å•w "
b"¢l\x05 ”ÜBMÎ¥Á¿dÒ“‹$ "
b"¢„è¯<í¥®ÃED¹žrwâ "
b"¢Ÿ{3`ÊIä»\x1E ‡®e¾£ÿ "
b"¢Ç\x05 á/z©9\x1F —\t #‡¹£° "
b"¢ñš(õ4¾ì*‘¾BÏÛ' "
b"£$\x03 µ\x04 ¤hì\x08\x11 Lîu¢Ðý "
b"£D|OŽ£H,?\e -•-\f y "
b"£sqº«[G‘ûi\x0E râÈèm "
b"£¶9]I\x14 B?‡þ–õYBao "
b"£¶ëb?¶çwÉ\x03\v X÷ÿB\x18 "
b"£á¤+\x14\x1A ;°’'öŠ\x11 ÊÉt "
b"¤,²nO¡~%æ@Š\x01 í\x0F Þw "
b"¤U*‰\t ¹ã\x00 Í0R-ýv‹ "
b"¤Uªã@Ú-\x16 –<\x1C c*$e@ "
b"¤pMã3…ax^¬\x07 ^7ž "
b"¤º½$›Fƪ¦<}hàùä "
b"¤Ý4ÐÆ•Hƒ‰ï«cTÄ!ö "
b"¤ä;]¯¯Ãë]/ =¥ÔÄ "
b"¥\Šœ\x1A âÙ_=ƒ$aL\x0F "
b"¥‹wLcxÂŽ\x08\x12 ¥‹=p\x11\x0F "
b"¥ø|™"¨DšŽ\x1D nÝ87\x11\x08 "
b"¦\x10 µéÚŠKŸdJPßÔC@- "
b"¦+Ã\x7F uM‹º½\x14 ÄçãÚ "
b"¦=-d0\x17 @\x00 ±\n U5Û\x04 »b "
b"¦fk2Ñd¢½\x13 UGýÚ.z "
b"¦Ò8Gj…M=™¼âª½ÊÄq "
b"¦åÁäÎFkÞWç´•Z|é_ "
b"§gõ†÷D·%=\x17 G>¸+Çb "
b"§€&\x7F Á(A¦½?\x00 Y ²cN "
b"§†ðt\x1A "ûS>ë*V0\x18\v ³ "
b"§ˆ™Kx\x06 6“Ž@ßÚ“\x7F •I "
b"§úx9¦EKQ“Wò\x16 ý\x00 ŒW "
b"¨\x13 ÈwòREa€\x13 # \x07\x14 é¼ "
b"¨B3Ç?GLBŒ^Ë@é·\x16 º "
b"¨tÅ’\x01 d•ƒÅ\x17\x11 ýÁB\x04 Å "
b"¨um¶YAýÒ\x05 yéF=‹ "
b"¨wæáß‚ÑBEƒ4Ÿ¸Mû… "
b"¨è"ÅO)IÓ \x17 ÏíG™¢Ë "
b"©\x05 ®õ™êÉ\x1F °Yý措³\x10 "
b"©,’\x06 1I-©J–¡@é¶\x13 "
b"©S\x11 „ÆCK¥ Û‰)žL» "
b"©x¬§éAþø0†Å,±à\x08 é "
b"©Â\x15 y\x01 ™E⺽]×D€\x08 6 "
b"©Â[ËÙ·1 >ÀÂR\x03 ¢*‡ "
b"©Ï®2\x1A\x03 Fuœ¢Ñ¨d[Âm "
b"©äß3’ÃÐ\x07 ö\x14 ˜û(À'Å "
b"©ìíÓéÚ2Ôê\x1D 6CXy‚é "
b"ª\x02 @ç'PDâ˜EÚ€Ä‡Ò "
b"ª_m‡VÝŽË\x1A ém5\e\x1D "
b"ªŸ‰\r MÞJ«’\f\x14 iœœ\x1D "
b"ª¢QÓ ÊãuØÁ„‚&â¡ "
b"«\x16 ñOSðK8‡\ÅÇNâ\x11 "
b"""
«&Ñ\x14\x0E \r L\x02 ƒ\x1D kâð\n
Ù
"""
b"«›Tˆu„ä»/6\x12 i2†?† "
b"""
«Õw›‹¬.ø?U\n
k çìÍ
"""
b"¬ˆ/åÓºRYÈfÙiõ¿ "
b"¬µ ÓD0MÀ¥)µ˜ù7"å "
b"¬Èo¸ÃEE’\x02 qvUdnÖ "
b"¬ñ¼\x0E Ö\x03 D\x02 “Þ®±s‰Žq "
b"¬øæù*úB:‚‹t¼\x14 Vœç "
b"\f 2TŒšÂ:b³(Á_Þ#Í "
b"u9ñ:J-€\x0E î)ô-‹Ž "
b"ŠàÞ‚/\x00 ¶™æfËpõhz "
b"É¥:±—*hiˆ{X\x16 9‘• "
b"""
úë\x1D IðK\x7F ªÈ\x04 5j>\n
®
"""
b"®\x18\e ^MÐyýÎË€gnp\x13 é "
b"®;\x01 ÒŒŸŽ×…‡\x17 R¯Šcƒ "
b"®CÌ3º—El˜\x1E !3KþÖÎ "
b"®YàÁ|2ëç¬HÒ\t Òv¶û "
b"®‚ZTÆIŽZ§ßT…!¢B¢ "
b"®¡wp®Àñ“7‘æ\x15 —6ç, "
b"""
®¨[\f ²×nؼŠ6ÿ;Ö\n
½
"""
b"®¾×9,J+:q\x01\x19 ÊÄ\x18 Tí "
b"®ÕÅg\x10 ÜM\x15 ‚]£$¹%ø~ "
b"¯P¹pzÒ@Ö®óçe×7\x1E * "
b"¯z•¥œ\x08 \r ‹’ùñŽ\r ÆP "
b"¯\x1A /ï‚Fô¯’\f ϰy "
b"¯¾Ã¯ùˆ.x\e 3{ëž\x18 ¾¢ "
b"""
°Wý6‡ŽEs–ÿ¯äþ\v \n
¢
"""
b"°[}^¾K)T\x03 1\x03\x08 w•¯‰ "
b"±N\x1A N85¡¤\e ävÓC ‹æ "
b"±ðDïñÒ³/LÊ\x19 ±Ku‹Ì "
b"²?”€%TI¥¿¹?=L‰¡ø "
b"²Xª\v s6ÊÕrî\x19 O†\t I "
b"²‚´óóñEi”×Y¶ôÁm) "
b"²—N,ý&Kͨ…<ësv¸1 "
b"³'\x05 •C1K,st\x02 ù²”{ "
b"³zÄŸîaM…¿ÁJ/P^\t † "
b"´\x11\x03 M\x04 Ô©B˜Sbm"Gs4 "
b"""
´\x16\x07 ’QÞ±r\x1F @¡á\n
„Žè
"""
b"´\x1E Ä\v ,\x1D ©^\x0E\x12 þ‹P\v a "
b"´v®z³[F\x13 †²óøkyŒÉ "
b"´7ÄósMá…pt1’“¬y "
b"´Â„p†FD5¯hÎÂWn*D "
b"µ\x1F çÜÅ‚M1‚\x0F Zú½"ÕÊ "
b"µ]„ZAd¨¼¤ˆRªŠö "
b"µí«A2³’{Ä\x17 ˜ÿª "
b"µÉi\r @ä\x07\x7F £ï†xrTÈ\e "
b"µæ´ÝY9m޽›·7>\x08 # "
b"""
¶\x07 ë\n
æâ8Z.y\x11 ùÇÕv[
"""
b"¶’€Ø«AK±1éÒ]S&w "
b"·\x12 .³£7Êb\x11 ¬¥W¨Ûr/ "
b"·$Ä~ýè@O•CŽF1É\x7F z "
b"·J\x1A *Xm\f DÃn\x19 GÈH+\x03 "
b"·NOŒyï=å\x16 èCèƒ\x12 0ó "
b"·Z÷ÉX*MމÆÀ\x10 $`€ "
b"·Ç”z‚MK–ÃÇnjv "
b"·£Ý|ö9BX üînèùð< "
b"·ÇÙv¡ÚFdÅÆ‡º´ö\e "
b"¸öªRhH\x08 ¨xÀ†45‹ "
b"¹to\x10 #ÜB6Ÿ»%F¨Ë\x1D J "
b"¹\x7F +=8d†³à9¼:ó,* "
b"¹Žn\x03\f YNb¼·¿ã\x16 õÄ$ "
b"¹•”Q\x00 “H4„Jq\x03 Ü\f £€ "
b"¹å•/@ÚŽ`\x1C ‡hwü!\x13 ÿ "
b"¹æ×Ûç®BË¡x¥Îö'rD "
b"º0‘”\x03\v Bƒ¨XÅÞÈÞ\x7F N "
b"º7Ù_\x03\x15 è„dr'–þÈâ "
b"ºL\x13\x11 XðM[œŽ†ÀÆÃNž "
b"ºí@PÓ¶D2±¶ð¼Ô\x0F Å\x07 "
b"ºð\x00 ÿ:“KÑ‘g·wàì3Y "
b"ºþE!èg‡{q…I†(Dð— "
b"»\t €¥\x7F\x08 âËQÞÈฒ© "
b"""
»\x1D \f î\n
L÷«\f ”\x0E 0ã\x1C 2
"""
b"»Ž@¯ì…@x«§ÓïËg:Å "
b"»ŽYèäG\x1C ’™)\x10 £nÆl "
b"»ÉHAæÞ\x18 Ý\x07\x04 \r Âñ\x11 "
b"»ä\x13 \„\x07 DN•ÌÌ?‡šE "
b"¼\n ÷“»\x00 HâÓ\x00 V˜!óZ "
b"¼\x14 á§—þó’ŠøyPá÷\t C "
b"¼»ýè™ZE"¸bÓÕY>Œ× "
b"¼Ù 4!…CO„î¹0詯9 "
b"¼ï¨Â„êI§´OÊ,å\x17 Ý "
b"¼ûÌ(5.AJë\x1E øþ}¦×— "
b"¾\x1E ÂÖ‚/G…v±cVùJ\x0F o "
b"¾'øLP\x04 m8Ã\x00 æêýGÔ\ "
b"¾G\x1E Ž\x1F èG¿¢ëœK\x03\x0E Ó© "
b"¾h£•\x12 Ç#(–0L\x0E\x00 78 "
b"¾}÷>m‘\x1E Ø’_ŠÒ\t W¹Ì "
b"¾¢÷ß\x0F ÙläÜÈÛÏ[` "
b"¾©ð\x1F\x19 %Eÿ»D\v áy¢Ûm "
b"¾¿\r žH«Me‚9,š¯ö0S "
b"¾Ý‡\x1D ¨‰I„®È£\x07\x7F ý]\x03 "
b"¿n¾l¨\e DIž]§|iì\x04 X "
b"¿»\x06 br©Eïf#\v Äßô¿ "
b"¿¿\e Já7S\MõK[únˆø "
b"À=1/C|\x19 ¥\x02 ó´[\x0E ,}C "
b"ÀEšÊm©=Ào\x1A >\x04 t\x06 Œ[ "
b"À¼=RãåD©ÙšÕ<ó "
b"ÀÌ‹šhum%ÛÈ\x7F W`‘o@ "
b"ÀÌ´¢*ŠÌÖÈ\x0E Û\x16 Ø…Ê( "
b"Àç\X™¬\v ‹éø\x07 W>HUì "
b"ÁJ@ÊT¤CΈ\x07 €—Hz\Ï "
b"ÁTQ&ºb×>*ã\x04 Œt蘊 "
b"Áx\x08 L\v ¦K‡¼N\x06 ¼žºÞ© "
b"ÁÂì1šW\x19 ™w\x02 °Wà\x11 Ö\x02 "
b"Â<f\x03 È£FN¬Íßqaå\x19 ó "
b"†üEÿMÚJš†éyú¯“ß "
b"•¾•úîMY©§Ÿy\eVº "
b"Ãe•4—•Mô»ðv\x0E xöç’ "
b"""
õŸ\x06\e ÊDj”\n
ÛÎ9NÜ£
"""
b"ø9Ÿ¾\x16 K—’µ¬ö[È’U "
b"øR\x18 ö\x10 K\x07 ¤\x0E\x0E ³©É]¯ "
b"ÿ-zœo‚ãÔÐæ7`"( "
b"Ä\x14 Ie²\x19\f 0®Û@*u)ë" "
b"Ä"®“ØQLY6¬™^\x06 µì5 "
b"Är¤ôj& …y`öÖðI¡ "
b"ÄŽ\x02 cî+MW¹ØwÕ\x0F\f ç. "
b"Ä™÷\v ÕW Hí£E¡:«9\x00 "
b"ÄÂiÂ\x10 ŽEy½Ü›c‚‚8Ë "
b"Ä×8§¼\x11\x02 ß\x11 â\f\x05 –½Ý "
b"Å\v ”’¥S~\x13\x00 Źû)1w "
b"Å\x1F ñS\x04\e {ÛI†–´x˜jx "
b"ÅŸ\x19 Ñy`®“DC9à£q½n "
b"Æ\x07 ˜;µö\x15 ºÉVتb‹ "
b"ÆFÿÜ„W÷ƒŠ˜Iõhé\x15 ñ "
b"ÆÖƒ¢\x1E GNã«Ì\x05 ã“\x15 T& "
b"Ç\x0E\x7F\x00 èçKv—(\r ô\x17 @Ÿ\x10 "
b"Çã$mkœFà¼\t ðÑÍИô "
b"ÇåÌ€·KÑ›e\x13 óFð}\x10 "
b"È\x10 R“±úJ4²{‡‚†\t ׿ "
b"È\x16 I@ Å{\x19 ¢´¥@6žæA "
b"È2 æg6¿I\x04\v Ô…\x1D ã¡ "
b"ÈQ@ßuC\x01 DLÿê\x15\x0E µ\e 6 "
b"ÈæðQáãø‹¸øÞ«8Ö« "
b"Ȳb'ÓM\x1D ›2\x12 ]¨B1 "
b"""
É3ÛÍ\x16 0\x1A \n
ž\x07 Éb‹\e
"""
b"É5¹MWÅVh“¦ë(CwEH "
b"ÉVösÔ[@\x15 µê;ÙZ1‚ "
b"ɺý\x0E ¾Öþœ5$“ÑåŒT„ "
b"ɼp†§a`,\x1E å\r =ò]\r Á "
b"ÉÍ.)ÏÝP}ùÄPdIb‘Ç "
b"Éè´¼¼†kÌϸž,ÏÓe¶ "
b"Éë\x08 ði.Nü“uU½\x12 ¾\x05 "
b"Ê$³n«—S—‚v=`Îòí$ "
b"Êh«ôÓQüÙµ!"g¬\x01 RŠ "
b"Êv»>¿ÝAç—\x07 D\x7F A•ìb "
b"Ê{\f FîyE¶¬qìP\x00 ˜Ð· "
b"ÊÆL°ÁаÇuCì²\x10 ×\x15 ñ "
b"""
ÊèYߤ\x1C ’\x14 %oˆ\x17 Ú\n
NŸ
"""
b"Ê÷®4t\x1D ‰ëNn2þÅÕh1 "
b"Ë@¦Û¼þéÙòÁ\v è\x07\x12 âô "
b"ËŽqK\x02 ˜ÖfÐêÒ0ú¨nÞ "
b"Ëâi¾í\Mʪg“¨a\x04 …> "
b"Ëéðî\x1A @\x00 ÁÈü=„˜ÿÓW "
b"ÌP$\v HbIo ÇÒa§ƒQ‡ "
b"Ìm«`i’e\x11 ùÕ]ÆgÆ\v\x1A "
b"̰꤅¼3¡‚z7J/\x04 ¥ "
b"Í\x0F\x14 ‘y\x14 @N„Ê/ÇÙuÁ„ "
b"Í_\x07 ‚Qf›P^³¢%"Åщ "
b"ÍŽa\x0E\x08 *\e /@ãvÔÒ\x02 Û€ "
b"ÍÙG^N\x1F EzˆÕ\x06 ëàå›k "
b"Î9dö¨¨ŽUP+,´š{6 "
b"ÎYSõŠÏµúÀâ,d‡€ "
b"Îf\x10 Š\x07 ÿÐש5‹ÇzŽ÷ "
b"ε\e ±‚£A/âêWâ(Ô\x08 "
b"Îÿz¼\x01 +=v\x07\x06 Ó0/\x1C D3 "
b"Ï\x05 üùC£…(ѦÕÍoLÆ "
b"Ï~§)ÔŸKàª%ãÄØßŒ\x1A "
b"Ï„»ë°FfŸz,Î\x02\x07 n¡* "
b"Ð5jŒWSá-}áiCŸy€Y "
b"ÐCžT›1׊ÆÐÉöÜ\x1C\x1C "
b"Ða\x00 —ˆºO\f ²\f\x7F\x16 |3aï "
b"Ѐ*½GÐ@ù©ô\x05 ®[8ÍÁ "
b"ÐÐD\’\x18 g¯Ä9PGœ\x10 ÿ“ "
b"Ñ/`\x02 ðxH\‰<\x16 3P¬µ "
b"Ñ宋™Eìh³\x12 º\x0E Y= "
b"Ò\v . \Œ™ó\x11 O\x07 "’.Ý\x0E "
b"Ò\x1C Cñ0¡N\x1C “ü!V\x0E\x7F 5‰ "
b"Òfùvµ\x11 ɤñuã™Æ‰Ç "
b"ÒgäY)¦K9²‘Ä]ù\x06\v › "
b"ÒƒCh\x00 C‚¬~âJ !^ "
b"Ò´\x1E „ǘ.¢èÔÞ¦æ•\x0F æ "
b"ÒâßEX_K„½’2]uãüË "
b"ÓV\x06\x14 UlNš¥óûdiÂòá "
b"Ó´|>S\x11 J矟×\x0E ÈFn+ "
b"Ó·¤¶ë\x05 Ö\e ¦Œ\x08 Þ¨AA– "
b"ÓùÞy\x1C ‰M\x01 ™r\x15 ™\x04 -ý0 "
b"Ô†h–"†J°Ã0¶±peÌ "
b"Ô‰æÖ”sÝè1 iÂ+²²í "
b"Ô¤vbW¯\x1D\x00 {W–¤¨Y`· "
b"Ô÷zil¶BÉ»ˆ|«ÉuóÕ "
b"Ôû ZTK<\x01 望aÒkÚ\x1C "
b"ÔüÿÙDUK”§ˆð|¿õæ "
b"Õ(!ÓhæDï†vgY~¡ß "
b"ÕM¶\x11 +µEçƒ\x1A ÃKý±R "
b"Õ\x05\x0E u\x15 HÓn‰>sVä*` "
b"Õ“5l»è§\x17 ²°`+‚¹–‡ "
b"Õ”RèÁRV¨\x12 ÝIÊ.¤Z† "
b"""
ÕåX¬ËñE÷W[\n
•iSe
"""
b"Öe\x18 ü9Ëh\x05 vÑ\x18 õ\f ðð "
b"֪̖“üE´«"ÁÒ\x0F 8\x10 « "
b"Ö½ûo\x1E ÜDºƒSÿk¸Å\x11 ² "
b"×ENT…™Fk˜ÜQÝJ¼ "
b"×G©šóo‡¢%d—:Æä>® "
b"×â-Ø7ÙG®“žZ\x0F cà† "
b"Ø›\x11 ¾š2 ÁF¿( ìl™~ "
b"ØÐU\x19 ˜(Cl¦\¢\x1E û™Ö+ "
b"""
ØäÔ#B™O²~æÍŠFK\n
0
"""
b"ÙUÏïTš\x10 …\x14 þÊ‚?¦j\x01 "
b"Ù¶ª:A\x15 F\x1C ¿\x11 ÖÅmö\f "
b"Ú\x7F ÒŽ\v bGǬq¯yÂ\x1E 3¼ "
b"Úèn—ó\x0F\e )¼)cë "
b"ÚÆß‚¼ŸN#Ÿ?{lîF`— "
b"Ûc=9³\x07 9ß"\f M,É#x\x11 "
b"""
ÛlexcUN˜¢vn\n
Ð>\x04 ´
"""
b"Û¢HØ+‘M-§\x1A cT¬ž|· "
b"ÛöžÉfFp°I\x06 2\x13 Rí "
b"Ûû-º%üAv·çm€îwLá "
b"Ü\x0E\t\x0F æ\x06 Õ'#XÚ‘àÛ\x1A T "
b"Ü*þ’\x13 ªNŠ·Ã.\t —\x04 øÖ "
b"ÜVƒ(\x11 bAj™M’\x1A €‡ÒV "
b"܇¤ÉHÑVÕÏø\x16 ·Ì\x17 }\v "
b"Ý\r x0\x19 5(\x15 A®ærõŒ\x03\t "
b"ݰóš†\r £÷\x1F ©!UBSgB "
b"Þ) ¸žfC\x16 ½¸T\x1D èò€ "
b"Þ`Z©uæŽëD6»\x0E ªÕPú "
b"ÞšÅë_à>T?MÍ;B>\x11 ˆ "
b"Þʦ¶¦\x14 QÂ-“e„éŽ= "
b"Þò\x17\x12\x01 ´C5¬\f tá}í„\x1A "
b"ÞôO‘ÅKDR†\x16 jó_\x11 3\r "
b"ß\x13\x02 à\x10 *|åF8UB²/@ "
b"ßa\x04 ˆ¡·qnà\x1C '¿ŒÉ\x11 ª "
b"ßo\x7F ƒpŒ@#¤òE2Ü™ªà "
b"ßpñÏóÔG8K\x16 wž#«\n "
b"ߊ03ö\v FŒ‹EjGì=Aß "
b"à\x18 röÛÄKx\x01 ö X\x1A r\x7F "
b"à<+S\x03 x–Ž&e—vÈ}ñ "
b"àV±\x02\x7F\x07 MN´†©†\x7F sE“ "
b"àª×\x07 Ø@ìrµI.\x10\x0E ^ "
b"àÛ¬: ÀL¦†tJOÐA\r Ä "
b"àãĶŸxDžšQ\x12 O\x11 ^Òâ "
b"àúÇÀª@‚žäý)Õ\e ¼Ð "
b"á\x12 O²‰pzZ\x08 o¿€\v _Ul "
b"á+•ëȸ@ÇúÃÙd\x12 ™Ï "
b"á`‰äp\r EÆš$„2\t ùE§ "
b"á{uø\x10 L\x16 €˜\x1A f«\x08 .Í "
b"""
á’\x06 mº•K\n
¬\x14 lžÆOEâ
"""
b"áù¿F›åˆ^B"ÏY©¯û "
b"âSùü‡\v Cò¬ÑŸÕ`/\x17 ñ "
b"âWŽ`b±ê”8\x1F ñ\x17 —û¿À "
b"âeDȹšM\x01 ™`ùÿ°ú} "
b"âsù‰·ôþ™C\x18 {—c\x07 |– "
b"âŽú{MDœ¯æÎ\jÉ\x00 ’ "
b"âÙS²µãN««\e ü²&Ä\e b "
b"âî#\x1A ÙÁ€NÏ:PŠ6‹ÓJ "
b"âÿí\x02 ¦ü×G\x0E 8\x08 µY\x06 ìU "
b"""
ã\n
Ë\x13 ©nO'¿s.\x01 ÃØŠ}
"""
b"ãr_<¹\x7F @˳ìvWá\x00 œ "
b"ãÍ*òY–D"–o§ÞÜ0Òþ "
b"ãí,j\x1F ŒS¶tì‚Ñ~lj- "
b"äX_:ƒGCF‚ëV1Wó\x18\x1C "
b"äŽh¤Z/NAŸuv~⤜\x01 "
b"äÖ¶ˆHY¨;=Tv7ìL\x11 I "
b"å®ó\‚»B+…5ó¸\x1F ‡) "
b"åÖ|•Ý7Ðÿë“á½ë”q÷ "
b"æA땉oMÆÉ¦u\x02 ôì® "
b"æw,v¿\x0E L\x00 ¥SÚ>Þ#½˜ "
b"æ\x7F\x19 ?ÑôFÃ ©\x16 ;†NU. "
b"æ¡*í>6DK‘ø]×\x08\f ŸÊ "
b"çNˆmªÊ"¸ÎR6ÉT~Š\x16 "
b"çX3 ¡PLr‡x\x7F Ž\x1C ˆYÎ "
b"çó¿„@*ÂúJzHh¾sá "
b"çÄÕaP$D2¢$sÖß|}Ñ "
b"çó·YÞÈ\x05 ÉßûZÀ:¥É¨ "
b"è\x18 j¨—AÅ„¼£\x12 §u\x10 =¨ "
b"è]\t Z\x00 c×KN\x0E ÷=£g|è "
b"èe\x18 +\x01 ¯JB°*&Þ¼9Œ "
b"è¶ÆÔ|\Gw¼Ò\x00 ^?‚8\x0F "
b"èÍl÷šgKȺ\x08 ’ª\x01 fÚ\e "
b"é>œ\x07 E/G «\t ê£Ô¡ˆ¨ "
b"é¶GÄ\x10 æ<÷%½ÍŸx[sJ "
b"é÷Æ\x01 z8¨\f »GQŒÌex¬ "
b"ë\t áF|\x1D ›0ß@D:~exA "
b"ëL8¿44Mô§Rq±\x1E qÎÒ "
b"ëYs—¾9Ny™ÿqÕã%ª\x12 "
b"ëÃÅ&±cFO£IgöHQ\x08 Ý "
b"ëôü\x05 *2@\x0E ©z\x03 _8\x19 ÚV "
b"ìðé±(<¾ð€ô\x0E\x18 +Èêú "
b"ìõ\v U\t '?ol”\x15 .lSž "
b"í\x15 Æ;\x13 ÄM¢‡\x10 »¼zµ\x13 z "
b"í*§±dODx‡‘\x1D +‹Ú[¾ "
b"í¬²Ã¬cœZ™l\x08\f V\x15 ƒ‹ "
b"íÛ¡ê\x7F ÐM¡»\f —\x1A {\x1A ]” "
b"î!9$ˆ9F\x03 ™»LѽF™R "
b"îP9\x05 1Z@«€fKýy_ÄŽ "
b"îîÆ¬Î,ïÂ[²UÖ"H "
b"""
ï\x05 «Q\x02 \n
Eˆ›\x1F ªVܨÍé
"""
b"ï\x16\x04 %{kD\e ’¿àù\x05 às^ "
b"ïv\x18 Y>ßÑwÕtb\x05\x01 ²Ïm "
b"ïÈc´™’\ß+5gê\x08 ¦|> "
b"ðuª¥ÈJNöŽiľ\r úoÛ "
b"ðš\x1C\x1C ¿PBêµBý¶5Ÿ– "
b"ð³“ð¾‰N‰¡hür(¤ôè "
b"ð·<ºyŸ\x1C "}Ñ’O|6h) "
b"ðÑŸ© •Dvœ\x0F \t ŽüyË "
b"ðéUc`—M?»¼êCÊ6Z\x1A "
b"ñB9j\x1E )Û ›:&h\x1D Ú" "
b"ñQ £\x11 íÛ¾F\x0F âg©á³3 "
b"ñRÜ8x\x1D C̉lÅ\x06 ûBôr "
b"ño\x04\x18 éŽ\x0F -‹Çz\x00 O|,¸ "
b"ñ«XRÖN«ºË³öœmÓM "
b"ñÎ\x08 ‹ð©ÙMûÓüoª\x0F\t s "
b"ñù›V&H\x15 ³©Å3á\x0E 3¼ "
b"ò\x12 BgH<F™·a\x1E ¿`ææ "
b"ò\x1C ŽIn\x0E *Â\x1A j«n\x19 ¹d§ "
b"òÇUâŸkL>°Æ¼ÃY¹{° "
b"òçÁgzŽrÿ\x07 ëQÔáW£ "
b"""
òêm\x1D\x1E WGâ¾Kyù\x14 \n
A
"""
b"ó\Ïô\x03 V\x11 ¾Æ(иýöÛL "
b"óŒo\x06 ~÷@Ê\v •yÊæ?' "
b"óü‚\x12 µµªï[ì\x16\x06 e˜\x19 í "
b"ô\x07 *€dªp\x14 Ê~cy¸Î#^ "
b"ôuã¼1‡vQ²Þ\x15 èÞš\x17 ¶ "
b"ôâÅxIZWZ–\x7F GêgüY "
b"õÚ6ÅÉcOíýÀF……Ææ "
b"õôs~—mH\x17 ¼\r ØJ¦„Z\x1E "
b"ö\x0F gXØÅNÛ\x08 R\x11 Æ(щþ "
b"ö:\x0F £Â3G”…D\x1E %qm| "
b"ö<þU€¥-V\x03 ÿ)ŽË5\x12 o "
b"ö‘o\x1D |>„²¤ö\x12 4•†\x7F Ù "
b"ö¥ûíC\x07 4\x0E C“© \t Gë% "
b"ö³dÂ\x03 êN8¹<ìÇ—}Ì; "
b"öä•\x15 êßMè„jdÔBÞ; "
b"""
öø0ÏQDoh†„Ö\x17 \n
ù/æ
"""
b"÷D$2Q»(]\x18 `&Ž\x1E ¯+ä "
b"÷\p·Ø©k,~\x13 ¨žQX2, "
b"÷œuKYJ¦ß \x0E x%Ô¨p™ "
b"÷£[\r\r û류´”ˆ\x1E ‚«ï "
b"÷èÐcLãÜy!\x1E L@I\x13 ø "
b"ø\x16 <\x12 8,˜Õ=à \x14 =´¿ú "
b"ø+\t ™_GU$±\x16 vdw\x1A è- "
b"ø0k3¹€ÆRµÔA„¶”Ê… "
b"øN\e ݵ\t Lq„wÝâЊ¼’ "
b"øb¥ã£Ð*Å\x1F FÙ)bTó± "
b"øó‘³å\x06 ì~!\v yWr\x10 (¢ "
b"ù\x0E }Ä\x10 óC¼™D+|)LÞ "
b"ù-ŽÙQÂ7…É~$dûíˆ "
b"""
ùFÏ©x\n
k–(?õk—’©Ä
"""
b"ùŒ\x00\e :,M¿‹'_›]¡²è "
b"ùÐ8[¥ÆDÔ¥¯k¹3ŸÝô "
b"ùë…¾5ÝK(¦ñ÷ýmDÞd "
b"ùó"\x05 €\r æ\x16 äì2¤\x1E\x07 é— "
b"ú\x01 u±ƒÑA”¡0£ÂÚ¶\v µ "
b"ú#\e +—-E~\x07 5zT¦\x03 * "
b"ú3ài\÷By\x01 f\x08 f\x0F Û "
b"ú<\f 9ÚŽ*8\x1F ÒDD{»¼2 "
b"úLjk4Bø—ÂŽL\x10 Ãkêc "
b"ú}«d™Î[Ä*½Íùý.~ "
b"ú…K¤\x01 @@ª"ÞàûC> "
b"ú‹c<è¾BÖªÇO…Ô{Å "
b"ú¢\x03 ¼ÃpK`’ìh„4Ï^ˆ "
b"ú¸ïÒƒàDû®om\x0F îZKð "
b"""
úÇAÍK¯êÄ\n
@\x1D ‰ä£‰õ
"""
b"úé=Y¦½MfµœÑy$§çÛ "
b"û\x13 Ù\x18 âlEvµGD±¯ÇÝf "
b"û\x15 é\x12 ÃS>|\x06 yÔ‹\x7F dœ "
b"ûvA\x12 óÈ?pÁ°\x07 QgC.^ "
b"û›\x08 E²Cœp°“:¾\x7F <|© "
b"ûÁ\x01 5¡9Lø¬ÅÄ~º„)Š "
b"ûÇ¡‡è(E¯Ü»¾¯w”\t "
b"ûÞ½så„¥¸†i0wn²í "
b"ü\x1A 8DÂÖÃÀ\x1E\x03 ‹:^µã? "
b"""
üD\x08 û¤Á˜M\n
1«±0Û ö
"""
b"üH\x10 Ý\x06 MFËä\x1A ®ÃX¶\e "
b"ü]ûÓšÏÓ}μ\x1D Rb–£W "
b"ý8'’ÏŸø\x08\x12 ¥ª~`v\x1A Ð "
b"ýL›"(ˆÊ€¶N‹\x15 0ßs< "
b"ý}òä—×ELº´C¤íë¶" "
b"ý‰‰Ø·²Eõ§ÄÀ‰óáÅ "
b"""
ý—)…u«uÉJ\x14 x'\x7F \n
aÂ
"""
b"ýø<2Ü)@ÓŠ(E\r ÃW|› "
b"ÿ\x00 ‹Šú\f U*h\x01 &—òØ\x14 ¬ "
b"ÿ\x18\x7F IΦzô–ªcuÖŒ.& "
b"ÿ]p\x11 'íN2³ÌY¶J2ˤ "
b"ÿ \e ±¼ÊF…TŒ™‚^æ\x15 ç "
b"ÿ¬†lRý”e(\x1C pvõþöÄ "
b"ÿÏ\r ³&¬E6šj×âô·Ði "
b"ÿרf[ˆž'(_‚ÙÎý¾û "
b"ÿßÓœ«°Kc¨\x01 Ãq¯^£é "
b"ÿê;<'àG—‘¯…ò§\x19\x13 ¹ "
b"ÿý\x06 [€zD\x0F ¹\x7F ;\x07 ”\x00 ?å "
]
SELECT
`property_group_option` . `id` as `property_group_option.id` ,
`property_group_option` . `property_group_id` as `property_group_option.groupId` ,
`property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` ,
`property_group_option` . `media_id` as `property_group_option.mediaId` ,
`property_group_option` . `created_at` as `property_group_option.createdAt` ,
`property_group_option` . `updated_at` as `property_group_option.updatedAt` ,
`property_group_option.media` . `id` as `property_group_option.media.id` ,
`property_group_option.media` . `user_id` as `property_group_option.media.userId` ,
`property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` ,
`property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` ,
`property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` ,
`property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` ,
`property_group_option.media` . `file_name` as `property_group_option.media.fileName` ,
`property_group_option.media` . `file_size` as `property_group_option.media.fileSize` ,
`property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` ,
`property_group_option.media` . `meta_data` as `property_group_option.media.metaData` ,
`property_group_option.media` . `config` as `property_group_option.media.config` ,
`property_group_option.media` . `path` as `property_group_option.media.path` ,
`property_group_option.media` . `private` as `property_group_option.media.private` ,
`property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` ,
`property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` ,
`property_group_option.media` . `created_at` as `property_group_option.media.createdAt` ,
`property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` ,
`property_group_option.media.translation.title` ,
`property_group_option.media.translation.title` as `property_group_option.media.title` ,
`property_group_option.media.translation.alt` ,
`property_group_option.media.translation.alt` as `property_group_option.media.alt` ,
`property_group_option.media.translation.customFields` ,
`property_group_option.media.translation.customFields` as `property_group_option.media.customFields` ,
`property_group_option.translation.name` ,
`property_group_option.translation.name` as `property_group_option.name` ,
`property_group_option.translation.position` ,
`property_group_option.translation.position` as `property_group_option.position` ,
`property_group_option.translation.customFields` ,
`property_group_option.translation.customFields` as `property_group_option.customFields`
FROM
`property_group_option`
LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id`
LEFT JOIN (
SELECT
`property_group_option.translation` . `property_group_option_id` ,
`property_group_option.translation` . `name` as `property_group_option.translation.name` ,
`property_group_option.translation` . `position` as `property_group_option.translation.position` ,
`property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields`
FROM
`property_group_option_translation` `property_group_option.translation`
WHERE
`property_group_option.translation` . `language_id` = ?
) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id`
LEFT JOIN (
SELECT
`property_group_option.media.translation` . `media_id` ,
`property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` ,
`property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` ,
`property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields`
FROM
`media_translation` `property_group_option.media.translation`
WHERE
`property_group_option.media.translation` . `language_id` = ?
) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id`
WHERE
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
Copy
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (0xA1B86D4CA946415089C9ABF5DB5B8F04 , 0xA2544CDFF4300C18CBC276F800E59577 , 0xA26C0594DC424DCEA5C1BF64D2938B24 , 0xA284E8AF3CEDA5AEC34544B99E7277E2 , 0xA29F7B3360CA49E4BB1E87AE65BEA3FF , 0xA2C705E12F7AA9391F97092387B9A3B0 , 0xA2F19A28F534BEEC812A91BE42CFDB27 , 0xA32403B504A468EC08114CEE75A2D0FD , 0xA3447C4F8DA3482C9F3F1B2D952D0C79 , 0xA37371BAAB5B4791FB690E72E2C8E86D , 0xA3B6395D4914423F87FE96F55942616F , 0xA3B6EB623FB6E777C9030B58F7FF4218 , 0xA3E1A42B141A3BB09227F68A11CAC974 , 0xA42CB26E4FA17E25E6408A01ED0FDE77 , 0xA4552A8909B9E30090CD30522DFD768B , 0xA455AAE340DA2D16963C1C632A246540 , 0xA49D704DE3338561785EAC075E378F9E , 0xA49DBABD249B46C6AAA63C7D68E0F9E4 , 0xA4DD34D0C695488389EFAB6354C421F6 , 0xA4E43B5DAFAFC3EB5DAD2FA03DA5D4C4 , 0xA55C8A819C1AE2D95F9D3D8324614C0F , 0xA58B774C6378C28D0812A58B3D70110F , 0xA5F87C9922A8449A8E1D6EDD38371108 , 0xA610B5E9DA8A4B9F644A50DFD443402D , 0xA62BC3837F754D8BBABDAD14C4E7E3DA , 0xA63D2D6430174000B10A5535DB04BB62 , 0xA6666B32D164A2BD13815547FDDA2E7A , 0xA6D238476A854D3D99BCE2AABDCAC471 , 0xA6E5C1E4CE466BDE57E7B4955A7CE95F , 0xA767F586F744B7253D17473EB82BC762 , 0xA780267FC12841A6BD3F005920B2634E , 0xA786F0741A22FB533EEB2A5630180BB3 , 0xA788994B780636938E40DFDA937F9549 , 0xA7FA7839A6454B519357F216FD008C57 , 0xA813C877F2524561801323A00714E9BC , 0xA84233C73F474C428C5ECB40E9B716BA , 0xA874C59201649583C51711FDC14204C5 , 0xA8756DB6815941FD81D20579E9463D8B , 0xA877E6E1DF82D1424583349FB84DFB85 , 0xA8E822C54F2949D3A017CFED4799A2CB , 0xA905AEF599EAC91FB059FDE68EAAB310 , 0xA92C920631492DA94A96A18140E9B613 , 0xA953119084C6434BA520DB89299E4CBB , 0xA978ACA7E941FEF83086C52CB1E008E9 , 0xA9C21579019945E2BABD5DD744800836 , 0xA9C25BCBD9B731203EC0C25203A22A87 , 0xA9CFAE321A0346759CA2D1A8645BC26D , 0xA9E4DF3392C3D007F61498FB28C027C5 , 0xA9ECEDD3E9DA32D4EA1D3643587982E9 , 0xAA0240E7275044E29845DA80C4AD87D2 , 0xAA9F5F6D8756DD8DCB1AE96D9D351B1D , 0xAA9F890D4DDE4AAB920C1469C29C9C1D , 0xAAA251D3A0CAE375D8C184C28226E2A1 , 0xAB16F14F53F04B38875CC5C74EC3A211 , 0xAB26D1140E0D4C02831D6BE2ADF00AD9 , 0xAB9B54887584E4BB2F36126932863F86 , 0xABD5779B8BAC2EF83F550A6B20E7ECCD , 0xAC882FE5D3BA9F5259C86681D969F5BF , 0xACB520D344304DC0A529B598F93722E5 , 0xACC86FB8C3454592AD02717655646ED6 , 0xACF1BC0ED603440293DEAEB173898E71 , 0xACF8E6F92AFA423A828B74BC14569CE7 , 0xAD0C32548C9AC23A62B328C15FDE23CD , 0xAD75398FF13A4A2D800EEE29F42D8B8D , 0xAD8AE0DE822F00B699E666CB70F5687A , 0xADC9A53AB1972A6869887B5816399195 , 0xADFAEB1D49F04B7FAAC804356A3E0AAE , 0xAE181B5E4DD079FDCECB80676E7013E9 , 0xAE3B01D28C9F8ED785871752AF8A6383 , 0xAE43CC33BA97456C981E21334BFED6CE , 0xAE59E0C17C32EBE7AC48D209D276B6FB , 0xAE825A54C6498D5AA7DF548521A242A2 , 0xAEA17770AEC0F1933791E6159736E72C , 0xAEA85B0CB2D76ED8BC8A36FF3BD60ABD , 0xAEBED7392C4A2B3A710119CAC41854ED , 0xAED5C56710DC4D15825DA324B925F87E , 0xAF50B9707AD240D6AEF3E765D7371E2A , 0xAF7A95A59C089F0D8B92F9F18D0DC650 , 0xAFAD1A2FEF8246F49DAF929F0CCFB079 , 0xAFBEC3AFF9882E781B337BEB9E18BEA2 , 0xB057FD36878E457396FFAFE4FE0B0AA2 , 0xB05B7D5EBE4B2954033103087795AF89 , 0xB14E1A4E3835A1A41BE476D343A08BE6 , 0xB1F044EFF1D2B32F4CCA19B14B758BCC , 0xB23F9480255449A5BFB93F3D4C89A1F8 , 0xB258AA0B7336CAD572EE199D4F860949 , 0xB282B4F3F3F1456994D759B6F4C16D29 , 0xB2974E2CFD264BCDA8853CEB7376B831 , 0xB327059543314B2C81737402F9B2947B , 0xB37AC49FEE614D85BFC14A2F505E0986 , 0xB411034D04D4A9429853626D22477334 , 0xB416079251DEB1721F40A1E10A848EE8 , 0xB41EC40B2C1DA98F5E0E12FE8B500B61 , 0xB476AE7AB35B461386B2F3F86B798CC9 , 0xB49037C4F3734DE1857074319293AC79 , 0xB4C2847086464435AF68CEC2576E2A44 , 0xB51FE7DCC5824D31820F5AFABD22D5CA , 0xB55D845A9D8F4164A8BCA48852AA8AF6 , 0xB58F9DEDADAB4132B3927BC41798FFAA , 0xB5C9690D40E4077FA3EF86787254C81B , 0xB5E6B4DD59396D8DBD9BB7373E08239D , 0xB607EB0AE6E2385A2E7911F9C7D5765B , 0xB69280ADD8AB414BB131E9D25D532677 , 0xB7122EB3A337CA6211ACA557A8DB722F , 0xB724C47EFDE8404F95438D4631C97F7A , 0xB74A1A2A586D0C44C36E1947C8482B03 , 0xB74E4F8C79EF3DE516E843E8831230F3 , 0xB75AF7C9582A4D8E89C6C01020246080 , 0xB79DC7947A824D4B9690C3C76E6A9F76 , 0xB7A3DD7CF6394258A0FCEE6EE8F9F03C , 0xB7C7D976A1DA46648FC5C687BAB4F61B , 0xB8F6AA9D52684808A878C0818634358B , 0xB9746F1023DC42369FBB2546A8CB1D4A , 0xB97F2B3D386486B3E039BC3AF32C812A , 0xB98E6E030C594E62BCB7BFE316F5C424 , 0xB995945100934834844A7103DC0CA380 , 0xB9E5952F40DA8D601C876877FC2113FF , 0xB9E6D7DBE7AE42CBA178A5CEF6277244 , 0xBA309194030B4283A858C5DEC8DE7F4E , 0xBA37D95F0315E88464722796FEADC8E2 , 0xBA4C131158F04D5B9C8E86C0C6C34E9E , 0xBAED4050D3B64432B1B6F0BCD40FC507 , 0xBAF000FF3A934BD19167B777E0EC3359 , 0xBAFE4521E867877B718549862844F097 , 0xBB0980A57F08E2CB5190DEC8E0B892A9 , 0xBB1DAD0CEE0A4CF7AB0C940E30E31C32 , 0xBB8D40AFEC854078ABA7D3EFCB673AC5 , 0xBB8E59ADE8E4471C92992910A36EC66C , 0xBBC94841E68FDE9D18DD07040DC2F111 , 0xBBE4135C8407444E95CCCCAD3F879A45 , 0xBC0AF793BB0048E290D300569821F35A , 0xBC14E1A797FEF3928AF87950E1F70943 , 0xBCBBFDE8995A4522B862D3D5593E8CD7 , 0xBCD9A0342185434F84EEB930E8A9AF39 , 0xBCEFA8C284EA49A7B44FCA2CE5AD17DD , 0xBCFBCC28352E414AEB1EF8FE7DA6D797 , 0xBE1EC2D6822F478576B16356F94A0F6F , 0xBE27F84C50046D38C300E6EAFD47D45C , 0xBE471E8E1FE847BFA2EB9C4B030ED3A9 , 0xBE68A39512C723289630814C0E003738 , 0xBE7DF73E6D911ED8925F8AD20957B9CC , 0xBE8FADA2F7DF0FD96CE4DCC8DBCF5B60 , 0xBEA9F01F192545FFBB440BE179A2DB6D , 0xBEBF0D9E48AB4D6582392C9AAFF63053 , 0xBEDD871DA8894984AEC8A3077FFD5D03 , 0xBF6EBE6CA81B44499E5DA77C69EC0458 , 0xBFBB066272A945EF8F66230BC4DFF4BF , 0xBFBF1B4AE137535C4DF54B5BFA6E88F8 , 0xC03D312F437C19A502F3B45B0E2C7D43 , 0xC0459ACA6DA93DC06F1A3E0474068C5B , 0xC0BC3D52E3E544ADA9D99AD53CF39F8F , 0xC0CC8B9A68756D25DBC87F5760916F40 , 0xC0CCB4A22A8ACCD6C80EDB16D885CA28 , 0xC0E75C5899AC0B8BE9F807573E4855EC , 0xC14A40CA54A443CE88078097487A5CCF , 0xC1545126BA62D73E2AE3048C74E8988A , 0xC178084C0BA64B87BC4E06BC9EBADEA9 , 0xC1C2EC319A5719997702B057E011D602 , 0xC23C6603C8A3464EACCDDF7161E519F3 , 0xC286FC45FF4DDA4A9A86E979FAAF93DF , 0xC295BE95FAEE4D59A9A79F795C6556BA , 0xC365953497954DF4BBF0760E78F6E792 , 0xC3B59F061BCA446A940ADBCE394EDCA3 , 0xC3B8399FBE164B9792B5ACF65BC89255 , 0xC3B85218F6104B07A40E0EB3A9C95DAF , 0xC3BF2D7A9C6F82E3D4D0E63760222881 , 0xC4144965B2190C30AEDB402A7529EB22 , 0xC422AE93D8514C5936AC995E06B5EC35 , 0xC472A4F46A2681A0857960F6D6F049A1 , 0xC48E0263EE2B4D57B9D877D50F0CE72E , 0xC499F70BD557A048EDA345A13AAB3900 , 0xC4C269C2108D4579BDDC9B63828238CB , 0xC4D738A7BC1102DF11E20C059681BDDD , 0xC50B9492A5537E1300C5B9FB29903177 , 0xC51FF153041B7BDB498696B478986A78 , 0xC59F19D17960AE93444339E0A371BD6E , 0xC607983BB5F6158FBAC98F56D8AA628B , 0xC646FFDC8457F7838A9849F568E915F1 , 0xC6D683A21E474EE3ABCC05E393155426 , 0xC70E7F00E8E74B7697280DF417409F10 , 0xC7E3246D6B9C46E0BC09F0D1CDD098F4 , 0xC7E59DCC80B74BD19B6513F346F07D10 , 0xC8105293B1FA4A34B27B87828609D7BF , 0xC816494020C57B19A2B4A540369EE641 , 0xC832A0E6679D36BF49040BD4851DE3A1 , 0xC85140DF754301444CFFEA150EB51B36 , 0xC8ADE6F051E1E3F88BB8F8DEAB38D6AB , 0xC8B26227D34D1D9D209B32125DA84231 , 0xC933DBCD16301A0AAD9E07C9628B1B90 , 0xC935B94D57C5566893A6EB2843774548 , 0xC956F673D45B40158FB5EA3BD95A3182 , 0xC9BAFD0EBED6FE9C352493D1E58C5484 , 0xC9BC7086A761602C1EE50D3DF25D0DC1 , 0xC9CD2E29CFDD507DF9C45064496291C7 , 0xC9E8B4BCBC866BCCCFB89E2CCFD365B6 , 0xC9EB08F0692E4EFC937555BD12BE059D , 0xCA24B36EAB97539782763D60CEF2ED24 , 0xCA68ABF4D351FCD9B5212267AC01528A , 0xCA76BB3EBFDD41E79707447F4195EC62 , 0xCA7B0C46EE7945B6AC71EC500098D0B7 , 0xCAC64CB0C18AB0C77543ECB210D715F1 , 0xCAE859DFA41C9214256F8817DA0A4E9F , 0xCAF7AE34741D89EB4E6E32FEC5D56831 , 0xCB40A6DBBCFEE9D9F2C10BE80712E2F4 , 0xCB8E714B0298D666D0EAD230FAA86EDE , 0xCBE269BEED5C4DCAAA6793A86104853E , 0xCBE9F0EE1A4000C1C8FC3D8498FFD357 , 0xCC50240B4862496FA0C7D261A7835187 , 0xCC6DAB6069926511F9D55DC667C60B1A , 0xCCB0EAA485C2BC33A1827A374A2F04A5 , 0xCD0F14917914404E84CA2FC7D975C184 , 0xCD5F078251669B505EB3A22522C5D189 , 0xCD8E610E082A1B2F40E376D4D202DB80 , 0xCDD9475E4E1F457A88D506EBE0E59B6B , 0xCE3964F6A8A88D55502B2CB49A7B3620 , 0xCE5953F58A90CFB5FAC0E22C64879D80 , 0xCE66108A07FFD0D7A9358B8FC77A8DF7 , 0xCEB51BB182A3412F90E2EA57E228D408 , 0xCEFF7ABC012B3D760706D3302F1C4433 , 0xCF05FCF943A38528D1A6D5CD6FAD4CC6 , 0xCF7EA729D49F4BE0AA25E3C4D8DF8C1A , 0xCF84BBEBB046669F7A2CCE02076EA12A , 0xD0356A8C5753E12D7DE169439F798059 , 0xD0439E549B31D7AD8AC6D0C9F6DC1C1C , 0xD061009788BA4F0CB20C7F167C3361EF , 0xD0802ABD47D040F9A9F405AE5B38CDC1 , 0xD0D0445C921867AFC43950479C10FF93 , 0xD12F6002F078485C899D3C163350ACB5 , 0xD1E5AE8B999D45C3AC68B312BA0E593D , 0xD20B2EA05C8C99F3114F0722922EDD0E , 0xD21C43F130A14E1C93FC21560E7F3589 , 0xD266F976B511C9A4F175E399C68189C7 , 0xD267E45929A64B39B291C45DF9060B9B , 0xD2839D436800438E82AC7EE24AA0215E , 0xD2B41E84C7982EA2E8D4DEA6E6950FE6 , 0xD2E2DF45585F4B84BD92325D75E3FCCB , 0xD3560614556C4E9AA5F3FB6469C2F2E1 , 0xD3B47C3E53114AE79F9FD70EC8466E2B , 0xD3B7A4B6EB05D61BA68C08DEA8414196 , 0xD3F9DE791C894D0199721599042DFD30 , 0xD486689622864A9DB0C330B6B17065CC , 0xD489E6D69473DDE831A069C22BB2B2ED , 0xD4A4766257AF1D007B5796A4A85960B7 , 0xD4F77A696CB642C9BB887CABC975F3D5 , 0xD4FBA05A544B3C01E69C9B61D26BDA1C , 0xD4FCFFD944554B9094A788F07CBFF5E6 , 0xD52821D368E644EF867667597EA1DF81 , 0xD54DB6112BB545E7831AC34B9DFDB152 , 0xD58F050E751548D36E893E7356E42A60 , 0xD593356CBBE8A717B2B0602B82B99687 , 0xD59452E8C15256A812DD49CA2EA45A86 , 0xD5E558ACCBF145F790575B0A95695365 , 0xD6659D18FC39CB680576D118F50CF0F0 , 0xD6AACC9693FC45B4AB22C1D20F3810AB , 0xD6BDFB6F1EDC44BA8353FF6BB8C511B2 , 0xD7454E548599466B989FDC9051DD4ABC , 0xD747A99AF36F87A22564973AC6E43EAE , 0xD7E22DD837D947AE93819E5A0F63E086 , 0xD89B11BE9A3220C146BF2820EC6C997E , 0xD8D055199828436CA65CA21EFB99D62B , 0xD8E4D42342994FB27EE6CD8A464B0A30 , 0xD955CFEF549A108514FECA823FA66A01 , 0xD9B6AA3A4115461CBF11D6C56DF68F0C , 0xDA7FD28E0B6247C7AC71AF79C21E33BC , 0xDA9DE86E978FADF30F1B2981BC2963EB , 0xDAC6DF82BC9F4E239F3F7B6CEE466097 , 0xDB633D39B30739DF220C4D2CC9237811 , 0xDB6C657863554E98A2766E0AD03E04B4 , 0xDBA248D82B914D2DA71A6354AC9E7CB7 , 0xDBF69EC966904670B0490632811352ED , 0xDBFB2DBA25FC4176B7E76D80EE774CE1 , 0xDC0E090FE606D5272358DA91E0DB1A54 , 0xDC2AFE9213AA4E8AB7C32E099704F8D6 , 0xDC5683281162416A994D921A8087D256 , 0xDC87A4C948D156D5CFF816B7CC177D0B , 0xDD0D78301935281541AEE672F58C0309 , 0xDDB0F39A860DA3F71FA9215542536742 , 0xDE29A0B89E664316BDB8549D1DE8F280 , 0xDE605AA975E68DEB4436BB0EAAD550FA , 0xDE9AC5EB5FE03E543F4DCD3B423E1188 , 0xDECAA6B6A61451C22D9365848EE98D3D , 0xDEF2171201B44335AC0C74E17DED841A , 0xDEF44F91C54B445286166AF35F11330D , 0xDF1302E0102A7CE546389D5542B22F40 , 0xDF610488A1B7716EE01C27BF8CC911AA , 0xDF6F7F83708C4023A4F24532DC99AAE0 , 0xDF70F1CFF3D48F47384B16779E23AB0A , 0xDF8A3033F60B468C8B456A47EC3D41DF , 0xE01872F6DBC44B788F01F620581A727F , 0xE03C2B530378968D2665909776C87DF1 , 0xE056B1027F074D4EB486A9867F734593 , 0xE0AA90D707D840EC9072B5492E100E5E , 0xE0DBAC3A20C04CA686744A4FD0410DC4 , 0xE0E3C4B69F78449E9A51124F115ED2E2 , 0xE0FAC7C0AA9D40829EE4FD29D51BBCD0 , 0xE1124FB289707A5A086FBF800B5F556C , 0xE12B95EB9DC8B840C7FAC3D9641299CF , 0xE16089E4700D45C69A24843209F945A7 , 0xE1817B75F8104C1680981A66AB082ECD , 0xE192066DBA954B0AAC146C9EC64F45E2 , 0xE1F9ADBF469BE5885E4222CF59A9AFFB , 0xE253F9FC870B43F2ACD19FD5602F17F1 , 0xE2578D6062B1EA94381FF11797FBBFC0 , 0xE26544C8B99A4D01909960F9FFB0FA7D , 0xE273F989B7F4FE9943187B9763077C96 , 0xE28D9DFA7B4D449CAFE6CE5C6AC90092 , 0xE2D953B2B5E34EABAB1BFCB226C41B62 , 0xE2EE231AD9C1804ECF3A508A368BD34A , 0xE2FFED02A6FCD7470E3808B55906EC55 , 0xE30ACB13A96E4F27BF732E01C3D88A7D , 0xE3725F3CB97F40CBB3EC7657ADE1009C , 0xE3CD2AF259964422966FA7DEDC30D2FE , 0xE3ED2C6A1F8C53B674EC82D17E6C6A2D , 0xE4585F3A8347434682EB563157F3181C , 0xE48E68A45A2F4E419F75767EE2A49C01 , 0xE4D6B6884859A83B3D547637EC4C1149 , 0xE5AEF35C82BB422B8535F3B81F8729AD , 0xE5D67C95DD37D0FFEB93E1BDEB9471F7 , 0xE641EB95896F4DC690C9A67502F4ECAE , 0xE6772C76BF0E4C00A553DA3EDE23BD98 , 0xE67F193FD1F446C3A0A9163B864E552E , 0xE6A12AED3E36444B91F85DD7080C9FCA , 0xE74E886DAACA22B8CE5236C9547E8A16 , 0xE75833A0A1504C7287787F8E1C8859CE , 0xE7C3B3BF84402AC2FA4A7A4868BE73E1 , 0xE7C4D56150244432A22473D6DF7C7DD1 , 0xE7F3B759DEC805C9DFFB5AC03AA5C9A8 , 0xE8186AA89741C584BCA312A775103DA8 , 0xE85D095A0063D74B4E0EF73DA3677CE8 , 0xE865182B01AF4A42B02A26DEBC398C9D , 0xE8B6C6D47C5C4777BCD2005E3F82380F , 0xE8CD6CF79A674BC8BA0892AA0166DA1B , 0xE93E9C07452F47A0AB09EAA3D4A188A8 , 0xE9B647C410E63CF725BDCD9F785B734A , 0xE9F7C6017A38A80CBB47518CCC6578AC , 0xEB09E1467C1D9B30DF40443A7E657841 , 0xEB4C38BF34344DF4A75271B11E71CED2 , 0xEB597397BE394E7999FF71D5E325AA12 , 0xEBC3C526B163464FA34967F6485108DD , 0xEBF4FC052A32400EA97A035F3819DA56 , 0xECF0E9B1283CBEF080F40E182BC8EAFA , 0xECF50B5509273FAD6F6C94152E6C539E , 0xED15C63B13C44DA28710BBBC7AB5137A , 0xED2AA7B1644F447887911D2B8BDA5BBE , 0xEDACB2C3AC639C5A996C080C5615838B , 0xEDDBA1EA7FD04DA1BB0C971A7B1A5D94 , 0xEE2139248839460399BB4CD1BD469952 , 0xEE503905315A40AB80664BFD795FC48D , 0xEE81EEC6ACCE2CEFC25B9DB255D62248 , 0xEF05AB51020A45889B1FAA56DCA8CDE9 , 0xEF1604257B6B441B92BFE0F905E0735E , 0xEF7618593EDFD177D574620501B2CF6D , 0xEFC863B499925CDF2B3567EA08A67C3E , 0xF075AAA5C84A4EF68D69C4BE0DFA6FDB , 0xF09A1C1CBF5042EAB542FDB635C29F96 , 0xF0B393F0BE894E89A168FC7228A4F4E8 , 0xF0B73CBA799F1C227DD1924F7C366829 , 0xF0D19FA9209544769C0F20098EFC79CB , 0xF0E9556360974D3FBBBCEA43CA365A1A , 0xF142396A1E29DBA09B3A269D681DDA22 , 0xF15120A311EDDBBE460FE267A9E1B333 , 0xF152DC38781D43CC896CC506FB42F472 , 0xF16F0418E98E0F2D8BC77A004F7C2CB8 , 0xF19DAB5852D64EABBACBB3F69C6DD34D , 0xF1CE088BF0A9D94DFBD3FC6FAA0F0973 , 0xF1F99B5681264815B3A9C533E10E33BC , 0xF2124267483C4699B781611EBF60E6E6 , 0xF21C8E496E0E2AC21A6AAB6E19B964A7 , 0xF2C755E29F6B4C3EB0C6BCC359B97BB0 , 0xF2E7C1677A8D72FF07EB51ADD4E157A3 , 0xF2EA6D1D1E5747E28FBE4B79F9140A41 , 0xF35CCFF4035611BEC628D0B8FDF6DB4C , 0xF38C6F067EF740CA810B9579CAE63F27 , 0xF3FC8212B5B5AAEF5BEC1606659819ED , 0xF4072A8064AA7014CA7E6379B8CE235E , 0xF475E3BC31877651B2DE15E8DE9A17B6 , 0xF4E2C578495A575A967F47EA67FC59AD , 0xF5DA36C5C9634FED8FFDC0468585C6E6 , 0xF5F4737E976D4817BC0DD84AA6845A1E , 0xF60F6758D8C54EDB085211C628D189FE , 0xF63A0FA3C233479485441E259D716D7C , 0xF63CFE5580A52D5603FF298DCB35126F , 0xF6916F1D7C3E84B2A4F6123495867FD9 , 0xF6A5FBED4307340E4393A9A00947EB25 , 0xF6B364C203EA4E38B93CECC7977DCC3B , 0xF6E49515EADF4DE89D846A64D442DE3B , 0xF6F830CF51446F688684D6170AF92FE6 , 0xF744243251BB285D1860268D1EAF2BE4 , 0xF75C70B7D8A96B2C7E13A89E5158322C , 0xF79C754B594AA6DF200E7825D4A87099 , 0xF7A35B0D0DFBEBA598B494881E82ABEF , 0xF7E8D0639D4CE3DC79211E4C404913F8 , 0xF8163C12382C98D53DE0A0143DB4BFFA , 0xF82B09995F475524B1167664771AE82D , 0xF8306B33B980C652B5D44184B694CA85 , 0xF84E1BDDB5094C718477DDE2D08ABC92 , 0xF862A5E3A3D02AC51F46D9296254F3B1 , 0xF8F391B3E506EC7E210B7957721028A2 , 0xF90E7DC410F343BC8199442B7C294CDE , 0xF92D8DD951C23785C98E7E2464FBED88 , 0xF946CFA9780A6B96283FF56B9792A9C4 , 0xF98C001B3A2C4DBF8B275F9B5DA1B2E8 , 0xF9D0385BA5C644D4A5AF6BB9339FDDF4 , 0xF9EB85BE35DD4B28A6F1F7FD6D44DE64 , 0xF9F32205800DE616E4EC32A41E07E997 , 0xFA0175B183D14194A130A3C2DAB60BB5 , 0xFA231B2B972D457E8F07357A54A6032A , 0xFA33E0695CF742798101AD6608660FDB , 0xFA3C0C39DA8D2A381FD244447BBBBC32 , 0xFA4C6A6B3442F897C28D4C10C36BEA63 , 0xFA7DAB6499CE5BC42ABD9DCDF9FD2E7E , 0xFA854B81A4014040AA229DDEE0FB433E , 0xFA8B633CE8BE42D6AAC74FAD85D47BC5 , 0xFAA203BCC3704B6092EC688434CF5E88 , 0xFAB8EFD283E044FBAE6F6D0FEE5A4BF0 , 0xFAC741CD4BAFEAC40A401D89E4A389F5 , 0xFAE93D59A6BD4D66B59CD17924A7E7DB , 0xFB13D918E26C4576B54744B1AFC7DD66 , 0xFB15E912C3533E7C810679D48B7F649C , 0xFB764112F3C83F70C1B0075167432E5E , 0xFB9B0845B2439C70B0933ABE7F3C7CA9 , 0xFBC10135A1394CF8ACC5C47EBA84298A , 0xFBC7A187E82845AF90DCBBBEAF779409 , 0xFBDEBD73E58490A5B8866930776EB2ED , 0xFC1A3844C2D6C3C01E038B3A5EB5E33F , 0xFC4408FBA4C1984D0A31ABB130DBA0F6 , 0xFC4810DD064D46CB9DE41AAEC358B61B , 0xFC5DFBD39ACFD37DCEBC1D526296A357 , 0xFD382792CF9FF80812A5AA7E60761AD0 , 0xFD4C9B222888CA80B64E8B1530DF733C , 0xFD7DF2E497D7454CBAB443A4EDEBB622 , 0xFD8989D8B7B245F5A7C4C089F3E1C581 , 0xFD97298575AB75C94A1478277F0A61C2 , 0xFDF83C32DC2940D38A28450DC3577C9B , 0xFF008B8AFA0C552A68012697F2D814AC , 0xFF187F49CEA67AF496AA6375D68C2E26 , 0xFF5D701127ED4E32B3CC59B64A32CBA4 , 0xFFA01BB1BCCA4685548C99825EE615E7 , 0xFFAC866C52FD9465281C7076F5FEF6C4 , 0xFFCF0DB326AC45369A6AD7E2F4B7D069 , 0xFFD7A8665B889E27285F82D9CEFDBEFB , 0xFFDFD39CABB04B63A801C371AF5EA3E9 , 0xFFEA3B3C27E0479791AF85F2A71913B9 , 0xFFFD065B807A440FB97F3B0794003FE5 );
Copy
49
0.34 ms
SELECT `property_group` . `id` as `property_group.id` , `property_group` . `display_type` as `property_group.displayType` , `property_group` . `sorting_type` as `property_group.sortingType` , `property_group` . `filterable` as `property_group.filterable` , `property_group` . `visible_on_product_detail_page` as `property_group.visibleOnProductDetailPage` , `property_group` . `created_at` as `property_group.createdAt` , `property_group` . `updated_at` as `property_group.updatedAt` , `property_group.translation.name` , `property_group.translation.name` as `property_group.name` , `property_group.translation.description` , `property_group.translation.description` as `property_group.description` , `property_group.translation.position` , `property_group.translation.position` as `property_group.position` , `property_group.translation.customFields` , `property_group.translation.customFields` as `property_group.customFields` FROM `property_group` LEFT JOIN (SELECT `property_group.translation` . `property_group_id` , `property_group.translation` . `name` as `property_group.translation.name` , `property_group.translation` . `description` as `property_group.translation.description` , `property_group.translation` . `position` as `property_group.translation.position` , `property_group.translation` . `custom_fields` as `property_group.translation.customFields` FROM `property_group_translation` `property_group.translation` WHERE `property_group.translation` . `language_id` = ? ) `property_group.property_group_translation` ON `property_group.property_group_translation` . `property_group_id` = `property_group` . `id` WHERE ((`property_group` . `filterable` = ? )) AND (`property_group` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
true
b"‘éÚ\x1E ìŒEÙ€H÷‹\f Fb« "
b"A»I_\x16 KB)ŠT›"<3›W "
b"]ŽÃd0\x05 MaH-Ž2\x14 ¿÷ "
b"År\x13 žG©HH¨˜ú\x01 i¥N® "
b"Á¸R´ñûO›ªÌV™›;94 "
b"÷W\x15 €\x02 ¯@ŽÑaà(~ÆÁ "
b"Î\x7F Œ\r "ÂFòŽ ª\f á\x0E ÷² "
b"Í\x0E `]m\x1F G…š•U}£/½ "
b"O÷Ô(ï®H_»»ùŸ\x16 ˆér "
b"Bdé\r ¹O®²ƒ¼Õ\x10 ÖZó "
b"œ:<º\r XIb¡\v ~Ñlišö "
b"\x15 'þÿFL¡,ÆÊ’\x0E 5m "
b"\x08 Eñ\t 8Eê·Ö,«ŽÉùŒ "
b"ø¯³šY,BŽœ\x1E Õ‹Îb\x04 z "
b"³\e\x18 üÕI‡¹m\x0E j\x1C Ú "
b"íU›~V2M÷§…Sw üØ´ "
b"\r ÒPü8•EÖ…Ôi“Ø’Ÿl "
b"7¹“ñ\x1A ÂCj·»(»]\ "
b"H´Ä$"ÖAø¤~°äÆüñ "
]
SELECT `property_group` . `id` as `property_group.id` , `property_group` . `display_type` as `property_group.displayType` , `property_group` . `sorting_type` as `property_group.sortingType` , `property_group` . `filterable` as `property_group.filterable` , `property_group` . `visible_on_product_detail_page` as `property_group.visibleOnProductDetailPage` , `property_group` . `created_at` as `property_group.createdAt` , `property_group` . `updated_at` as `property_group.updatedAt` , `property_group.translation.name` , `property_group.translation.name` as `property_group.name` , `property_group.translation.description` , `property_group.translation.description` as `property_group.description` , `property_group.translation.position` , `property_group.translation.position` as `property_group.position` , `property_group.translation.customFields` , `property_group.translation.customFields` as `property_group.customFields` FROM `property_group` LEFT JOIN (SELECT `property_group.translation` . `property_group_id` , `property_group.translation` . `name` as `property_group.translation.name` , `property_group.translation` . `description` as `property_group.translation.description` , `property_group.translation` . `position` as `property_group.translation.position` , `property_group.translation` . `custom_fields` as `property_group.translation.customFields` FROM `property_group_translation` `property_group.translation` WHERE `property_group.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `property_group.property_group_translation` ON `property_group.property_group_translation` . `property_group_id` = `property_group` . `id` WHERE ((`property_group` . `filterable` = 1 )) AND (`property_group` . `id` IN (0x91E9DA1EEC8C45D98048F78B0C4662AB , 0x41BB495F164B42298A549B223C339B57 , 0x5D8DC36430054D6181482D8D3214BFF7 , 0xC572139E47A94848A898FA0169A54EAE , 0xC1B852B4F1FB4F9BAACC56999B3B3934 , 0xF757158002AF409F8DD161E0287EC6C1 , 0xCE7F8C0D22C246F28EA0AA0CE10EF7B2 , 0xCD0E605D6D1F47859A95559D7DA32FBD , 0x4FF7D428EFAE485FBBBBF99F1688E972 , 0x4264E90DB99D4FAEB283BCD510D65AF3 , 0x9C3A3CBA0D584962A10B7ED16C699AF6 , 0x81159D27FEFF464CA12CC6CA920E356D , 0x0845F1098F3845EAB7D62CAB8DC9F98C , 0xF8AFB39A592C428E9C1ED58BCE62047A , 0xB31B18ADFCD54987B96D0EAD6A1C9DDA , 0xED559B7E56324DF7A7855377A0FCD8B4 , 0x0DD250FC389545D685D46993D8929F6C , 0x37B993F11AC2436AB78EBB28BB5D5C90 , 0x48B4C42422D641F8A47EADB0E4C6FCF1 ));
Copy
50
0.16 ms
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = ? OR `id` = ?
Parameters :
[
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
b"w¹YÏfÞL\x15 Çù·Ú9‚ó "
]
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = 0xC3057BB031634C669CD6DFB0D4ACBB15 OR `id` = 0x77B959CF66DE4C1590C7F9B7DA3982F3
;
Copy
51
0.13 ms
SELECT `name` , `path` , `author` , `self_managed`
FROM `app`
WHERE `active` = 1
SELECT `name` , `path` , `author` , `self_managed`
FROM `app`
WHERE `active` = 1
;
Copy
52
0.11 ms
SELECT
`theme_id` ,
`technical_name` ,
`resolved_config` ,
`view_inheritance` ,
`script_files` ,
`icon_sets` ,
`updated_at`
FROM `theme_runtime_config`
WHERE `technical_name` = ?
Parameters :
[
"Storefront "
]
SELECT
`theme_id` ,
`technical_name` ,
`resolved_config` ,
`view_inheritance` ,
`script_files` ,
`icon_sets` ,
`updated_at`
FROM `theme_runtime_config`
WHERE `technical_name` = 'Storefront' ;
Copy
53
0.13 ms
SELECT `app` . `name` , `app` . `version` , `app` . `template_load_priority`
FROM `app`
INNER JOIN `app_template` ON `app_template` . `app_id` = `app` . `id`
WHERE `app` . `active` = 1 AND `app_template` . `active` = 1
SELECT `app` . `name` , `app` . `version` , `app` . `template_load_priority`
FROM `app`
INNER JOIN `app_template` ON `app_template` . `app_id` = `app` . `id`
WHERE `app` . `active` = 1 AND `app_template` . `active` = 1 ;
Copy
54
0.08 ms
SELECT DISTINCT `technical_name`
FROM `theme_runtime_config`
WHERE `technical_name` IS NOT NULL
SELECT DISTINCT `technical_name`
FROM `theme_runtime_config`
WHERE `technical_name` IS NOT NULL ;
Copy
55
0.10 ms
SELECT path FROM category WHERE id = ?
Parameters :
[
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
]
SELECT path FROM category WHERE id = 0xC3057BB031634C669CD6DFB0D4ACBB15 ;
Copy
56
0.07 ms
SELECT `min_search_length` FROM `product_search_config` WHERE `language_id` = ?
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
]
SELECT `min_search_length` FROM `product_search_config` WHERE `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ;
Copy
57
0.29 ms
SELECT `media` . `id` as `media.id` , `media` . `user_id` as `media.userId` , `media` . `media_folder_id` as `media.mediaFolderId` , `media` . `mime_type` as `media.mimeType` , `media` . `file_extension` as `media.fileExtension` , `media` . `uploaded_at` as `media.uploadedAt` , `media` . `file_name` as `media.fileName` , `media` . `file_size` as `media.fileSize` , `media` . `media_type` as `media.mediaTypeRaw` , `media` . `meta_data` as `media.metaData` , `media` . `config` as `media.config` , `media` . `path` as `media.path` , `media` . `private` as `media.private` , `media` . `thumbnails_ro` as `media.thumbnailsRo` , `media` . `file_hash` as `media.fileHash` , `media` . `created_at` as `media.createdAt` , `media` . `updated_at` as `media.updatedAt` , `media.translation.title` , `media.translation.title` as `media.title` , `media.translation.alt` , `media.translation.alt` as `media.alt` , `media.translation.customFields` , `media.translation.customFields` as `media.customFields` FROM `media` LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id` LEFT JOIN (SELECT `media.translation` . `media_id` , `media.translation` . `alt` as `media.translation.alt` , `media.translation` . `title` as `media.translation.title` , `media.translation` . `custom_fields` as `media.translation.customFields` FROM `media_translation` `media.translation` WHERE `media.translation` . `language_id` = ? ) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id` LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id` WHERE (((`media` . `private` = ? OR (`media` . `private` = ? AND `media.mediaFolder.defaultFolder` . `entity` = ? )))) AND (`media` . `id` IN (? , ? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
false
true
"product_download "
b"\x01 ›1{Aõpµ·ñ:C‹u\x10 È "
b"\x01 ›1{AüqU¢Ý}ìë(D} "
]
SELECT `media` . `id` as `media.id` , `media` . `user_id` as `media.userId` , `media` . `media_folder_id` as `media.mediaFolderId` , `media` . `mime_type` as `media.mimeType` , `media` . `file_extension` as `media.fileExtension` , `media` . `uploaded_at` as `media.uploadedAt` , `media` . `file_name` as `media.fileName` , `media` . `file_size` as `media.fileSize` , `media` . `media_type` as `media.mediaTypeRaw` , `media` . `meta_data` as `media.metaData` , `media` . `config` as `media.config` , `media` . `path` as `media.path` , `media` . `private` as `media.private` , `media` . `thumbnails_ro` as `media.thumbnailsRo` , `media` . `file_hash` as `media.fileHash` , `media` . `created_at` as `media.createdAt` , `media` . `updated_at` as `media.updatedAt` , `media.translation.title` , `media.translation.title` as `media.title` , `media.translation.alt` , `media.translation.alt` as `media.alt` , `media.translation.customFields` , `media.translation.customFields` as `media.customFields` FROM `media` LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id` LEFT JOIN (SELECT `media.translation` . `media_id` , `media.translation` . `alt` as `media.translation.alt` , `media.translation` . `title` as `media.translation.title` , `media.translation` . `custom_fields` as `media.translation.customFields` FROM `media_translation` `media.translation` WHERE `media.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id` LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id` WHERE (((`media` . `private` = 0 OR (`media` . `private` = 1 AND `media.mediaFolder.defaultFolder` . `entity` = 'product_download' )))) AND (`media` . `id` IN (0x019B317B41F570B5B7F13A438B7510C8 , 0x019B317B41FC7155A2DD7DECEB28447D ));
Copy
58
0.13 ms
SELECT LOWER (HEX (id )) FROM snippet_set WHERE iso = ?
SELECT LOWER (HEX (id )) FROM snippet_set WHERE iso = 'de-DE' ;
Copy
59
0.10 ms
SELECT iso FROM snippet_set WHERE id = ?
Parameters :
[
b"""
ìô&æ\n
ÙBã®]\x0F 5\x13 ^€…
"""
]
SELECT iso FROM snippet_set WHERE id = 0xECF426E60AD942E3AE5D0F35135E8085 ;
Copy
60
0.17 ms
SELECT LOWER (HEX (theme . id )) themeId , theme . technical_name as themeName , parentTheme . technical_name as parentThemeName , LOWER (HEX (parentTheme . parent_theme_id )) as grandParentThemeId
FROM sales_channel
LEFT JOIN theme_sales_channel ON sales_channel . id = theme_sales_channel . sales_channel_id
LEFT JOIN theme ON theme_sales_channel . theme_id = theme . id
LEFT JOIN theme AS parentTheme ON parentTheme . id = theme . parent_theme_id
WHERE sales_channel . id = ?
Parameters :
[
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
]
SELECT LOWER (HEX (theme . id )) themeId , theme . technical_name as themeName , parentTheme . technical_name as parentThemeName , LOWER (HEX (parentTheme . parent_theme_id )) as grandParentThemeId
FROM sales_channel
LEFT JOIN theme_sales_channel ON sales_channel . id = theme_sales_channel . sales_channel_id
LEFT JOIN theme ON theme_sales_channel . theme_id = theme . id
LEFT JOIN theme AS parentTheme ON parentTheme . id = theme . parent_theme_id
WHERE sales_channel . id = 0xCD6592C636AE4BF38378B01A9B31E46D
;
Copy
61
0.22 ms
SELECT `base_class` AS `baseClass` , `author`
FROM `plugin`
SELECT `base_class` AS `baseClass` , `author`
FROM `plugin`
;
Copy
62
4.07 ms
SELECT translation_key , value FROM snippet WHERE snippet_set_id = ?
Parameters :
[
b"""
ìô&æ\n
ÙBã®]\x0F 5\x13 ^€…
"""
]
SELECT translation_key , value FROM snippet WHERE snippet_set_id = 0xECF426E60AD942E3AE5D0F35135E8085 ;
Copy
63
0.11 ms
SELECT iso FROM snippet_set WHERE id = ?
Parameters :
[
b"""
ìô&æ\n
ÙBã®]\x0F 5\x13 ^€…
"""
]
SELECT iso FROM snippet_set WHERE id = 0xECF426E60AD942E3AE5D0F35135E8085 ;
Copy
64
0.33 ms
SELECT translation_key , value FROM snippet WHERE snippet_set_id = ?
Parameters :
[
b"""
ìô&æ\n
ÙBã®]\x0F 5\x13 ^€…
"""
]
SELECT translation_key , value FROM snippet WHERE snippet_set_id = 0xECF426E60AD942E3AE5D0F35135E8085 ;
Copy
65
0.14 ms
SELECT iso FROM snippet_set WHERE id = ?
Parameters :
[
b"""
ìô&æ\n
ÙBã®]\x0F 5\x13 ^€…
"""
]
SELECT iso FROM snippet_set WHERE id = 0xECF426E60AD942E3AE5D0F35135E8085 ;
Copy
66
0.29 ms
SELECT translation_key , value FROM snippet WHERE snippet_set_id = ?
Parameters :
[
b"""
ìô&æ\n
ÙBã®]\x0F 5\x13 ^€…
"""
]
SELECT translation_key , value FROM snippet WHERE snippet_set_id = 0xECF426E60AD942E3AE5D0F35135E8085 ;
Copy
67
0.10 ms
SELECT iso FROM snippet_set WHERE id = ?
Parameters :
[
b"""
ìô&æ\n
ÙBã®]\x0F 5\x13 ^€…
"""
]
SELECT iso FROM snippet_set WHERE id = 0xECF426E60AD942E3AE5D0F35135E8085 ;
Copy
68
0.33 ms
SELECT translation_key , value FROM snippet WHERE snippet_set_id = ?
Parameters :
[
b"""
ìô&æ\n
ÙBã®]\x0F 5\x13 ^€…
"""
]
SELECT translation_key , value FROM snippet WHERE snippet_set_id = 0xECF426E60AD942E3AE5D0F35135E8085 ;
Copy
69
0.38 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0xC3057BB031634C669CD6DFB0D4ACBB15 ));
Copy
70
0.27 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"/»_ââšMpªXTÎ|ãâ\v "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"Ã\x05 {°1cLfœÖß°Ô¬»\x15 "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0xC3057BB031634C669CD6DFB0D4ACBB15 ));
Copy
71
0.24 ms
SELECT LOWER (HEX (language . id )) AS array_key , LOWER (HEX (language . id )) AS id , locale . code , parentLocale . code AS parentCode , LOWER (HEX (language . parent_id )) parentId FROM language LEFT JOIN locale locale ON language . translation_code_id = locale . id LEFT JOIN language parentLanguage ON language . parent_id = parentLanguage . id LEFT JOIN locale parentLocale ON parentLanguage . translation_code_id = parentLocale . id
SELECT LOWER (HEX (language . id )) AS array_key , LOWER (HEX (language . id )) AS id , locale . code , parentLocale . code AS parentCode , LOWER (HEX (language . parent_id )) parentId FROM language LEFT JOIN locale locale ON language . translation_code_id = locale . id LEFT JOIN language parentLanguage ON language . parent_id = parentLanguage . id LEFT JOIN locale parentLocale ON parentLanguage . translation_code_id = parentLocale . id ;
Copy
72
0.98 ms
SELECT seo_path_info , path_info , sales_channel_id FROM seo_url WHERE (seo_url . is_canonical = 1 ) AND (seo_url . path_info IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) AND (seo_url . language_id = ? ) AND (seo_url . sales_channel_id = ? OR seo_url . sales_channel_id IS NULL ) AND (seo_url . is_deleted = 0 )
Parameters :
[
"/navigation/c3057bb031634c669cd6dfb0d4acbb15 "
"/navigation/19ca405790ff4f07aac8c599d4317868 "
"/navigation/48f97f432fd041388b2630184139cf0e "
"/navigation/bb22b05bff9140f3808b1cff975b75eb "
"/navigation/06f5dda360c04112937601574122c515 "
"/navigation/9d2b0fec9ebf49feb299f3060de6a174 "
"/navigation/9350ecd5bd6e4f85b7a14c85c0c3b31e "
"/navigation/4aafda73311b49f5b9d06888f2608c18 "
"/navigation/7f29e74723ac457ea8c30ae0c3b2f598 "
"/navigation/e379fcc096f343568dcb1e294d45c931 "
"/detail/50ca2e54dd1d47759ec9deabc1784e9c "
"/detail/2c688e792e354c9b96e469d6b97a9a92 "
"/detail/b7b3572f290d49039c3e19b5d3a052a5 "
"/detail/52a3096dc0de441da3b39e234d9666eb "
"/detail/78183794f6df426ea2fd03a5fd343a46 "
"/detail/253dee8c68784cec824b6614531e8a18 "
"/detail/27094e91ee474f90bbc3ccbb585c5701 "
"/detail/c08874a898024439bbb3ba85a712223b "
"/detail/8442b13754784845b70c75f190725c52 "
"/detail/7828eacc9bd542c39e00611229c3dbfb "
"/detail/71c2859267d84f9f83ac5d509c916bd5 "
"/detail/240b0405de1f4a8897836a4eb241c848 "
"/detail/3f6da0f52756446fb6cd580b232cd4d9 "
"/detail/3ca3d520c64b49e49fe0f5b19bd6b672 "
"/detail/313f7e64fdb44712868e78d57b67409c "
"/detail/e48bba3eb808443692ad88fa4a1e1d4e "
"/detail/1011f76c07214d4d949779522a4caf9b "
"/detail/b514dfc4994344de968b13ae6dd5cea6 "
"/detail/b91e8d3143eb465cbb5f1b8c3695eeac "
"/detail/78ab100bb01d46a286d6194998933cc5 "
"/detail/b6ba0853949241d6a551927c12fba762 "
"/detail/2cb6fe1a64b84aaeb5c8623497372511 "
"/detail/38e8bda7e128472b90eb53249c499f4d "
"/detail/b5c9bba9dd7b40249a258c87687c7ca1 "
b"/»_ââšMpªXTÎ|ãâ\v "
b"Íe’Æ6®Kóƒx°\x1A ›1äm "
]
SELECT seo_path_info , path_info , sales_channel_id FROM seo_url WHERE (seo_url . is_canonical = 1 ) AND (seo_url . path_info IN ('/navigation/c3057bb031634c669cd6dfb0d4acbb15' , '/navigation/19ca405790ff4f07aac8c599d4317868' , '/navigation/48f97f432fd041388b2630184139cf0e' , '/navigation/bb22b05bff9140f3808b1cff975b75eb' , '/navigation/06f5dda360c04112937601574122c515' , '/navigation/9d2b0fec9ebf49feb299f3060de6a174' , '/navigation/9350ecd5bd6e4f85b7a14c85c0c3b31e' , '/navigation/4aafda73311b49f5b9d06888f2608c18' , '/navigation/7f29e74723ac457ea8c30ae0c3b2f598' , '/navigation/e379fcc096f343568dcb1e294d45c931' , '/detail/50ca2e54dd1d47759ec9deabc1784e9c' , '/detail/2c688e792e354c9b96e469d6b97a9a92' , '/detail/b7b3572f290d49039c3e19b5d3a052a5' , '/detail/52a3096dc0de441da3b39e234d9666eb' , '/detail/78183794f6df426ea2fd03a5fd343a46' , '/detail/253dee8c68784cec824b6614531e8a18' , '/detail/27094e91ee474f90bbc3ccbb585c5701' , '/detail/c08874a898024439bbb3ba85a712223b' , '/detail/8442b13754784845b70c75f190725c52' , '/detail/7828eacc9bd542c39e00611229c3dbfb' , '/detail/71c2859267d84f9f83ac5d509c916bd5' , '/detail/240b0405de1f4a8897836a4eb241c848' , '/detail/3f6da0f52756446fb6cd580b232cd4d9' , '/detail/3ca3d520c64b49e49fe0f5b19bd6b672' , '/detail/313f7e64fdb44712868e78d57b67409c' , '/detail/e48bba3eb808443692ad88fa4a1e1d4e' , '/detail/1011f76c07214d4d949779522a4caf9b' , '/detail/b514dfc4994344de968b13ae6dd5cea6' , '/detail/b91e8d3143eb465cbb5f1b8c3695eeac' , '/detail/78ab100bb01d46a286d6194998933cc5' , '/detail/b6ba0853949241d6a551927c12fba762' , '/detail/2cb6fe1a64b84aaeb5c8623497372511' , '/detail/38e8bda7e128472b90eb53249c499f4d' , '/detail/b5c9bba9dd7b40249a258c87687c7ca1' )) AND (seo_url . language_id = 0x2FBB5FE2E29A4D70AA5854CE7CE3E20B ) AND (seo_url . sales_channel_id = 0xCD6592C636AE4BF38378B01A9B31E46D OR seo_url . sales_channel_id IS NULL ) AND (seo_url . is_deleted = 0 );
Copy
73
0.35 ms
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"""
\x17 \n
C\x7F 6ø@²—-ûrøæ¿b
"""
b"\x1E ›mÉ\v RG|·'÷ïeÆ]Ö "
b"8X•p\x16 dMä®HÀP\v óÌÈ "
b"¸Rs=·eO;‚°T•Ë!ÚW "
b"Ð[4\ÛyIgƒ\x12\x17 [ÄLKL "
b"á7Ž·€ŠG‘ž\r t\r ]l\x1A "
b"ï\x7F Ù.®S@I’\x06 €\x12 ¨.’‹ "
]
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (0x170A437F36F840B2972DFB72F8E6BF62 , 0x1E9B6DC90B52477CB727F7EF65C65DD6 , 0x3858957016644DE4AE48C0500BF3CCC8 , 0xB852733DB7654F3B82B05495CB21DA57 , 0xD05B345CDB7949678312175BC44C4B4C , 0xE1378DB7808A478F919E0D740D5D6C1A , 0xEF7FD92EAE53404992068012A82E928B );
Copy
74
0.10 ms
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = ?
Parameters :
[
"eDfaCmt7qVZcCjfV795EsUUlpUo4jeJX "
]
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = 'eDfaCmt7qVZcCjfV795EsUUlpUo4jeJX' ;
Copy